3d text creator resource
So this resource allows u to create 3d text easily using an easy export Download Exports: --[[ Color can be a hex or a table with rgba values "#ffffff" or {255, 255, 255} these can also have Alpha values (How see thru it is) by adding a fourth value so "#ffffff0C" or {255, 255, 255...
forum.cfx.re
因此,此资源允许您使用简单的导出下载
导出:
lua:
--[[ Color can be a hex or a table with rgba values
"#ffffff" or {255, 255, 255} these can also have Alpha values (How see thru it is) by adding a fourth value so
"#ffffff0C" or {255, 255, 255, 100}
-- Multi line: add \n to your text to have multiple lines
-- Create a text (server and client)
local text = exports.3dTextCreator:crete3dText(label, x, y, z, color, dist, scale, font)
-- Update (server and client) if you dont want to update something set it as nil
exports.3dTextCreator:update3dText(text, label, x, y, z, color, dist, scale, font)
-- Delete (server and client)
exports.3dTextCreator:delete3dText(text)