What is wrong with my script?

I was trying to clone the baseplate but I didn’t get an error saying that it didn’t work so what is wrong with my script.I also don’t see my script cloned baseplate in the workspace

wait(5)

local Parts = game.Workspace.Baseplate

local Parts2 = Parts:Clone()

Parts2.Position = Vector3.new(0,100,0)

You need to parent the clonedpart to the workspace so you can see it

local Part = workspace.Baseplate
local ClonedPart = Part:Clone()

ClonedPart.Position = Vector3.new(0, 100, 0)
ClonedPart.Parent = workspace
1 Like

You didn’t parent the baseplate.

2 Likes