--[[ Script: Server Hop Edition By: vinxz201 Platform: Delta Executor (Mobile) ]] local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Server Hop | Neon Black", LoadingTitle = "Donut Pinter Hub", LoadingSubtitle = "by vinxz201", ConfigurationSaving = { Enabled = true, FolderName = "VinxzServerHop", FileName = "Config" }, KeySystem = false }) -- Tab Utama local Tab = Window:CreateTab("Main Menu", 4483362458) -- Label Credit Tab:CreateSection("Credit") Tab:CreateLabel("Script by: vinxz201") Tab:CreateSection("Server Options") -- Tombol Rejoin Tab:CreateButton({ Name = "Rejoin Server", Callback = function() local ts = game:GetService("TeleportService") local p = game.Players.LocalPlayer ts:Teleport(game.PlaceId, p) end, }) -- Tombol Server Hop (Random) Tab:CreateButton({ Name = "Server Hop (Random)", Callback = function() local HttpService = game:GetService("HttpService") local TeleportService = game:GetService("TeleportService") local Servers = HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Desc&limit=100")) for i, v in pairs(Servers.data) do if v.playing < v.maxPlayers and v.id ~= game.JobId then TeleportService:TeleportToPlaceInstance(game.PlaceId, v.id) break end end end, }) -- Tombol Small Server Hop (Paling Sepi) Tab:CreateButton({ Name = "Small Server Hop (1-2 Players)", Callback = function() local HttpService = game:GetService("HttpService") local TeleportService = game:GetService("TeleportService") local url = "https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100" local Servers = HttpService:JSONDecode(game:HttpGet(url)) for i, v in pairs(Servers.data) do if v.playing > 0 and v.playing <= 2 and v.id ~= game.JobId then TeleportService:TeleportToPlaceInstance(game.PlaceId, v.id) return end end Rayfield:Notify({ Title = "Info", Content = "Server sepi tidak ditemukan.", Duration = 3, }) end, }) -- Tombol End Script (Menutup Menu Secara Total) Tab:CreateButton({ Name = "End Script (Kill UI)", Callback = function() Rayfield:Destroy() end, }) -- Notifikasi saat script aktif Rayfield:Notify({ Title = "Executed!", Content = "Server Hop Menu by vinxz201 is ready.", Duration = 5, Image = 4483362458, })