I have been trying to add First person mode to my game. But it just cannot work. I tried putting the local script in StarterGUI but doesn't work Here's the code:
game.Players.LocalPlayer.CameraMode = "Classic" game.Players.LocalPlayer.CameraMode = "LockFirstPerson"
There is a Settings in StarterPlayer
where you can control the Zoom in and Zoom out, or you can just switch it to FPS mode in the CameraMode
. If you want to Limit a Players Zoom-Out you can change the settings in the StarterPlayer or use this Example Script:
game.StarterPlayer.CameraMaxZoomDistance=0.5--Original was 400 game.StarterPlayer.CameraMinZoomDistance=0.5--Make this a Script! -- or this way game.StarterPlayer.CameraMode="LockFirstPerson"
NOTE: You do not have to use this script, Just change the Settings in StarterPlayer
LAYOUT: http://prntscr.com/6m7uxc
if this Helped please Upvote and Accept answer !
You don't need to script it. Just open Explorer>StarterPlayer
(Click Starterplayer
ONCE)>Properties>CameraMode
change from Classic
To FirstPersonLock
.
You don't even need to script it anymore
Locked by BSIncorporated, adark, and EzraNehemiah_TF2
This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.
Why was this question closed?