您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
this makes it you will allways join the same lobby as your freinds but it might not work if they have it you cant join them or random people
当前为
- // ==UserScript==
- // @name Join Player v2 Roblox
- // @license C4-Suhail
- // @namespace http://tampermonkey.net/
- // @version 1.3
- // @description this makes it you will allways join the same lobby as your freinds but it might not work if they have it you cant join them or random people
- // @Note Dont Steal This Code i Worked Really Hard On It
- // @author C4-Suhail
- // @match https://*www.roblox.com/users/*
- // @icon https://www.google.com/s2/favicons?domain=roblox.com
- // @grant none
- // ==/UserScript==
- 'use strict';
- //button
- var btn = document.createElement("BUTTON");
- document.body.appendChild(btn);
- btn.id = ("Joinv2")
- btn.innerHTML = "Join v2"
- btn.style = ("position: absolute; bottom: 96%; left: 65%; z-index: 3; background-color: rgb(0, 176, 111); color: rgb(255, 255, 255); border-bottom-color: rgb(0, 176, 111); border-bottom-color: rgb(0, 176, 111); border-top-color: rgb(0, 176, 111); border-right-color: rgb(0, 176, 111);border-left-color: rgb(0, 176, 111); border-radius: 8px; font-size: 20px; border: rgb(0, 176, 111);")
- //onclick
- btn.onclick = function () {
- btn.innerHTML = "Joining Player..."
- var player_id = ("N/A"+window.location.href);
- player_id = player_id.replace(/\D/g,'');
- Roblox.GameLauncher.followPlayerIntoGame(player_id);;
- setTimeout(Text, 5000)
- function Text() {
- btn.innerHTML = "Joined Player"
- setTimeout(Text, 7000)
- function Text() {
- btn.innerHTML = "Join v2"
- }
- }
- };
- var table = document.getElementById('content');
- table.appendChild(btn);