-- LOCAL VISUAL DUPLICATE (AMAN)
local player = game.Players.LocalPlayer
local gui = player.PlayerGui:WaitForChild("InventoryGui")
local petList = gui:WaitForChild("PetList")
local pet = petList:FindFirstChildOfClass("Frame")
if pet then
for i = 1, 5 do
local clone = pet:Clone()
clone.Name = pet.Name .. "_Fake" .. i
clone.Parent = petList
end
end