I use upsight (playhaven) and I load an ad when the game starts in main.lua. It takes a few seconds to load and I wondered if theres a way to get it load immediately like I have seen in other apps. This is what I do:
playhaven = require(“plugin.playhaven”)
local playhavenListener = function(event)
end
local init_options = {
token = “xxxxxxxxxxxxx”,
secret = “xxxxxxxxxxxxx”,
}
playhaven.init(playhavenListener, init_options)
playhaven.contentRequest(“interstitial”, true)