{
    label = "You sure?",
    description = "Do you really want it?",

    type = "confirm",
    important = true,

    change = function(menu, newValue, oldValue)
        if newValue == true then
            TriggerEvent("koth:notification", "If you say so")
        else
            TriggerEvent("koth:notification", "I knew it")
        end
    end
},