Basically, if a Player Presses a Letter on the Keyboard.. a GUI Pops up for the Player..
Please Reply if you Know! Thanks!
Use UserInputService
game:GetService("UserInputService").InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.A then -- you can change the keycode -- your code end end)