01 | local dataStoreService = game:GetService( "DataStoreService" ) |
02 | local killSave = dataStoreService:GetDataStore( "PlayerKills" ) |
03 |
04 | game.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" ) |
I have API Services allowed so I have no clue what causes the data to not store.
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.
1 | game.Players.PlayerRemoving:Connect( function () |
2 | SaveData(Player) |
3 | end ) |
4 |
5 | game:BindToClose( function () |
6 | SaveData(Player) |
7 | end ) |