LUA скрипт Neverlose menu hider

Juicy
Участник
Участник
Статус
Оффлайн
Регистрация
5 Май 2021
Сообщения
779
Реакции
167
https://yougame.biz/threads/358628/ - пишу скрипты за респект

1755328145400.png

Neverlose menu hider:
Expand Collapse Copy
ui.sidebar('Juicy.lua', '2077')
local group = ui.create('LUA', 'A')
local enabled = group:switch('ну що ти хлопець')

local tabs = {
    [0] = ui.find('Aimbot', 'Ragebot'),
    ui.find('Aimbot', 'Anti aim'),
    ui.find('Aimbot', 'Legitbot'),
    ui.find('Visuals', 'Players'),
    ui.find('Visuals', 'World'),
    ui.find('Visuals', 'Inventory'),
    ui.find('Miscellaneous', 'Main')
}

local players_subtabs = {
    [0] = ui.find('Visuals', 'Players', 'Enemies'),
    ui.find('Visuals', 'Players', 'Teammates'),
    ui.find('Visuals', 'Players', 'Self')
}

local function hide_menu(bool)
    for _, tab in pairs(tabs) do
        tab:visibility(bool)
    end

    for _, group in pairs(players_subtabs) do
        group:visibility(bool)
    end
end

enabled:set_callback(function(self)
    local bool = not self:get()
    enabled:name(not bool and 'пійматися' or 'ну блиииин')
    hide_menu(bool)
end)
 
Назад
Сверху Снизу