i've tried this code
1 | part 1 = Instance.new( "Part" ) |
2 | part 1. Parent = game.Workspace |
3 | part 1. Position = |
the position i dont really wana put but whatever
And it dosent work So How do i copy and create?
1 | Part = game.Workspace.part |
2 | Part 2 = Part:clone |
3 | Part 2. Parent = game.Workspace |
4 | Part 2. Position = |
the position i dont really wana put but whatever
1 | Part = Instance.new( "Part" , game.Workspace) |
2 | PartTwo = Part:Clone() |
3 | PartTwo.Parent = game.Workspace |
4 | PartTwo.Position = Vector 3. 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
. :)