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("XPets", "Ocean")
- local AutoHatch = Window:NewTab("Auto Hatch")
- local HatchSection = AutoHatch:NewSection("Huge Eggs")
- HatchSection:NewToggle("Royal Egg X8", "Auto Hatches Royal E", function(state)
- if state then
- _G.loop8x = true
- while _G.loop8x == true do wait(2.5)
- local args = {
- [1] = "Royal Egg",
- [2] = false,
- [3] = true
- }
- game:GetService("ReplicatedStorage").F03bafb41166f94cf7466d0012d53317f:InvokeServer(unpack(args))
- end
- else
- _G.loop8x = false
- end
- end)
- HatchSection:NewToggle("Royal Egg X3", "Auto Hatches Royal Egg", function(state)
- if state then
- _G.loop3x = true
- while _G.loop3x == true do wait(2.5)
- local args = {
- [1] = "Royal Egg",
- [2] = true,
- [3] = false
- }
- game:GetService("ReplicatedStorage").F03bafb41166f94cf7466d0012d53317f:InvokeServer(unpack(args))
- end
- else
- _G.loop3x = false
- end
- end)
- HatchSection:NewToggle("Royal Egg X1", "Auto Hatches Royal Egg", function(state)
- if state then
- _G.loop = true
- while _G.loop == true do wait(2.5)
- local args = {
- [1] = "Royal Egg",
- [2] = false,
- [3] = false
- }
- game:GetService("ReplicatedStorage").F03bafb41166f94cf7466d0012d53317f:InvokeServer(unpack(args))
- end
- else
- _G.loop = false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement