1 | cam = game.Workspace.CurrentCamera |
2 |
3 | cam.CameraType = Enum.CameraType.Scriptable |
4 | 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)
1 | local target = workspace.Part |
2 | local camera = workspace.CurrentCamera |
3 | camera.CameraType = Enum.CameraType.Scriptable |
4 | camera.CameraSubject = target |
You had a couple syntax errors. Hope this helps. :)