How would I make top 7 weekly activity leaderboard?

So I want to make a top 7 weekly activity leaderboard that resets every week, but I honestly don’t know where to start.

Thank you for reading :slight_smile:

To help you start :slight_smile::

  • Use Datastores to keep track of the current top players. Keep track of this continuously.
  • One a week, also store a snapshot of that list in your datastore in a separate key. You can use os.time on the server to check the day of the week.
  • Have your server poll that snapshot table occasionally, and update your leaderboard occasionally.
2 Likes

Also specifically look into Ordered Data Stores.

1 Like