local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local w = lib.CreateLib("Speed Legends Hub", "Ocean") local t = w:NewTab("Auto Farm") local s = t:NewSection("Orb Scripts") local a = false local b = false local c = false s:NewToggle("City Speed Farm", "Teleports to all City orbs", function(t) a = t task.spawn(function() while a and task.wait() do for _,m in pairs(game.Workspace.orbFolder.City:GetChildren()) do if m:IsA("Model") then local part = m:FindFirstChildWhichIsA("BasePart", true) local hrp = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if part and hrp then hrp.CFrame = part.CFrame task.wait(0.1) end end end end end) end) s:NewToggle("Reward Chest Farm", "Teleports to all reward chests", function(t) b = t task.spawn(function() while b and task.wait() do for _,m in pairs(game.Workspace.rewardChests:GetChildren()) do if m:IsA("Model") then local part = m:FindFirstChildWhichIsA("BasePart", true) local hrp = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if part and hrp then hrp.CFrame = part.CFrame task.wait(0.1) end end end end end) end) s:NewToggle("Hoop Farm", "Teleports to all hoops", function(t) c = t task.spawn(function() while c and task.wait() do for _,m in pairs(game.Workspace.Hoops:GetChildren()) do if m:IsA("MeshPart") then local hrp = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = m.CFrame task.wait(0.1) end end end end end) end) local r = w:NewTab("Race") local rs = r:NewSection("Finish Line Teleports") rs:NewButton("Desert Finish Line", "TP to Desert Finish Line", function() local hrp = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = game.Workspace.raceMaps.Desert.finishLine.CFrame end end) rs:NewButton("Grassland Finish Line", "TP to Grassland Finish Line", function() local hrp = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = game.Workspace.raceMaps.Grassland.finishLine.CFrame end end) rs:NewButton("Magma Finish Line", "TP to Magma Finish Line", function() local hrp = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = game.Workspace.raceMaps.Magma.finishLine.CFrame end end) local btab = w:NewTab("Badges") local bsec = btab:NewSection("Badge Givers") bsec:NewButton("1 Rebirth", "Grants the 1 Rebirth badge", function() local BadgeService = game:GetService("BadgeService") local Players = game:GetService("Players") local plr = Players.LocalPlayer BadgeService:AwardBadge(plr.UserId, 2124469762) end)