Gtw

-- 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

Views: 52

Created At: 2025-12-29 09:38:47

View Raw Download Clone