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:
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local inventory = DataStoreService:GetDataStore( "Inventory" ) |
03 | local values = game.StarterGui.ShopValues.FirstWalkspeed |
04 | local koalaInv = game.StarterGui.HatValues.KoalaInventoryCount |
05 | local koalaQue = game.StarterGui.QuestHolder.KoalaCount |
07 | game.Players.PlayerAdded:Connect( function (player) |
10 | local success, err = pcall ( function () |
11 | Data = inventory:GetAsync(player.UserId.. "_Data" , values.Value) |
15 | values.Value = Data [ 1 ] |
16 | koalaInv.Value = Data [ 2 ] |
17 | koalaQue.Value = Data [ 3 ] |
20 | print ( "Error getting data" ) |
28 | game.Players.PlayerRemoving:Connect( function (player) |
30 | local toSave = { values.Value, koalaInv.Value, koalaQue.Value } |
33 | local success, err = pcall ( function () |
34 | inventory:SetAsync(player.UserId.. "-Data" , toSave) |
41 | print ( "There was an error" ) |