{
label = "Cheese amount",
description = "How much cheese do you want",
type = "options",
values = {
{ label = 'Little', value = 1, description = 'Just a sprinkle'},
{ label = 'Something', value = 2, description = 'Not too much'},
{ label = 'Normal', value = 3, description = 'Like the rest'},
{ label = 'BIG', value = 4, description = 'I LOVE CHEESE'},
},
change = function(menu, newValue, oldValue)
if newValue == 1 then
TriggerEvent("koth:notification", "Just a little ey")
elseif newValue == 2 then
TriggerEvent("koth:notification", "Isn't that too much?")
elseif newValue == 3 then
TriggerEvent("koth:notification", "Don't go ham now")
elseif newValue == 4 then
TriggerEvent("koth:notification", "Ok big boy")
else
TriggerEvent("koth:notification", "That's out of this world")
end
end
},