- 27
- 5
- Версия MoonLoader
- .025-beta
Пожалуйста Помогите Что Не Так В Скрипте
Код:
require "lib.moonloader"
local vkeys = require "vkeys"
local imgui = require "imgui"
local main_window_state = imgui.ImBool(false)
function imgui.OnDrawFrame()
if main_window_state.v then
imgui.SetNextWindowSize(imgui.ImVec2(150, 200), imgui.Cond.FirstUseEver)
imgui.Begin("Hello Its Tutorial")
imgui.Text("Its My Firs Script")
if imgui.Button('Press Me') then
printStringNow('Button Pressed!', 1800)
end
imgui.End()
end
end
funtion main()
while true do
wait(0)
if wasKeyPressed(VK_M) then
main_window_state.v = not main_window_state.v
end
imgui.Process = main_window_state.v
end
end
Делал По Этому Туториалу
Нажимаю Кнопку M И Ничего Не Происходит
Нажимаю Кнопку M И Ничего Не Происходит