Skip to content

unkeybind

Greenman edited this page Jan 20, 2020 · 1 revision

Documentation

void unkeybind(<string> cmd, <string> key)

Note: void means no return values

Description

Unbinds key from cmd. The value of key should be tostring(Enum.KeyCode.KEY)).

Example

--Note: This is just a snippet
["Function"] = function(args,speaker)
  unkeybind('esp',tostring(Enum.KeyCode.W))
end