For example, I wanna put something like "you have X money" or simply "$X". Or make a game with a timer, and show the time you have left on the GUI. How can I do that?
make a GUI label, name it accordingly, and every cycle, update it
function repeatedly_execute()
{
GuiLabel_Money.Text = String.Format("$%d", Cash);
}