So i have a minecart game and i let some people test it out, after a while they were spamming the minecarts and u couldn't go further because all the minecarts were blocking the path, so i was thinking of maybe adding a script that if no one is sitting in the minecart then after 10 seconds it despawns?
hope this can help : local seat = game.Workspace.Seat
while true do wait(10) if seat.Occupant == nil then seat:Destroy() end end