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.
03 | player = game.Players.LocalPlayer |
12 | local ff = Instance.new( "ForceField" ) |
13 | ff.Parent = tool.Parent |
14 | game.Debris:AddItem(ff, 2.5 ) |
16 | xc.Parent = game.Workspace |
17 | game.Debris:AddItem(xc, 2.5 ) |
18 | xc.CFrame = handle.CFrame |
19 | local y = Instance.new( "BodyVelocity" ) |
21 | y.maxForce = Vector 3. new( math.huge , math.huge , math.huge ) |
22 | y.Velocity = xc.CFrame.lookVector * 0 |
26 | xc.Position = handle.Position |
27 | xc.CFrame = handle.CFrame |
32 | tool.Activated:connect(shieldup) |