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:
Ordered store:
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
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