UserInputServiceBug

I want to achieve fixing this bug

There is this bug with user-input service, where if you hold shift and press 2 or 4 it does not detect the input. But it works with 1,3,5,6,7 etc

There is no solution to this bug from what I know of

local UIS = game:GetService("UserInputService")
UIS.InputBegan:connect(function(Input)
	local KeyCode = Input.KeyCode.Name
	print(KeyCode)
end)

Prints user inputs but does not work with shift+2 or shift+4

1 Like

Can someone test it out and see if its working for them?

Just tested this, and you are correct. This appears to be a bug with Roblox and not something we can help you with, so if you are able to post this under Engine Bugs, then submit it there. If not, do what I do and make a mock-up thread that you can repost to the platform feedback category when they finish their renovations.

2 Likes