Advertisement
Daeho

hop

Jun 7th, 2025 (edited)
846
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.15 KB | Gaming | 0 0
  1. if not game:IsLoaded() then game.Loaded:Wait() end
  2. loadstring(game:HttpGet("https://raw.githubusercontent.com/uzu01/arise/refs/heads/main/global.lua"))()
  3.  
  4. _G.JxereasExistingHooks  = {GuiDetectionBypass  = true}
  5.  
  6. local notification = loadstring(game:HttpGet("https://raw.githubusercontent.com/Jxereas/UI-Libraries/main/notification_gui_library.lua", true))()
  7. local replicated_storage = game:GetService("ReplicatedStorage")
  8. local data_service = require(replicated_storage.Modules.DataService)
  9. local garden
  10.  
  11. function send_webhook(url, text, ...)
  12.     return request({
  13.         Url = ("%*?wait=true"):format(url),
  14.         Method = "POST",
  15.         Headers = {["Content-Type"] = "application/json"},
  16.         Body = game:GetService("HttpService"):JSONEncode({embeds = {...}, content = text})
  17.     })
  18. end
  19.  
  20. task.wait(3)
  21.  
  22. for i, v in workspace.Farm:GetChildren() do
  23.     if v.Important.Data.Owner.Value ~= player.Name then continue end
  24.     garden = v
  25. end
  26.  
  27. function get_egg(uid)
  28.     for i, v in garden.Important.Objects_Physical:GetChildren() do
  29.         if v.Name:match("PetEgg") and v:GetAttribute("OBJECT_UUID") == uid then
  30.             return v
  31.         end
  32.     end
  33.     return nil
  34. end
  35.  
  36. local foundTargetPet = false
  37.  
  38. for i, v in data_service:GetData().SavedObjects do
  39.     local data = v.Data
  40.     local egg = data and data.EggName
  41.  
  42.     if not egg then continue end
  43.     if not data.RandomPetData then continue end
  44.  
  45.     local petName = data.Type
  46.  
  47.     if not (getgenv().target_pets and table.find(getgenv().target_pets, petName)) then
  48.         continue
  49.     end
  50.  
  51.     foundTargetPet = true
  52.  
  53.     if getgenv().webhook_url then
  54.         local pingUser = getgenv().pingUser or ""
  55.         send_webhook(getgenv().webhook_url, pingUser .. " Found pet: **" .. petName .. "** (Hatching now!)", nil)
  56.     end
  57.  
  58.     replicated_storage.GameEvents.PetEggService:FireServer("HatchPet", get_egg(i))
  59.     task.wait(10)
  60.     game:GetService("TeleportService"):Teleport(game.PlaceId)
  61.     break
  62. end
  63.  
  64. if not foundTargetPet then
  65.     game:GetService("TeleportService"):Teleport(game.PlaceId)
  66. end
  67.  
  68. queue_on_teleport('loadstring(game:HttpGet("https://pastebin.com/raw/BE36f3z8"))()')
Advertisement
Comments
  • Daeho
    9 hours
    Comment was deleted
Add Comment
Please, Sign In to add comment
Advertisement