//Jimmy Vegas Unity 5 Tutorial //This script will track your score using UnityEngine.UI; public class GlobalScore : MonoBehaviour { static public int ZombieScore; public int InternalScore; public GameObject ScoreDisplay; void Update () { InternalScore = ZombieScore; ScoreDisplay.GetComponent ().text = "" + InternalScore; } }