|
| 22 Jul 2015 01:18 PM |
| I need a script that will make all players in a game go into first person mode. |
|
|
| Report Abuse |
|
|
TimeTicks
|
  |
| Joined: 27 Apr 2011 |
| Total Posts: 27115 |
|
|
| 22 Jul 2015 01:19 PM |
In StarterPlayer there is a toggle called MaxCameraZoomDistance and MinCameraZoomDistance. You should know which is which based on the name. If you don't want them all in first person all the time then do this
for i,v in next, game.Players:GetPlayers() do v.CameraMaxZoomDistance = 0 v.CameraMinZoomDistance = 0 end
"Talk is cheap. Show me the code." - Linus Torvalds |
|
|
| Report Abuse |
|
|
OzzyFin
|
  |
| Joined: 07 Jun 2011 |
| Total Posts: 3600 |
|
|
| 22 Jul 2015 01:19 PM |
| just change the CameraType in StarterPlayer to lockfirstperson |
|
|
| Report Abuse |
|
|
| |
|