#region make singletone
public static Singletone Instance { get; private set; }
void Awake()
{
if (Instance == null)
Instance = this;
else if (Instance != this)
Destroy(gameObject);
DontDestroyOnLoad(this.gameObject);
}
#endregion
singletoneScript = Singletone.Instance;