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()