Help with CFrame.Angles | Angles is not a valid member of CFrame

		local Left_Front = workspace:FindFirstChild("Left_Front",true)
		local x,y,z = Left_Front.CFrame:ToEulerAnglesYXZ()
		print(x,y,z)
		Left_Front.CFrame = Left_Front.CFrame.Angles(0,0,0)

OUTPUT: Angles is not a valid member of CFrame

New to CFrame.Angles any help would be greatly appreciated, thanks in advance.

You wouldn’t be able to reference

Left_Front.CFrame = Left_Front.CFrame.Angles(0, 0, 0)

if you’re trying to change the CFrame to be the position with 0, 0, 0 as the orientation. You can just do

Left_Front.CFrame = Left_Front.CFrame * CFrame.Angles(0, 0, 0)

I’m not sure what you’re trying to do, but first of all, you don’t use “.Angles”. You use “.fromEulerAnglesXYZ()” or “.fromOrientation()”.