Gui working in Studio but not Online?
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
01 | player = game.Players.LocalPlayer |
03 | game.StarterGui:SetCoreGuiEnabled( 'Backpack' , false ) |
09 | function UpdateInventory() |
10 | if Enabled = = false then |
12 | script.Parent.Frame.Visible = true |
13 | script.Parent.Frame.CanvasSize = UDim 2. new( 0 , 0 , 0 , 20 *#player.Backpack:children()) |
14 | script.Parent.Frame:ClearAllChildren() |
15 | for i,v in pairs (player.Backpack:GetChildren()) do |
16 | Obj 1 = Instance.new( 'ImageButton' ,script.Parent.Frame) |
17 | Obj 1. Size = UDim 2. new( 0 , 60 , 0 , 60 ) |
18 | Obj 1. Position = UDim 2. new( 0 , 5 , 0 , 65 *i- 50 ) |
19 | Obj 1. BackgroundTransparency = 0 |
20 | Obj 1. Image = v.TextureId |
21 | Obj 1. MouseButton 1 Down:connect( function () |
22 | player.Character.Humanoid:UnequipTools() |
23 | player.Character.Humanoid:EquipTool(v) |
28 | script.Parent.Frame.Visible = false |
32 | script.Parent.InvenButton.MouseButton 1 Down:connect( function () |
36 | player.Backpack.Changed:connect( function () |
37 | if Enabled = = false then Enabled = true UpdateInventory() end |
38 | if Enabled = = true then Enabled = false UpdateInventory() end |
if you could point out what in it is keeping it from working online i would very much appreciate it :)