I am making my first wordpress theme but when i tried to load external js in my theme its not loading in my page instead of that it load in wp-admin page
functions.php
wp_enqueue_script('jquery');
wp_enqueue_script('scripts', get_template_directory_uri() . '/js/scripts.js', array('jquery'),'1.0', true );
my script.js
(function($) {
alert("it workd!!");
})(jQuery);