local ReplicatedStorage = game:GetService("ReplicatedStorage") local toolsFolder = ReplicatedStorage:WaitForChild("ShopAssetsFolder"):WaitForChild("ToolsFolder"):WaitForChild("Tools") local sendToolRemote = ReplicatedStorage:WaitForChild("ShopAssetsFolder"):WaitForChild("AssetRemotes"):WaitForChild("SendTool") for _, tool in ipairs(toolsFolder:GetChildren()) do if tool:IsA("Tool") then local toolName = tool.Name print("Found tool:", toolName) local args = { toolName, true, false } sendToolRemote:FireServer(unpack(args)) end end