rotation is a vector3 meaning if you wanted to check it you'd do something like:
if workspace.Part.Rotation >= Vector3.new(0,180,0) then
alternatively, you can make the statement based on a specific axis of rotation (x,y or z)
if workspace.Part.Rotation.Y >= 180 then
and so on |