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?