Text+
DevForum Topic
  • Welcome
  • Installation
  • Fundamentals
    • Introduction
    • Line breaks
    • Customization
      • Fonts
      • Scale-size
      • Truncation
    • Modification
    • Text bounds
  • Fine-control
    • Introduction
    • Full iteration
  • Specific indexing and iteration
  • Transform and style
  • Custom fonts
    • Introduction
    • Font to XML
    • XML to Lua
    • Upload font image
    • Import to Text+
Powered by GitBook
On this page
  1. Fundamentals

Introduction

You'll be creating text using frames as parents and boundaries, like this:

local TextPlus = require(script.TextPlus)

local frame = path.to.frame -- You should actually reference or create a frame.

TextPlus.Create(
	frame, -- Parent and boundary.
	"This text is awesome!", -- Text.
)

The text will be wrapped inside of the frame.

UIPadding instances are ignored.

You can provide any of the following as a frame:

  • Frame

  • ScrollingFrame

  • CanvasGroup

Supported GUI ancestors are:

  • ScreenGui

  • SurfaceGui

You can get the current text of a frame at any time like this:

TextPlus.GetText(frame) -- Returns a string.
PreviousInstallationNextLine breaks

Last updated 5 days ago