How to Lock First Person View in a Roblox Game using Roblox Studio
Contents
If you would like to force your Roblox Game to always be in the first person view, you can do so by adding a LocalScript to the StarterPlayerScripts service.
Here is how you can do it:
-
Open Roblox Studio.
-
Go to View > Explorer > StarterPlayer
-
Go to and click on StarterPlayerScripts
-
Right click select
insert object
-
Select
LocalScript
option, theScript
option will not work with the following.
Add the following to the new LocalScript
local Players = game:GetService("Players")
local player = Players.localPlayer
player.CameraMode = Enum.CameraMode.LockFirstPerson