[SOLVED]
Seems to be that everything worked fine, but for some reason, I had to add an if statement to if the data exists.
REVAMPED CODE :
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local cashStore = DataStoreService:GetDataStore( "PlayerIntegerSave" ) |
05 | game.Players.PlayerAdded:Connect( function (player) |
07 | local leaderstats = Instance.new( "Folder" ) |
08 | leaderstats.Name = "leaderstats" |
09 | leaderstats.Parent = player |
11 | local Cash = Instance.new( "IntValue" ) |
13 | Cash.Parent = leaderstats |
15 | local Wins = Instance.new( "IntValue" ) |
17 | Wins.Parent = leaderstats |
19 | local playerUserId = player.UserId |
23 | local succ, err = pcall ( function () |
24 | data = cashStore:GetAsync( "Player_" ..playerUserId) |
34 | Cash.Value = data.cash |
35 | Wins.Value = data.wins |
50 | game.Players.PlayerRemoving:Connect( function (player) |
52 | local playerUserId = player.UserId |
56 | cash = player.leaderstats.Cash.Value; |
57 | wins = player.leaderstats.Wins.Value; |
61 | local succ, err = pcall ( function () |
63 | cashStore:SetAsync( "Player_" ..playerUserId,data) |