> For the complete documentation index, see [llms.txt](https://docs.streamavatars.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.streamavatars.com/lua-scripting-api/api-reference-and-tips/classes/user/override_scale-get-set.md).

# override\_scale {get;set}

```lua
return function()
    local user = getUser('clonzeh');
    if user == nil then
        log('user does not exist!');
        return;
    end
    
    user.override_scale = 2; --sets the avatars scale to 2 disregarding any other modifiers!
    --this value will be reset upon restarting application.
    
    --to turn off the override scale, set it's value to -1
    --warning: other commands or games might use this value and return it to -1 upon finishing.
end
```
