#how to make proper time counter?

5 messages · Page 1 of 1 (latest)

solar cedarBOT
#

studio** You are now Level 1! **studio

bold lichen
#

One message removed from a suspended account.

#

One message removed from a suspended account.

#

One message removed from a suspended account.

sage topaz
#

and you can add a trigger with it

local secondsElapsed = 0
while true do
    secondsElapsed += 1
    task.wait(1)
    if secondsElapsed == 60 then
    print("1 minute!")
    end
end```