Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- you need to stand beside the egg you want to auto open
- -- Made By Bebo Mods#1110
- _G.Toggle = true -- true = ON false = OFF just change it
- while wait(0) and _G.Toggle do
- local args = {
- [1] = "PurchaseEgg",
- [2] = "Spotted Egg", -- change it to the egg name you want
- }
- game:GetService("ReplicatedStorage").NetworkRemoteEvent:FireServer(unpack(args))
- end
- -- or use this if you have the x3 hatch Game Pass
- -- you need to stand beside the egg you want to auto open
- _G.Toggle = true -- true = ON false = OFF just change it
- while wait(0) and _G.Toggle do
- local args = {
- [1] = "PurchaseEgg",
- [2] = "Spotted Egg", -- change it to the egg name you want
- [3] = "Multi"
- }
- game:GetService("ReplicatedStorage").NetworkRemoteEvent:FireServer(unpack(args))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement