Opa tudo bom , sou eu dnv aki enchendo o saco , é que estou tendo problemas tentei pegar umas referencias para dar show na hud porem só consigui na hud padrão do gta e eu queria dar show na hud personalizada e no radar personalizado tbm Script ----- v
bindKey( "F10", "down", function()
if isShowCustomHud() == false then
showCustomHud(true)
showChat(true)
else
showCustomHud(false)
showChat(false)
end
end)
addEventHandler("onClientResourceStart", root, function()
showCustomHud(true)
end)
function getPointFromDistanceRotation(x, y, dist, angle)
local a = math.rad(90 - angle);
local dx = math.cos(a) * dist;
local dy = math.sin(a) * dist;
return x+dx, y+dy;
end
function findRotation(x1,y1,x2,y2)
local t = -math.deg(math.atan2(x2-x1,y2-y1))
if t < 0 then t = t + 360 end;
return t;
end