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

How to make a game where you are always in First Person Mode?

Asked by 11 years ago

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:

1game.Players.PlayerAdded:connect(function(player)
2while true do  
3    player.CameraMode = Enum.CameraMode.LockFirstPerson
4    wait()
5    end
6end)

Answer this question