Вы используете устаревший браузер. Этот и другие сайты могут отображаться в нём некорректно. Вам необходимо обновить браузер или попробовать использовать другой.
function main()
repeat wait(100) until isSampAvailable()
sampAddChatMessage("/setswimspeed [Speed]", -1)
sampRegisterChatCommand("setswimspeed", function(arg)
arg = tonumber(arg)
if arg ~= nil then
setCharSwimSpeed(PLAYER_PED, arg)
else
sampAddChatMessage("/setswimspeed [Speed]", -1)
end
end)
wait(-1)
end