/ss-textui

Text UI to FiveM.

Primary LanguageHTMLGNU General Public License v3.0GPL-3.0

About Us

We're a team with experience in FiveM and UI development, we've played FiveM for thousands of hours, and have a clear understanding of the players needs. That caused us to start Simplified Studios.

Simplified Studios Discord is where you can find all of our updates, new scripts and maybe some sneak peaks if you're lucky!

Simplified Studios Tebex is where you can buy our paid scripts!

Installation

Go in qb-core -> client -> drawtext.lua and replace this:

local function hideText()
    exports['ss-textui']:hideTextUI()
end

local function drawText(text, position)
    if type(position) ~= 'string' then position = 'left' end
    exports['ss-textui']:openTextUI(text)
end

local function changeText(text, position)
    if type(position) ~= 'string' then position = 'left' end
    exports['ss-textui']:openTextUI(text)
end