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 10 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:

game.Players.PlayerAdded:connect(function(player)
while true do   
    player.CameraMode = Enum.CameraMode.LockFirstPerson
    wait()
    end
end)

Answer this question