UserInputService problem when "inputting" a mouse button, any fix/alternative?
Asked by
5 years ago Edited 5 years ago
So my problem is this: When a mouse button is pressed and recorded by way of "UserInputService", it's KeyCode is returns as "Enum.KeyCode.Unknown".
Now, it returning that whenever, say, right mouse button is clicked is fine, the problem is that it returns that for any/all mouse buttons!
So, is there a way to properly return the KeyCode for mouse buttons with "UserInputService"?
If not, what's the best alternative way to get the mouse button clicked?
(preferably in Enum.KeyCode format)
Here's some code:
2 | local Input_Service = game:GetService( "UserInputService" ) |
4 | Input_Service.InputBegan:Connect( function (input) |
I hope this helps,
Thanks.