using UnityEngine; using UnityEngine.UI; public class ScoreCounter : MonoBehaviour { Text text; public static int scoreAmount; // Start is called before the first frame update void Start() { text = GetComponent(); } // Update is called once per frame void Update() { text.text = "SCORE\n" + scoreAmount.ToString(); } }