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

Gui working in Studio but not Online?

Asked by
nicros 165
9 years ago

So ive got this inventory GUI and in studio test runs it works fine the button i have works closing and opening it and yada yada but when i test it online the button doesnt work...its color changes showing its a button but when i click it nothing opens.....

here is the script

01player = game.Players.LocalPlayer
02 
03game.StarterGui:SetCoreGuiEnabled('Backpack',false)
04 
05--
06local Enabled = false
07 
08 
09function UpdateInventory()
10    if Enabled == false then
11        Enabled = true
12        script.Parent.Frame.Visible = true
13        script.Parent.Frame.CanvasSize = UDim2.new(0,0,0,20*#player.Backpack:children())
14        script.Parent.Frame:ClearAllChildren()
15        for i,v in pairs(player.Backpack:GetChildren()) do
View all 39 lines...

if you could point out what in it is keeping it from working online i would very much appreciate it :)

0
Are you using a LocalScript? Muoshuu 580 — 9y
0
yes i am....should i not be? nicros 165 — 9y
0
You should wait for the gui loads into the player. game.Players.LocalPlayer:WaitForChild("Backpack") Nickoakz 231 — 9y
0
:p sorry im a big noob at LUA....what do you mean? Is there something i need to add/change in the script? :) thanks for the replies btw nicros 165 — 9y

Answer this question