Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to make a key event?

Asked by
enzdude 10
9 years ago

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.

3 answers

Log in to vote
1
Answered by 9 years ago

Warning: This question could be Marked as not constructive since you have provided us with any effort of you trying to accomplish this on your own.

If you want to make a function that triggers by a certain Key then I suggest you use UserInputService and a If statement.

1game: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
5end)

~UserOnly20Charcters, Hoped I helped you to answer your question! If you have any further question, don't hesitate to comment below!!

0
Thanks :D enzdude 10 — 9y
Ad
Log in to vote
0
Answered by 9 years ago
1local player = game.Players.LocalPlayer
2local mouse = player:GetMouse()
3mouse.KeyDown:connect(function(key)
4if key == "x" then -- change the 'x'
5-- do stuff
6end)
0
I strongly suggest that you shouldn't use KeyDown event as its Deprecated! UserOnly20Characters 890 — 9y
0
It's the 'basic' scripting, there's nothing wrong with it. HMNapoleon 35 — 9y
Log in to vote
0
Answered by 9 years ago
1function keypress(UserInput, gameProcessedEvent)
2if UserInput.KeyCode == Enum.KeyCode.R then
3--YOUR CODE
4game:GetService("UserInputService").InputBegan:connect(keypress)
5end

Use UserInputService, avoid keydown since its deprecated.

0
Do not use KeyDown it's a bad way to get key input. LightModed 81 — 9y

Answer this question