I am trying to make a timer using a Gui, however it seems like I cannot use numbers as a value for the text of the gui. Can you give me a solution to this or another way to make a Gui timer? i do not want to use a free model.
easy,
1 | gui = gui |
2 | timevalue = script.Parent.TimeValue |
3 | max = script.Parent.TimeValue.Value |
4 | for i = 1 , timevalue.Value do |
5 | wait( 1 ) |
6 | gui.Text = tostring (max-timevalue.Value) |
7 | timevalue.Value = timevalue.Value - 1 |
8 | end |
And for the certain command, look into .Chatted functions. and study string maniuplations such as string:sub() and string:lower() which would be helpfull in your situation.