A standard VoidLib TextInput.
Derived methods and other information not listed on the page will likley be sourced from Panel.
local textEntry = mainframe:Add("VoidUI.TextInput") -- Add Text Input onto the GUI --- Learn more about mainframe: "https://wiki.voidstudios.dev/en/VoidLib/cl-voidui-frame"
textEntry:SSetPos(300, 225) --Set Position and scale it
textEntry:SSetSize(300, 50) --Set Size and scale it
textEntry:SetNumeric(true) -- Sets the input to only accept numeric characters
textEntry:SetMultiline(true) --Sets the input to allow multiple lines added "Enter/Return"
textEntry:SetFont("VoidUI.R36") --Set font, Void Fonts are founds "https://wiki.voidstudios.dev/en/VoidLib/sh-voidui-fonts"
textEntry:SetPlaceholder("Hi! I am the preset value") --Displays placeholder text (IS NOT A REAL VALUE), if you want to preset a value use textEntry:SetValue(text)
textEntry:SetColorScheme(VoidUI.Colors.White, VoidUI.Colors.White, VoidUI.Colors.InputDark, VoidUI.Colors.Black) -- Sets the colour of the box according to the colours defined above