using System.Collections; using System.Collections.Generic; using UnityEngine; using TMPro; //thomas09 public class RemoveScoreTextAtStart : MonoBehaviour { private TextMeshProUGUI thisText; void Awake() { thisText = GetComponent(); thisText.text = ""; } }