Clone (Function): Difference between revisions
From Legacy Roblox Wiki
Jump to navigationJump to search
>GoldenUrg limitations |
>GoldenUrg limitations |
(No difference)
|
Revision as of 02:38, 29 May 2010
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.