What is a good driver for OT-RK-390 motor?

Hi,
I bought new parts and got time and tried continue my project but the motor is working couple second and stops. Is this right code for use? How can I do reverse?

#include <Servo.h>

Servo esc;

void setup() {
  esc.attach(9); //ESC Pin
}

void loop() {
 
  esc.write(50);
}