i've tried this code
part1 = Instance.new("Part") part1.Parent = game.Workspace part1.Position =
the position i dont really wana put but whatever
And it dosent work So How do i copy and create?
Part = game.Workspace.part Part2 = Part:clone Part2.Parent = game.Workspace Part2.Position =
the position i dont really wana put but whatever
Part = Instance.new("Part", game.Workspace) PartTwo = Part:Clone() PartTwo.Parent = game.Workspace PartTwo.Position = Vector3.new(N/A, N/A, N/A)
I'm Aurum, and you're welcome.
Are you sure your part is called "part"? Remember, capitalization matters.
Also, it's :Clone()
not :Clone
. :)