Right, I've been making a country on the scoreboard resource for my Race servers, but I seem to be having some problems. 
Here's my script.. 
    exports.scoreboard:addScoreboardColumn('Country') 
    function showcountry() 
    local country = exports.admin:getPlayerCountry ( source ) 
        if country then 
        setElementData(source,"Home","..country..") 
        else 
        country = "N/A" 
        end 
    end 
    addEventHandler("onPlayerJoin",getRootElement(),showcountry) 
 
And I've got this in the admin group on the ACL, so..? 
 
Ps. I'm a complete noob, this is just something for me to learn, please go easy..