void Awake ()
	{
		if (instance == null)
		{
			instance = this;
			DontDestroyOnLoad(gameObject);
		}
		else
		{
			Destroy(gameObject);
			return;
		}
	}
 void Awake()
 {
     interstitialBuilder = InterstitialBuilder.Instance;
 }