cam = game.Workspace.CurrentCamera cam.CameraType = Enum.CameraType.Scriptable cam.CFrame = game.Workspace.CamHere.CFrame
this is all in a local script in starter gui, non-FE but it does not seem to work and no output errors are given.
Here is what your problem is: You are: a) you have it in starter pack, it needs to be in starter guy, and b)
local target = workspace.Part local camera = workspace.CurrentCamera camera.CameraType = Enum.CameraType.Scriptable camera.CameraSubject = target
You had a couple syntax errors. Hope this helps. :)