roblox follow player script pastebin Just put together this script to join a player's server without being there friend. Because Roblox doesn't give you the names of whoever is playing on a server, I found out I can use there avatar URL to join there server, but only if you know what game they are playing. All you need to do is go to the game they are playing, and type in the users name you want to find. This works the best if the user is streaming but the server isn't full. Side note, large games like Jailbreak sometimes don't work as well because the servers will fill up instantly once you join. How to Use: 1. Go to the game you want to join, e.g. https://www.roblox.com/games/2202352383/Super-Power-Training-Simulator 2. Open up the developer console by either pressing f12 or by right clicking, then clicking 'Inspect'. 3. Paste the script from below. 4. Wait for it to say in the console 'Found server:... Joining...', however it might take a while depending on how large the game is. 5. Sometimes the game server is restricted or the game is full, where it isn't possible for you to join. - Chrome works the best but you CAN use Firefox. roblox follow player script pastebin How to use it? roblox follow player script pastebin Different Ways to open up develops console: Make sure to click the tab that says 'Console' Method 1. Press 'f12'. Method 2. Right click then click 'Inspect'. Method 3. Hold the keys 'Ctrl + Shift + J' down. Method 4. Hold the keys 'Ctrl + Shift + I' down. Method 5. Click the three vertical dots in the top right corner of your screen under the X button. Then hover over 'More Tools'. Finally at the bottom of the list click 'Developer Tools'. The time it takes to join the server is pretty random but the larger the server the longer it could take. You can however get lucky and find the server in a couple seconds, but it normally takes around a minute. roblox follow player script pastebin How to dowload it? roblox follow player script pastebin SCRIPT: var page = 0; var url = 'https://api.roblox.com/users/get-by-username?username=' + prompt('Username to find:', 'sparkythesparkz'); var matches = []; var avatars = []; roblox follow player script pastebin How to use it? roblox follow player script pastebin var searchGames = function(gid, specifier) { var serverURL = `https://www.roblox.com/games/getgameinstancesjson?placeId=${gid}&startindex=${page}`; if (page == 0) console.log('Searching', serverURL, 'for user', gid, 'with avatar of', specifier) fetch(serverURL) .then((resp) => resp.json()) .then(function(data) { console.log('Searching page:', page); page++; for (let i = 0; i < data['Collection'].length; i++) { let server = data['Collection'][i]; roblox follow player script pastebin How to dowload it? roblox follow player script pastebin for (let j = 0; j < server['CurrentPlayers'].length; j++) { let player = server['CurrentPlayers'][j]; if (player['Thumbnail']['Url'] == specifier) { matches.push(server); console.log('Found server:', server, '\nJoining...'); eval(server['JoinScript']); return true; } } } roblox follow player script pastebin PasteShr roblox follow player script pastebin searchGames(gid, specifier); }); } fetch(url) .then((resp) => resp.json()) .then(function(data) { const id = data['Id']; console.log('Got ID from username:', id); url = `https://www.roblox.com/headshot-thumbnail/image?userId=${id}&width=48&height=48&format=png`; roblox follow player script pastebin How to dowload it? roblox follow player script pastebin fetch(url) .then(function(resp) { const specifier = resp['url']; console.log('Got avatar URL:', specifier); var gid = Number(window.location.pathname.split('/')[2]) || Number(prompt('Game ID to search in:', '301549746')); searchGames(gid, specifier); }); }); roblox follow player script pastebin