Bebedi

raceclicker

Aug 26th, 2022
235,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.69 KB | Source Code | 0 0
  1. getgenv().awin = false
  2. getgenv().aclick = false
  3.  
  4. function awin()
  5.     spawn(function()
  6.         while getgenv().awin do
  7.             wait()
  8.             for _,v in pairs(game:GetService("Workspace").Environment:GetDescendants()) do
  9.                 if v.Name == "TouchInterest" then
  10.                     if not getgenv().awin then break end
  11.                     firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  12.                     wait(0.1)
  13.                     firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  14.                 end
  15.             end
  16.         end
  17.     end)
  18. end
  19.  
  20. function aclick()
  21.     spawn(function()
  22.         click = nil
  23.         for i,v in pairs(getgc()) do
  24.             if type(v) == 'function' then
  25.                 if debug.getinfo(v).name == "Click" then
  26.                     click = v
  27.                 end
  28.             end
  29.         end
  30.         while getgenv().aclick do
  31.             wait()
  32.             for i = 1,1000 do
  33.                 click(UDim2.new(0,0,0),1)
  34.             end
  35.         end
  36.     end)
  37. end
  38.  
  39. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  40. local Window = Library.CreateLib("Race Clicker!", "Ocean")
  41.  
  42. local Farming = Window:NewTab("Main")
  43. local Credits = Window:NewTab("Credits")
  44. local AutoFarm = Farming:NewSection("Main")
  45. local Credit = Credits:NewSection("Credit:")
  46. local Discord = Credits:NewSection("Discord")
  47.  
  48. AutoFarm:NewToggle("Auto Click", "Auto CLick for you", function(bool)
  49.     getgenv().aclick = bool
  50.     if bool then
  51.         aclick()
  52.     end
  53. end)
  54.  
  55. AutoFarm:NewToggle("Auto Win", "Auto win", function(bool)
  56.     getgenv().awin = bool
  57.     if bool then
  58.         awin()
  59.     end
  60. end)
  61.  
  62. Credit:NewLabel("Made By Bebedi#9960")
  63.  
  64. Discord:NewButton("Copy Discord Link", "Copy the Arcane Discord URL", function()
  65.     setclipboard("https://discord.gg/ArKmNgwXHV")
  66. end)
Advertisement
Add Comment
Please, Sign In to add comment