Created by logicPatek
Features:
- AUTO CLICK
- AUTO REBIRTH
- HATCH ANY EGG
SCRIPTS: [2]
AUTO CLICK AND REBIRTH:
while task.wait() do
local args = {
[1] = game:GetService("Players").LocalPlayer
}
game:GetService("ReplicatedStorage").Events.processClicks:FireServer()
game:GetService("ReplicatedStorage").Events.rebirth:FireServer(unpack(args))
end
HATCH ANY EGG
while task.wait() do
local args = {
[1] = "Single",
[2] = "Z6", -- to hatch a different egg change the number to the zone number (6 zones 6 best)
[3] = true,
[4] = {},
[5] = false
}
game:GetService("ReplicatedStorage").Events.petHatching:FireServer(unpack(args))
end