❓Questions

Frequently asked questions

How do i change it to OX LIB or turn it off in the script? Turn off OX LIB: Go to fxmanifest.lua then do this

shared_scripts {
    --'@ox_lib/init.lua',
}

Turn on OX LIB: Go to fxmanifest.lua then do this

shared_scripts {
    '@ox_lib/init.lua',
}

How do i turn off ESX in the script?

Go to fxmanifest.lua then do this

(it will only fix the error message in your console if u use standalone or qbcore | [ c-scripting-core] Failed to load script @es_extended/imports.lua.)

shared_scripts {
    --'@es_extended/imports.lua',
}

Last updated