TextBox
TextBox / NumberBox
Creation
MyRandomMenu:TextBox({
name = "MyTextBox",
text = "Text box",
value = "Textbox value",
on_callback = function(item)
log("Value changed!", tostring(item:Value()))
end
})MyRandomMenu:NumberBox({
name = "MyNumberBox",
text = "Number box",
value = "0",
on_callback = function(item)
log("Value changed!", tostring(item:Value()))
end
})Why would you use NumberBox instead of Slider?
Parameters
Parameter
Type
Description
Functions
Get
Function
Return Type
Description
Set
Function
Description
ColorTextBox
Creation
Parameters
Parameter
Type
Description
Functions
Get
Function
Return Type
Description
Set
Function
Description
Last updated