put the part in workspace and call it ShowGui and then put this into a localscript inside the gui
workspace.ShowGui.Touched:Connect(function(hit)
if hit.Parent == game.Players.LocalPlayer.Character then
script.Parent.Visible = true
end
end)
local uis = game:GetService("UserInputService")
uis.InputBegan:Connect(function(key,bool)
if bool == false then
if key.KeyCode == Enum.KeyCode.E then --replace E with the key you want it to be set to
script.Parent.Visible = false
end
end
end) |