On my game, I want to make a key event to where if you press "c", you get down on the floor, but slower then usual.
If you want to make a function that triggers by a certain Key then I suggest you use UserInputService and a If statement.
1 | game:GetService( "UserInputService" ).InputBegan:connect( function (Key,Typing) --The second argument "Typing" is a Boolean value that indicates whether or not the Player is Typing. |
2 | if Typing = = false and Key.KeyCode = = Enum.KeyCode.C then --This checks if the Player isn't Typing as well as if the C key has been pressed |
3 | --YourCode |
4 | end |
5 | end ) |
~UserOnly20Charcters, Hoped I helped you to answer your question! If you have any further question, don't hesitate to comment below!!
1 | local player = game.Players.LocalPlayer |
2 | local mouse = player:GetMouse() |
3 | mouse.KeyDown:connect( function (key) |
4 | if key = = "x" then -- change the 'x' |
5 | -- do stuff |
6 | end ) |
1 | function keypress(UserInput, gameProcessedEvent) |
2 | if UserInput.KeyCode = = Enum.KeyCode.R then |
3 | --YOUR CODE |
4 | game:GetService( "UserInputService" ).InputBegan:connect(keypress) |
5 | end |
Use UserInputService, avoid keydown since its deprecated.