Advertisement
vlatkovski

ROBLOX Create new server

Aug 19th, 2015
468
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. -- will most likely be patched soon
  2.  
  3. spawn(function()
  4.     local placeID = 1818
  5.  
  6.     local h = game:GetService("HttpService")
  7.     local s = table.concat{
  8.         "http://rproxy.pw/Game/PlaceLauncher.ashx?",
  9.         "request=", "RequestGame",      "&",
  10.         "placeId=", tostring(placeID),      "&",
  11.         "isPartyLeader=", "false",      "&",
  12.         "gender=", ""               "&",
  13.         "isTeleport=", "true"
  14.     }
  15.  
  16.     h:GetAsync(s)
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement