|
| 20 Jul 2014 01:56 PM |
attempt of a first person lock script was made a localscript and put into startergui why wont it work ingame and only in play solo?
local plr = game.Players.LocalPlayer local cam = game.Workspace.CurrentCamera local chr = nil
chr = character plr.CameraMode = "LockFirstPerson"
while false do wait() cam.CameraType = 0 cam.CoordinateFrame = CFrame.new (200,10,0) cam.Focus = CFrame.new (200,7,500) cam.FieldOfView = 20
end
i've tried several models from the catalog and duplicated the instructions perfectly and it has the same result: only works in test mode as opposed to it not working ingame is there a new property for camera or something? |
|
|
| Report Abuse |
|
|
|
| 20 Jul 2014 02:13 PM |
bump
get the shotgun, i'll handle this |
|
|
| Report Abuse |
|
|
| |
|
mew903
|
  |
| Joined: 03 Aug 2008 |
| Total Posts: 22071 |
|
|
| 20 Jul 2014 02:32 PM |
Several things work in play solo that aren't supposed to online. It might be a network issue, or maybe the objects in the server didn't load as fast as the objects on your local network when you run play solo.
Also, you might need to set the CameraType to Scriptable in order for this to work. I've never went too in-depth with camera manipulation but every time I've tried I remember needing to do that. |
|
|
| Report Abuse |
|
|