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

DataStore either not saving or not loading properly?

Asked by 5 years ago

it prints that data is saved, loaded etc but when it comes to actually loading the data it doesn't seem to function properly. no error is given

001local dataStore = game:GetService("DataStoreService"):GetDataStore("Test3")
002 
003game.Players.PlayerAdded:Connect(function(player)
004 
005 
006 
007    local stats = Instance.new("Folder")
008    stats.Name = "leaderstats"
009    stats.Parent = player
010 
011    local kills = Instance.new("IntValue")
012    kills.Name = "Eliminations"
013    kills.Value = 0
014    kills.Parent = stats
015 
View all 101 lines...

1 answer

Log in to vote
0
Answered by
royaltoe 5144 Moderation Voter Community Moderator
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:

001local dataStore = game:GetService("DataStoreService"):GetDataStore("Test4")
002 
003function createValueObjects(player)
004    local leaderstatsFolder = Instance.new("Folder")
005    leaderstatsFolder.Name = "leaderstats"
006    leaderstatsFolder.Parent = player
007 
008    local kills = Instance.new("IntValue")
009    kills.Name = "Eliminations"
010    kills.Value = 0
011    kills.Parent = leaderstatsFolder
012 
013    local deaths = Instance.new("IntValue")
014    deaths.Name = "Deaths"
015    deaths.Value = 0
View all 123 lines...

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.

0
yup this works perfectly, also am aware that only 4 show up just needed to put the values somewhere that i could see them to test WaterlooBuilder 4 — 5y
0
That's understandable. royaltoe 5144 — 5y
0
I'm not sure why only four values show. Was it like that before? royaltoe 5144 — 5y
Ad

Answer this question