Maxwell
1/31/2020 - 5:01 PM

Change Text

public Text textObject; // To Assign in inspector
textObject = gameObject.GetComponent<Text>(); // Only use if text is on same
// object as the script, and remove public from "textObject"

textObject.text = "Hello, World!";