Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a minute countdown gui?

Asked by 10 years ago
local time = 100
    for i = 1, 100 do
    wait(1)
    time = time - 1 
    script.Parent.Text = tostring(time) 
end

How can I convert this from counting down from 100 seconds to counting down from 15:00 minutes??

1 answer

Log in to vote
0
Answered by
Kozero 120
10 years ago

change the local time argument to 900. M=15 Sec=60 Time=(M,":",Sec) Text=Time Work on from this.It'll take me a while to make it.

0
I know that, but that counts down from 900, I want it so it goes 15:00, 14:59, 14:58, etc NinjoOnline 1146 — 10y
0
Here Kozero 120 — 10y
Ad

Answer this question