I already know how to clone an object but how do i then send it to a certain place.
local ObjectToClone = game.Workspace.part -- What to clone local clone = ObjectToClone:clone() -- cloned, parent will be nil. You must set it clone.Parent = game.Workspace -- Set the parent of the object. clone.CFrame = game.Workspace.Baseplate.CFrame -- Moves the new object inside of part Baseplate. Will not work on a model. This will move the part to the exact position of Baseplate