In the tool, insert a script and put this :
script.Parent.Activated:Connect(function()--Fired when player clicks while equipped
script.Parent.LocalScript.Disabled = false--Enables localscript for gui enable
end)
Then in the tool, insert a localscript and put this :
game.Players.LocalPlayer.PlayerGui.PUTNAMEHERE.Enabled = true--Enables gui
When the player clicks, it enables the localscript which makes the gui show up. |