local tabs = locs.tab:list("Tab", {"General", "Anti-aim", "Settings"})
tabs:set_callback(function(self)
local num = tabs:get()
local name = {
num == 1 and ui.get_icon('forward') .. ' General' or 'General',
num == 2 and ui.get_icon('forward') .. ' Anti-aim' or 'Anti-aim',
num == 3 and ui.get_icon('forward') .. ' Settings' or 'Settings'
} self:update(name)
end)