How can i make a daily system?

Hello, How can i make a Daily system for a simulator game?
If you can help please tell me

2 Likes

cooltext464960135152309

1 Like

#help-and-feedback:game-design-support

2 Likes

Basically save using data store or whatever you use for saving the os.time() the player claimed the reward, then when the player rejoins you check if
os.time() - theSavedTime >= 60*60*24 (60 seconds × 60 minute × 24 hours)
And if it is then you give the player the next reward

3 Likes