For the complete documentation index, see llms.txt. This page is also available as Markdown.

runCommand

API -

return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end

    user.runCommand('!jump'); --tells the user's avatar to jump
end

Last updated