Savaloy92

Untitled

Sep 29th, 2024
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 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
Add Comment
Please, Sign In to add comment