// ==UserScript== // @name bloxjoin // @namespace http://roblox.com // @match https://*.roblox.com/groups/* // @version 42 // @author foxxo // @grant none // @run-at document-idle // @description Join a Roblox group instantly // @downloadURL none // ==/UserScript== setTimeout(function(){ document.getElementById("group-join-button").click(); }, 2000); // Click on the Join button after 2s so the page can load