Advertisement
Guest User

Script For Auto Hatch

a guest
Nov 12th, 2022
843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("XPets", "Ocean")
  3.  
  4. local AutoHatch = Window:NewTab("Auto Hatch")
  5. local HatchSection = AutoHatch:NewSection("Huge Eggs")
  6.  
  7. HatchSection:NewToggle("Royal Egg X8", "Auto Hatches Royal E", function(state)
  8. if state then
  9. _G.loop8x = true
  10. while _G.loop8x == true do wait(2.5)
  11. local args = {
  12. [1] = "Royal Egg",
  13. [2] = false,
  14. [3] = true
  15. }
  16.  
  17. game:GetService("ReplicatedStorage").F03bafb41166f94cf7466d0012d53317f:InvokeServer(unpack(args))
  18. end
  19. else
  20. _G.loop8x = false
  21. end
  22. end)
  23. HatchSection:NewToggle("Royal Egg X3", "Auto Hatches Royal Egg", function(state)
  24. if state then
  25. _G.loop3x = true
  26. while _G.loop3x == true do wait(2.5)
  27. local args = {
  28. [1] = "Royal Egg",
  29. [2] = true,
  30. [3] = false
  31. }
  32.  
  33. game:GetService("ReplicatedStorage").F03bafb41166f94cf7466d0012d53317f:InvokeServer(unpack(args))
  34. end
  35. else
  36. _G.loop3x = false
  37. end
  38. end)
  39. HatchSection:NewToggle("Royal Egg X1", "Auto Hatches Royal Egg", function(state)
  40. if state then
  41. _G.loop = true
  42. while _G.loop == true do wait(2.5)
  43. local args = {
  44. [1] = "Royal Egg",
  45. [2] = false,
  46. [3] = false
  47. }
  48.  
  49. game:GetService("ReplicatedStorage").F03bafb41166f94cf7466d0012d53317f:InvokeServer(unpack(args))
  50. end
  51. else
  52. _G.loop = false
  53. end
  54. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement