of     1   

ChilledMagicks
#228423494Monday, December 04, 2017 12:06 PM GMT

Hello, I am having a bit of a problem in scripting GUIS, that when you touch a certain part, the GUI pops up, and then pops back down when pressed a Certain key? Does anyone know how to do this? I would appreciate even the slightest bit of help, as I am a beginner in scripting.
mattscy
#228425282Monday, December 04, 2017 2:03 PM GMT

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)

    of     1