The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
MINING SIMULATOR (HATCH ANY PET) script pastebin roblox
By MINING SIMULATOR (HATCH ANY PET) on 2024-09-18 08:00 am | Syntax: LUA | Views: 9



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local lib = loadstring(game:HttpGet('https://raw.githubusercontent.com/laderite/bleklib/main/library.lua', true))()
  2. local openFunc
  3.     for i,v in pairs(getgc()) do
  4.         if getinfo(v).name == 'OpenEgg' then
  5.             openFunc = v
  6.         end
  7.     end
  8. function openEgg(eggName, petName, newDisc, autoDel)
  9.     openFunc(eggName, {{'Pet', petName, 0, newDisc or false, autoDel or false}})
  10. end
  11. local window = lib:Create({Name = 'MS2 Fake Hatcher', StartupSound = {Toggle = false, SoundID = 'rbxassetid://6958727243', TimePosition=1}})
  12. local main = window:Tab('Main')
  13. local credits = window:Tab('Credits')
  14. credits:Label('Creator: Neex#7967')
  15. main:Textbox('Egg Name', function(v)
  16.     _G.EggName = v
  17. end)
  18. main:Textbox('Pet Name', function(v)
  19.     _G.PetName = v
  20. end)
  21. main:Toggle('Auto-Deleted effect', function(v)
  22.     _G.AutoDeleted = v
  23. end)
  24. main:Toggle('New-Discovered effect', function(v)
  25.     _G.NewDiscovered = v
  26. end)
  27. main:Button('Hatch Egg', function()
  28.     openEgg(_G.EggName, _G.PetName, _G.NewDiscovered, _G.AutoDeleted)
  29. end)
  30. Click To Copy