Selamın Aleyküm Öncelikle Beyler Şu Attığım Kodu Komutla Açılmasını İstiyorum Yapıp 2 Dk Atıcak Varmı ?
local saniye = 10000 -- ne kadar sürede bir tuşa basabilir. (ms)
local sonclick = getTickCount()
local panelacik = false
addEventHandler("onClientKey",root,function(btn,press)
if btn == "f5" and press then
local suan = getTickCount()
if not panelacik then
if sonclick > suan then
cancelEvent()
return
end
end
panelacik = not panelacik
sonclick = suan+saniye
end
end)