Answered by
5 years ago Edited 5 years ago
GetAsync()
only takes one parameter.
You also didnt define player in the autosave loop so that would error your code, stopping it from running.
I rewrote the code a bit, adding a function to Save
the player's data, load
the player's data, and create the leaderstat items
Troubleshooting:
It worked when I tested it BUT if you have any issues with saving, try these troubleshooting:
1) Go to Studio -> Home tab -> Game settings (it's a blue gear) -> Options -> and turn on all three options.
2) Sometimes studio is wonky not saving datastores, so try playing in game and see what happens.
3) Another thing to look out for, make sure you're changing the values inside the objects on the server If you change them in the properties in play mode or in a local script, they won't change. only if you change them in a server script or [click this button to go into server mode
(https://imgur.com/a/pSjaUYT)
If neither of those work, we can take a look at your game thru team create and see why it isnt working.
Code:
001 | local dataStore = game:GetService( "DataStoreService" ):GetDataStore( "Test4" ) |
003 | function createValueObjects(player) |
004 | local leaderstatsFolder = Instance.new( "Folder" ) |
005 | leaderstatsFolder.Name = "leaderstats" |
006 | leaderstatsFolder.Parent = player |
008 | local kills = Instance.new( "IntValue" ) |
009 | kills.Name = "Eliminations" |
011 | kills.Parent = leaderstatsFolder |
013 | local deaths = Instance.new( "IntValue" ) |
014 | deaths.Name = "Deaths" |
016 | deaths.Parent = leaderstatsFolder |
018 | local careerKills = Instance.new( "IntValue" ) |
019 | careerKills.Name = "Career Eliminations" |
020 | careerKills.Parent = leaderstatsFolder |
022 | local careerDeaths = Instance.new( "IntValue" ) |
023 | careerDeaths.Name = "Career Deaths" |
024 | careerDeaths.Parent = leaderstatsFolder |
026 | local careerWins = Instance.new( "IntValue" ) |
027 | careerWins.Name = "Career Wins" |
028 | careerWins.Parent = leaderstatsFolder |
030 | local careerLosses = Instance.new( "IntValue" ) |
031 | careerLosses.Name = "Career Losses" |
032 | careerLosses.Parent = leaderstatsFolder |
034 | local credits = Instance.new( "IntValue" ) |
035 | credits.Name = "Credits" |
036 | credits.Parent = leaderstatsFolder |
038 | return careerKills, careerDeaths, careerWins, careerLosses, credits |
041 | function saveData(player) |
042 | local careerKills = player.leaderstats [ "Career Eliminations" ] |
043 | local careerDeaths = player.leaderstats [ "Career Deaths" ] |
044 | local careerWins = player.leaderstats [ "Career Wins" ] |
045 | local careerLosses = player.leaderstats [ "Career Losses" ] |
046 | local credits = player.leaderstats [ "Credits" ] |
048 | print ( "values to save" , careerKills.Value,careerDeaths.Value,careerWins.Value,careerLosses.Value,credits.Value) |
050 | local saves = { careerKills.Value,careerDeaths.Value,careerWins.Value,careerLosses.Value,credits.Value } |
052 | local success, err = pcall ( function () |
053 | dataStore:SetAsync( "SAVE-" ..player.UserId,saves) |
054 | print ( "Saved data for " ..player.Name) |
057 | if not success then error (err) end |
060 | function getData(player) |
061 | local dataFromDatastore |
063 | local success, err = pcall ( function () |
064 | dataFromDatastore = dataStore:GetAsync( "SAVE-" ..player.UserId) |
067 | if not success then error (err) end |
068 | return dataFromDatastore |
071 | game.Players.PlayerAdded:Connect( function (player) |
072 | local careerKills, careerDeaths, careerWins, careerLosses, credits = createValueObjects(player) |
073 | local dataFromDatastore = getData(player) |
076 | if not dataFromDatastore then |
078 | careerLosses.Value = 0 |
079 | careerKills.Value = 0 |
080 | careerDeaths.Value = 0 |
082 | print ( "New Player joined the game" ) |
084 | careerKills.Value = dataFromDatastore [ 1 ] |
085 | careerDeaths.Value = dataFromDatastore [ 2 ] |
086 | careerWins.Value = dataFromDatastore [ 3 ] |
087 | careerLosses.Value = dataFromDatastore [ 4 ] |
088 | credits.Value = dataFromDatastore [ 5 ] |
093 | game.Players.PlayerRemoving:Connect( function (player) |
097 | game:BindToClose( function () |
098 | if game:GetService( "RunService" ):IsStudio() then return end |
100 | for _,player in pairs (game.Players:GetPlayers()) do |
111 | for _, player in pairs (game.Players:GetPlayers()) do |
112 | player.leaderstats [ "Career Eliminations" ] .Value = player.leaderstats [ "Career Eliminations" ] .Value + 1 |
119 | for _,player in pairs (game.Players:GetPlayers()) do |
PS, only 4 of your values in the leaderstats will load. The values will be in the leaderstats and this script will work, but only four will show up on the leaderboard as you can see here. The solution to this would be to either use a custom leaderboard / use guis instead or don't display so many stats.