RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a script where a textlabel counts down from 60 to 0. make it repeat forever"
-- local script local textLabel = script.Parent while true do for i = 60, 0, -1 do textLabel.Text = tostring(i) wait(1) end end