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

My datastore not storing the values?

Asked by
Prestory 1395 Moderation Voter
7 years ago
01local DataStore = game:GetService("DataStoreService")
02local ds = DataStore:GetDataStore("MeditationSaveSystem")
03local ds2 = DataStore:GetDataStore("StrengthSaveSystem")
04game.Players.PlayerAdded:Connect(function(player)
05     local leaderstats = Instance.new("Model")
06     leaderstats.Name = "leaderstats"
07     leaderstats.Parent = player
08 
09     local Meditation = Instance.new("IntValue")
10     Meditation.Name = "Meditation"
11     Meditation.Value = ds:GetAsync(player.UserId) or 0
12     Meditation.Parent = leaderstats
13 
14     local Strength = Instance.new("IntValue")
15     Strength.Name = "Strength"
View all 23 lines...

This code is meant to save the values when the player leaves but it does not save them may someone help me fix this thanks.

2 answers

Log in to vote
2
Answered by 7 years ago

Tried posting on your last question but it disappeared :p

Couple of problems; first, the PlayerRemoving event doesn't need to exist inside of the PlayerAdded event. Second, when a player exits the game, you set the value in the datastore PlayerCurrency at key player twice, rather than set the values of the datastores strength and meditation at key player.userId once; on top of that, you don't actually set the values in the datastores to valid values.

Try this out:

01local currencystore = game:GetService("DataStoreService"):GetDataStore("PlayerCurrency");
02local strengthstore = game.DataStoreService:GetDataStore("Strength");
03local meditationstore = game.DataStoreService:GetDataStore("Meditation");
04 
05local create = function(name, classname, parent)
06    local object = Instance.new(classname, parent);
07    object.Name = name;
08    return object;
09end
10 
11game.Players.PlayerAdded:connect(function(player)
12    local leaderstats = create("leaderstats", "Folder", player);
13    local meditation = create("Meditation", "IntValue", leaderstats);
14    local strength = create("Strength", "IntValue", leaderstats);
15    strength.Value = (strengthstore:GetAsync(player.userId) or 0);
View all 22 lines...
0
THANKS ALOT! Prestory 1395 — 7y
Ad
Log in to vote
0
Answered by
LuaDLL 253 Moderation Voter
7 years ago
Edited 7 years ago

Try this?

01local dataStoreService = game:GetService("DataStoreService")
02local dataStore = dataStoreService:GetDataStore("PlayerCurrency")
03 
04function create(name,classname,parent)
05    local it = Instance.new(classname)
06    it.Parent = parent
07    it.Name = name
08    return it
09end
10game.Players.PlayerAdded:Connect(function(plr)
11    local ls = create("leaderstats","Folder",plr)
12    local med = create("Meditation","IntValue",ls)
13    local str = create("Strength","IntValue",ls)
14    local plrData = dataStore:GetAsync(plr.userId)
15    if plrData then
View all 29 lines...

Answer this question