def Robot_Right_Round(): # This code defines choreographed movements # for the opening to "Right Round" by Flo-Rida. # By Stephen Smith forward(1,.18) wait(.18) forward(1,.18) wait(.18) backward(1,.18) wait(.18) backward(1,.18) wait(.18) turnRight(1,.18) wait(.18) turnRight(1,.18) wait(.18) turnLeft(1,.18) wait(.18) turnLeft(1,.18) wait(.18) forward(1,.18) wait(.18) forward(1,.18) wait(.18) backward(1,.18) wait(.18) backward(1,.18) wait(.18) turnRight(1,1.3) wait(.1) motors(0,1) wait(2.6) stop() wait(.1) motors(1,0) wait(2.8) stop() turnLeft(1,1.3) # End Code