How do I make the camera look at the ground/baseplate?

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.

You can do this:

local target = workspace.CameraFocusPart2	
local camera = workspace.CurrentCamera

camera.CameraType = Enum.CameraType.Scriptable
camera.CFrame = target.CFrame

make sure the front of the target part is facing towards the baseplate

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.