CameraOffset Jittery

CameraOffset is very jittery. I know there’s other topics about this, and they say it’s been fixed by Roblox, but this issue still occurs for me. Are there any alternatives or fixes?

Show video/screenshots/code, it’s difficult to debug without seeing anything.

Can you provide some more info:

I’m using this to set the camera to be at the edge of the torso so my movement system looks realistic (in real life, you would not be able to see the inside of the neck)

while task.wait() do
			local torsoOffset = Character.HumanoidRootPart.CFrame:PointToObjectSpace(Character.Torso.NeckAttachment.WorldPosition+Character.Torso.NeckAttachment.WorldCFrame.LookVector*1.25)
			torsoOffset = Vector3.new(torsoOffset.X,0,torsoOffset.Z)
			
			Character.Humanoid.CameraOffset = Lerp(Character.CameraOffset.Value+DefaultOffset,Character.CameraOffset.Value+DefaultOffset-torsoOffset,0.1/2)
		end

however, when I move my camera around in first person, it jitters.

I think this is because of Humanoid.AutoRotate, I had the exact same problem in my realistic game for a year.

What is the fix for this issue?

Humanoid.AutoRotate = false