====== ArmA 3 Delete Vehicle At Waypoint ====== [[:arma3|ArmA 3]], [[arma3:config|Config]], [[arma3:missions|Missions]], [[arma3:modeling|3D Modeling]], [[arma3:scripting|Scripting]], [[arma3:terrain|Terrain]], [[arma3:texturing|Texturing]], [[arma3:tools|Tools]] **2022-06-03T17:20:00Z** HOWTO delete vehicle and its crew / group upon reaching a waypoint? Most often this is done to insertion or air support helicopter, once its done its task it flies over the ocean or back to base and simply gets deleted. Create move waypoint, usually combat mode "forced hold fire" and behavior "careless" so when it detects enemies it wont do "Ooh! Look shiny *runs off*" heh. Then on the "On Activation" line paste the following: cleanUpveh = vehicle leader this; {deleteVehicle _x} forEach crew cleanUpveh + [cleanUpveh]; deleteGroup this; Source [[https://forums.bohemia.net/forums/topic/149980-delete-units-on-reaching-waypoint/?do=findComment&comment=2381838|kylania 2013-07-14 in bis forums]].