getUsers

API - gets all active users in an array.

return function()
    local allActiveUsers = getUsers();
    for i,user in pairs(allActiveUsers) do
        log(user.displayName); --print all of their display names to console.
    end
end
pageUser

Last updated