while true do game.Workspace.ChickenNugget:Clone().Parent = game.Workspace wait(0.7) end
For first, create a variable to clone.
And set the position with variable.Position = Vector3.new(x,y,z)
Here is the script:
while true do local brick = game.Workspace.ChickenNugget:Clone() brick.Parent = game.Workspace brick.Position = Vector3.new(0,0,0) -- Put the position. -- for set model position you can use brick:SetPrimaryPartCFrame(CFrame.new(0,0,0)) wait(0.7) end -- yHasteeD --
Hope it helped :)
Try doing this:
while true do local ChickenNuggetClone = game.Workspace.ChickenNugget:Clone().Parent = ChickenNuggetClone.Position.CFrame = CFrame.new(0,0,0) -- Put the position of the chicken nugget here wait(1) end