private void Start()
 {
     if (photonView.IsMine)
     {
         Local = this;
     }
 }
 private void Start()
 {
     if (IsOwnerClient)
     {
         Local = this;
     }
 }
 public override void OnStartLocalPlayer()
 {
     Local = this;
 }