Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- getgenv().acoin = false
- getgenv().abuysm = false
- getgenv().autofarm = false
- getgenv().abuyrebirth = false
- function autofarm()
- spawn(function()
- while getgenv().autofarm do
- wait()
- local succ,err=pcall(function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace")["Speed Part"].Position)
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Tiles:FindFirstChild("202k"), 0)
- wait()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Tiles:FindFirstChild("202k"), 1)
- end)
- if not succ then
- wait()
- end
- end
- end)
- end
- function acoin()
- spawn(function()
- while acoin do
- wait()
- for _,v in pairs(game:GetService("Workspace").BasicCoins:GetDescendants()) do
- if v.Name == "TouchInterest" then
- if not getgenv().acoin then break end
- local succ, err=pcall(function()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
- end)
- if not succ then
- break
- end
- end
- end
- end
- end)
- end
- function abuyrebirth()
- spawn(function()
- while getgenv().abuyrebirth do
- wait(1)
- if game:GetService("Players").LocalPlayer.leaderstats.SM.Value >= game:GetService("Players").LocalPlayer.RebirthPrice.Value then
- local Event = game:GetService("ReplicatedStorage").BuyRebirth
- Event:FireServer()
- end
- end
- end)
- end
- function abuysm()
- spawn(function()
- while getgenv().abuysm do
- wait(1)
- if game:GetService("Players").LocalPlayer.leaderstats.Coins.Value >= game:GetService("Players").LocalPlayer.Price.Value then
- local Event = game:GetService("ReplicatedStorage").BuySM
- Event:FireServer()
- end
- end
- end)
- end
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("How Far Can You Fly?", "Ocean")
- local Farming = Window:NewTab("Main")
- local Credits = Window:NewTab("Credits")
- local AutoFarm = Farming:NewSection("Auto")
- local Credit = Credits:NewSection("Credit:")
- local Discord = Credits:NewSection("Discord")
- AutoFarm:NewToggle("Auto Farm Money", "Auto Farm unlimited money", function(bool)
- getgenv().autofarm = bool
- if bool then
- autofarm()
- end
- end)
- AutoFarm:NewToggle("Auto Collect Coins", "Auto Collect all coins", function(bool)
- getgenv().acoin = bool
- if bool then
- acoin()
- end
- end)
- AutoFarm:NewToggle("Auto Buy Rebirths", "Auto buy rebirths for you", function(bool)
- getgenv().abuyrebirth = bool
- if bool then
- abuyrebirth()
- end
- end)
- AutoFarm:NewToggle("Auto Buy Speed Multiplier", "Auto buy speed multiplier for you", function(bool)
- getgenv().abuysm = bool
- if bool then
- abuysm()
- end
- end)
- Credit:NewLabel("Made By Bebedi#9960")
- Discord:NewButton("Copy Discord Link", "Copy the Arcane Discord URL", function()
- setclipboard("https://discord.gg/ArKmNgwXHV")
- end)
Advertisement
Add Comment
Please, Sign In to add comment