Clone (Function)
From Goodblox Wiki
|
Example
while true do model = workspace.Model:Clone() model.Parent = workspace wait(300) end
or
while true do workspace.Model:Clone().Parent = workspace wait(300) end
which does the same thing
Limitations
Objects with archivable set to false are not cloned.