Example

-- Note: This is just a snippet
Window:Box("Box", "", "Default", function(Text, Focused, Func)
    print("Box", Text)
end)
-- Note: This is just a snippet
Window:Box({
    Text = "Box",
    Type = Enum.TextInputType.Number,
    Callback = function(Text)
        print(Text)
    end,
    ClearText = true
})

Last updated