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

How to track keypressed in a tool?

Asked by
Gojinhan 353 Moderation Voter
5 years ago

Hi, I'm using userinputservice. I wanted to know how to make it only track input when a tool is equipped, I tried the script below but it just didnt register at all when equipped. I'm out of ideas for it lol

01local uis = game:GetService("UserInputService")
02local attacking = false
03 
04script.Parent.Equipped:connect(function()
05    input1 = uis.InputBegan:connect(function(input, gp)
06    if gp then
07        return
08 
09    else
10        if input.KeyCode == Enum.KeyCode.Q then
11            print("pressed")
12        end
13    end
14end)
15 
View all 31 lines...

2 answers

Log in to vote
0
Answered by 5 years ago

You can create a variable that holds a boolean value that changes on wether or not you equipped the tool

Then create a function that trigger when InputBegan, and use if function using the boolean value you created

Example

01local Equipped = false
02local input = game:GetService("UserInputService")
03script.Parent.Equipped:connect(function()
04Equipped = true
05end)
06 
07script.Parent.Unequipped:connect(function()
08Equipped = false
09end)
10 
11input.InputBegan:connect(function(inp, proc)
12if Equipped then
13if inp.KeyCode == Enum.KeyCode.Q then
14Print("Q is pressed!")
15end
View all 26 lines...

Excuse any bug since i write them on a smartphone

0
I responded back in a seperate answer Gojinhan 353 — 5y
0
You should do this instead, because the Equipped event is supposed to fire the "moment" you equipped the tool, and it doesn't keep on firing as long as your holding it it doesn't keep on firing starmaq 1290 — 5y
0
indent!!! ThatPreston 354 — 5y
0
Indent your code Leamir 3138 — 5y
0
Oh ffs, another simon cowelss of answer, didnt you reas? I wrote them using a phone geniuses Azure_Kite 885 — 5y
Ad
Log in to vote
0
Answered by
Gojinhan 353 Moderation Voter
5 years ago

For some reason that didn't work, I might be clowning but this is what I wrote with that info:

01local uis = game:GetService("UserInputService")
02local attacking = false
03local equipped = false
04 
05script.Parent.Equipped:connect(function()
06    equipped = true
07end)   
08 
09script.Parent.Unequipped:connect(function()
10    equipped = false
11end)
12 
13uis.InputBegan:connect(function(input, gp)
14    if equipped then
15        if gp then
View all 42 lines...

Just like before there are no errors in output, it's just nothing is printed when Q is pressed and released regardless of equip status.

0
Do your tool have a handle? Or "RequiresHandle" value in the property of the tool is set to false? Azure_Kite 885 — 5y
0
omg im sooo dumb i forgot I used the disconnect method on all my other tools I just thought it hated me lol Gojinhan 353 — 5y
0
Please correctly indent your code Leamir 3138 — 5y
0
it is, scripting helpers ruins formatting. Gojinhan 353 — 5y

Answer this question