Any alternatives to OrderedDataStores?

An important feature of my game is ranking peoples in-game groups in various categories, in which I save this data in an Ordered DataStore. The problem is, Ordered Datastores have not worked for over a month now. I find it extremely odd that they have been broken for so long, and more odd that there are not more people devastated by this.

I am curious, what is everyone else using in replace of Ordered DataStores, and what solid alternatives are there? Thanks for any and all help/suggestions.

Bug Report - GetSortedAsync's IsFinished not returning true on the last page

They should still work. You just need to set a maximum number of pages you want it to go through before it ends (so you may need to list some group ranks as like “1000+”, rather than the exact number.

e.g.

local Index = 0
while Index < 10 do
	-- Go to next page and process it
	Index += 1
end
-- move on from the ordered datastore
1 Like