Join Player v2 Roblox

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

이 스크립트를 설치하려면 Tampermonkey, Greasemonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Violentmonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey 또는 Userscripts와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 Tampermonkey와 같은 확장 프로그램이 필요합니다.

이 스크립트를 설치하려면 유저 스크립트 관리자 확장 프로그램이 필요합니다.

(이미 유저 스크립트 관리자가 설치되어 있습니다. 설치를 진행합니다!)

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 Stylus와 같은 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

이 스타일을 설치하려면 유저 스타일 관리자 확장 프로그램이 필요합니다.

(이미 유저 스타일 관리자가 설치되어 있습니다. 설치를 진행합니다!)

// ==UserScript==
// @name         Join Player v2 Roblox
// @license      C4-Suhail
// @namespace    http://tampermonkey.net/
// @version      1.6
// @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 and Text
     var btn = document.createElement("BUTTON");
     const text = document.createElement("p");



     document.body.appendChild(text);
     document.body.appendChild(btn);

     text.style = ("position: absolute; top: 125px; left: 63%;")
     text.innerHTML = ("")

     btn.id = ("Joinv2")
     btn.innerHTML = "Join v2"
     btn.style = ("position: absolute; top: 100px; 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 () {
         text.innerHTML = ("Connecting to user")
         text.style = ("position: absolute; top: 125px; left: 63%; color: #ce1818;")
         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() {
             text.innerHTML = "Connected to user"
             text.style = ("position: absolute; top: 125px; left: 63%; color: #4fb532;")
                               setTimeout(Text, 7000)
         function Text() {
             btn.innerHTML = "Join v2"
             text.innerText = "";
}
}

    };

var table = document.getElementById('content');
table.appendChild(btn);
table.appendChild(text);