I made a timer script using a for loop and it's not working? The following is the script.
local t = script.Parent for timer = 120, 0, -1 do t.Text = timer end
It's a very simple script. It's also my first time using a for loop. Any ideas on why it's not working? Thanks for helping.
Your script is fine; you just have to type in wait(1) inside of the for loop.
Your problem is you're using a int value not a string value
local t = script.Parent for timer = 120, 0, -1 do t.Text = tostring(timer) end