Making a global leaderboard?

Hello I’m a bit new to datastores. If I wanted to make a global leaderboard I would have use GetOrderedDataStore. But what if I have all the data already on a normal datastore? Would I have to just make two separate datastores then? One datastore with all the data, and then another one that is an OrderedDataStore?

Not necessarily. OrderedDataStores are, essentially, used for what the name implies: ordered data. OrderedDataStore has a function GetSortedAsync that will sort the data based on the arguments you give it. It’s an easy way to sort all of your data.

Of course you can always sort the data yourself, though it may be a bit less efficient.