I tried but I cant seem to find a way trying to rotate only 90 degrees but without for or while loop here's my code I been using:
1 | NewMask:SetPrimaryPartCFrame(NewMask:GetPrimaryPartCFrame()* CFrame.fromEulerAnglesXYZ( 90 , 0 , 0 )) |
You could use CFrame.Angles?
1 | NewMask:SetPrimaryPartCFrame(NewMask:GetPrimaryPartCFrame() * CFrame.Angles(math.rad( 90 ), 0 , 0 )) |