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

Timer that counts down locally with the format of “0.000.” Do you guys know how to do this?

Asked by 1 year ago

No clue on how to do this. Timers are hard.

0
https://create.roblox.com/docs/reference/engine/datatypes/DateTime. Provide a Unix timestamp set in your desired future. Ziffixture 6913 — 1y

1 answer

Log in to vote
0
Answered by
Jo1nts 134
1 year ago
Edited 1 year ago
local timer = 10

while wait(0.001) do
    timer -= 0.001
end
Ad

Answer this question