How to make a Gui CountDown Timer (Roblox Studio).

Опубликовано: 07 Июль 2026
на канале: Martearo
324
3

Today's Vid is about how to make a gui countdown timer.

If you had any sort of problems or it didn't work with you make sure to get the error code that you got and comment it down below so we can help you with it.

script:

local Time = 60

repeat
wait(1)
Time = Time - 1
script.Parent.Text = "Time Left: " .. tostring(Time)
until Time == 0