Camera not tweening with character smoothly

For some reason,. when I tween my character, the camera is very shaky and it’s incredibly irritating to the eyes
ezgif.com-gif-maker (13)

Camera.CameraType = Enum.CameraType.Custom
	Camera.CameraSubject = Player.Character.Humanoid
	Camera.FieldOfView = 70
	
	Player.Character.HumanoidRootPart.Anchored = false
	Player.Character.Humanoid.PlatformStand = false
	Player.Character.HumanoidRootPart.Running.Volume = 0.65
	Player.Character.Humanoid.JumpPower = 50
	
	local TweenUp = TweenService:Create(
		Player.Character.HumanoidRootPart, 
		TweenInfo.new(
			0.5,
			Enum.EasingStyle.Linear
		), 
		{
			CFrame = CFrame.new(position + Vector3.new(0, Player.Character.Humanoid.HipHeight + 15, 0))
		}
	)
	TweenUp:Play()
	TweenUp.Completed:Wait()