Loading an ad but not showing it

Hi all, I have a problem, I want to load an advertisment from admob but not showing it, I want to do this because it takes 5 seconds to load for the first time an advertisment. So it will load the other ads faster.

I’m a little beginner to all c# and ads, so maybe somebody can help me with this problem

Thanks!

You load the ad when you initialize it then show it when you’r ready.

So, you can put something like:

void Start(){
Advertisement.Initialize ("Your game ID", true /* Denotes if it is in test mode or not */);
}
 
void ShowAd(){
Advertisement.Show();
}

This video will help:

Thanks for your reaction, but is it possible to change the position of the ad?

Sorry, I don’t know.

o ok,