|
| 29 Mar 2014 07:45 PM |
By this I mean, I cannot currently find a working first person script on roblox.
Put it in Starter Gui, Workspace, script or local script, I tried it all.
Nothing seems to be able to change the camera settings on play mode (sure it works in solo mode).
Even if there is no script to change the camera settings, surely there must be one that can enable first person by some dubious method.
Can anyone help me? |
|
|
| Report Abuse |
|
|
jmt99
|
  |
| Joined: 27 Jul 2008 |
| Total Posts: 4799 |
|
|
| 29 Mar 2014 07:47 PM |
The camera mode is changed under game.Players.PLAYER.CameraMode
So
game.Players.PLAYER.CameraMode = "LockFirstPerson"
I don't know why they do not work.
Follow me? @That2008er |
|
|
| Report Abuse |
|
|
| |
|
| |
|
jmt99
|
  |
| Joined: 27 Jul 2008 |
| Total Posts: 4799 |
|
|
| 29 Mar 2014 07:51 PM |
...
I was referring to the player that has First Person enabled...
How is this?
game.Players.THEPLAYERTHATYOUARECHANGING.CameraMode = "LockFirstPerson"
Follow me? @That2008er |
|
|
| Report Abuse |
|
|
Usering
|
  |
| Joined: 18 Aug 2012 |
| Total Posts: 10281 |
|
|
| 29 Mar 2014 07:51 PM |
LocalScript in PlayerGui
wait() player = game.Players.LocalPlayer player.CameraMode = "Classic" wait() player.CameraMode = "LockFirstPerson" |
|
|
| Report Abuse |
|
|
jmt99
|
  |
| Joined: 27 Jul 2008 |
| Total Posts: 4799 |
|
|
| 29 Mar 2014 07:53 PM |
Put a local script in the Starter Gui.
Put this in it.
game.Players.LocalPlayer.CameraMode = "LockFirstPerson"
If it doesn't work, I don't know, it should.
Follow me? @That2008er |
|
|
| Report Abuse |
|
|
Usering
|
  |
| Joined: 18 Aug 2012 |
| Total Posts: 10281 |
|
|
| 29 Mar 2014 07:54 PM |
@jmt, I posted a working fix.
LockFirstPerson is glitchy when you die so when you spawn, it's changing to to Classic then LockFirstPerson.
Also, I meant to say LocalScript in StarterGui. |
|
|
| Report Abuse |
|
|
|
| 29 Mar 2014 07:55 PM |
@usering
Thank you, I have been searching for at least 3 days for this.
Thanks :D |
|
|
| Report Abuse |
|
|