using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class setColor : MonoBehaviour
{
SpriteRenderer sprite;
//this will easilly make u choose the color u want
public Color newColor;
void Start()
{
sprite = GetComponentInChildren<SpriteRenderer>();
sprite.color = newColor;
}
}