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
1 | game:GetService( "UserInputService" ).InputBegan:Connect( function (input) |
2 | if input.KeyCode = = Enum.KeyCode.A then -- you can change the keycode |
3 | -- your code |
4 | end |
5 | end ) |