UserInputService.InputBegan issue with Shift + 2 or 4

As title says, the UIS event, InputBegan does not detect Shift + 2 or 4. However, any other number works with shift.

Here is a simple script that I tested:

local player = game.Players.LocalPlayer
local character = player.Character or player.CharacterAdded:Wait()
local InputService = game:GetService("UserInputService")

InputService.InputBegan:Connect(function(input)
	print('test')
end)

I noticed the issue in a bigger script so I tested with a much simpler local script in StarterCharacterScripts.

Is this a roblox engine bug or wot?

the issue only occurs in studio.
in game, it wont occur.

1 Like

Oh I should have thought of checking in game. Thanks!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.