I made a car that falls off the map so it looks like there are an endless amount of cars but once it falls off I can't get it to respawn, this is what I thought would work, which obviously didnt. I also need it to respawn in one place not the place it is when falling.
while true do clone = script.Parent:Clone() wait(7) clone.Parent = game.Workspace end end
It needs to be respawning the car in a loop not just a couple times
Alr so u just dont need the 2nd end
and if u want to move it u can either use position, or moveto() if position doesn't work just use moveto() by replacing position with moveto()
local position = Vector3.new(0, 0, 0) while true do clone = script.Parent:Clone() wait(7) clone.Parent = game.Workspace clone.Position = (position) end