Advertisement
Savaloy92

Untitled

Sep 29th, 2024 (edited)
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  2. local fromPet = "Soul 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 = "Soul Owl"
  14. local toPet = "Titanic Soul Owl"
  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. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  23. local fromPet = "Soul Owl"
  24. local toPet = "Titanic Soul Bat"
  25.  
  26. for i, v in pairs(Pets[fromPet] or {}) do
  27. Pets[fromPet][i] = nil
  28. end
  29. for i, v in pairs(Pets[toPet] or {}) do
  30. Pets[fromPet][i] = v
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement