-- // SLAP BATTLES SLAPPLES SERVERHOP FARM \\ -- // MADE BY KITZOON \\ getgenv().farmEnabled = true local retryDelay = 10 if game.PlaceId ~= 6403373529 or not getgenv().farmEnabled then return end if not game:IsLoaded() then game.Loaded:Wait() end local plr = game:GetService("Players").LocalPlayer repeat task.wait() until plr.Character and plr.Character:FindFirstChild("HumanoidRootPart") if not plr.Character:FindFirstChild("entered") then repeat wait(0.5) firetouchinterest(plr.Character.HumanoidRootPart, workspace.Lobby.Teleport1, 0) firetouchinterest(plr.Character.HumanoidRootPart, workspace.Lobby.Teleport1, 1) until plr.Character:FindFirstChild("entered") end for _, v in pairs(workspace.Arena:GetDescendants()) do if string.find(v.Name, "Slapple") and v:FindFirstChild("Glove") and v.Glove:FindFirstChildOfClass("TouchTransmitter") then firetouchinterest(plr.Character.HumanoidRootPart, v.Glove, 0) firetouchinterest(plr.Character.HumanoidRootPart, v.Glove, 1) task.wait(0.05) end end local HttpService = game:GetService("HttpService") local TeleportService = game:GetService("TeleportService") local function hop() local success, data = pcall(function() return HttpService:JSONDecode(game:HttpGet("https://games.roblox.com/v1/games/" .. game.PlaceId .. "/servers/Public?sortOrder=Asc&limit=100")) end) if success and data and data.data then local servers = {} for _, v in ipairs(data.data) do if v.playing and typeof(v) == "table" and v.maxPlayers > v.playing and v.id ~= game.JobId then table.insert(servers, v.id) end end if #servers > 0 then TeleportService:TeleportToPlaceInstance(game.PlaceId, servers[math.random(1, #servers)]) else task.wait(retryDelay) hop() end else task.wait(retryDelay) hop() end end hop()