// Update is called once per frame
 void Update()
 {
     if (Input.GetKeyDown(key) && isSelected && isColliding)
     {
         //Show hit message
         select(false);
         //tell manager to select a new cube
         controller.SelectCube(gameObject);
     }
 }