Idk how to make a person to go to first person when they first make a game
-- Declaration Section local player = game:GetService("Players").LocalPlayer local isFirstPerson = false -- Processing Section print ("Changing to First Person Mode!") player.CameraMode = "LockFirstPerson" player.CameraMaxZoomDistance = 0.5 print ("First Person Mode Initialized!") isFirstPerson = true
And that's basically it.
You shouldn't need any scripting for this. All you have to do is open the Explorer and Properties with View tab>Explorer
and View tab>Properties
. Then, select the StarterPlayer in the explorer window, and its properties should appear in the properties window. Find the property called CameraMode and set it to LockFirstPerson instead of Classic.