Hello everyone, I hope you are doing well. I have a relatively simple question but it has been frustrating me for a while and that is, how do you make the camera look at the ground from having a part in the air as its target? This is some of my code:
camera.CameraType = Enum.CameraType.Attach
local target = workspace.CameraFocusPart2
camera.CameraSubject = target
camera.Focus = target.CFrame
All the camera does is either show a sideways view or a view up into the air but never below. Do you know how I can make the part as the target for the camera and then using that information, make it so the camera points DOWN from the target so I can see the baseplate? Thank you.