{
label = "Distance",
description = "How far are you away?",
type = "slider",
min = 0,
max = 10,
change = function(menu, newValue, oldValue)
if newValue <= 5 then
TriggerEvent("koth:notification", "~g~That isn't that far")
else
TriggerEvent("koth:notification", "~r~That's very far")
end
end
},