Question about common practice with Ordered DataStores vs regular DataStore

In my game, I want to have a global leaderboard displaying Time in Game and Total Wins. I am stuck between having a regular DataStore with PlayerData or having an ordered store for Time in Game and another one for Total Wins.

My though process with have two ordered stores is that I have to query each store when retrieving and saving player data vs. a single store with the PlayerData method.

Can someone provide guidance on what the best practice and most efficient way is?

As far as I know, ordered data stores order the data for you, so you don’t need to sort them yourself. I suggest using OrderedDataStores, however, I don’t have much experience with it, so if anyone has a better idea, lemme know.