VPF adjustments

I don’t know much about CFrames and adjustments. I want the object view to be adjusted in the VPF, but it’s getting on the back.

I don’t know what CFrame properties I can add or remove from the code to adjust the view

camera.CFrame = hatClone.CFrame * CFrame.new(0,0,hatClone.Size.z * 1.5)

Not sure what you’re wanting to do, apart from moving the Camera’s CFrame to the Z’s position?

camera.CFrame = CFrame.new(Vector3.new(0, 0, hatClone.Size.z * 1.5))

with the settings I left on top of it, it’s getting viewing the back . I want to show the front

image . I

You could use CFrame.lookAt to make it look at the hat

Something like:

camera.CFrame = CFrame.lookAt((hatClone.CFrame * CFrame.new(0, 0, -hatClone.Size.Z * 1.5)).Position, hatClone.Position)