im trying to enable mouse movement in fp when key pressed?
Asked by
6 years ago Edited 6 years ago
my game is based out of first person and im trying to enable mouse movement in first person when the key m is pressed and after key m is pressed again the mouse will stop movement and beome disabled heres my code
01 | local UserInputService = game:GetService( "UserInputService" ) |
05 | UserInputService.MouseIconEnabled = false |
07 | function onKeyPress(actionName, UserInputState, input 0 bject) |
08 | if UserInputState = = Enum.UserInputState.Begin then |
09 | UserInputService.MouseIconEnabled = true |
10 | UserInputService.ModalEnabled = true |
15 | game.ContextActionService:BindAction( "KeyPress" , OnKeyPress, false , Enum.KeyCode.M) |
UPDATE: the code is working now but i still cannot enable the movement of my mouse however i now have it when the mouse icon is enable it does not disable it self when clicked or it will not appear when m is pressed?
01 | local UserInputService = game:GetService( "UserInputService" ) |
02 | UserInputService.MouseIconEnabled = false |
03 | UserInputService.InputBegan:Connect( function (input) |
04 | if input.KeyCode = = Enum.KeyCode.M then |
05 | UserInputService.MouseIconEnabled = true |
there is nothing in the output currently?