All content on our site is free and will always be free.

Please consider supporting us with disabling your AdBlock software and to gain access to thousands of free content!

Not sure how to disable AdBLock? Follow this tutorial: How to disable AdBlock

Get the Server Hop

The Server Hop code is below. Copy & inject it into the game. Enjoy!

Universal Script ? - Open-sourced server hop. Not obfuscating because it's easy to make and I'm not that kind of person, Will hop to the server with the least amount of players.
local servers=game:GetService("HttpService"):JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/"..game.PlaceId.."/servers/Public?sortOrder=Asc&limit=100"))
for a,b in pairs(servers.data) do
  if b.playing~=b.maxPlayers then
      game:GetService('TeleportService'):TeleportToPlaceInstance(game.PlaceId, b.id)
  end
end