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

目前為 2022-01-13 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name Join Player v2 Roblox
  3. // @license C4-Suhail
  4. // @namespace http://tampermonkey.net/
  5. // @version 1.2
  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
  7. // @Note Dont Steal This Code i Worked Really Hard On It
  8. // @author C4-Suhail
  9. // @match https://*www.roblox.com/users/*
  10. // @icon https://www.google.com/s2/favicons?domain=roblox.com
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14.  
  15.  
  16.  
  17.  
  18. 'use strict';
  19. //button
  20. var btn = document.createElement("BUTTON");
  21. document.body.appendChild(btn);
  22. btn.id = ("Joinv2")
  23. btn.innerHTML = "Join v2"
  24. btn.style = ("position: absolute; bottom: 95%; left: 64%; 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);")
  25. //onclick
  26. btn.onclick = function () {
  27. btn.innerHTML = "Joining Player..."
  28. var player_id = ("N/A"+window.location.href);
  29. player_id = player_id.replace(/\D/g,'');
  30. Roblox.GameLauncher.followPlayerIntoGame(player_id);;
  31. setTimeout(Text, 5000)
  32. function Text() {
  33. btn.innerHTML = "Joined Player"
  34. setTimeout(Text, 7000)
  35. function Text() {
  36. btn.innerHTML = "Join v2"
  37. }
  38. }
  39.  
  40. };
  41.  
  42. var table = document.getElementById('content');
  43. table.appendChild(btn);