NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @author ic3w0lf // @name Roblox Instant Join // @namespace https://openuserjs.org/ // @updateURL https://openuserjs.org/meta/ic3w0lf/Roblox_Instant_Join.meta.js // @version 1.2 // @description Instantly joins a game without BC; ads window may show // @match http*://www.roblox.com/games/*/* // @grant none // ==/UserScript== (function() { 'use strict'; $(".VisitButtonPlayPH").click(function() { var placeObj = new Object({placeId:$(this).attr("placeid")}); Roblox.ProtocolHandlerClientInterface.joinMultiplayerGame(placeObj); }); $(".VisitButtonPlayGLI").click(function() { var placeObj = new Object({placeId:$(this).attr("placeid")}); Roblox.ProtocolHandlerClientInterface.joinMultiplayerGame(placeObj); }); })();