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

I'm making a saving leaderboard it's not working?

Asked by 3 years ago
Edited 3 years ago

I have API Services on and it's not working. THANKS TO OFF_S4LE FOR FINDING THE LINK TO FIX THIS. To fix this take this ; and turn it into : this. At the start of the script with the data store part.

local datastore = game;GetService("DataStoreService")
local ds1 = datastore;GetDataStore("WinsSaveSystem")
local ds2 = datastore;GetDataStore("CashSaveSystem")

game.Players.PlayerAdded:connect(function(plr)
 local folder = Instance.new("Folder", plr)
 folder.Name = "leaderstats"
 local wins = Instance.new("IntValue", folder)
 wins.Name = "Wins"
 local cash = Instance.new("IntValue", folder)
 cash.Name = "Cash"

 wins.Value = ds1:GetAsync(plr.UserId) or 0
 ds1:SetAsync(plr.UserId, wins.Value)

 cash.Value = ds2:GetAsync(plr.UserId) or 0
 ds2:SetAsync(plr.UserId, cash.Value)

 wins.Changed:connect(function()
  ds1:SetAsync(plr.UserId, wins.Value)
 end)

 cash.Changed:connect(function()
  ds2:SetAsync(plr.UserId, cash.Value)
 end)
end)

SOLVED

1 answer

Log in to vote
1
Answered by
OFF_S4LE 127
3 years ago

tis but a simple' https://www.youtube.com/watch?v=dRQzgP7zApU&t=81s

Ad

Answer this question