local Font = renderCreateFont('Trebuchet MS', 13, 5)
function main()
while not isSampAvailable() do wait(0) end
while true do
wait(0)
for _, ped in ipairs(getAllChars()) do
if isCharOnScreen(ped) and getCharModel(ped) == ИД СКИНА then
local x, y = convert3DCoordsToScreen(getCharCoordinates(ped))
renderFontDrawText(Font, 'ПИДАРАС', x, y, -1)
end
end
end
end