Advertisement
Savaloy92

Untitled

Sep 29th, 2024 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  2. local fromPet = "Fire Bat"
  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
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement