Inputs
local Input = Tabs.Main:AddInput("Input", {
Title = "Input",
Description = "Input Description",
Default = "Default",
Placeholder = "Placeholder",
Numeric = false, -- Only allows numbers
Finished = false, -- Only calls callback when you press enter
Callback = function(Value)
print("Input changed:", Value)
end
})Functions
Last updated