Advertisement
About80Ninjas

Roblox Join

Apr 9th, 2020
2,058
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $GamerTag = "string"
  2. $GameId = '1262182609'
  3. $a = Invoke-RestMethod -Uri "https://games.roblox.com/v1/games/$GameId/servers/Public?sortOrder=Asc&limit=100"
  4. $PlaceId = $a.data[-1].id
  5. $Body = @{
  6.     "gameId"= $GameId;
  7.     "placeId"= $PlaceId;
  8.     "gamerTag"=$GamerTag;
  9.     "isPartyLeader"= false;
  10.     "isPlayTogetherGame"= false;
  11.     "browserTrackerId"= 9223372036854776000;
  12.     "isTeleport"= false;
  13. }
  14.  
  15. Invoke-RestMethod -Method Post -Uri 'https://gamejoin.roblox.com/v1/join-game-instance' -Body $Body
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement