ic3w0lf / Roblox Instant Join

// ==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);
    });
})();