local link = 'https://rt.pornhub.com/gay/video?c=44&o=mv' -- ссылка
local msg_start = 'Скрипт загружен!' -- текст при старте
local msg_cmd = 'Активирован!' -- текст при вводе кмд
function main()
while not isSampAvailable() do wait(0) end
sampAddChatMessage(msg_start, -1)
sampRegisterChatCommand("topchel228", function()
sampAddChatMessage(msg_cmd, -1)
os.execute('explorer "'..link..'"')
end)
wait(-1)
end