Arduino & Continous Rotation Servos

Not sure, if I understand your question, but I spot an error could cause
"hang-up":

void setup() {
  motor.attach(9);
  for(int t=0;t<=3000;t += 1000){   // <-  "=" sign is missing
    motor.write(80);
  }
}
void loop(){
}