This script is in a local script in starter gui.
game.Workspace.CurrentCamera.CameraType = "Scriptable" game.Workspace.CurrentCamera.CameraType = CFrame.new(18.1, 161.7, 34)
Sorry that this is such a basic quesiton.
Your help is much appreciated :)
game.Workspace.CurrentCamera.CameraType = CFrame.new(18.1, 161.7, 34)
CameraType isn't a CFrame value. I think you mean CoordinateFrame.
--This should work game.Workspace.CurrentCamera.CoordinateFrame = CFrame.new(18.1, 161.7, 34)