of     1   

phoenix53124
#139851458Thursday, July 10, 2014 6:31 AM GMT

I'm trying to put the camera in birds eye behind the player at part c1, and the camera has to focus on part tbl (the table). When I try it, it isn't even close. tbl = game.Workspace.TableTop c1 = game.Workspace.CamPart1 c2 = game.Workspace.CamPart2 cam = workspace.CurrentCamera cam.CameraType = Enum.CameraType.Scriptable cam.CameraSubject = tbl cam.CoordinateFrame = CFrame.new(c1.Position) cam.Focus = CFrame.new(tbl.Position)
MHebes
#139851596Thursday, July 10, 2014 6:33 AM GMT

I don't think CameraSubject will do anything, and I'm not entirely sure Focus will either... Maybe try cam.CameraType = "Scriptable" -- Fun fact you can set enums with quotes cam.CoordinateFrame = CFrame.new(c1.Position, tbl.Position)
phoenix53124
#139851698Thursday, July 10, 2014 6:35 AM GMT

Thank you. And I saw the Enum specified in examples, so I didn't know if there was something special about it.
Nimblz
#139851980Thursday, July 10, 2014 6:39 AM GMT

instead of tbl.Position, use tbl.CFrame, the focus property only accepts CFrames :>
Nimblz
#139852061Thursday, July 10, 2014 6:40 AM GMT

O wait. I goofed ignore that

    of     1