Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to use Video Ads?

Asked by 9 years ago

I've been attempting to implement video ads into my game, and I can't quite get the VideoAdClosed event to function properly. The idea is, someone joins the game and is eligible to watch an ad. They can click a GUI, and watch an advertisement to earn 2 in-game currency. The problem is this; After someone viewed an ad, the script claims they didn't watch it. When they didn't watch it(they'd already watched 5 ads in that hour,) it also claimed they didn't see the ad. I need the script to differentiate between when someone actually watched the ad, and when they didn't. Here's the code:

01plr = game.Players.LocalPlayer
02game:GetService("AdService").VideoAdClosed:connect(function(shown)
03    if shown then
04        plr.Tuudbucks.Value = plr.Tuudbucks.Value + 2
05        script.Parent.Parent.Parent.Thanks.Visible = true
06    else
07        local thank = script.Parent.Parent.Parent.Thanks
08        thank.Visible = true
09        local cur = thank.TextLabel
10        local te = cur.Text
11        cur.Text = "Ad not shown. You may only watch 5 ads per hour."
12        wait(3)
13        cur.Text = te
14        end
15end)
View all 25 lines...
0
You do know that video ads only show on mobile devices, right? yumtaste 476 — 9y
0
Yes, I am aware of this. To test this I've been using my NBC mobile device. Furthermore, there is a separate script allowing only NBC mobile device users to see the GUI. Toadboyblue 67 — 9y
0
So, the ad shows, and the player doesn't get their money? yumtaste 476 — 9y
0
The ad shows, and it runs lines 7-14. Toadboyblue 67 — 9y

Answer this question