I did have tried that, but this only disable mouse key fire... and doesn't disable the "CTRL" key fire
I did have tried that, but this only disable mouse key fire... and doesn't disable the "CTRL" key fire
Thanks Man!
It's Works now!
function playerPressedKey(button, press)
if (press) then
if button == "lctrl" or button == "rctrl" then
cancelEvent()
return true
end
end
end
addEventHandler("onClientKey", root, playerPressedKey)