Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you make your mouse able to move in first person?

Asked by 8 years ago

Please help. I need help making my mouse able to move in first person, thanks!

1 answer

Log in to vote
0
Answered by 8 years ago

You can try this way:

game.Players.PlayerAdded:connect(function(Player)
    wait()
    Player.CameraMinZoomDistance = 2
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).

Ad

Answer this question