Please help. I need help making my mouse able to move in first person, thanks!
You can try this way:
1 | game.Players.PlayerAdded:connect( function (Player) |
2 | wait() |
3 | Player.CameraMinZoomDistance = 2 |
4 | end ) |
What this script does is to set the Minimum zoom distance of each new players to 2 (which is the minimum value from which the mouse can move). However, the player's character won't turn to the mouse position in first person view by doing this).