Hello, How can i make a Daily system for a simulator game?
If you can help please tell me
2 Likes
1 Like
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