The most beautiful Western-themed input system for VORP servers!
Input Types:
Design:
Developer Features:
lua
local result = exports['zoo_input']:ShowInput({
header = "My Menu",
submitText = "Confirm",
cancelText = "Cancel",
size = "normal", -- small / normal / large
inputs = {
{ type = 'text', name = 'playerName', text = 'Enter Name' },
{ type = 'slider', name = 'scale', text = 'Height', min = 0.85, max = 1.15, step = 0.01, default = 1.0 },
{ type = 'select', name = 'currency', text = 'Payment', options = {
{ text = 'Cash', value = 'cash' },
{ text = 'Gold', value = 'gold' }
}}
}
})
if result then
print(result.playerName)
print(result.scale)
print(result.currency)
end
Zoo Input is FREE and included with: