isActive {get}

API -

return function()
    local app = getApp();
    
    local user = app.getUserFromData('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    if user.isActive == false then
        log('this users avatar is not actively spawned/alive');
    end
end

Last updated