Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I stop my brick from cloning the clone and not just one at a time?

Asked by 4 years ago

I added somethings here and kept try but nothing is working, please help

local Object = game.Workspace.PartToClone

while true do
    wait(3)

    local ClonedObject = Object

ClonedObject.Parent = game.Workspace
ClonedObject.Position = Vector3.new(-67.5, 0.5, 28.18)

end



1 answer

Log in to vote
0
Answered by 4 years ago

Not too sure what you're trying to do, but try this

local Object = game.Workspace.PartToClone

while true do
    wait(3)

    local ClonedObject = Object:Clone() --//Just making sure we're cloning the object and not just moving it

    ClonedObject.Parent = game.Workspace
    ClonedObject.Position = Vector3.new(-67.5, 0.5, 28.18)
end
Ad

Answer this question