Нажатие клавиши Lua

LuiFIB

Новичок
Автор темы
7
1
Версия MoonLoader
Другое
Мне нужно чтобы после команды /buygarage нажимался Enter, помогите пожалуйста как это сделать
Lua:
require "lib.moonloader"
local keys = require "vkeys"
function main ()
if not isSampLoaded() or not isSampfuncsLoaded() then return end
while not isSampAvailable() do wait(100) end
sampAddChatMessage('{FF47CA}~ЛОВЛЯ ГАРАЖЕЙ ЕПТА!{FFFFFF}',-1)
while true do
wait(0)
    if isKeyJustPressed(VK_X) and not sampIsCursorActive() then sampSendChat("/buygarage")
   
    end
end