|
| 26 Feb 2012 01:28 AM |
Well, I have this gui that ahs two frames in it, but one with the classes won't give the weapons in the class if they click the imagebutton. Can someone find out my bug? Btw the script is in the gui not in the frame.
player = script.Parent.Parent["Classes"] backpack = player.Backpack
function chooseClass(class) for i, v in pairs(backpack:GetChildren()) do v:remove() end for i, v in pairs(class:GetChildren()) do if v:IsA("Tool") then v:clone().Parent = backpack else if v:IsA("HopperBin") then v:clone().Parent = backpack end end script.Parent.Classes.Visible = false script.Parent.Title.Visible = false end
for i, v in pairs(script.Parent.Classes:GetChildren()) do v.MouseButton1Up:connect(function () chooseClass(v) end) end
|
|
|
| Report Abuse |
|