Introduction

You’ll be creating text using GUI objects as frames, like this:

local Text = require(script.TextPlus)

local frame = script.frame

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

The text will be wrapped inside of the frame.

circle-check
circle-exclamation

You can get the raw text content of a frame at any time through the following function:

Text.GetText(frame)

Last updated