TGIANN
1
qb-core edit
- Open qb-core/client/functions.lua
- find this function
function QBCore.Functions.DrawText3D(x, y, z, text)
- Replace with the following code
function QBCore.Functions.DrawText3D(x, y, z, text)
DrawText3D({
text = text,
coords = vector3(x, y, z)
})
end
- Add the codes in the DrawText3D.lua file to the
QBCore.Functions.DrawText3D
function
Result
es_extended edit
- Open es_extended/client/functions.lua
- find this function
ESX.Game.Utils.DrawText3D(coords, text, size, font)
- Replace with the following code
function ESX.Game.Utils.DrawText3D(coords, text, size, font)
DrawText3D({
text = text,
coords = coords.xyz
})
end
- Add the codes in the DrawText3D.lua file (above) to the
ESX.Game.Utils.DrawText3D
function
Result
7 Likes
Very smart thanks for sharing with us <3
1 Like
Thank you for sharing this with us!
1 Like
Good job thanks you for sharing
1 Like