How do I make a tool which clones the GUI when it's equipped and when it's unequipped, it destroys? I have no idea...
http://wiki.roblox.com/index.php?title=Tool
Please check the wiki before coming here.
local tool = script.Parent -- assuming script is in tool local gui = game.ReplicatedStorage.Gui -- example gui tool.Equipped:connect(function(mouse) local guiclone = gui:Clone() guiclone.Parent = player.PlayerGui-- assuming you already have "player" defined end) tool.Unequipped:connect(function() if player.PlayerGui:findFirstChild("Gui") then player.PlayerGui:findFirstChild("Gui"):Destroy() -- removes "Gui" end end)