Input
On this page
Input
Create Input
lua
local Input = Tab:Input({
Title = "Input",
Desc = "Input",
Value = "Text Hello",
PlaceholderText = "Enter your message...",
ClearTextOnFocus = false,
Callback = function(Text)
print(Text)
end
})
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
Edit Input
- SetTitle()
lua
Input:SetTitle("New Title!")
1
- SetDesc()
lua
Input:SetDesc("New Description!")
1