I'm still a beginner, but I would like to know how to lock player view to first-person mode on spawn? So you can't scroll out.
You can use the PlayerAdded event, it fires when a player joins the game.
1 | game.Players.PlayerAdded:connect( function (player) |
2 | player.CameraMode = "LockFirstPersom" |
3 | end ) |
Warning: This only works on script Warning: This doesn't work on solo mode because the player is created before the script is running which means the PlayerAdded event doesn't fire