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

Data doesn't save upon rejoining, anyone knows why?

Asked by 4 years ago
01local dataStoreService = game:GetService("DataStoreService")
02local killSave = dataStoreService:GetDataStore("PlayerKills")
03 
04game.Players.PlayerAdded:Connect(function(player)
05 
06    local totalKills
07    local success, err = pcall(function()
08        totalKills = killSave:GetASync("Player_"..player.UserId)
09    end)
10 
11    local leaderstats = Instance.new("Folder")
12    leaderstats.Name = "leaderstats"
13    leaderstats.Parent = player
14 
15    local kills = Instance.new("IntValue")
View all 69 lines...

I have API Services allowed so I have no clue what causes the data to not store.

0
Are you only testing on roblox studio? I had a similar problem where data wont save but when I tested in the actual game it suddenly worked. Rayguyban2 89 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
Edited 4 years ago

The PlayerRemoving event is, in some cases, not quite enough to save all data, as the server closing itself will kill this script when it tries to save the data. Sure, you are hardly saving much with that save() function, but saving to datastores can take a really long time as it takes a long time to communicate with the servers. I resolved this problem myself by using the methods in this tutorial, where it is explained that you should use :BindToClose() in addition to PlayerRemoving. Hopefully this helps!

Edit: here is exactly how I do this in my game.

1game.Players.PlayerRemoving:Connect(function()
2    SaveData(Player)
3end)
4 
5game:BindToClose(function()
6    SaveData(Player)
7end)
0
Also also; this fix SHOULD work 100% of the time, and if you expect the data to always save when a player leaves, then there is no need for that autosave function you have. And use coroutines instead for the future! Galvarino 25 — 4y
0
You have to define Player. You can't just say that, you have to loop through game.Players:GetPlayers() and save for each player. rabbi99 714 — 4y
0
Didn't work, could you try to edit the script for me if I did something wrong because I'm new to scripting and still make a lot of mistakes. Vbrostiic 0 — 4y
Ad

Answer this question