Im Using This code for Clone A Part.
1 | local clone = game.Workspace.Part:Clone() |
2 | clone.Parent = game.Workspace |
3 | clone.position = Vector 3. new( 5 , 12 , 8 ) |
Im trying to clone Groupped parts Together Witout Writing Long Script. How Can I Do This?
Use
1 | local ClonedPart = game.Workspace.Part:Clone() |
2 | ClonedPart.Name = ClonedPart |
and if you want to set it's position, use
1 | ClonedPart.Position = |
ROBLOX’s Clone method deep copies any instance.
This includes the properties, only chance the position and the parent if they’re not already. You can just :Clone() and simply let it be.
Actually,I Find A Way To Cloning Groups! Here's script:
1 | local block = game.ServerStorage.Machines:FindFirstChild( "Upgrader" ):Clone() |
2 | block.Parent = game.Workspace |
3 | block:SetPrimaryPartCFrame(CFrame.new(- 103.5 , 2.125 , 242.25 )) |