-- Library local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wall%20v3')))() local w = library:CreateWindow("🏆 - Race Clicker Script") local b = w:CreateFolder("Main") local c = w:CreateFolder("Credits") -- Variables local Players = game:GetService("Players") local lp = Players.LocalPlayer -- Tables local Maps = {"Home - 0 Rebirth", "Space - 2 Rebirth", "Ocean - 4 Rebirth"} local Eggs = {"5 Wins", "25 Wins", "175 Wins", "1k Wins", "10k Wins", "75k Wins", "250k Wins", "1M Wins", "2.5M Wins", "5M Wins"} local Codes = {"UPDATECLICKCODE", "hallowx3", "Accelhidden", "opx3code", "500KLikes", "Almost100MVisits", "1MGroupMembers", "Thankyou50M", "NewUpdate", "LetsGo5KLikes", "ThanksFor5MillionsVisits"} -- Main local delay b:Slider("Auto Race Delay ( /s )",{ min = 0.01; -- min value of the slider max = 1; -- max value of the slider precise = true; -- max 2 decimals },function(value) delay = value end) b:Toggle("Auto Race",function(bool) getgenv().AutoFinish = bool task.spawn(function() while task.wait() do if AutoFinish then pcall(function() if lp.PlayerGui.TimerUI.RaceTimer.Visible then local char = lp.Character local hum = char.Humanoid local hrp = char.HumanoidRootPart hrp.CFrame = hrp.CFrame + Vector3.new(50000, 0, 0) task.wait(delay) end end) end end end) end) b:Toggle("Auto Speed",function(bool) getgenv().AutoClick = bool task.spawn(function() while task.wait() do if AutoClick then if lp.PlayerGui.ClicksUI.ClickHelper.Visible == true then game:GetService("ReplicatedStorage").Packages.Knit.Services.ClickService.RF.Click:InvokeServer() end end end end) end) b:Toggle("Auto Rebirth",function(bool) getgenv().AutoRebirth = bool task.spawn(function() while task.wait() do if AutoRebirth then game:GetService("ReplicatedStorage").Packages.Knit.Services.RebirthService.RF.Rebirth:InvokeServer() task.wait(5) end end end) end) warn("Ty for using my script bro <3 !") b:Label("===========",{ TextSize = 25, TextColor = Color3.fromRGB(255,255,255), BgColor = Color3.fromRGB(69,69,69) }) local choosed_egg b:Dropdown("Choose Egg",{unpack(Eggs)},true,function(egg) if egg == Eggs[1] then choosed_egg = "Starter01" elseif egg == Eggs[2] then choosed_egg = "Starter02" elseif egg == Eggs[3] then choosed_egg = "Starter03" elseif egg == Eggs[4] then choosed_egg = "Starter04" elseif egg == Eggs[5] then choosed_egg = "Pro01" elseif egg == Eggs[6] then choosed_egg = "Pro02" elseif egg == Eggs[7] then choosed_egg = "Pro03" elseif egg == Eggs[8] then choosed_egg = "Space01" elseif egg == Eggs[9] then choosed_egg = "Ocean01" end end) b:Toggle("Auto Hatch",function(bool) getgenv().AutoHatch = bool task.spawn(function() while task.wait() do if AutoHatch then if choosed_egg then local args = {[1] = choosed_egg,[2] = "1",[3] = {}} game:GetService("ReplicatedStorage").Packages.Knit.Services.EggService.RF.Open:InvokeServer(unpack(args)) else warn("Please, choose your egg !") end end end end) end) b:Toggle("Auto Craft",function(bool) getgenv().AutoCraft = bool task.spawn(function() while task.wait(3) do if AutoCraft then game:GetService("ReplicatedStorage").Packages.Knit.Services.PetsService.RF.CraftAll:InvokeServer() end end end) end) b:Toggle("Auto Equip",function(bool) getgenv().AutoEquipBest = bool task.spawn(function() while task.wait(3) do if AutoEquipBest then game:GetService("ReplicatedStorage").Packages.Knit.Services.PetsService.RF.EquipBest:InvokeServer() end end end) end) b:Label("===========",{ TextSize = 25, TextColor = Color3.fromRGB(255,255,255), BgColor = Color3.fromRGB(69,69,69) }) b:Dropdown("Map Teleport :",{unpack(Maps)},true,function(map) if map == Maps[1] then local args = {[1] = "Home"} game:GetService("ReplicatedStorage").Packages.Knit.Services.WorldService.RF.Travel:InvokeServer(unpack(args)) elseif map == Maps[2] then local args = {[1] = "Space"} game:GetService("ReplicatedStorage").Packages.Knit.Services.WorldService.RF.Travel:InvokeServer(unpack(args)) elseif map == Maps[3] then local args = {[1] = "Ocean"} game:GetService("ReplicatedStorage").Packages.Knit.Services.WorldService.RF.Travel:InvokeServer(unpack(args)) end end) b:Button("Redeem Codes",function() for i,v in (Codes) do local args = {[1] = v} game:GetService("ReplicatedStorage").Packages.Knit.Services.CodesService.RF.Redeem:InvokeServer(unpack(args)) end end) b:DestroyGui() c:Label("UI : Wally UI V3",{ TextSize = 20; -- Self Explaining TextColor = Color3.fromRGB(255,255,255); -- Self Explaining BgColor = Color3.fromRGB(69,69,69); -- Self Explaining }) c:Label("Made by : SQK#9773",{ TextSize = 15; -- Self Explaining TextColor = Color3.fromRGB(255,255,255); -- Self Explaining BgColor = Color3.fromRGB(69,69,69); -- Self Explaining }) c:Label("Any Problems? ^ Add me :)",{ TextSize = 15; -- Self Explaining TextColor = Color3.fromRGB(255,255,255); -- Self Explaining BgColor = Color3.fromRGB(69,69,69); -- Self Explaining })