This was an old question but answers didn't work so ye.
Create a GUI. Put it in a tool. Write this on a local script and put the local script into the tool.
local tool = script.Parent local GUI = tool:FindFirstChild("GUINAME") or tool:WaitForChild("GUINAME") local function Equipped() local plr = game.Players.LocalPlayer local plrgui = plr.PlayerGui GUI.Parent = plrgui end local function Unequipped() GUI.Parent = tool end tool.Unquipped:connect(Unequipped) tool.Equipped:connect(Equipped)
Closed as Not Constructive by User#19524
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?