|
| 13 Jul 2011 09:10 PM |
It clones the Frame inside the ScreenGui(CraftGui) the first time, but then after it is deselected and selected again, only the ScreenGui is clones.
Script: b = script.Parent CGui = b.CraftGui:clone()
script.Parent.Selected:connect(function(mouse)
CGui.Parent = b.Parent.Parent.PlayerGui
end)
script.Parent.Deselected:connect(function()
CGui:remove()
end) |
|
|
| Report Abuse |
|