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

Need help with this script - key pressing. Script doesn't not work as intended?

Asked by 4 years ago
Edited 4 years ago

This script function properly until it gets akeypressed = false

Q keeps printing despite releasing the Key "q"

d = game:GetService("UserInputService")

local akeypressed = true

d.InputBegan:Connect(function(input,gameProccesedEvent) local akeypressed = true

if input.KeyCode == Enum.KeyCode.Q then

1    while akeypressed == true do
2            wait()
3            print ("q")
4    end
5end

end)

d.InputEnded:Connect(function(input,gameProccesedEvent)

1if input.KeyCode == Enum.KeyCode.Q then
2 
3    if d.InputEnded then
4 
5         akeypressed = false
6    end
7 
8 
9end

end)

1 answer

Log in to vote
0
Answered by 4 years ago

Hey, so first, you shouldn't put the wait time at the beginning of the loop because it gives it a small fraction of time before completely breaking the loop after akeypressed = false

1d.InputBegan:Connect(function(input,gameProccesedEvent)
2    if input.KeyCode == Enum.KeyCode.Q then akeypressed = true
3        while akeypressed
4        do
5            print("q")
6            wait()
7        end
8    end
9end)

On the second function,

1d.InputEnded:Connect(function(input,gameProccesedEvent)
2    if input.KeyCode == Enum.KeyCode.Q then
3            print("False")
4            akeypressed = false
5    end
6end)

I optimized it, removing the if d.InputEnded then since I think it's not necessarily needed. So, assuming you wanted it to print out Q when the key is pressed down and stop when the key is released. Hope this answers your question!

Ad

Answer this question