game.ReplicatedStorage.test:WaitForChild("Part") local part = game.ReplicatedStorage.test.Part while true do wait(2) part:Clone() part.Parent = game.Workspace end
Test is just a folder in the replicatedstorage. What it does for some reason is just take the part out of the replicatedstorage into the workspace instead of cloning it. What did i do wrong?
try this:
game.ReplicatedStorage.test:WaitForChild("Part") local part = game.ReplicatedStorage.test.Part while true do wait(2) local clone = part:Clone() clone.Parent = game.Workspace end
**or try this : **
game.ReplicatedStorage.test:WaitForChild("Part") local part = game.ReplicatedStorage.test.Part while true do wait(2) part:Clone().Parent = game.Workspace end