I have made a script that lets you see in first person when you play solo. However it doesn't work when you start a server or play the actual game. Can anybody help?
This is the code I used:
1 | game.Players.PlayerAdded:connect( function (player) |
2 | while true do |
3 | player.CameraMode = Enum.CameraMode.LockFirstPerson |
4 | wait() |
5 | end |
6 | end ) |