Answered by
7 years ago Edited 7 years ago
Hey alonzo12345,
The most common event that was used a lot was the mouse's KeyDown
event for detecting when a key is pressed however, that event is not deprecated and there's an even better method of detecting keys. Let me introduce you to UserInputService. This is a service that you can use for input, as the name might suggest. It's I believe about the most efficient and easiest way of getting input from the keyboard at the moment. This Service is very easy to use so, just bare with me here. Here is the wiki page for it and all of it's methods/events/properties. Below is a personal example with some brief explanations of it:
1 | local uis = game:GetService( "UserInputService" ) |
3 | uis.InputBegan:Connect( function (obj, gp) |
4 | if obj.KeyCode = Enum.KeyCode.Q and not gp then |
5 | print ( "Q was pressed." ) |
For Key Up, you can use the InputEnded event of UserInputService. The parameters are the same and I am pretty sure it works the same way as the one above.
Well, I hope I some-what helped you out with your issue and the methods I used above will be linked below.
Here is the link for the :GetService() page.
Here is the link for the Anonymous functions page.
Here is the link for normal functions.
Here is the link for UserInputService being used.
~~ KingLoneCat