ROBLOX - Skip video ads

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

  1. // ==UserScript==
  2. // @name ROBLOX - Skip video ads
  3. // @namespace https://greatest.deepsurf.us/en/users/58051-roblox
  4. // @description Allows you to start games immediately without waiting for the video ad to finish
  5. // @match https://*.roblox.com/games/*
  6. // @version 1.0.1
  7. // @grant none
  8. // ==/UserScript==
  9.  
  10. function inject(func) {
  11. var source = func.toString();
  12. var script = document.createElement('script');
  13. script.innerHTML = "("+ source +")()";
  14. document.body.appendChild(script);
  15. }
  16.  
  17. function goodbyeVideoAd() {
  18. Roblox.VideoPreRollDFP.isExcluded = function(e) { return true; };
  19. }
  20.  
  21. inject(goodbyeVideoAd);