void Awake()
 {
     if (current == null)
         current = this;
     else if(current != this)
         Destroy (gameObject);
 }
 void Start()
 {
     if (current == null)
         current = this;
     else if(current != this)
         Destroy (gameObject);
     move = false;
 }