Bebedi

How Far Can You Fly? Script

Oct 25th, 2022
13,174
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.58 KB | None | 0 0
  1. getgenv().acoin = false
  2. getgenv().abuysm = false
  3. getgenv().autofarm = false
  4. getgenv().abuyrebirth = false
  5.  
  6. function autofarm()
  7.     spawn(function()
  8.         while getgenv().autofarm do
  9.             wait()
  10.             local succ,err=pcall(function()
  11.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game:GetService("Workspace")["Speed Part"].Position)
  12.                 firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Tiles:FindFirstChild("202k"), 0)
  13.                 wait()
  14.                 firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, game:GetService("Workspace").Tiles:FindFirstChild("202k"), 1)
  15.             end)
  16.             if not succ then
  17.                 wait()
  18.             end
  19.         end
  20.     end)
  21. end
  22.  
  23. function acoin()
  24.     spawn(function()
  25.         while acoin do
  26.             wait()
  27.             for _,v in pairs(game:GetService("Workspace").BasicCoins:GetDescendants()) do
  28.                 if v.Name == "TouchInterest" then
  29.                     if not getgenv().acoin then break end
  30.                     local succ, err=pcall(function()
  31.                         firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  32.                         firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  33.                     end)
  34.                     if not succ then
  35.                         break
  36.                     end
  37.                 end
  38.             end
  39.         end
  40.     end)
  41. end
  42.  
  43. function abuyrebirth()
  44.     spawn(function()
  45.         while getgenv().abuyrebirth do
  46.             wait(1)
  47.             if game:GetService("Players").LocalPlayer.leaderstats.SM.Value >= game:GetService("Players").LocalPlayer.RebirthPrice.Value then
  48.                 local Event = game:GetService("ReplicatedStorage").BuyRebirth
  49.                 Event:FireServer()
  50.             end
  51.         end
  52.     end)
  53. end
  54.  
  55. function abuysm()
  56.     spawn(function()
  57.         while getgenv().abuysm do
  58.             wait(1)
  59.             if game:GetService("Players").LocalPlayer.leaderstats.Coins.Value >= game:GetService("Players").LocalPlayer.Price.Value then
  60.                 local Event = game:GetService("ReplicatedStorage").BuySM
  61.                 Event:FireServer()
  62.             end
  63.         end
  64.     end)
  65. end
  66.  
  67. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  68. local Window = Library.CreateLib("How Far Can You Fly?", "Ocean")
  69.  
  70. local Farming = Window:NewTab("Main")
  71. local Credits = Window:NewTab("Credits")
  72. local AutoFarm = Farming:NewSection("Auto")
  73. local Credit = Credits:NewSection("Credit:")
  74. local Discord = Credits:NewSection("Discord")
  75.  
  76. AutoFarm:NewToggle("Auto Farm Money", "Auto Farm unlimited money", function(bool)
  77.     getgenv().autofarm = bool
  78.     if bool then
  79.         autofarm()
  80.     end
  81. end)
  82.  
  83. AutoFarm:NewToggle("Auto Collect Coins", "Auto Collect all coins", function(bool)
  84.     getgenv().acoin = bool
  85.     if bool then
  86.         acoin()
  87.     end
  88. end)
  89.  
  90. AutoFarm:NewToggle("Auto Buy Rebirths", "Auto buy rebirths for you", function(bool)
  91.     getgenv().abuyrebirth = bool
  92.     if bool then
  93.         abuyrebirth()
  94.     end
  95. end)
  96.  
  97. AutoFarm:NewToggle("Auto Buy Speed Multiplier", "Auto buy speed multiplier for you", function(bool)
  98.     getgenv().abuysm = bool
  99.     if bool then
  100.         abuysm()
  101.     end
  102. end)
  103.  
  104. Credit:NewLabel("Made By Bebedi#9960")
  105.  
  106. Discord:NewButton("Copy Discord Link", "Copy the Arcane Discord URL", function()
  107.     setclipboard("https://discord.gg/ArKmNgwXHV")
  108. end)
Advertisement
Add Comment
Please, Sign In to add comment