public Text myText;
public static int Text ;
void Start()
{
gameObject.GetComponent<Text>();
// ------------------------------------------------------------ вот это место
Text = 1000;
myText.text = "$ : " + Text ;
Text++;
Thread.Sleep(5000);
//------------------------------------------------------------------------------------------------
}