How to Make Archive ShortCode

That is not a shortcode. Take a look at the Shortcode API for examples of how to do this.

Here is your specifc example:

function wpse61674_archives_shortcode_cb( $atts ) {
    return wp_get_archives('type=monthly');
}
add_shortcode( 'archives', 'wpse61674_archives_shortcode_cb' );