CFrame not rotating the correct way

I am not an expert with rotating with CFrame angles at all, and I have an issue. I would like these wheels to rotate left/right but instead it’s rotating the wrong way. How do I fix this?

	for deg = 0, 60, incr do
		script.Parent.Parent.Parent.Wheels.FL.CFrame = CFrame.new(script.Parent.Parent.Parent.Wheels.FL.Position) * CFrame.Angles(0, 0, math.rad(deg))
		script.Parent.Parent.Parent.Wheels.FR.CFrame = CFrame.new(script.Parent.Parent.Parent.Wheels.FR.Position) * CFrame.Angles(0, 0, math.rad(deg))
end

just change deg to -deg

CFrame.Angles(0, 0, math.rad(-deg))