Try renaming the tag to:
new_user_top_ten
However the global is setting a loop tag so simply putting the tag name in your template won't work. You need:
<%loop user_loop%>
<%Username%><br>
<%endloop%>
new_user_top_ten
However the global is setting a loop tag so simply putting the tag name in your template won't work. You need:
Code:
<%new_user_top_ten%> <%loop user_loop%>
<%Username%><br>
<%endloop%>