How can I give access to my plugin sections in admin?

You can wrap the parts you want a subscriber to see by wrapping the code with:

if ( current_user_can( 'read' ) ){
    // the code you want the subscriber to see
}

You can checkout the role and capabilities here https://codex.wordpress.org/Roles_and_Capabilities#Subscriber