|
| 28 Jul 2014 01:23 AM |
my first person script does not work once you die.
wait() game.Players.LocalPlayer.CameraMode = "LockFirstPerson" |
|
|
| Report Abuse |
|
|
|
| 28 Jul 2014 01:24 AM |
wait() game.Players.LocalPlayer.CameraMode="Classic" wait() game.Players.LocalPlayer.CameraMode = "LockFirstPerson"
MomoiroCloverZ, newbag expert Lua coder. |
|
|
| Report Abuse |
|
|
BLOXLUA
|
  |
| Joined: 16 Mar 2013 |
| Total Posts: 453 |
|
|
| 28 Jul 2014 01:24 AM |
game.Players.LocalPlayers.Camera="Classic" game.Players.LocalPlayers.Camera="LockFirstPerson"
--#sweayololy |
|
|
| Report Abuse |
|
|
|
| 28 Jul 2014 01:33 AM |
| Ok that worked thanks guys |
|
|
| Report Abuse |
|
|
|
| 28 Jul 2014 01:48 AM |
function waitForChild(parent, childName) local child = parent:findFirstChild(childName) if (child) then return child end while true do child = parent.ChildAdded:wait() if (child.Name == childName) then return child end end return nil end
waitForChild(game.Players.LocalPlayer, "Torso")
Use this to make sure the player is here. |
|
|
| Report Abuse |
|
|