of     1   

1Juice1
#140600751Thursday, July 17, 2014 5:13 AM GMT

I'm new to ROBLOX, and I can't figure out why this doesn't work. Nothing in the output, it just doesn't happen. I have this code placed inside a localscript inside the player's StarterGui: game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson What am I doing wrong? Is there something i'm forgetting?
Fidgeting
#140601168Thursday, July 17, 2014 5:16 AM GMT

starterpack
thejonathann
#140601208Thursday, July 17, 2014 5:17 AM GMT

wait(2) game:GetService('Players').LocalPlayer.CameraMode = Enum.CameraMode.LockFirstPerson try that
Fidgeting
#140601326Thursday, July 17, 2014 5:18 AM GMT

'wait(2)' LOLOLOL you only added a wait time. no differences
1Juice1
#140601349Thursday, July 17, 2014 5:18 AM GMT

Thanks! Testing it now.
BLOXLUA
#140601480Thursday, July 17, 2014 5:19 AM GMT

game.Players.LocalPlayer.CameraMode="Classic" game.Players.LocalPlayer.CameraMode="LockFirstPerson" --Works for me like this.
1Juice1
#140602081Thursday, July 17, 2014 5:24 AM GMT

Problem solved! Using this code inside Localscript in StarterPack fixed it: wait(2) game.Players.LocalPlayer.CameraMode="Classic" game.Players.LocalPlayer.CameraMode="LockFirstPerson"
Fidgeting
#140602166Thursday, July 17, 2014 5:25 AM GMT

you could've just used your original code and have placed the localscript in starterpack lol
1Juice1
#140602385Thursday, July 17, 2014 5:27 AM GMT

Probably, but it turns out I need to let it wait a second or two to let the camera load on slower computers (Really bad pc) or something like that. Dunno, but thanks for the help!
Fidgeting
#140602489Thursday, July 17, 2014 5:28 AM GMT

well, i don't have those problems, so i never use wait() times just for a script to start doing its business.

    of     1