Advertisement
Sad43

Untitled

Jul 18th, 2025
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. -- Release All Pets Code
  2. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  3.  
  4. local possibleNames = {
  5. "ReleasePets",
  6. "DeletePets",
  7. "RemovePets",
  8. "ClearPets",
  9. "SellPets"
  10. }
  11.  
  12. local found = false
  13. for _, name in pairs(possibleNames) do
  14. local remoteEvent = ReplicatedStorage:FindFirstChild(name)
  15. if remoteEvent then
  16. remoteEvent:FireServer()
  17. print("✅ تم إطلاق الحيوانات الأليفة باستخدام: " .. name)
  18. found = true
  19. break
  20. end
  21. end
  22.  
  23. if not found then
  24. print("❌ لم يتم العثور على Remote Event للإطلاق")
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement