Home » All Roblox Scripts » adopt me scripts » Adopt Me script Find Small Server – No key

Adopt Me script Find Small Server – No key

Photo of author
Published by
FeatureDescription
Script NameAdopt Me script Find Small Server
PurposePlay with small group of players
GameAdopt Me
PlatformRoblox
Download LinkAvailable

Script Functions

Adopt Me script Find Small Server is a script that allows you to find the server with a small group of players. It gives you a better experience and reduces the level of competition with already advanced players.

How to use the script?

  • Copy the below given script.
  • Paste the script in the executor.
  • Run and Play the Game.
local Http = game:GetService("HttpService")
local TPS = game:GetService("TeleportService")
local Api = "https://games.roblox.com/v1/games/"

local _place = game.PlaceId
local _servers = Api.._place.."/servers/Public?sortOrder=Asc&limit=100"
function ListServers(cursor)
   local Raw = game:HttpGet(_servers .. ((cursor and "&cursor="..cursor) or ""))
   return Http:JSONDecode(Raw)
end

local Server, Next; repeat
   local Servers = ListServers(Next)
   Server = Servers.data[1]
   Next = Servers.nextPageCursor
until Server

TPS:TeleportToPlaceInstance(_place,Server.id,game:GetService('Players').LocalPlayer)

Leave a Comment