Count down even while server isn't up

Hello developers,

I am creating this post because I need help with creating a count down system.

Something like a live event. When the count down is done, the game fires an event. And even when there isn’t any servers up, the game still knows how long there is left tell the event.

Is there any way to do this in Roblox?

Yes you can use os.date to do this. There are many tutorials on this or just learn from documentation. I can’t share my script as im not near my pc.

1 Like

You would make use of os.time() (which returns the time since epoch (1st of January, 1970)), and just check if the time is after the desired time that the event should start

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.