logoWindUI Shiny

Keybind

Keybind assignment element.

Keybind

Creation:

local Keybind = Tab:Keybind({ 
  Title="Keybind", 
  Desc="Description", 
  Value="G", 
  Callback=function(value) 
    Window:SetToggleKey(Enum.KeyCode[value]) 
  end 
})

Methods:

MethodDescription
SetTitle(title)Update title
SetDesc(desc)Update description
Lock()Lock keybind
Unlock()Unlock keybind
Destroy()Remove keybind

On this page