Why isent my part cloning to the right position

No because it is already defined as a clone.

1 Like

Circle plot baseplate not stud

Are the parts locked? (30 chars)

no (character limits are annoying)

That has nothing to do with it. Heres the thing, there is no part in workspace called “Stud”.

not not piece as he said im cloning

stud* or piece…

If this continues I recommend sending a bug report.

local cloned = script.Parent.Stud:Clone()
cloned.Name = "Piece"

Full code script.Parent.Activated:Connect(function()
local cloned = script.Parent.Stud:Clone()
cloned.Name = “Piece”
cloned.Parent = workspace
cloned.Position = script.Parent.Stud.Position
print(cloned.Position)
cloned.Transparency = 0
cloned.BrickColor = BrickColor.new(“Black”)
end)

No, this is not a roblox bug, there is a bug in his code.

script.Parent.Activated:Connect(function()

local cloned = script.Parent.Stud:Clone()

cloned.Name = “Piece”

cloned.Parent = workspace

cloned.Position = script.Parent.Stud.Position

print(cloned.Position)

cloned.Transparency = 0

cloned.BrickColor = BrickColor.new(“Black”)

end)

Try this:

cloned.CFrame = script.Parent.Stud.CFrame

should I be doing CFrame mabey?

Yeh like what I said. (char limit)

Nope doesent work…

Why are you even setting position in the first place? Cloned parts have the same position as the part you are cloning them from. There is no need for that.

Oh well try printing positions of parts and CFrame’s of parts.

1 Like

no like I said ive been trying every thing even before I dident do that it still dident go to the position its stuck at -24.5, 0.5, 29.5