I made a lock first person script but itwont work why?
1 | game.Players.LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson |
ServerScriptService.FP Script:1: attempt to index field 'LocalPlayer' (a nil value)
Make a local script and place it in the StarterGui. Then write this script.
1 | player = game.Players.LocalPlayer |
2 | player.CameraMode = "LockFirstPerson" |
That should lock your player into first person.