I need to execute a script on all clients using: ["myScript.sqf","BIS_fnc_execVM",true,true] spawn BIS_fnc_MP; However, the script also requires some parameters (_unit). How would I pass this information to myScript.sqf while still using BIS_fnc_MP? Local example: _nul = [_unit] execVM "myScript.sqf"; J