Download Script#
To download the assets needed for this script, you must access the official Cfx.re portal, where all assets purchased through Tebex are managed.
Access the Granted Assets Page
Open the Cfx.re granted assets page: https://portal.cfx.re/assets/granted-assets.
This page contains all assets linked to your Cfx.re purchases.
Log In with Your Cfx.re Account
Sign in using the same Cfx.re account you used when purchasing the asset.
If you use a different account, the assets will not appear.
Download the Housing Assets
In the granted assets list, locate and download:
Text UI
These two packages are required to install the full housing system.
These files include the models, materials, and visual resources required for the proper operation of the housing system.
Download Dependencies#
This script requires some mandatory dependencies to function correctly. Make sure to download and extract them inside your server’s main directory, keeping their original folder structure intact.
github.comReleases · overextended/oxmysqlMySQL resource for FXServer. Contribute to overextended/oxmysql development by creating an account on GitHub.Integration in ESX and QB#
We can seamlessly integrate this system by default in both QB and ESX frameworks using the following code snippets. If your framework does not include these events:
ESX
-- es_extended/client/functions.lua
function ESX.TextUI(...)
return IsResourceFound('esx_textui') and exports['esx_textui']:TextUI(...)
end
---@return nil
function ESX.HideUI()
return IsResourceFound('esx_textui') and exports['esx_textui']:HideUI()
end
-- Set them to these:
function ESX.TextUI(...)
return exports["qs-textui"]:displayTextUI(...)
end
---@return nil
function ESX.HideUI()
return exports["qs-textui"]:hideTextUI()
endQB
-- qb-core/client/drawtext.lua
exports['qb-core']:DrawText() => exports["qs-textui"]:displayTextUI(text, position)
exports['qb-core']:HideText() => exports["qs-textui"]:hideTextUI()
exports['qb-core']:KeyPressed() => Dont change it
exports['qb-core']:ChangeText() => exports['qs-textui']:changeText(text, position)


