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 |
5 | end |
end)
d.InputEnded:Connect(function(input,gameProccesedEvent)
1 | if input.KeyCode = = Enum.KeyCode.Q then |
2 |
3 | if d.InputEnded then |
4 |
5 | akeypressed = false |
6 | end |
7 |
8 |
9 | end |
end)
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
1 | d.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 |
9 | end ) |
On the second function,
1 | d.InputEnded:Connect( function (input,gameProccesedEvent) |
2 | if input.KeyCode = = Enum.KeyCode.Q then |
3 | print ( "False" ) |
4 | akeypressed = false |
5 | end |
6 | end ) |
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!