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

How to run functions on key press?

Asked by 8 years ago
Edited 8 years ago

The only way I know how to run functions in tool is on activated, how do I run then on key press? Here's the script I already made. The function is run on activated.

01--alonzo12345
02 
03player = game.Players.LocalPlayer
04tool = script.Parent
05handle = tool.Handle
06x = script.Chakram
07spinning = false
08 
09 
10function shieldup()
11        wait(.5)
12        local ff = Instance.new("ForceField")
13        ff.Parent = tool.Parent
14        game.Debris:AddItem(ff,2.5)
15        local xc = x:Clone()
View all 32 lines...

1 answer

Log in to vote
0
Answered by 8 years ago
1function onKeyPress(inputObject, gameProcessedEvent)
2    if inputObject.KeyCode == Enum.KeyCode.R then
3        --code here
4    end
5end
6 
7game:GetService("UserInputService").InputBegan:connect(onKeyPress)

Copied from the wiki, hope this helped.

Ad

Answer this question