Xarkkz

example

May 24th, 2021 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("WordZero", "Ocean")
  3.  
  4. -- MAIN
  5. local Main = Window:NewTab("AutoFarm")
  6. local MainSection = Main:NewSection("AutoFarm")
  7.  
  8. MainSection:NewToggle("KillAura", "Enables kill aura.", function(state)
  9. if state then
  10. getgenv().aq = true;
  11.  
  12. while wait() do
  13. if getgenv().aq == true then
  14.  
  15. end
  16. end
  17. else
  18. getgenv().aq = false;
  19. end
  20. end)
Add Comment
Please, Sign In to add comment