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

Made a save script, but it doesn't work?

Asked by 8 years ago

I tried to make a save script but it doesn't work. Can you guys spot anything wrong with it?

01game.Players.PlayerRemoving:connect(function(p)
02if p:findFirstChild("Candies") then
03p:SaveInstance("SavedStatPNum1339"..tostring(game.PlaceId),p.Candies)
04end
05end)
06game.Players.PlayerAdded:connect(function(p)
07for k = 1, 60, 0.03 do
08wait()
09if p:findFirstChild("Candies") and p.DataReady then break end
10end
11local Loaded = nil
12if p:findFirstChild("Candies") and pcall(function() Loaded =  p:LoadInstance("SavedStatPNum1339"..tostring(game.PlaceId)) end) then
13for j, v in pairs(Loaded:GetChildren()) do
14pcall(function() p.Candies[v.Name].Value = v.Value end)
15end
16end
17end)
0
You're using deprecated functions (save and load instance). Do not use data persitance, use datastores. GoldenPhysics 474 — 8y
0
:P But I want to save models ;-; TheChampOfKillers 45 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

By the way, if someone wants indentations, here ya go.

01game.Players.PlayerRemoving:connect(function(p)
02    if p:findFirstChild("Candies") then
03        p:SaveInstance("SavedStatPNum1339"..tostring(game.PlaceId),p.Candies)
04        end
05        end)
06        game.Players.PlayerAdded:connect(function(p)
07            for k = 1, 60, 0.03 do
08            wait()
09            if p:findFirstChild("Candies") and p.DataReady then break end
10            end
11            local Loaded = nil
12            if p:findFirstChild("Candies") and pcall(function() Loaded =  p:LoadInstance("SavedStatPNum1339"..tostring(game.PlaceId)) end) then
13            for j, v in pairs(Loaded:GetChildren()) do
14            pcall(function() p.Candies[v.Name].Value = v.Value end)
15        end
16    end
17end)
0
(Scripting Helpers messed it up) TheChampOfKillers 45 — 8y
Ad

Answer this question