Как добавить жесткое тело в качестве переменной

public Rigidbody rigid;

void Start() {
  rigid = GetComponent<Rigidbody> ();
}
Brainy Bison