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("goofy little game script", "Ocean")
- local startergui = game:GetService("StarterGui")
- -- Main
- local Main = Window:NewTab("Main")
- local MainSection = Main:NewSection("you cant turn it off btw")
- local MainSection = Main:NewSection("script made by d3cryptt!")
- MainSection:NewToggle("auto click/spawn pets", "spawns pets for you", function(state)
- if state then
- while true do
- wait(0.1)
- local args = {
- [1] = true
- }
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("Click"):FireServer(unpack(args))
- end
- else
- print("Toggle Off")
- end
- end)
- MainSection:NewToggle("auto grab food & drop food", "puts food down for your pets", function(state)
- if state then
- while true do
- wait(0.2)
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("TakeFood"):FireServer()
- wait(0.2)
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("DropFood"):InvokeServer()
- end
- else
- print("Toggle Off")
- end
- end)
- MainSection:NewToggle("auto take & put down fertilizer", "puts down fertilizer", function(state)
- if state then
- while true do
- wait(0.2)
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("TakeFertilizer"):InvokeServer()
- wait (0.3)
- game:GetService("ReplicatedStorage"):WaitForChild("Events"):WaitForChild("Gameplay"):WaitForChild("DropFertilizer"):FireServer()
- end
- else
- print("Toggle Off")
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement