private void OnTriggerEnter(Collider collision)
 {
     if (collision.gameObject.tag == "ball")
     {
         ballcontroller.Boost();
     }
 }