How to make a datastore that shows weekly points and all-time points?

I’m trying to make a leaderboard where it shows the leaderboard for weekly points and leaderboard for all-time. I know this is going to involve OrderedDataStore. But how do I categorise into weekly/all-time?

Well… you have to use a new ordereddatastore every week I guess. There are other methods on which you could optimize upon. But for the most part that’s that.

You can combine both ordered and normal Datastores to allow a less OrderedDataStore dependant system in some cases.

I guess deleting all values every week from an OrderedDataStore isn’t too far off either, though, can be optimized.