Skip to content
On this page

Keybind

On this page

Keybind

Create Keybind

lua
local Keybind = Tab:Keybind({
    Title = "Keybind",
    Desc = "Keybind Desc",
    Value = "LeftShift",
    CanChange = true,
    Callback = function(k)
        if not KeybindClicked then
            Window:Close()
        else
            Window:Open()
        end
        KeybindClicked = not KeybindClicked
    end
})
1
2
3
4
5
6
7
8
9
10
11
12
13
14

Edit Keybind

  • SetTitle()
lua
Keybind:SetTitle("New Title!")
1
  • SetDesc()
lua
Keybind:SetDesc("New Description!")
1

Made with ❤️ by Footages