How to use Video Ads?
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:
01 | plr = game.Players.LocalPlayer |
02 | game:GetService( "AdService" ).VideoAdClosed:connect( function (shown) |
04 | plr.Tuudbucks.Value = plr.Tuudbucks.Value + 2 |
05 | script.Parent.Parent.Parent.Thanks.Visible = true |
07 | local thank = script.Parent.Parent.Parent.Thanks |
09 | local cur = thank.TextLabel |
11 | cur.Text = "Ad not shown. You may only watch 5 ads per hour." |
16 | script.Parent.MouseButton 1 Click:connect( function () |
17 | if plr:FindFirstChild( "Alive" ).Value = = false then |
18 | script.Parent.Parent.Visible = false |
19 | game:GetService( "AdService" ):ShowVideoAd() |
21 | local tx = script.Parent.Parent.TextLabel.Text |
22 | script.Parent.Parent.TextLabel.Text = "You cannot watch an ad while you're in a game!" |
23 | script.Parent.Parent.TextLabel.Text = tx |