title, I know this is probably incredibly simple, but I’m new to for loops
, so sorry in advance if my code is crap so far.
script:
local text = script.Parent
local number = script.Parent:WaitForChild("Number")
for count = 600, 1, -1 do
print(count)
number.Value = tonumber(count)
text.Text = number.Value
end
screenshot of StarterGui
:
Timer is the text label
PLEASE HELP