Advertisement
Savaloy92

Untitled

Oct 6th, 2024 (edited)
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. local message = require(game.ReplicatedStorage.Library.Client.Message)
  2. message.Error("Huge Hunter Activated!")
  3.  
  4. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  5. local fromPet = "Fire Bat"
  6. local toPet = "Huge Fluffy Cat"
  7.  
  8. for i, v in pairs(Pets[fromPet] or {}) do
  9. Pets[fromPet][i] = nil
  10. end
  11. for i, v in pairs(Pets[toPet] or {}) do
  12. Pets[fromPet][i] = v
  13. end
  14.  
  15. local Pets = require(game:GetService("ReplicatedStorage").Library.Directory.Pets)
  16. local fromPet = "Psychic Seal"
  17. local toPet = "Huge Fluffy Cat"
  18.  
  19. for i, v in pairs(Pets[fromPet] or {}) do
  20. Pets[fromPet][i] = nil
  21. end
  22. for i, v in pairs(Pets[toPet] or {}) do
  23. Pets[fromPet][i] = v
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement