Как переместить объект с помощью AddForce

using UnityEngine;

void Start(){
  rb.GetComponent<Rigidbody2d>.AddForce(Vector2.left);
}
Fierce Falcon