I tried to make a save script but it doesn't work. Can you guys spot anything wrong with it?
01 | game.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 |
17 | end ) |
By the way, if someone wants indentations, here ya go.
01 | game.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 |
17 | end ) |