My DataStore value is not the same as Ordered Store value

Okay so i want to make global leaderboard, but looks like My DataStore value updates. BUT the value for tthe same datastore but ordered is not the same.

My DataStore:
Screenshot_258

Ordered store:
Screenshot_259

How to fix this?

Also this is how i update value:

local DataStore = game:GetService("DataStoreService")
local Store= DataStore:GetDataStore("MyDataStoreOk")
Store:SetAsync(player.UserId, newPoints) -- new points is current value of my data
1 Like

Probably because leaderboard uses not the same datastore as the one you’re using for your saving stats.
What is the interval between leaderboard updating?

1 minute, and no i use the same data store.
Every time value updates i update datastore and datastore updates, but value in the same ordered datastore not changing

Even if the name of datastores is the same, ordered and normal datastores are different
Ordered datastores are used for leaderboards (mostly)
Normal datastores are for saving ur stuff

It’s :GetOrderedDataStore, not :GetDataStore.

1 Like

Ordered datastores can also log bans used by staff, etc.
There is a lot if can be used for.