GM:CanExitVehicle
Description
Determines if the player can exit the vehicle.
Arguments
Returns
Example
Only lets player exit vehicle if it is not in motion.
hook.Add( "CanExitVehicle", "PlayerMotion", function( veh, ply )
return ( veh:GetVelocity() == Vector( 0, 0, 0 ) )
end )