From 78bde5070abf59f10f385b0d296fca8d124492d8 Mon Sep 17 00:00:00 2001 From: Kakarot <57848836+GhzGarage@users.noreply.github.com> Date: Thu, 27 Apr 2023 17:34:51 -0500 Subject: [PATCH] PR #963 --- client/functions.lua | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/functions.lua b/client/functions.lua index e9f2ca8..64f464d 100644 --- a/client/functions.lua +++ b/client/functions.lua @@ -21,13 +21,8 @@ end function QBCore.Functions.DrawText(x, y, width, height, scale, r, g, b, a, text) -- Use local function instead SetTextFont(4) - SetTextProportional(0) SetTextScale(scale, scale) SetTextColour(r, g, b, a) - SetTextDropShadow(0, 0, 0, 0, 255) - SetTextEdge(2, 0, 0, 0, 255) - SetTextDropShadow() - SetTextOutline() SetTextEntry('STRING') AddTextComponentString(text) DrawText(x - width / 2, y - height / 2 + 0.005)