I was trying to make a part rotate 180 times but it gives me this error
1 | for i = 1 , 180 do |
2 | player [ "Right Arm" ] .CFrame = CFrame.Angles() + Vector 3. new( 0 , 0.1 , 0 ) |
3 | wait () |
4 | end |
the error is Missing 3 arguments or nil. Please help
Here ya go. You can just move math.rad to the other arguments if what I gave isn't on the right axis you want to rotate by.
1 | for i = 1 , 180 do |
2 | player [ "Right Arm" ] .CFrame = player [ "Right Arm" ] .CFrame * CFrame.Angles( 0 ,math.rad(i), 0 ) |
3 | wait () |
4 | end |