textbox
This textbox is detected by openac it is ment to be used with a openac bypass (Legion has one on by default)
Let's you create a new textbox within a section
local combat = window:Page({Name = "Combat", Icon = "rbxassetid://0"});
local main_combat = combat:Section({Name = "Main", Side = "Left", Size = 100});
local color_picker = main_combat:Textbox({
Name = "Textbox",
Flag = "Textbox",
Placeholder = "I'm a placeholder",
Default = "",
EnterPressed = true, -- only calls the callback when enter is pressed
Callback = function(text)
print(text)
end
})
Last updated