Advertisement
Savaloy92

Untitled

Sep 30th, 2024
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  2. local fromPet = "Cat"
  3. local toPet = "Titanic Soul Owl"
  4.  
  5. for i, v in pairs(Pets[fromPet] or {}) do
  6. Pets[fromPet][i] = nil
  7. end
  8. for i, v in pairs(Pets[toPet] or {}) do
  9. Pets[fromPet][i] = v
  10. end
  11.  
  12. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  13. local fromPet = "Corgi"
  14. local toPet = "Titanic Cat"
  15.  
  16. for i, v in pairs(Pets[fromPet] or {}) do
  17. Pets[fromPet][i] = nil
  18. end
  19. for i, v in pairs(Pets[toPet] or {}) do
  20. Pets[fromPet][i] = v
  21. end
  22.  
  23. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  24. local fromPet = "Dog"
  25. local toPet = "Banana"
  26.  
  27. for i, v in pairs(Pets[fromPet] or {}) do
  28. Pets[fromPet][i] = nil
  29. end
  30. for i, v in pairs(Pets[toPet] or {}) do
  31. Pets[fromPet][i] = v
  32. end
  33.  
  34. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  35. local fromPet = "Axolotl"
  36. local toPet = "Titanic Black Hole Angelus"
  37.  
  38. for i, v in pairs(Pets[fromPet] or {}) do
  39. Pets[fromPet][i] = nil
  40. end
  41. for i, v in pairs(Pets[toPet] or {}) do
  42. Pets[fromPet][i] = v
  43. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement