Currently the documentation for CFrame:ToEuleranglesXYZ(), CFrame:ToEuleranglesYXZ() and CFrame:ToOrientation() is confusing. The description on all 3 functions is the same, so what is the difference? What axis are the numbers returned for?
--Which one is it?
local X, Y, Z = someCFrame:ToEuleranglesYXZ()
local Y, X, Z = someCFrame:ToEuleranglesYXZ()
Yeah it is confusing. Even more fun when you realize that the YXZ function returns as X, Y, Z format (the naming is from the fact that it would be reconstructed using the YXZ ordering).