Advertisement
Finura

Planet Clicker 🌎 Script (BY FinuraBR)

Mar 27th, 2023
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 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("Planet Clicker 🌎 BY FinuraBR", "Ocean")
  3. -- Script
  4. local Main = Window:NewTab("Script")
  5. local MainSection = Main:NewSection("Script")
  6.  
  7. MainSection:NewToggle("Auto Click", "Auto Click Planet", function(state)
  8. if state then
  9. _G.farm = true
  10.  
  11. while wait() do
  12. if _G.farm == true then
  13.  
  14. game:GetService("ReplicatedStorage").ClickedButton:FireServer()
  15. end
  16. end
  17. else
  18. _G.farm = false
  19.  
  20. while wait() do
  21. if _G.farm == true then
  22.  
  23. game:GetService("ReplicatedStorage").ClickedButton:FireServer()
  24. end
  25. end
  26. end
  27. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement