Greasy Fork is available in English.

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://greasyfork.org/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);