local x, y = 20, 500
local multiply = 1.0
main = function()
local font = renderCreateFont('Arial', 17, 13)
while true do
wait(0)
if isCharInAnyCar(PLAYER_PED) and not isPauseMenuActive() then
renderFontDrawText(font, string.format("Скорость: %.1f", getCarSpeed(storeCarCharIsInNoSave(PLAYER_PED)) * multiply), x, y, 0xFFffffff, false)
end
end
end