Background: Since BeamNG version 0.35, some mods that worked fine in older versions (0.34 and earlier) can break the traffic system. This is usually caused by: Changes in the AI and traffic system API: The way the game initializes AI vehicles and parts has changed, so old scripts that expect the old data structure (like the parts table) will fail. Bundled scripts inside other mods: Even if you uninstall a problematic mod (like Advanced Driver Assistance Systems), other vehicle packs or config packs might include the same scripts inside their zip. The game still loads them, causing the same Lua error. No null-checks in older scripts: Many old mods don't check if certain game data is available before using it, so they crash when the data format changes. Result: Traffic shows the loading icon forever Vehicles either spawn and don’t move, or don’t spawn at all Console shows: Fatal Lua Error scripts/driver_assistance_angelo234/extraUtils.lua:27: attempt to index local 'parts' (a nil value) How to fix it: Find which mod contains the driver_assistance_angelo234 scripts and remove it. Even if you never installed the standalone ADAS mod, another mod could be including it. Steps to locate the mod (Windows PowerShell method): Open your BeamNG config folder Go to: %LocalAppData%\BeamNG.drive\0.36 (or whichever version folder you’re using) Open PowerShell in that folder Hold Shift → Right-click empty space → Open in PowerShell/Terminal. Run this script: Add-Type -AssemblyName System.IO.Compression.FileSystem Get-ChildItem -Recurse -Include *.zip -File | ForEach-Object { $zip = [System.IO.Compression.ZipFile]::OpenRead($_.FullName) $hit = $zip.Entries | Where-Object { $_.FullName -match 'scripts/driver_assistance_angelo234/' } if ($hit) { "`n>>> FOUND in: $($_.FullName)" $hit | Select-Object -ExpandProperty FullName } $zip.Dispose() } Read the output >>> FOUND in: shows the full path to the mod .zip containing the scripts Remove or rename that .zip from your mods folder Clear Cache (Deep Clean) in the Launcher Restart the game and test traffic again