Jump to content

unbind T key script


hrtht

Recommended Posts

  • Moderators
Posted

I think the only way if you hide the chat, with showChat
Or cancel the keypress event:

addEventHandler("onClientKey", root, function(key, state)
    if key == "t" and state then
        cancelEvent()
    end
end)

 

Posted
3 hours ago, Patrick said:

I think the only way if you hide the chat, with showChat
Or cancel the keypress event:


addEventHandler("onClientKey", root, function(key, state)
    if key == "t" and state then
        cancelEvent()
    end
end)

 

thanks man !

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...