Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I make my global leaderboard more efficient?

Asked by 4 years ago

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:

01local dataStoreService = game:GetService("DataStoreService")
02 
03local players = game:GetService("Players")
04 
05local globalDataStore = dataStoreService:GetOrderedDataStore("Wins")
06 
07local board = workspace.Lobby.GlobalBoard
08 
09local template = board.SurfaceGui.LeaderBoard.Template:Clone() 
10 
11 
12board.SurfaceGui.LeaderBoard.Template:Destroy()
13 
14local function update()
15    for _,child in pairs(board.SurfaceGui.LeaderBoard:GetChildren()) do
View all 79 lines...
0
Change the pairs to ipairs for one. That’s all I can really think of Cynical_Innovation 595 — 4y

Answer this question