I'll use lighting as a place where the stuff will be
Lighting ----Store ------Hats <- trying to copy everything under this place --------Black Domino --------Midnight Sparkle Time Fedora --------Duke of the Federation --------Black Sparkle Time Fedora
etc
I'm trying it with this script
game.Lighting["Black Domino","Duke of the Federation"]:Clone().Parent = game.Players.LocalPlayer.Hats
Basicly, you want to use a table and a for i,v in pairs loop.
for i,v in next,game:GetService("Lighting"):GetChildren() do local NewObj = v:Clone() NewObj.Parent = game.Players.LocalPlayer.Hats -- Thats the parent you wanted right?? end