Confused with Angles and Radians

  1. I’m trying to understand Angles and Radians is the part orenatation value the radian or angle?
    c39234e61c14f43ebacd1cdca0f57558

b09b7f9857f96eb034709e4d5cafa52a

  1. I tried to go on the devhub and look at math.rad and Cframe but it just wouldnt give me a answer, I even looked up a math tutorial to find about angles and radians.
1 Like

Orientation is given in degrees. The CFrame | Roblox Creator Documentation constructor takes radians e.g CFrame.Angles(radianX, radianY, radianZ). math.rad is used to convert degrees into radians e.g,
CFrame.Angles(math.rad(45), math.rad(90), math.rad(180).