Advertisement
X-ModsHub

Bubble Gum Simulator Auto Open Eggs

Aug 23rd, 2020 (edited)
4,539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.79 KB | None | 0 0
  1. -- you need to stand beside the egg you want to auto open
  2. -- Made By Bebo Mods#1110
  3.  
  4. _G.Toggle = true -- true = ON false = OFF just change it
  5. while wait(0) and _G.Toggle do
  6. local args = {
  7.     [1] = "PurchaseEgg",
  8.     [2] = "Spotted Egg", -- change it to the egg name you want
  9. }
  10.  
  11. game:GetService("ReplicatedStorage").NetworkRemoteEvent:FireServer(unpack(args))
  12. end
  13.  
  14. -- or use this if you have the x3 hatch Game Pass
  15. -- you need to stand beside the egg you want to auto open
  16.  
  17.  
  18. _G.Toggle = true -- true = ON false = OFF just change it
  19. while wait(0) and _G.Toggle do
  20. local args = {
  21.     [1] = "PurchaseEgg",
  22.     [2] = "Spotted Egg", -- change it to the egg name you want
  23.     [3] = "Multi"
  24. }
  25.  
  26. game:GetService("ReplicatedStorage").NetworkRemoteEvent:FireServer(unpack(args))
  27. end
  28.  
  29.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement