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

Values are not saving in DataStore?

Asked by
Ben_B 9
4 years ago
Edited 4 years ago

Im trying to make a DataStore for all the values in ReplicatedStorage in my game. I get no error but none of the values save. help

01local DataStoreService = game:GetService("DataStoreService")
02local inventory = DataStoreService:GetDataStore("Inventory")
03local values = game.StarterGui.ShopValues.FirstWalkspeed
04local koalaInv = game.ReplicatedStorage.HatValues.KoalaInventoryCount
05local koalaQue = game.ReplicatedStorage.HatValues.KoalaCount
06 
07game.Players.PlayerAdded:Connect(function(player)
08    local Data
09 
10    local success, err = pcall(function()
11        Data = inventory:GetAsync(player.UserId.."_Data", values.Value)
12 
13    end)
14    if success then
15    print("loaded")
View all 46 lines...

1 answer

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

Hello.

Solution:

Use Player.PlayerGui instead of game.StarterGui as StarterGui is the container for gui you start with. Gui's in StarterGui get cloned into the player's PlayerGui. PlayerGui is the container for the actual gui itself.

Fixed Code:

01local DataStoreService = game:GetService("DataStoreService")
02local inventory = DataStoreService:GetDataStore("Inventory")
03 
04game.Players.PlayerAdded:Connect(function(player)
05    local values = player:WaitForChild("PlayerGui").ShopValues.FirstWalkspeed
06    local koalaInv = game.ReplicatedStorage.HatValues.KoalaInventoryCount
07    local koalaQue = game.ReplicatedStorage.HatValues.KoalaCount
08 
09    local Data
10 
11    local success, err = pcall(function()
12        Data = inventory:GetAsync(player.UserId.."_Data", values.Value)
13 
14    end)
15    if success then
View all 51 lines...
0
Nah it still does not work, its the Values that are not saving :/ Ben_B 9 — 4y
0
??? Ben_B 9 — 4y
0
Oh. youtubemasterWOW 2741 — 4y
0
Are you testing in-game? youtubemasterWOW 2741 — 4y
Ad

Answer this question