ROBLOX - Skip video ads

Allows you to start games immediately without waiting for the video ad to finish

// ==UserScript==
// @name        ROBLOX - Skip video ads
// @namespace   https://gf.qytechs.cn/en/users/58051-roblox
// @description Allows you to start games immediately without waiting for the video ad to finish
// @match       https://*.roblox.com/games/*
// @version     1.0.1
// @grant       none
// ==/UserScript==

function inject(func) {
	var source = func.toString();
	var script = document.createElement('script');
	script.innerHTML = "("+ source +")()";
	document.body.appendChild(script);
}

function goodbyeVideoAd() {
	Roblox.VideoPreRollDFP.isExcluded = function(e) { return true; };
}

inject(goodbyeVideoAd);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址