hi in my game i have some money. I have made a global variable called cash and i have a texbox1. In the text box i want it to show the amount of cash and keep showing it when it goes up and down what do i have to type to get this
In your global script, inside the repeatedly_execute function, put:
textbox1.Text = String.Format("%d", Cash);
its simple when you no how .Thanks mate sweet