Clone (Function)
From Legacy Roblox Wiki
Description
Example
local Model = game.Workspace.Model while true do local ModelCopy = Model:Clone() ModelCopy.Parent = game.Workspace wait(300) end
Services cannot be cloned
local new_workspace = Workspace:clone() --> Unknown object class "Workspace" while reading XML
Limitations
- Objects with their archivable property set to false are not cloned.
- Services cannot be cloned.