WindUI

Keybind

Creating Keybind and Editing it

Creating Keybind

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

Set Title

Keybind:SetTitle("Title Example")

Set Description

Keybind:SetDesc("Description Example")

Lock Element

Keybind:Lock()

Unlock Element

Keybind:Unlock()

Destroy Element

Keybind:Destroy()

API

Keybind Options

PropTypeDefault
Callback?
function
nil
Locked?
boolean
false
Value
string
F
Desc?
string
nil
Title
string
Keybind

On this page