local Tools = script.Tools:GetChildren() ToolC = Tools:Clone() -- This does not work, how do make the clone working??? TooC = Player.Backpack
The above is a quick script I wrote it is not fully completed but those who know how to script will understand this.
GetChildren returns a table. You have to iterate throughout the table and clone each individual one to the player.
for _, Tool in next, Tools:GetChildren() do Tool:Clone().Parent = Player.Backpack end