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