Advertisement
Savaloy92

Mine

Sep 29th, 2024
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 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 = "Huge Fox"
  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 = "Cat"
  25. local toPet = "Titanic Fire Dragon"
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement