How to make a script that gets all the children of a folder and clones it to parent to the character

I was thinking of making a for loop to do it but Im not sure

you would use a PlayerAdded, CharacterAdded, and a for loop.

local folder = --folder you want to clone stuff from

game.Players.PlayerAdded:Connect(function(plr)
    plr.CharacterAdded:Connect(function(char)
        for i,v in pairs(folder:GetChildren()) do
            local clone = v:Clone() --clone it
            clone.Parent = char --change the parent
        end
    end)
end)
2 Likes

Thank you so much really appreciated