So I have been working on making a blocky red van I made regenerate after a few seconds I finally made it work but for some reason after a few times it starts going really weird (see video the whole way to understand)
as you can see it starts out fine but then it’s like it clones itself one stud behind and just keeps doing it till the game crashes sorry for explaining it so badly it’s not easy to explain
local model = script.Parent
while task.wait() do
local modelClone = model:clone()
modelClone.Parent = game.Workspace
task.wait(8)
modelClone:Destroy()
end
local model = script.Parent
while task.wait() do
local modelClone = model:clone()
modelClone.Parent = game.Workspace
task.wait(8)
modelClone:Destroy()
end
local model = script.Parent
local backup = model:Clone()
while task.wait() do
local backupClone = model:Clone()
backupClone.Parent = game.Workspace
task.wait(8)
backupClone:Destroy()
end
Make sure there are no other scripts that could be interfering.