Hello, I am attempting to save data in my game but the code is not working. I'm not sure of the problem and I'm pretty sure many others are having the same problem. My code is below. ~~~~~~~~~~~~~~~~~ local DataStoreService = game:GetService("DataStoreService") local CoinsDataStore = DataStoreService:GetDataStore("CoinsDataStore") game.Players.PlayerAdded:Connect(function(player) local Folder = Instance.new("Folder",player) Folder.Name = "leaderstats" Folder.Parent = player local Samples = Instance.new("IntValue",Folder) Samples.Name = "Samples"
01 | local coins = Instance.new( "IntValue" ,Folder) |
02 | coins.Name = "Coins" |
03 | coins.Parent = Folder |
04 |
05 | local playerUserId = "Player" ..player.UserId |
06 |
07 | --Load Data |
08 | local data |
09 | local success,errormessage = pcall ( function () |
10 | data = CoinsDataStore:GetAsync(playerUserId) |
11 | end ) |
12 |
13 |
14 | if success then |
15 | if data then |
16 | coins.Value = data.coins |
17 | Samples.Value = data.Samples |
18 | end |
19 | -- Set data == current values |
20 | end |
end)
game.Players.PlayerRemoving:Connect(function(player) local playerUserId = "Player_"..player.UserId local data = { coins = player.leaderstats.Coins.Value, samples = player.leaderstats.Samples.Value } local success, errormessage = pcall(function() CoinsDataStore:SetAsync(playerUserId, data) end) if success then print("Data successfully saved!") else print("Error saving data! If you see this do not leave the game or your save data will be deleted! Stay here while the problem is resolved!") warn(errormessage) end end) ~~~~~~~~~~~~~~~~~
--All of that is the code idk why it is not displaying it all in the code part.
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local CoinsDataStore = DataStoreService:GetDataStore( "CoinsDataStore" ) |
03 |
04 | game.Players.PlayerAdded:Connect( function (player) |
05 |
06 | local Folder = Instance.new( "Folder" ,player) |
07 | Folder.Name = "leaderstats" -- dont need Folder.Parent = player. you already set its parent |
08 |
09 | local Samples = Instance.new( "IntValue" ,Folder) |
10 | Samples.Name = "Samples" |
11 |
12 | local coins = Instance.new( "IntValue" ,Folder) |
13 | coins.Name = "Coins" |
14 |
15 | local UserId = tostring (player.UserId) -- made it just the userid cos i dont like player with it |
In your code on line 13 (or where you say "local playerUserId = "Player"..player.UserId), you save the value as "Player" then whatever userId they have (ex. Player1986328, Player89278). But then, on line 31 in the PlayerRemoved thread, you save "playerUserId" as "local playerUserId = "Player_"..player.UserId", meaning that it will look for "Player_1986328" or "Player_89278". Line 13 and line 31 both save and collect data for different things. Try changing line 13 to:
1 | local playerUserId = "Player_" ..player.UserId |
so that it matches up with what you are saving on the next thread..
Another problem I noticed was on line 25, when you said "Samples.Value = data.samples" but then later on, you identify the data as "samples = player.leaderstats.Samples.Value". You should capitalize that line:
1 | Samples = player.leaderstats.Samples.Value |
hope this helps