void OnTriggerEnter2D(Collider2D col)
 {
     if (col.gameObject.tag == "endPoint")
     {
         rS.ReSpawn();
     }
 }