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 Follow // @namespace https://openuserjs.org/ // @updateURL https://openuserjs.org/meta/ic3w0lf/Roblox_Instant_Follow.meta.js // @version 1.2 // @description Instantly follows a player without BC; ads window may show // @match http*://www.roblox.com/users/*/profile // @grant none // ==/UserScript== (function() { 'use strict'; $(".btn-join-game").click(function() { var followObj = new Object({placeId:$(this).attr("profileuserid")}); Roblox.GameLauncher.followPlayerIntoGame(24656914); }); })();