Does anyone know how to make a Live update event?

I want to make a live event for my game But when search tutorials I cant find what i want

1 Like

You can’t really make live updates, if you’re wondering how Jailbreak does it, then it is pretty simple.
They have made a script that on a certain time, reloads the map and adds the new features.
It is not like they’ve just pressed Update game without kicking every player, they had all those features prepared, but they were hidden, and the script only had to make them visible.

3 Likes

Ok I think I will do that thank you thou

To add more on what Wqund said, You can learn about an API Feature called OS.Time here, if you want to schedule when the Live event takes place.

In otherwords, it’s live for all servers that are upto date with the publish.

Two options:
MessagingService to send a message to all servers on when to start said event, helpful resource 3dsboy08’s wrapper:

Or you can use os.date and os.time like how most people do it. Note you’d have to have all servers with the upto date changes (event script) in order for a full live event.

Hope this helps!

Arghh forgot about MessagingService, but it is a good method aswell.

1 Like