How do I get a child theme to load scripts from the parent theme?

functions.php file of the child theme is loaded before the functions.php of the parent theme so it’s best to run the code at the hook after both themes are loaded. At the earliest at after_setup_theme hook so Change:

 add_action('init', 'scherzo_scripts');

to:

add_action('after_setup_theme', 'scherzo_scripts');