yoyo8
|
  |
| Joined: 23 Jul 2008 |
| Total Posts: 158 |
|
|
| 01 Aug 2011 11:41 AM |
Hey mah peeps, Just made a new X-Men game. I put in a GUI for 6 X-Men. Only one of them works. The others dont detect that they got clicked. Help.
Thanks, Yoyo8
player = script.Parent.Parent.Parent 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 elseif v:IsA("HopperBin") then v:clone().Parent = backpack end end script.Parent.Main.Visible = true wait(0) script.Parent.Main.Visible = false end
for i, v in pairs(script.Parent.Main:GetChildren()) do v.MouseButton1Up:connect(function () chooseClass(v) end) end
|
|
|
| Report Abuse |
|