So my car it is not player driven it goes by itself but whenever I use my pick script that picks the cars and clones them into the workspace it falls apart and the car is not anchored but it is welded and doesn't fall apart if I just already have it in the workspace
heres the moving script
while true do script.Parent.Velocity = script.Parent.CFrame.lookVector *20 wait(0.1) end
and here is the script that clones it
Citizen = game.Lighting.Car Citizen1 = game.Lighting.Car1 Citizens = {Citizen, Citizen1} while wait() do RCitizen = Citizens[math.random(1, #Citizens)] RCitizen:Clone().Parent = game.Workspace wait(12) end
I do not know if its from the script but I just posted the scripts just incase...