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

DataStore not saving any of the values?

Asked by
Ben_B 9
4 years ago
Edited 4 years ago

Im trying to save 3 values; 2 in startergui that are IntValues, and one BoolValue inside ReplicatedStorage.

01local DataStoreService = game:GetService("DataStoreService")
02local inventory = DataStoreService:GetDataStore("Inventory")
03local values = game.StarterGui.ShopValues.FirstWalkspeed
04local koalaInv = game.StarterGui.HatValues.KoalaInventoryCount
05local koalaQue = game.StarterGui.QuestHolder.KoalaCount
06 
07 
08 
09 
10 
11 
12 
13 
14game.Players.PlayerAdded:Connect(function(player)
15    local Data
View all 53 lines...

1 answer

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

Hello.

Problem:

You tried setting the DataStore multiple times at once. This wouldn't work as DataStore's are designed to store 1 value.

Solution:

Instead, save a table containing the values.

Fixed Code:

01local DataStoreService = game:GetService("DataStoreService")
02local inventory = DataStoreService:GetDataStore("Inventory")
03local values = game.StarterGui.ShopValues.FirstWalkspeed
04local koalaInv = game.StarterGui.HatValues.KoalaInventoryCount
05local koalaQue = game.StarterGui.QuestHolder.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        values.Value = Data[1]
View all 45 lines...
0
Would this still work as im saving values in StarterGui? Ben_B 9 — 4y
0
Use PlayerGui instead of StarterGui. youtubemasterWOW 2741 — 4y
0
it doesnt recognise it Ben_B 9 — 4y
Ad

Answer this question