Hidden fields are fully compatible with multigroup, but to work, module must implement hook_content_multigroup_allowed_widgets.

Please add this to module, so when new CCK will come your module will work as expected.

/**
 * Implements hook_content_multigroup_allowed_widgets().
 */
function hidden_widget_content_multigroup_allowed_widgets() {
	return array('hidden');
}