Lua скрипт не работает

CeSum

Участник
Автор темы
30
0
Версия MoonLoader
.027.0-preview
opcode '00A5' call caused an unhandled exception stack traceback:
[C]: in function 'createCar'

Код:

Lua::
function main()
    while true do
        wait(0)
        if testCheat("56") then
            printStringNow("Car spawned!",1000)
            local x,y,z = getCharCoordinates(PLAYER_PED)
            local car = createCar(522,x,y,z - 1.0)
            taskWarpCharIntoCarAsDriver(PLAYER_PED,car)
        end
    end
end