Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
- local Window = Library.CreateLib("Planet Clicker 🌎 BY FinuraBR", "Ocean")
- -- Script
- local Main = Window:NewTab("Script")
- local MainSection = Main:NewSection("Script")
- MainSection:NewToggle("Auto Click", "Auto Click Planet", function(state)
- if state then
- _G.farm = true
- while wait() do
- if _G.farm == true then
- game:GetService("ReplicatedStorage").ClickedButton:FireServer()
- end
- end
- else
- _G.farm = false
- while wait() do
- if _G.farm == true then
- game:GetService("ReplicatedStorage").ClickedButton:FireServer()
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement