How do i retrive a post from a custom post type

I’m not sure that I completely understand your question, but if you’re just looking for an array of movies that are of the type distributie, based on the ID of the current Loop object, this will do it:

$args = array( 
'post_type' => 'movies',
'meta_key' => 'distributie',
'meta_value' => get_the_ID()
)
$get_distributie_movies = get_posts( $args ); 

(not tested)