UserInputService InputChanged doesn't fire on Keyboard inputs? [Sorta-Fixed]
I'm trying to alter my key binding code to make it use InputChanged rather than a combination of InputBegan and InputEnded to make adding new binds easier, but InputChanged seems to be only firing on MouseWheel and MouseMovement UserInputTypes, only.
01 | if not uis.TouchEnabled then |
02 | uis.InputChanged:connect( function (inst) |
03 | print (inst.UserInputType) |
04 | if inst.UserInputType = = Enum.UserInputType.Keyboard then |
05 | local key = inst.KeyCode |
06 | local fal = inst.UserInputState = = Enum.UserInputState.Begin and true or false |
08 | elseif inst.UserInputType = = Enum.UserInputType.MouseWheel then |
~~Is there any workaround for this?~~
Turns out InputBegan/Ended doesn't trigger MouseWheel or MouseMovement.
Sucks for me. :/