// ==UserScript== // @name ROBLOX - Skip video ads // @namespace https://greasyfork.org/en/users/58051-roblox // @description Allows you to start games immediately without waiting for the video ad to finish // @match http://www.roblox.com/games/* // @match https://www.roblox.com/games/* // @match http://web.roblox.com/games/* // @match https://web.roblox.com/games/* // @version 1 // @grant none // @downloadURL 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);