Roblox Custom Ads

Randomize every custom ad slot image on Roblox Home, GameDetail, Profile, etc.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Roblox Custom Ads
// @namespace    http://tampermonkey.net/
// @version      2.2
// @description  Randomize every custom ad slot image on Roblox Home, GameDetail, Profile, etc.
// @match        https://www.roblox.com/*
// @run-at       document-idle
// @grant        GM_setValue
// @grant        GM_getValue
// @grant        GM_registerMenuCommand
// @grant        GM_getResourceURL

// @resource     AdSenseSky1 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/download.jpg
// @resource     AdSenseSky2 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/download.png
// @resource     AdSenseSky3 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/download%20(4).png
// @resource     AdSenseSky4 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads1.png
// @resource     AdSenseSky5 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads2.png
// @resource     AdSenseSky6 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads9.png
// @resource     AdSenseSky7 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads10.png
// @resource     AdSenseSky8 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads11.png

// @resource     AdSenseBanner1 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/download.jfif
// @resource     AdSenseBanner2 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads3.png
// @resource     AdSenseBanner3 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads12.png
// @resource     AdSenseBanner4 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads13.png
// @resource     AdSenseBanner5 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads14.png

// @resource     AdSenseSquare1 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads4.png
// @resource     AdSenseSquare2 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads5.png
// @resource     AdSenseSquare3 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads6.png
// @resource     AdSenseSquare4 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads7.png
// @resource     AdSenseSquare5 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads8.png
// @resource     AdSenseSquare6 https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Ads8%20(1).png

// @resource     RobuxSky https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/roblox_robux_ads_by_aquaticks_dbk3ymy-fullview.jpg
// @resource     RobuxBanner https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/Robux%20Ads.png
// @resource     StudioBanner https://raw.githubusercontent.com/SinisterZombie/Roblox-custom-ads/refs/heads/main/RobloxStudioAds.png


// @license      MIT
// ==/UserScript==

;(function() {
  'use strict';

  // ==========================================
  // DEBUGGING & POSITIONING
  // ==========================================
const FORCE_100_PERCENT_ADSENSE = false;

let adSenseEnabled = GM_getValue("enableFakeAdSense", true);
let adSenseChance = GM_getValue("adSenseChance", 20);

  // This physically pushes the left ad down if it tries to overlap the text
  const LEFT_AD_PUSH_DOWN = 35;

  // ==========================================
  // PASTE YOUR BASE64 AD IMAGES HERE
  // ==========================================
  const BASE64_SKYSCRAPER_LIST = [
      GM_getResourceURL("AdSenseSky1"),
      GM_getResourceURL("AdSenseSky2"),
      GM_getResourceURL("AdSenseSky3"),
      GM_getResourceURL("AdSenseSky4"),
      GM_getResourceURL("AdSenseSky5"),
      GM_getResourceURL("AdSenseSky6"),
      GM_getResourceURL("AdSenseSky7"),
      GM_getResourceURL("AdSenseSky8"),
  ];

  const BASE64_BANNER_LIST = [
      GM_getResourceURL("AdSenseBanner1"),
      GM_getResourceURL("AdSenseBanner2"),
      GM_getResourceURL("AdSenseBanner3"),
      GM_getResourceURL("AdSenseBanner4"),
      GM_getResourceURL("AdSenseBanner5"),
  ];

  const BASE64_SQUARE_LIST = [
      GM_getResourceURL("AdSenseSquare1"),
      GM_getResourceURL("AdSenseSquare2"),
      GM_getResourceURL("AdSenseSquare3"),
      GM_getResourceURL("AdSenseSquare4"),
      GM_getResourceURL("AdSenseSquare5"),
      GM_getResourceURL("AdSenseSquare6"),
  ];

  // ==========================================
  // SETTINGS MENU
  // ==========================================
GM_registerMenuCommand(`Toggle AdSense (Currently: ${adSenseEnabled ? "ON" : "OFF"})`, () => {
    adSenseEnabled = !adSenseEnabled;
    GM_setValue("enableFakeAdSense", adSenseEnabled);
    location.reload();
});

GM_registerMenuCommand(`AdSense Chance: ${adSenseChance}% — Click to Change`, () => {
    const input = prompt(`Enter show percentage (0–100).\nCurrently: ${adSenseChance}%`, adSenseChance);
    if (input === null) return;
    const parsed = parseInt(input);
    if (!isNaN(parsed)) {
        const clamped = Math.min(100, Math.max(0, parsed));
        GM_setValue("adSenseChance", clamped);
        alert(`AdSense chance set to ${clamped}%. Reloading...`);
        location.reload();
    }
});

  // ==========================================
  // ALL AD SLOTS (Full List Re-Added)
  // ==========================================
  const AD_SLOTS = [
    {
      // Home Left
      type: "skyscraper",
      selector: '[data-internal-page-name="Home"] .no-gutter-ads.logged-in .content::before',
      urls: [
          'https://images.rbxcdn.com/f6873fd4b192df10f0cb0f41f6a344e7.jpg',
          'https://assetdelivery.roblox.com/v1/asset?id=113138723398702',
          'https://assetdelivery.roblox.com/v1/asset?id=73025174019301',
          'https://assetdelivery.roblox.com/v1/asset?id=97002721157706',
          'https://assetdelivery.roblox.com/v1/asset?id=85195590934985',
          'https://assetdelivery.roblox.com/v1/asset?id=72457936445835',
          'https://assetdelivery.roblox.com/v1/asset?id=70743474829424',
          'https://assetdelivery.roblox.com/v1/asset?id=97380631247517',
          'https://assetdelivery.roblox.com/v1/asset?id=81980573221383',
          'https://assetdelivery.roblox.com/v1/asset?id=88296883676756',
          'https://assetdelivery.roblox.com/v1/asset?id=100373642127707',
          'https://assetdelivery.roblox.com/v1/asset?id=105175910763803',
          'https://assetdelivery.roblox.com/v1/asset?id=119204431072744',
          'https://assetdelivery.roblox.com/v1/asset?id=75132831812587',
          'https://assetdelivery.roblox.com/v1/asset?id=74066687083002',
          'https://assetdelivery.roblox.com/v1/asset?id=93189706304460',
          'https://assetdelivery.roblox.com/v1/asset?id=89549465980145',
          'https://assetdelivery.roblox.com/v1/asset?id=75680442716785',
          'https://assetdelivery.roblox.com/v1/asset?id=139985752690955',
          'https://assetdelivery.roblox.com/v1/asset?id=78978094938137',
          'https://assetdelivery.roblox.com/v1/asset?id=123344004991407',
          'https://assetdelivery.roblox.com/v1/asset?id=115936106041083',
          'https://assetdelivery.roblox.com/v1/asset?id=85585784489966',
          'https://assetdelivery.roblox.com/v1/asset?id=138148795389705',
          'https://assetdelivery.roblox.com/v1/asset?id=113245894519540',
          'https://assetdelivery.roblox.com/v1/asset?id=127210851016493',
          'https://assetdelivery.roblox.com/v1/asset?id=103567704584641',
          'https://assetdelivery.roblox.com/v1/asset?id=78858437414970',
          'https://assetdelivery.roblox.com/v1/asset?id=79899638192493',
          'https://assetdelivery.roblox.com/v1/asset?id=130881831286603',
          'https://assetdelivery.roblox.com/v1/asset?id=84496326974569',
          'https://assetdelivery.roblox.com/v1/asset?id=105136982349166',
          'https://assetdelivery.roblox.com/v1/asset?id=135398565265708',
          'https://assetdelivery.roblox.com/v1/asset?id=86791081016930',
          'https://assetdelivery.roblox.com/v1/asset?id=103397563326554',
          'https://assetdelivery.roblox.com/v1/asset?id=109473734631070',
          'https://assetdelivery.roblox.com/v1/asset?id=70656698129368',
          'https://assetdelivery.roblox.com/v1/asset?id=117810676278564',
          'https://assetdelivery.roblox.com/v1/asset?id=103053307488968',
          'https://assetdelivery.roblox.com/v1/asset?id=100816343929373',
          'https://assetdelivery.roblox.com/v1/asset?id=122417263706730',
          'https://assetdelivery.roblox.com/v1/asset?id=102004764917180',
          'https://assetdelivery.roblox.com/v1/asset?id=77150590026504',
          'https://assetdelivery.roblox.com/v1/asset?id=108351361428468',
          'https://assetdelivery.roblox.com/v1/asset?id=133877142542190',
          'https://assetdelivery.roblox.com/v1/asset?id=73415647455916',
          'https://assetdelivery.roblox.com/v1/asset?id=136337515591774',
          'https://assetdelivery.roblox.com/v1/asset?id=118004755658599',
          'https://assetdelivery.roblox.com/v1/asset?id=123508558341274',
          'https://assetdelivery.roblox.com/v1/asset?id=106672756929373',
          'https://assetdelivery.roblox.com/v1/asset?id=101607647019424',
          'https://assetdelivery.roblox.com/v1/asset?id=120086068828038',
          'https://assetdelivery.roblox.com/v1/asset?id=115460664994154',
          'https://assetdelivery.roblox.com/v1/asset?id=131917992769215',
          'https://assetdelivery.roblox.com/v1/asset?id=118702156458726',
          'https://assetdelivery.roblox.com/v1/asset?id=89266518061781',
          'https://assetdelivery.roblox.com/v1/asset?id=108668027772911',
          'https://assetdelivery.roblox.com/v1/asset?id=96062228065214',
          'https://assetdelivery.roblox.com/v1/asset?id=73406860366593',
          'https://assetdelivery.roblox.com/v1/asset?id=103603128502160',
          'https://assetdelivery.roblox.com/v1/asset?id=125827329772808',
          'https://assetdelivery.roblox.com/v1/asset?id=98709657509067',
          'https://assetdelivery.roblox.com/v1/asset?id=107565458147279',
          'https://assetdelivery.roblox.com/v1/asset?id=130649177209714',
          'https://assetdelivery.roblox.com/v1/asset?id=127908907098897',
          'https://assetdelivery.roblox.com/v1/asset?id=79163854792479',
          'https://assetdelivery.roblox.com/v1/asset?id=117015173140088',
          'https://assetdelivery.roblox.com/v1/asset?id=70880091530699',
          'https://assetdelivery.roblox.com/v1/asset?id=107528012873842',
          'https://assetdelivery.roblox.com/v1/asset?id=122927718288920',
          'https://assetdelivery.roblox.com/v1/asset?id=114168067990307',
          'https://assetdelivery.roblox.com/v1/asset?id=136885172876604',
          'https://assetdelivery.roblox.com/v1/asset?id=74893251607341',
          'https://assetdelivery.roblox.com/v1/asset?id=105014267648648',
          'https://assetdelivery.roblox.com/v1/asset?id=78415275606165',
          'https://assetdelivery.roblox.com/v1/asset?id=78573038098763',
          'https://assetdelivery.roblox.com/v1/asset?id=114920521828263',
          'https://assetdelivery.roblox.com/v1/asset?id=128215372585395',
          'https://assetdelivery.roblox.com/v1/asset?id=313468953',
          //2017 Ads
          'https://assetdelivery.roblox.com/v1/asset?id=87461128608478',
          'https://assetdelivery.roblox.com/v1/asset?id=78560860960212',
          'https://assetdelivery.roblox.com/v1/asset?id=113054819959400',
          'https://assetdelivery.roblox.com/v1/asset?id=108761011747286',
          'https://assetdelivery.roblox.com/v1/asset?id=128898026869532',
          'https://assetdelivery.roblox.com/v1/asset?id=138196946763335',
          'https://assetdelivery.roblox.com/v1/asset?id=76509980975452',
          'https://assetdelivery.roblox.com/v1/asset?id=70401643111408',
          'https://assetdelivery.roblox.com/v1/asset?id=80135169431519',
          'https://assetdelivery.roblox.com/v1/asset?id=129839882249663',
          'https://assetdelivery.roblox.com/v1/asset?id=89800620984035',
          'https://assetdelivery.roblox.com/v1/asset?id=99441412033754',
          'https://assetdelivery.roblox.com/v1/asset?id=119304436125244',
          'https://assetdelivery.roblox.com/v1/asset?id=114051201194003',
          'https://assetdelivery.roblox.com/v1/asset?id=127538216782285',
          'https://assetdelivery.roblox.com/v1/asset?id=75491075544810',
          'https://assetdelivery.roblox.com/v1/asset?id=108157349949687',
          'https://assetdelivery.roblox.com/v1/asset?id=83532109460158',
          'https://assetdelivery.roblox.com/v1/asset?id=122180127592737',
          'https://assetdelivery.roblox.com/v1/asset?id=122569584021089',
          'https://assetdelivery.roblox.com/v1/asset?id=122205693586737',
          'https://assetdelivery.roblox.com/v1/asset?id=94277484875281',
          'https://assetdelivery.roblox.com/v1/asset?id=82177261576678',
          'https://assetdelivery.roblox.com/v1/asset?id=82282320349165',
          'https://assetdelivery.roblox.com/v1/asset?id=77208488332053',
          'https://assetdelivery.roblox.com/v1/asset?id=134787882160482',
          'https://assetdelivery.roblox.com/v1/asset?id=86609317976886',
          'https://assetdelivery.roblox.com/v1/asset?id=97376868302351',
          'https://assetdelivery.roblox.com/v1/asset?id=113054439173722',
          'https://assetdelivery.roblox.com/v1/asset?id=123071085148282',
          'https://assetdelivery.roblox.com/v1/asset?id=138043907294709',
          'https://assetdelivery.roblox.com/v1/asset?id=116475972798624',
          'https://assetdelivery.roblox.com/v1/asset?id=120592750741583',
          'https://assetdelivery.roblox.com/v1/asset?id=112188964524607',
          'https://assetdelivery.roblox.com/v1/asset?id=100770292168738',
          'https://assetdelivery.roblox.com/v1/asset?id=116395358355760',
          'https://assetdelivery.roblox.com/v1/asset?id=107782885900046',
          'https://assetdelivery.roblox.com/v1/asset?id=76460641833185',
          'https://assetdelivery.roblox.com/v1/asset?id=110655950433265',
          'https://assetdelivery.roblox.com/v1/asset?id=103397988390395',
          'https://assetdelivery.roblox.com/v1/asset?id=134960361454114',
          'https://assetdelivery.roblox.com/v1/asset?id=97837055858440',
          'https://assetdelivery.roblox.com/v1/asset?id=95358441888754',
          'https://assetdelivery.roblox.com/v1/asset?id=97005753586326',
          'https://assetdelivery.roblox.com/v1/asset?id=126195537011144',
          'https://assetdelivery.roblox.com/v1/asset?id=76494343984175',
          'https://assetdelivery.roblox.com/v1/asset?id=88207406851495',
          'https://assetdelivery.roblox.com/v1/asset?id=86873529413911',
          'https://assetdelivery.roblox.com/v1/asset?id=100546223606491',
          'https://assetdelivery.roblox.com/v1/asset?id=78196947647750',
          'https://assetdelivery.roblox.com/v1/asset?id=132872292010481',
          'https://assetdelivery.roblox.com/v1/asset?id=127556810289604',
          'https://assetdelivery.roblox.com/v1/asset?id=83365348742532',
          'https://assetdelivery.roblox.com/v1/asset?id=73668122775220',
          'https://assetdelivery.roblox.com/v1/asset?id=87358384142620',
          'https://assetdelivery.roblox.com/v1/asset?id=120452424594832',
          'https://assetdelivery.roblox.com/v1/asset?id=72830530049396',
          'https://assetdelivery.roblox.com/v1/asset?id=91522472359831',
          'https://assetdelivery.roblox.com/v1/asset?id=133418711293110',
          'https://assetdelivery.roblox.com/v1/asset?id=73396529560261',
          'https://assetdelivery.roblox.com/v1/asset?id=116337295783736',
          'https://assetdelivery.roblox.com/v1/asset?id=74590156549857',
          'https://assetdelivery.roblox.com/v1/asset?id=101097343781019',
          'https://assetdelivery.roblox.com/v1/asset?id=79533832625580',
          'https://assetdelivery.roblox.com/v1/asset?id=74159715472463',
          'https://assetdelivery.roblox.com/v1/asset?id=114405024956339',
          'https://assetdelivery.roblox.com/v1/asset?id=71009800949205',
          'https://assetdelivery.roblox.com/v1/asset?id=72265979457992',
          'https://assetdelivery.roblox.com/v1/asset?id=73227491901709',
          'https://assetdelivery.roblox.com/v1/asset?id=117967541961409',
          'https://assetdelivery.roblox.com/v1/asset?id=107954009431647',
          'https://assetdelivery.roblox.com/v1/asset?id=85584589242973',
          'https://assetdelivery.roblox.com/v1/asset?id=102819713501941',
          'https://assetdelivery.roblox.com/v1/asset?id=107997969357705',
          'https://assetdelivery.roblox.com/v1/asset?id=115370164491639',
          'https://assetdelivery.roblox.com/v1/asset?id=85959244233004',
          'https://assetdelivery.roblox.com/v1/asset?id=95815114268776',
          'https://assetdelivery.roblox.com/v1/asset?id=98168011985914',
          'https://assetdelivery.roblox.com/v1/asset?id=81085594301835',
          'https://assetdelivery.roblox.com/v1/asset?id=91389738334632',
          'https://assetdelivery.roblox.com/v1/asset?id=85005104187057',

          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
            ]
    },
    {
      // Home Right
      type: "skyscraper",
      selector: '[data-internal-page-name="Home"] .no-gutter-ads.logged-in .content::after',
      urls: [
              'https://images.rbxcdn.com/f6873fd4b192df10f0cb0f41f6a344e7.jpg',
          'https://assetdelivery.roblox.com/v1/asset?id=113138723398702',
          'https://assetdelivery.roblox.com/v1/asset?id=73025174019301',
          'https://assetdelivery.roblox.com/v1/asset?id=97002721157706',
          'https://assetdelivery.roblox.com/v1/asset?id=85195590934985',
          'https://assetdelivery.roblox.com/v1/asset?id=72457936445835',
          'https://assetdelivery.roblox.com/v1/asset?id=70743474829424',
          'https://assetdelivery.roblox.com/v1/asset?id=97380631247517',
          'https://assetdelivery.roblox.com/v1/asset?id=81980573221383',
          'https://assetdelivery.roblox.com/v1/asset?id=88296883676756',
          'https://assetdelivery.roblox.com/v1/asset?id=100373642127707',
          'https://assetdelivery.roblox.com/v1/asset?id=105175910763803',
          'https://assetdelivery.roblox.com/v1/asset?id=119204431072744',
          'https://assetdelivery.roblox.com/v1/asset?id=75132831812587',
          'https://assetdelivery.roblox.com/v1/asset?id=74066687083002',
          'https://assetdelivery.roblox.com/v1/asset?id=93189706304460',
          'https://assetdelivery.roblox.com/v1/asset?id=89549465980145',
          'https://assetdelivery.roblox.com/v1/asset?id=75680442716785',
          'https://assetdelivery.roblox.com/v1/asset?id=139985752690955',
          'https://assetdelivery.roblox.com/v1/asset?id=78978094938137',
          'https://assetdelivery.roblox.com/v1/asset?id=123344004991407',
          'https://assetdelivery.roblox.com/v1/asset?id=115936106041083',
          'https://assetdelivery.roblox.com/v1/asset?id=85585784489966',
          'https://assetdelivery.roblox.com/v1/asset?id=138148795389705',
          'https://assetdelivery.roblox.com/v1/asset?id=113245894519540',
          'https://assetdelivery.roblox.com/v1/asset?id=127210851016493',
          'https://assetdelivery.roblox.com/v1/asset?id=103567704584641',
          'https://assetdelivery.roblox.com/v1/asset?id=78858437414970',
          'https://assetdelivery.roblox.com/v1/asset?id=79899638192493',
          'https://assetdelivery.roblox.com/v1/asset?id=130881831286603',
          'https://assetdelivery.roblox.com/v1/asset?id=84496326974569',
          'https://assetdelivery.roblox.com/v1/asset?id=105136982349166',
          'https://assetdelivery.roblox.com/v1/asset?id=135398565265708',
          'https://assetdelivery.roblox.com/v1/asset?id=86791081016930',
          'https://assetdelivery.roblox.com/v1/asset?id=103397563326554',
          'https://assetdelivery.roblox.com/v1/asset?id=109473734631070',
          'https://assetdelivery.roblox.com/v1/asset?id=70656698129368',
          'https://assetdelivery.roblox.com/v1/asset?id=117810676278564',
          'https://assetdelivery.roblox.com/v1/asset?id=103053307488968',
          'https://assetdelivery.roblox.com/v1/asset?id=100816343929373',
          'https://assetdelivery.roblox.com/v1/asset?id=122417263706730',
          'https://assetdelivery.roblox.com/v1/asset?id=102004764917180',
          'https://assetdelivery.roblox.com/v1/asset?id=77150590026504',
          'https://assetdelivery.roblox.com/v1/asset?id=108351361428468',
          'https://assetdelivery.roblox.com/v1/asset?id=133877142542190',
          'https://assetdelivery.roblox.com/v1/asset?id=73415647455916',
          'https://assetdelivery.roblox.com/v1/asset?id=136337515591774',
          'https://assetdelivery.roblox.com/v1/asset?id=118004755658599',
          'https://assetdelivery.roblox.com/v1/asset?id=123508558341274',
          'https://assetdelivery.roblox.com/v1/asset?id=106672756929373',
          'https://assetdelivery.roblox.com/v1/asset?id=101607647019424',
          'https://assetdelivery.roblox.com/v1/asset?id=120086068828038',
          'https://assetdelivery.roblox.com/v1/asset?id=115460664994154',
          'https://assetdelivery.roblox.com/v1/asset?id=131917992769215',
          'https://assetdelivery.roblox.com/v1/asset?id=118702156458726',
          'https://assetdelivery.roblox.com/v1/asset?id=89266518061781',
          'https://assetdelivery.roblox.com/v1/asset?id=108668027772911',
          'https://assetdelivery.roblox.com/v1/asset?id=96062228065214',
          'https://assetdelivery.roblox.com/v1/asset?id=73406860366593',
          'https://assetdelivery.roblox.com/v1/asset?id=103603128502160',
          'https://assetdelivery.roblox.com/v1/asset?id=125827329772808',
          'https://assetdelivery.roblox.com/v1/asset?id=98709657509067',
          'https://assetdelivery.roblox.com/v1/asset?id=107565458147279',
          'https://assetdelivery.roblox.com/v1/asset?id=130649177209714',
          'https://assetdelivery.roblox.com/v1/asset?id=127908907098897',
          'https://assetdelivery.roblox.com/v1/asset?id=79163854792479',
          'https://assetdelivery.roblox.com/v1/asset?id=117015173140088',
          'https://assetdelivery.roblox.com/v1/asset?id=70880091530699',
          'https://assetdelivery.roblox.com/v1/asset?id=107528012873842',
          'https://assetdelivery.roblox.com/v1/asset?id=122927718288920',
          'https://assetdelivery.roblox.com/v1/asset?id=114168067990307',
          'https://assetdelivery.roblox.com/v1/asset?id=136885172876604',
          'https://assetdelivery.roblox.com/v1/asset?id=74893251607341',
          'https://assetdelivery.roblox.com/v1/asset?id=105014267648648',
          'https://assetdelivery.roblox.com/v1/asset?id=78415275606165',
          'https://assetdelivery.roblox.com/v1/asset?id=78573038098763',
          'https://assetdelivery.roblox.com/v1/asset?id=114920521828263',
          'https://assetdelivery.roblox.com/v1/asset?id=128215372585395',
          'https://assetdelivery.roblox.com/v1/asset?id=313468953',
          //2017 Ads
          'https://assetdelivery.roblox.com/v1/asset?id=87461128608478',
          'https://assetdelivery.roblox.com/v1/asset?id=78560860960212',
          'https://assetdelivery.roblox.com/v1/asset?id=113054819959400',
          'https://assetdelivery.roblox.com/v1/asset?id=108761011747286',
          'https://assetdelivery.roblox.com/v1/asset?id=128898026869532',
          'https://assetdelivery.roblox.com/v1/asset?id=138196946763335',
          'https://assetdelivery.roblox.com/v1/asset?id=76509980975452',
          'https://assetdelivery.roblox.com/v1/asset?id=70401643111408',
          'https://assetdelivery.roblox.com/v1/asset?id=80135169431519',
          'https://assetdelivery.roblox.com/v1/asset?id=129839882249663',
          'https://assetdelivery.roblox.com/v1/asset?id=89800620984035',
          'https://assetdelivery.roblox.com/v1/asset?id=99441412033754',
          'https://assetdelivery.roblox.com/v1/asset?id=119304436125244',
          'https://assetdelivery.roblox.com/v1/asset?id=114051201194003',
          'https://assetdelivery.roblox.com/v1/asset?id=127538216782285',
          'https://assetdelivery.roblox.com/v1/asset?id=75491075544810',
          'https://assetdelivery.roblox.com/v1/asset?id=108157349949687',
          'https://assetdelivery.roblox.com/v1/asset?id=83532109460158',
          'https://assetdelivery.roblox.com/v1/asset?id=122180127592737',
          'https://assetdelivery.roblox.com/v1/asset?id=122569584021089',
          'https://assetdelivery.roblox.com/v1/asset?id=122205693586737',
          'https://assetdelivery.roblox.com/v1/asset?id=94277484875281',
          'https://assetdelivery.roblox.com/v1/asset?id=82177261576678',
          'https://assetdelivery.roblox.com/v1/asset?id=82282320349165',
          'https://assetdelivery.roblox.com/v1/asset?id=77208488332053',
          'https://assetdelivery.roblox.com/v1/asset?id=134787882160482',
          'https://assetdelivery.roblox.com/v1/asset?id=86609317976886',
          'https://assetdelivery.roblox.com/v1/asset?id=97376868302351',
          'https://assetdelivery.roblox.com/v1/asset?id=113054439173722',
          'https://assetdelivery.roblox.com/v1/asset?id=123071085148282',
          'https://assetdelivery.roblox.com/v1/asset?id=138043907294709',
          'https://assetdelivery.roblox.com/v1/asset?id=116475972798624',
          'https://assetdelivery.roblox.com/v1/asset?id=120592750741583',
          'https://assetdelivery.roblox.com/v1/asset?id=112188964524607',
          'https://assetdelivery.roblox.com/v1/asset?id=100770292168738',
          'https://assetdelivery.roblox.com/v1/asset?id=116395358355760',
          'https://assetdelivery.roblox.com/v1/asset?id=107782885900046',
          'https://assetdelivery.roblox.com/v1/asset?id=76460641833185',
          'https://assetdelivery.roblox.com/v1/asset?id=110655950433265',
          'https://assetdelivery.roblox.com/v1/asset?id=103397988390395',
          'https://assetdelivery.roblox.com/v1/asset?id=134960361454114',
          'https://assetdelivery.roblox.com/v1/asset?id=97837055858440',
          'https://assetdelivery.roblox.com/v1/asset?id=95358441888754',
          'https://assetdelivery.roblox.com/v1/asset?id=97005753586326',
          'https://assetdelivery.roblox.com/v1/asset?id=126195537011144',
          'https://assetdelivery.roblox.com/v1/asset?id=76494343984175',
          'https://assetdelivery.roblox.com/v1/asset?id=88207406851495',
          'https://assetdelivery.roblox.com/v1/asset?id=86873529413911',
          'https://assetdelivery.roblox.com/v1/asset?id=100546223606491',
          'https://assetdelivery.roblox.com/v1/asset?id=78196947647750',
          'https://assetdelivery.roblox.com/v1/asset?id=132872292010481',
          'https://assetdelivery.roblox.com/v1/asset?id=127556810289604',
          'https://assetdelivery.roblox.com/v1/asset?id=83365348742532',
          'https://assetdelivery.roblox.com/v1/asset?id=73668122775220',
          'https://assetdelivery.roblox.com/v1/asset?id=87358384142620',
          'https://assetdelivery.roblox.com/v1/asset?id=120452424594832',
          'https://assetdelivery.roblox.com/v1/asset?id=72830530049396',
          'https://assetdelivery.roblox.com/v1/asset?id=91522472359831',
          'https://assetdelivery.roblox.com/v1/asset?id=133418711293110',
          'https://assetdelivery.roblox.com/v1/asset?id=73396529560261',
          'https://assetdelivery.roblox.com/v1/asset?id=116337295783736',
          'https://assetdelivery.roblox.com/v1/asset?id=74590156549857',
          'https://assetdelivery.roblox.com/v1/asset?id=101097343781019',
          'https://assetdelivery.roblox.com/v1/asset?id=79533832625580',
          'https://assetdelivery.roblox.com/v1/asset?id=74159715472463',
          'https://assetdelivery.roblox.com/v1/asset?id=114405024956339',
          'https://assetdelivery.roblox.com/v1/asset?id=71009800949205',
          'https://assetdelivery.roblox.com/v1/asset?id=72265979457992',
          'https://assetdelivery.roblox.com/v1/asset?id=73227491901709',
          'https://assetdelivery.roblox.com/v1/asset?id=117967541961409',
          'https://assetdelivery.roblox.com/v1/asset?id=107954009431647',
          'https://assetdelivery.roblox.com/v1/asset?id=85584589242973',
          'https://assetdelivery.roblox.com/v1/asset?id=102819713501941',
          'https://assetdelivery.roblox.com/v1/asset?id=107997969357705',
          'https://assetdelivery.roblox.com/v1/asset?id=115370164491639',
          'https://assetdelivery.roblox.com/v1/asset?id=85959244233004',
          'https://assetdelivery.roblox.com/v1/asset?id=95815114268776',
          'https://assetdelivery.roblox.com/v1/asset?id=98168011985914',
          'https://assetdelivery.roblox.com/v1/asset?id=81085594301835',
          'https://assetdelivery.roblox.com/v1/asset?id=91389738334632',
          'https://assetdelivery.roblox.com/v1/asset?id=85005104187057',

          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
      ]
    },
    {
      type: "skyscraper",
      selector: '[data-internal-page-name="GameDetail"] .content::after, [data-internal-page-name="GroupDetails"] .content::after, [data-internal-page-name="Messages"] .content::after, [data-internal-page-name="CatalogItem"] #content::after, [data-internal-page-name="BundleDetail"] #content::after',
      urls: [
          'https://images.rbxcdn.com/f6873fd4b192df10f0cb0f41f6a344e7.jpg',
          'https://assetdelivery.roblox.com/v1/asset?id=113138723398702',
          'https://assetdelivery.roblox.com/v1/asset?id=73025174019301',
          'https://assetdelivery.roblox.com/v1/asset?id=97002721157706',
          'https://assetdelivery.roblox.com/v1/asset?id=85195590934985',
          'https://assetdelivery.roblox.com/v1/asset?id=72457936445835',
          'https://assetdelivery.roblox.com/v1/asset?id=70743474829424',
          'https://assetdelivery.roblox.com/v1/asset?id=97380631247517',
          'https://assetdelivery.roblox.com/v1/asset?id=81980573221383',
          'https://assetdelivery.roblox.com/v1/asset?id=88296883676756',
          'https://assetdelivery.roblox.com/v1/asset?id=100373642127707',
          'https://assetdelivery.roblox.com/v1/asset?id=105175910763803',
          'https://assetdelivery.roblox.com/v1/asset?id=119204431072744',
          'https://assetdelivery.roblox.com/v1/asset?id=75132831812587',
          'https://assetdelivery.roblox.com/v1/asset?id=74066687083002',
          'https://assetdelivery.roblox.com/v1/asset?id=93189706304460',
          'https://assetdelivery.roblox.com/v1/asset?id=89549465980145',
          'https://assetdelivery.roblox.com/v1/asset?id=75680442716785',
          'https://assetdelivery.roblox.com/v1/asset?id=139985752690955',
          'https://assetdelivery.roblox.com/v1/asset?id=78978094938137',
          'https://assetdelivery.roblox.com/v1/asset?id=123344004991407',
          'https://assetdelivery.roblox.com/v1/asset?id=115936106041083',
          'https://assetdelivery.roblox.com/v1/asset?id=85585784489966',
          'https://assetdelivery.roblox.com/v1/asset?id=138148795389705',
          'https://assetdelivery.roblox.com/v1/asset?id=113245894519540',
          'https://assetdelivery.roblox.com/v1/asset?id=127210851016493',
          'https://assetdelivery.roblox.com/v1/asset?id=103567704584641',
          'https://assetdelivery.roblox.com/v1/asset?id=78858437414970',
          'https://assetdelivery.roblox.com/v1/asset?id=79899638192493',
          'https://assetdelivery.roblox.com/v1/asset?id=130881831286603',
          'https://assetdelivery.roblox.com/v1/asset?id=84496326974569',
          'https://assetdelivery.roblox.com/v1/asset?id=105136982349166',
          'https://assetdelivery.roblox.com/v1/asset?id=135398565265708',
          'https://assetdelivery.roblox.com/v1/asset?id=86791081016930',
          'https://assetdelivery.roblox.com/v1/asset?id=103397563326554',
          'https://assetdelivery.roblox.com/v1/asset?id=109473734631070',
          'https://assetdelivery.roblox.com/v1/asset?id=70656698129368',
          'https://assetdelivery.roblox.com/v1/asset?id=117810676278564',
          'https://assetdelivery.roblox.com/v1/asset?id=103053307488968',
          'https://assetdelivery.roblox.com/v1/asset?id=100816343929373',
          'https://assetdelivery.roblox.com/v1/asset?id=122417263706730',
          'https://assetdelivery.roblox.com/v1/asset?id=102004764917180',
          'https://assetdelivery.roblox.com/v1/asset?id=77150590026504',
          'https://assetdelivery.roblox.com/v1/asset?id=108351361428468',
          'https://assetdelivery.roblox.com/v1/asset?id=133877142542190',
          'https://assetdelivery.roblox.com/v1/asset?id=73415647455916',
          'https://assetdelivery.roblox.com/v1/asset?id=136337515591774',
          'https://assetdelivery.roblox.com/v1/asset?id=118004755658599',
          'https://assetdelivery.roblox.com/v1/asset?id=123508558341274',
          'https://assetdelivery.roblox.com/v1/asset?id=106672756929373',
          'https://assetdelivery.roblox.com/v1/asset?id=101607647019424',
          'https://assetdelivery.roblox.com/v1/asset?id=120086068828038',
          'https://assetdelivery.roblox.com/v1/asset?id=115460664994154',
          'https://assetdelivery.roblox.com/v1/asset?id=131917992769215',
          'https://assetdelivery.roblox.com/v1/asset?id=118702156458726',
          'https://assetdelivery.roblox.com/v1/asset?id=89266518061781',
          'https://assetdelivery.roblox.com/v1/asset?id=108668027772911',
          'https://assetdelivery.roblox.com/v1/asset?id=96062228065214',
          'https://assetdelivery.roblox.com/v1/asset?id=73406860366593',
          'https://assetdelivery.roblox.com/v1/asset?id=103603128502160',
          'https://assetdelivery.roblox.com/v1/asset?id=125827329772808',
          'https://assetdelivery.roblox.com/v1/asset?id=98709657509067',
          'https://assetdelivery.roblox.com/v1/asset?id=107565458147279',
          'https://assetdelivery.roblox.com/v1/asset?id=130649177209714',
          'https://assetdelivery.roblox.com/v1/asset?id=127908907098897',
          'https://assetdelivery.roblox.com/v1/asset?id=79163854792479',
          'https://assetdelivery.roblox.com/v1/asset?id=117015173140088',
          'https://assetdelivery.roblox.com/v1/asset?id=70880091530699',
          'https://assetdelivery.roblox.com/v1/asset?id=107528012873842',
          'https://assetdelivery.roblox.com/v1/asset?id=122927718288920',
          'https://assetdelivery.roblox.com/v1/asset?id=114168067990307',
          'https://assetdelivery.roblox.com/v1/asset?id=136885172876604',
          'https://assetdelivery.roblox.com/v1/asset?id=74893251607341',
          'https://assetdelivery.roblox.com/v1/asset?id=105014267648648',
          'https://assetdelivery.roblox.com/v1/asset?id=78415275606165',
          'https://assetdelivery.roblox.com/v1/asset?id=78573038098763',
          'https://assetdelivery.roblox.com/v1/asset?id=114920521828263',
          'https://assetdelivery.roblox.com/v1/asset?id=128215372585395',
          'https://assetdelivery.roblox.com/v1/asset?id=313468953',
          //2017 Ads
          'https://assetdelivery.roblox.com/v1/asset?id=87461128608478',
          'https://assetdelivery.roblox.com/v1/asset?id=78560860960212',
          'https://assetdelivery.roblox.com/v1/asset?id=113054819959400',
          'https://assetdelivery.roblox.com/v1/asset?id=108761011747286',
          'https://assetdelivery.roblox.com/v1/asset?id=128898026869532',
          'https://assetdelivery.roblox.com/v1/asset?id=138196946763335',
          'https://assetdelivery.roblox.com/v1/asset?id=76509980975452',
          'https://assetdelivery.roblox.com/v1/asset?id=70401643111408',
          'https://assetdelivery.roblox.com/v1/asset?id=80135169431519',
          'https://assetdelivery.roblox.com/v1/asset?id=129839882249663',
          'https://assetdelivery.roblox.com/v1/asset?id=89800620984035',
          'https://assetdelivery.roblox.com/v1/asset?id=99441412033754',
          'https://assetdelivery.roblox.com/v1/asset?id=119304436125244',
          'https://assetdelivery.roblox.com/v1/asset?id=114051201194003',
          'https://assetdelivery.roblox.com/v1/asset?id=127538216782285',
          'https://assetdelivery.roblox.com/v1/asset?id=75491075544810',
          'https://assetdelivery.roblox.com/v1/asset?id=108157349949687',
          'https://assetdelivery.roblox.com/v1/asset?id=83532109460158',
          'https://assetdelivery.roblox.com/v1/asset?id=122180127592737',
          'https://assetdelivery.roblox.com/v1/asset?id=122569584021089',
          'https://assetdelivery.roblox.com/v1/asset?id=122205693586737',
          'https://assetdelivery.roblox.com/v1/asset?id=94277484875281',
          'https://assetdelivery.roblox.com/v1/asset?id=82177261576678',
          'https://assetdelivery.roblox.com/v1/asset?id=82282320349165',
          'https://assetdelivery.roblox.com/v1/asset?id=77208488332053',
          'https://assetdelivery.roblox.com/v1/asset?id=134787882160482',
          'https://assetdelivery.roblox.com/v1/asset?id=86609317976886',
          'https://assetdelivery.roblox.com/v1/asset?id=97376868302351',
          'https://assetdelivery.roblox.com/v1/asset?id=113054439173722',
          'https://assetdelivery.roblox.com/v1/asset?id=123071085148282',
          'https://assetdelivery.roblox.com/v1/asset?id=138043907294709',
          'https://assetdelivery.roblox.com/v1/asset?id=116475972798624',
          'https://assetdelivery.roblox.com/v1/asset?id=120592750741583',
          'https://assetdelivery.roblox.com/v1/asset?id=112188964524607',
          'https://assetdelivery.roblox.com/v1/asset?id=100770292168738',
          'https://assetdelivery.roblox.com/v1/asset?id=116395358355760',
          'https://assetdelivery.roblox.com/v1/asset?id=107782885900046',
          'https://assetdelivery.roblox.com/v1/asset?id=76460641833185',
          'https://assetdelivery.roblox.com/v1/asset?id=110655950433265',
          'https://assetdelivery.roblox.com/v1/asset?id=103397988390395',
          'https://assetdelivery.roblox.com/v1/asset?id=134960361454114',
          'https://assetdelivery.roblox.com/v1/asset?id=97837055858440',
          'https://assetdelivery.roblox.com/v1/asset?id=95358441888754',
          'https://assetdelivery.roblox.com/v1/asset?id=97005753586326',
          'https://assetdelivery.roblox.com/v1/asset?id=126195537011144',
          'https://assetdelivery.roblox.com/v1/asset?id=76494343984175',
          'https://assetdelivery.roblox.com/v1/asset?id=88207406851495',
          'https://assetdelivery.roblox.com/v1/asset?id=86873529413911',
          'https://assetdelivery.roblox.com/v1/asset?id=100546223606491',
          'https://assetdelivery.roblox.com/v1/asset?id=78196947647750',
          'https://assetdelivery.roblox.com/v1/asset?id=132872292010481',
          'https://assetdelivery.roblox.com/v1/asset?id=127556810289604',
          'https://assetdelivery.roblox.com/v1/asset?id=83365348742532',
          'https://assetdelivery.roblox.com/v1/asset?id=73668122775220',
          'https://assetdelivery.roblox.com/v1/asset?id=87358384142620',
          'https://assetdelivery.roblox.com/v1/asset?id=120452424594832',
          'https://assetdelivery.roblox.com/v1/asset?id=72830530049396',
          'https://assetdelivery.roblox.com/v1/asset?id=91522472359831',
          'https://assetdelivery.roblox.com/v1/asset?id=133418711293110',
          'https://assetdelivery.roblox.com/v1/asset?id=73396529560261',
          'https://assetdelivery.roblox.com/v1/asset?id=116337295783736',
          'https://assetdelivery.roblox.com/v1/asset?id=74590156549857',
          'https://assetdelivery.roblox.com/v1/asset?id=101097343781019',
          'https://assetdelivery.roblox.com/v1/asset?id=79533832625580',
          'https://assetdelivery.roblox.com/v1/asset?id=74159715472463',
          'https://assetdelivery.roblox.com/v1/asset?id=114405024956339',
          'https://assetdelivery.roblox.com/v1/asset?id=71009800949205',
          'https://assetdelivery.roblox.com/v1/asset?id=72265979457992',
          'https://assetdelivery.roblox.com/v1/asset?id=73227491901709',
          'https://assetdelivery.roblox.com/v1/asset?id=117967541961409',
          'https://assetdelivery.roblox.com/v1/asset?id=107954009431647',
          'https://assetdelivery.roblox.com/v1/asset?id=85584589242973',
          'https://assetdelivery.roblox.com/v1/asset?id=102819713501941',
          'https://assetdelivery.roblox.com/v1/asset?id=107997969357705',
          'https://assetdelivery.roblox.com/v1/asset?id=115370164491639',
          'https://assetdelivery.roblox.com/v1/asset?id=85959244233004',
          'https://assetdelivery.roblox.com/v1/asset?id=95815114268776',
          'https://assetdelivery.roblox.com/v1/asset?id=98168011985914',
          'https://assetdelivery.roblox.com/v1/asset?id=81085594301835',
          'https://assetdelivery.roblox.com/v1/asset?id=91389738334632',
          'https://assetdelivery.roblox.com/v1/asset?id=85005104187057',

          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
          GM_getResourceURL("RobuxSky"),
            ]
    },
    {
      type: "banner",
selector: '[data-internal-page-name="Catalog"] #content::before, [data-internal-page-name="GameDetail"] #content::before, [data-internal-page-name="Profile"] #content::before, [data-internal-page-name="Avatar"] .content::before, [data-internal-page-name="CatalogItem"] #content::before, [data-internal-page-name="Messages"] #content::before',
      urls: [
      'https://assetdelivery.roblox.com/v1/asset?id=98638604406228',
          'https://assetdelivery.roblox.com/v1/asset?id=118525385022122',
          'https://assetdelivery.roblox.com/v1/asset?id=121422096130945',
          'https://assetdelivery.roblox.com/v1/asset?id=126793664444775',
          'https://assetdelivery.roblox.com/v1/asset?id=139214543256930',
          'https://assetdelivery.roblox.com/v1/asset?id=133072244158263',
          'https://assetdelivery.roblox.com/v1/asset?id=83820006332209',
          'https://assetdelivery.roblox.com/v1/asset?id=110949337065325',
          'https://assetdelivery.roblox.com/v1/asset?id=100236241194546',
          'https://assetdelivery.roblox.com/v1/asset?id=102080613309425',
          'https://assetdelivery.roblox.com/v1/asset?id=135604451985546',
          'https://assetdelivery.roblox.com/v1/asset?id=125361749024739',
          'https://assetdelivery.roblox.com/v1/asset?id=95368105446310',
          'https://assetdelivery.roblox.com/v1/asset?id=125588072468287',
          'https://assetdelivery.roblox.com/v1/asset?id=97924369559836',
          'https://assetdelivery.roblox.com/v1/asset?id=125363406308873',
          'https://assetdelivery.roblox.com/v1/asset?id=93590741569036',
          'https://assetdelivery.roblox.com/v1/asset?id=118258415847638',
          'https://assetdelivery.roblox.com/v1/asset?id=95783695556999',
          'https://assetdelivery.roblox.com/v1/asset?id=138711061396562',
          'https://assetdelivery.roblox.com/v1/asset?id=139982412037601',
          'https://assetdelivery.roblox.com/v1/asset?id=99900877468240',
          'https://assetdelivery.roblox.com/v1/asset?id=133015678272657',
          'https://assetdelivery.roblox.com/v1/asset?id=118372753107993',
          'https://assetdelivery.roblox.com/v1/asset?id=119830568722795',
          'https://assetdelivery.roblox.com/v1/asset?id=98580913306850',
          'https://assetdelivery.roblox.com/v1/asset?id=85248017617276',
          'https://assetdelivery.roblox.com/v1/asset?id=81626876704908',
          'https://assetdelivery.roblox.com/v1/asset?id=123287015690225',
          'https://assetdelivery.roblox.com/v1/asset?id=89693686868991',
          'https://assetdelivery.roblox.com/v1/asset?id=104233620848830',
          'https://assetdelivery.roblox.com/v1/asset?id=115034603093554',
          'https://assetdelivery.roblox.com/v1/asset?id=139678899693141',
          'https://assetdelivery.roblox.com/v1/asset?id=79687596325813',
          'https://assetdelivery.roblox.com/v1/asset?id=128104389019852',
          'https://assetdelivery.roblox.com/v1/asset?id=122425179633813',
          'https://assetdelivery.roblox.com/v1/asset?id=129097141390088',
          'https://assetdelivery.roblox.com/v1/asset?id=115189999793268',
          'https://assetdelivery.roblox.com/v1/asset?id=107628947073564',
          'https://assetdelivery.roblox.com/v1/asset?id=124939861136360',
          'https://assetdelivery.roblox.com/v1/asset?id=125171030316262',
          'https://assetdelivery.roblox.com/v1/asset?id=124022548052428',
          'https://assetdelivery.roblox.com/v1/asset?id=124037318972807',
          'https://assetdelivery.roblox.com/v1/asset?id=73935374955551',
          'https://assetdelivery.roblox.com/v1/asset?id=110032641298624',
          'https://assetdelivery.roblox.com/v1/asset?id=116096236230356',
          'https://assetdelivery.roblox.com/v1/asset?id=107017031370700',
          'https://assetdelivery.roblox.com/v1/asset?id=91908283019426',
          'https://assetdelivery.roblox.com/v1/asset?id=70657720854982',
          'https://assetdelivery.roblox.com/v1/asset?id=122399432418015',
          'https://assetdelivery.roblox.com/v1/asset?id=106453783623891',
          'https://assetdelivery.roblox.com/v1/asset?id=121393149279502',
          'https://assetdelivery.roblox.com/v1/asset?id=110705006009203',
          'https://assetdelivery.roblox.com/v1/asset?id=77429174489199',
          'https://assetdelivery.roblox.com/v1/asset?id=112092059050019',
          'https://assetdelivery.roblox.com/v1/asset?id=114952990557644',
          'https://assetdelivery.roblox.com/v1/asset?id=98677540989407',
          'https://assetdelivery.roblox.com/v1/asset?id=71844759840041',
          'https://assetdelivery.roblox.com/v1/asset?id=133091537464610',
          'https://assetdelivery.roblox.com/v1/asset?id=76346439258498',
          'https://assetdelivery.roblox.com/v1/asset?id=121834866611056',
          'https://assetdelivery.roblox.com/v1/asset?id=114271472482468',
          'https://assetdelivery.roblox.com/v1/asset?id=101536725637999',
          'https://assetdelivery.roblox.com/v1/asset?id=131958091574163',
          'https://assetdelivery.roblox.com/v1/asset?id=84329346651730',
          'https://assetdelivery.roblox.com/v1/asset?id=96604691121266',
          'https://assetdelivery.roblox.com/v1/asset?id=116305950805599',
          'https://assetdelivery.roblox.com/v1/asset?id=113575085352881',
          'https://assetdelivery.roblox.com/v1/asset?id=75556813963710',
          'https://assetdelivery.roblox.com/v1/asset?id=92548520308018',
          'https://assetdelivery.roblox.com/v1/asset?id=120836929599078',
          'https://assetdelivery.roblox.com/v1/asset?id=73770163999225',
          'https://assetdelivery.roblox.com/v1/asset?id=131666328498738',
          'https://assetdelivery.roblox.com/v1/asset?id=130472973877883',
          'https://assetdelivery.roblox.com/v1/asset?id=127524991629048',
          'https://assetdelivery.roblox.com/v1/asset?id=109591779338840',
          'https://assetdelivery.roblox.com/v1/asset?id=115765576002195',
          'https://assetdelivery.roblox.com/v1/asset?id=73456458213464',
          'https://assetdelivery.roblox.com/v1/asset?id=79607590482682',
          'https://assetdelivery.roblox.com/v1/asset?id=131152574085404',
          'https://assetdelivery.roblox.com/v1/asset?id=107483819138567',
          'https://assetdelivery.roblox.com/v1/asset?id=81611804425332',
          'https://assetdelivery.roblox.com/v1/asset?id=92789528321929',
          'https://assetdelivery.roblox.com/v1/asset?id=105195603264536',
          'https://assetdelivery.roblox.com/v1/asset?id=116884954678595',
          'https://assetdelivery.roblox.com/v1/asset?id=126887371842911',

          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),
          GM_getResourceURL("RobuxBanner"),

          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
          GM_getResourceURL("StudioBanner"),
      ]
    },
    {
      type: "square",
      selector: '#game-carousel-web-app::after, [data-internal-page-name="Profile"] #content::after,',
      urls: [
       'https://assetdelivery.roblox.com/v1/asset?id=110122712112954',
          'https://assetdelivery.roblox.com/v1/asset?id=97022529781815',
          'https://assetdelivery.roblox.com/v1/asset?id=75853960248174',
          'https://assetdelivery.roblox.com/v1/asset?id=112227906157180',
          'https://assetdelivery.roblox.com/v1/asset?id=77090743056196',
          'https://assetdelivery.roblox.com/v1/asset?id=112143354808021',
          'https://assetdelivery.roblox.com/v1/asset?id=91866622305818',
          'https://assetdelivery.roblox.com/v1/asset?id=108039477766818',
          'https://assetdelivery.roblox.com/v1/asset?id=123997626083707',
          'https://assetdelivery.roblox.com/v1/asset?id=94507720579885',
          'https://assetdelivery.roblox.com/v1/asset?id=120677769546578',
          'https://assetdelivery.roblox.com/v1/asset?id=77697527177565',
          'https://assetdelivery.roblox.com/v1/asset?id=82950564377283',
          'https://assetdelivery.roblox.com/v1/asset?id=71570221795651',
          'https://assetdelivery.roblox.com/v1/asset?id=116013796941365',
          'https://assetdelivery.roblox.com/v1/asset?id=135348006923133',
          'https://assetdelivery.roblox.com/v1/asset?id=94222708959850',
          'https://assetdelivery.roblox.com/v1/asset?id=126281556567565',
          'https://assetdelivery.roblox.com/v1/asset?id=70531486989775',
          'https://assetdelivery.roblox.com/v1/asset?id=112073695060986',
          'https://assetdelivery.roblox.com/v1/asset?id=100089810034237',
          'https://assetdelivery.roblox.com/v1/asset?id=83788115055980',
          'https://assetdelivery.roblox.com/v1/asset?id=79165681844441',
          'https://assetdelivery.roblox.com/v1/asset?id=84373654562055',
          'https://assetdelivery.roblox.com/v1/asset?id=131619487099776',
          'https://assetdelivery.roblox.com/v1/asset?id=70763569479789',
          'https://assetdelivery.roblox.com/v1/asset?id=136320871982472',
          'https://assetdelivery.roblox.com/v1/asset?id=127423384416587',
          'https://assetdelivery.roblox.com/v1/asset?id=110382724931310',
          'https://assetdelivery.roblox.com/v1/asset?id=84131891494550',
          'https://assetdelivery.roblox.com/v1/asset?id=89158747715241',
          'https://assetdelivery.roblox.com/v1/asset?id=75452467108109',
          'https://assetdelivery.roblox.com/v1/asset?id=80902522181863',
          //This is 2017
          'https://assetdelivery.roblox.com/v1/asset?id=132174820184255',
          'https://assetdelivery.roblox.com/v1/asset?id=128949193163950',
          'https://assetdelivery.roblox.com/v1/asset?id=82333474707711',
          'https://assetdelivery.roblox.com/v1/asset?id=138854774117878',
          'https://assetdelivery.roblox.com/v1/asset?id=124759001222175',
          'https://assetdelivery.roblox.com/v1/asset?id=138377018085809',
          'https://assetdelivery.roblox.com/v1/asset?id=130451790902484',
          'https://assetdelivery.roblox.com/v1/asset?id=84583702049550',
          'https://assetdelivery.roblox.com/v1/asset?id=101791486137277',
          'https://assetdelivery.roblox.com/v1/asset?id=118300694400815',
          'https://assetdelivery.roblox.com/v1/asset?id=126774386911816',
          'https://assetdelivery.roblox.com/v1/asset?id=110198113133997',
          'https://assetdelivery.roblox.com/v1/asset?id=113135985679208',
          'https://assetdelivery.roblox.com/v1/asset?id=80335788334967',
          'https://assetdelivery.roblox.com/v1/asset?id=140116710496632',
          'https://assetdelivery.roblox.com/v1/asset?id=131759090231911',
          'https://assetdelivery.roblox.com/v1/asset?id=132941157666134',
          'https://assetdelivery.roblox.com/v1/asset?id=131037741477884',
          'https://assetdelivery.roblox.com/v1/asset?id=94037279412475',
          'https://assetdelivery.roblox.com/v1/asset?id=136388340716303',
          'https://assetdelivery.roblox.com/v1/asset?id=82359979051549',
          'https://assetdelivery.roblox.com/v1/asset?id=93455380620091',
          'https://assetdelivery.roblox.com/v1/asset?id=99615826494063',
          'https://assetdelivery.roblox.com/v1/asset?id=74612046893996',
          'https://assetdelivery.roblox.com/v1/asset?id=116310733002775',
          'https://assetdelivery.roblox.com/v1/asset?id=90900495381456',
          'https://assetdelivery.roblox.com/v1/asset?id=125121220424341',
          'https://assetdelivery.roblox.com/v1/asset?id=140192167299128',
          'https://assetdelivery.roblox.com/v1/asset?id=120819609978489',
          'https://assetdelivery.roblox.com/v1/asset?id=108696521798591',
          'https://assetdelivery.roblox.com/v1/asset?id=89292061864157',
          'https://assetdelivery.roblox.com/v1/asset?id=92422292134692',
          'https://assetdelivery.roblox.com/v1/asset?id=138039424309558',
          'https://assetdelivery.roblox.com/v1/asset?id=93425353093632',
          'https://assetdelivery.roblox.com/v1/asset?id=135019786133352',
          'https://assetdelivery.roblox.com/v1/asset?id=74318615188334',
          'https://assetdelivery.roblox.com/v1/asset?id=83812571521641',
          'https://assetdelivery.roblox.com/v1/asset?id=125888477048716',
          'https://assetdelivery.roblox.com/v1/asset?id=132567228900892',
          'https://assetdelivery.roblox.com/v1/asset?id=139366516669096',
          'https://assetdelivery.roblox.com/v1/asset?id=73789543430448',
          'https://assetdelivery.roblox.com/v1/asset?id=95074843836336',
          'https://assetdelivery.roblox.com/v1/asset?id=78706728848569',
          'https://assetdelivery.roblox.com/v1/asset?id=135049609065221',
          'https://assetdelivery.roblox.com/v1/asset?id=128323367778318',
          'https://assetdelivery.roblox.com/v1/asset?id=98824657543235',
          'https://assetdelivery.roblox.com/v1/asset?id=98070438056137',
          'https://assetdelivery.roblox.com/v1/asset?id=135654728833958',
          'https://assetdelivery.roblox.com/v1/asset?id=92428600507715',
      ]
    },
  ];

  function pickRandom(arr) { return arr[Math.floor(Math.random() * arr.length)]; }

  function getAdSenseBase64(type) {
      let list = (type === "skyscraper") ? BASE64_SKYSCRAPER_LIST : (type === "banner") ? BASE64_BANNER_LIST : BASE64_SQUARE_LIST;
      return list.length === 0 ? "" : pickRandom(list);
  }

// ==========================================
  // REAL HTML BUILDER
  // ==========================================
function createAdDOM(imageUrl, slotType, slotIndex, isAdSense) {
    const width = slotType === 'skyscraper' ? '160px' : slotType === 'banner' ? '728px' : '300px';
    const height = slotType === 'skyscraper' ? '600px' : slotType === 'banner' ? '90px' : '250px';

    // --- SKYSCRAPER PAGE SETTINGS ---
    // Tweak the top and right positions for each specific page here
    const PAGE_POSITIONS = {
        "GameDetail":   { top: "117px", right: "40px" },
        "GroupDetails": { top: "20px", right: "40px" },
        "Messages":     { top: "117px",   right: "30px" }, // Change these as needed
        "CatalogItem":  { top: "117px",   right: "0px" }, // Change these as needed
        "BundleDetail": { top: "0px",   right: "-180px" }  // Change these as needed
    };

    let positionStyles;
    if (slotIndex === 0) {
        // Home Left
        positionStyles = `float: left; margin-right: 24px; margin-top: 0; margin-left: 0; min-height: 600px;`;
    } else if (slotIndex === 1) {
        // Home Right
        positionStyles = `float: right; margin-left: 24px; margin-top: 0; margin-right: 0; min-height: 600px;`;
    } else if (slotIndex === 2) {
        // Game Page Skyscraper & Sub-pages

        // Find out exactly which page the user is currently on
        const pageElement = document.querySelector('[data-internal-page-name]');
        const pageName = pageElement ? pageElement.getAttribute('data-internal-page-name') : "";

        // Default fallback coordinates
        let topPos = "0px";
        let rightPos = "-180px";

        // If the current page is in our settings dictionary, apply those specific coordinates
        if (PAGE_POSITIONS[pageName]) {
            topPos = PAGE_POSITIONS[pageName].top;
            rightPos = PAGE_POSITIONS[pageName].right;
        }

        positionStyles = `position: absolute; top: ${topPos}; right: ${rightPos}; min-height: 600px; z-index: 10;`;
    } else {
        // Banners & Squares
        positionStyles = `margin-top: -10px; margin-left: auto; margin-right: auto; position: relative; z-index: 10;`;
    }

    // Outer container: holds both the ad image box AND the label below it
    const outerContainer = document.createElement('div');
    outerContainer.style.cssText = `${positionStyles} width: ${width}; display: block; box-sizing: border-box; flex-shrink: 0;`;

    // The actual ad image box
    const wrapper = document.createElement('div');
    wrapper.style.cssText = `width: ${width}; height: ${height}; background-image: url('${imageUrl}'); background-size: contain; background-repeat: no-repeat; background-position: top center; position: relative; display: block; overflow: hidden; cursor: pointer; border: 1px solid transparent; box-sizing: border-box;`;

    // --- ONLY ADD GOOGLE BUTTONS IF IT IS AN ADSENSE AD ---
    if (isAdSense) {
        const buttonContainer = document.createElement('div');
        buttonContainer.style.cssText = `position: absolute; top: 0; right: 0; display: flex; gap: 1px; z-index: 10;`;

        const btnStyle = `width: 18px; height: 18px; background-color: #c8c6cd; border: 1px solid #a9a9a9; border-top: none; border-right: none; display: flex; align-items: center; justify-content: center; cursor: pointer; box-sizing: border-box;`;

        const adChoices = document.createElement('div');
        adChoices.style.cssText = btnStyle;
        adChoices.innerHTML = `<svg width="20" height="25" viewBox="0 0 16 16" fill="#00aecd"><path d="M7.5,1.5a6,6,0,1,0,0,12a6,6,0,1,0,0,-12m0,1a5,5,0,1,1,0,10a5,5,0,1,1,0,-10ZM6.625,11l1.75,0l0,-4.5l-1.75,0ZM7.5,3.75a1,1,0,1,0,0,2a1,1,0,1,0,0,-2Z"></path></svg>`;

        const closeBtn = document.createElement('div');
        closeBtn.style.cssText = btnStyle;
        closeBtn.innerHTML = `<svg width="35" height="35" viewBox="0 0 24 24" fill="#00aecd"><path d="M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z"></path></svg>`;

        closeBtn.onclick = (e) => {
            e.stopPropagation();
            wrapper.style.backgroundImage = "none";
            wrapper.style.backgroundColor = "#fafafa";
            wrapper.style.border = "1px solid #ddd";
            wrapper.innerHTML = `<div style="display:flex;flex-direction:column;align-items:center;justify-content:center;width:100%;height:100%;font-family:Arial;font-size:13px;color:#aaa;">Ad closed by Google</div>`;
        };

        buttonContainer.appendChild(adChoices);
        buttonContainer.appendChild(closeBtn);
        wrapper.appendChild(buttonContainer);
    }

    const labelMarginTop = slotType === 'skyscraper' ? '-4px' : '5px';

    // ADVERTISEMENT label container
    const adLabel = document.createElement('div');
    adLabel.style.cssText = `
        font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
        font-size: 12px;
        line-height: 1.25;
        font-weight: 400;
        color: #191919;
        background: transparent;
        margin-top: ${labelMarginTop};
        letter-spacing: 0.5px;
        text-align: left;
        display: flex;
        align-items: center;
        flex-wrap: nowrap;
        gap: 0;
    `;

    // 1. Always append base ADVERTISEMENT text
    const adLabelText = document.createElement('span');
    adLabelText.style.cssText = `text-transform: uppercase; pointer-events: none; user-select: none;`;
    adLabelText.textContent = 'ADVERTISEMENT';
    adLabel.appendChild(adLabelText);

    // 2. Only add "Why am I seeing ads" if it's a Banner AND it is AdSense
    if (slotType === 'banner' && isAdSense) {
        const adLabelSep = document.createElement('span');
        adLabelSep.style.cssText = `pointer-events: none; user-select: none; margin: 0 4px;`;
        adLabelSep.textContent = '-';

        const adLabelLink = document.createElement('a');
        adLabelLink.href = 'https://support.google.com/adsense/troubleshooter/1631343';
        adLabelLink.target = '_blank';
        adLabelLink.rel = 'noopener noreferrer';
        adLabelLink.style.cssText = `
            color: #757575;
            text-decoration: none;
            cursor: pointer;
            pointer-events: all;
        `;
        adLabelLink.textContent = 'Why am I seeing ads?';

        adLabelLink.addEventListener('mouseenter', () => {
            adLabelLink.style.textDecoration = 'underline';
            adLabelLink.style.color = '#de0500';
        });
        adLabelLink.addEventListener('mouseleave', () => {
            adLabelLink.style.textDecoration = 'none';
            adLabelLink.style.color = '#757575';
        });
        adLabelLink.addEventListener('click', (e) => e.stopPropagation());

        adLabel.appendChild(adLabelSep);
        adLabel.appendChild(adLabelLink);
    }

    // 3. ALWAYS add the Roblox Report Button to ALL ads
    const reportBtn = document.createElement('a');
    reportBtn.className = 'BadAdButton';
    reportBtn.target = '_top';
    reportBtn.title = 'click to report an offensive ad';
    reportBtn.href = 'https://www.roblox.com/abusereport/Asset?id=466680823&redirectUrl=https%3A%2F%2Fwww.roblox.com%2Fusers%2F21446509%2Fprofile';
    reportBtn.textContent = 'Report';
    reportBtn.style.cssText = `
        color: #757575;
        text-decoration: none;
        cursor: pointer;
        pointer-events: all;
        margin-left: auto; /* Pushes the button to the far right */
    `;

    // Hover effect for Report button (Turns Red)
    reportBtn.addEventListener('mouseenter', () => {
        reportBtn.style.textDecoration = 'underline';
        reportBtn.style.color = '#de0500';
    });
    reportBtn.addEventListener('mouseleave', () => {
        reportBtn.style.textDecoration = 'none';
        reportBtn.style.color = '#757575';
    });
    reportBtn.addEventListener('click', (e) => e.stopPropagation());

    adLabel.appendChild(reportBtn);

    outerContainer.appendChild(wrapper);
    outerContainer.appendChild(adLabel);

    return outerContainer;
}

  // ==========================================
  // INJECTION ENGINE
  // ==========================================
  function injectAds() {
    AD_SLOTS.forEach((slot, index) => {
      const id = `tm-ads-v27-${index}`;
      if (document.getElementById(id) || document.querySelector(`[data-tm-ad="${index}"]`)) return;

      const containerSelector = slot.selector.replace(/::(before|after)/g, '');
      const container = document.querySelector(containerSelector);
      if (!container) return;

      // ONLY force the anchor fix on the Game/Group page right-side ads
      if (index === 2) {
          container.style.setProperty('position', 'relative', 'important');
          container.style.setProperty('overflow', 'visible', 'important');
      }

      const adSenseUrl = getAdSenseBase64(slot.type);
      const chance = FORCE_100_PERCENT_ADSENSE ? 1.0 : (adSenseChance / 100);

      // Determine if this specific ad will be AdSense or Normal
      const isAdSense = adSenseEnabled && Math.random() < chance && adSenseUrl !== "";
      const finalImageUrl = isAdSense ? adSenseUrl : pickRandom(slot.urls);

      // Hide the original pseudo-element for BOTH types so Roblox's native code doesn't overlap
      const style = document.createElement('style');
      style.id = id;
      style.textContent = `${slot.selector} { display: none !important; content: none !important; }`;
      document.head.appendChild(style);

      // Build the DOM element and pass the isAdSense flag
      const adNode = createAdDOM(finalImageUrl, slot.type, index, isAdSense);
      adNode.setAttribute("data-tm-ad", index);

      if (slot.selector.includes('::before')) {
          container.prepend(adNode);
      } else {
          container.appendChild(adNode);
      }
    });
  }

  // Run immediately and then poll for dynamic page loads
  injectAds();
  setInterval(injectAds, 1500);

})();