Hi i made an fps game. But i need help for a script that makes you first person the whole time. Could anyone please help? And send a script that makes me first person
Change the cameramode property in starterplayer from classic to lockfirstperson
Do this:
game.Players.PlayerAdded:Connect(function(p) p.CameraMode = Enum.CameraType.LockFirstPerson end)
Good day,
Firstly, I will remind you that this not a request site. No thread should ever be created on this site before you, the poster, have tried solving your problem yourself. Before posting on here, I also ask that you please do a quick google search, as you could have easily figured out how to accomplish a "FirstPerson" camera that way.
Now that that's out of the way:
If you wish to not use a script:
Navigate to the "Explorer" window, and ensure the "Properties" tab is also open
Click on the "StarterPlayer" directory
Change the "CameraMode" property to "LockFirstPerson". (Property of StarterPlayer)
Finished
Since this is a scripting site:
game.Players.PlayerAdded:Connect(function(p) p.CameraMode = Enum.CameraMode.LockFirstPerson end)
Happy learning!
Closed as Not Constructive by jediplocoon, killerbrenden, Nguyenlegiahung, ScuffedAI, and JesseSong
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?