Clone (Function)

From Goodblox Wiki
Revision as of 06:36, 23 June 2020 by Pizzaboxer (talk | contribs) (Created page with "{| |<onlyinclude> {{Function| name = Clone |arguments = |returns = Instance object |description = Returns a copy of this...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search
Function
Syntax Clone( )
Returns Instance object
Description: Returns a copy of this Object and all its children. The copy's Parent is nil
In Object: Global


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.

These classes are known to be unclonable: Hats, Workspace