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:
01 | local DataStoreService = game:GetService( "DataStoreService" ) |
02 | local inventory = DataStoreService:GetDataStore( "Inventory" ) |
04 | game.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 |
11 | local success, err = pcall ( function () |
12 | Data = inventory:GetAsync(player.UserId.. "_Data" , values.Value) |
17 | values.Value = Data [ 1 ] |
18 | koalaInv.Value = Data [ 2 ] |
19 | koalaQue.Value = Data [ 3 ] |
22 | print ( "Error getting data" ) |
30 | game.Players.PlayerRemoving:Connect( function (player) |
32 | local values = player.PlayerGui.ShopValues.FirstWalkspeed |
33 | local koalaInv = game.ReplicatedStorage.HatValues.KoalaInventoryCount |
34 | local koalaQue = game.ReplicatedStorage.HatValues.KoalaCount |
36 | local toSave = { values.Value, koalaInv.Value, koalaQue.Value } |
39 | local success, err = pcall ( function () |
40 | inventory:SetAsync(player.UserId.. "_Data" , toSave) |
47 | print ( "There was an error" ) |