How Can I Make It So If Someone Hits The Letter "G", A GUI Becomes Visible?
local player = game.Players.LocalPlayer local Mouse = player:GetMouse() Mouse.KeyDown:connect(function(key) if key == "f" then --YOUR CODE HERE end end)
I got this script from SlickPwner