Reproduction Steps
Run this in a LocalScript and press PageUp and PageDown:
local UserInputService = game:GetService("UserInputService")
UserInputService.InputBegan:Connect(function(Input,GPE)
print ("InputBegan", Input.KeyCode)
end)
UserInputService.InputChanged:Connect(function(Input, GPE)
print ("InputChanged", Input.KeyCode)
end)
-- InputEnded
UserInputService.InputEnded:Connect(function(Input)
print ("InputEnded", Input.KeyCode)
end)
Expected Behavior
UserInputService might recognize both keys, since they are listed on KeyCode | Roblox Creator Documentation
Actual Behavior
The camera view is moving up and down
Issue Area: Engine
Issue Type: Other
Impact: High
Frequency: Constantly
colbert2677
(ImagineerColbert)
#2
Can’t reproduce. Have you considered that one of your scripts might be sinking input on these keys?
1 Like
I don’t know what can be creating this problem in my game.
I’m trying with someone else here:
system
(system)
Closed
#4
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.