How would I make my global leaderboard more efficient?
So I have made a global leaderboard before, but after a few days, it does not update and too many datastores are added to the queue. I was wondering if you could help me refine and improvise my code to make it more efficient and work every time? Thank You For your time!
Here is the code that I have now:
01 | local dataStoreService = game:GetService( "DataStoreService" ) |
03 | local players = game:GetService( "Players" ) |
05 | local globalDataStore = dataStoreService:GetOrderedDataStore( "Wins" ) |
07 | local board = workspace.Lobby.GlobalBoard |
09 | local template = board.SurfaceGui.LeaderBoard.Template:Clone() |
12 | board.SurfaceGui.LeaderBoard.Template:Destroy() |
14 | local function update() |
15 | for _,child in pairs (board.SurfaceGui.LeaderBoard:GetChildren()) do |
16 | if child:IsA( "Frame" ) then |
22 | local success,err = pcall ( function () |
24 | local data = globalDataStore:GetSortedAsync( false , 40 ) |
26 | local page = data:GetCurrentPage() |
30 | for rank,plrData in ipairs (page) do |
32 | local userid = plrData.key |
34 | local wins = plrData.value |
40 | local new = template:Clone() |
42 | new.PlrName.Text = players:GetNameFromUserIdAsync(userid) |
44 | new.PlrAmount.Text = wins |
46 | new.LayoutOrder = rank |
48 | new.Parent = board.SurfaceGui.LeaderBoard |
64 | wait(math.random( 2 , 18 )) |
68 | for _,plr in pairs (game.Players:GetPlayers()) do |
70 | globalDataStore:SetAsync(plr.UserId,plr.leaderstats.Wins.Value) |