Enqueue specific script on account creation (and never again)

This is how you would use the user_register hook to load your script:

add_action( 'user_register', 'new_user_tracking_script' )

function new_user_tracking_script(){
    // Google Analytics
    wp_enqueue_script( 'new_user_tracking' );
}