High Scripts

Documentation

Configuration

Here you will see in-depth tutorials for configuring our phone

Introduction

Our configuration system is based on ox_lib, which means every config file has to return a table and you should not modify the structure, here's an example:

config.lua
return {
    hello = "world"
}

You may add any code needed before the return statement, as so:

config.lua
local world = "world"
 
return {
    hello = world
}

Last updated on

On this page