//Jimmy Vegas Unity 5 Tutorial //This script will hold your score in the game static var CurrentScore : int; var InternalScore : int; var ScoreDisplay : GameObject; function Update () { InternalScore = CurrentScore; ScoreDisplay.GetComponent.().text = "Score: " + InternalScore; }