Last updated: Aug 1, 20262 min read

Paragraph Description

Displays a bold header followed by a multiline wrapped block of detailed description text.

Paragraph Layout#

LUA Script
1Section:CreateParagraph(title, text)
  • title (string): Bold header.
  • text (string): Body text. Automatically wraps to prevent truncation.

Complete Code Example#

Here is a complete copy-pasteable script demonstrating how to use paragraph widgets for guide notices or announcements:

LUA Script
1local ValincUi = loadstring(game:HttpGet("https://cdn.vinzhub.com/scripts/Liblery%20Ui/VALINC-QUARTZ/57319f29599c47672f19f8d56d53ffbe/a6b3ccb1f04d1d7d06232a9c5d25779e2af89c12992bebae.lua"))()
2
3local Window = ValincUi:CreateWindow("Info Hub", "info", "gold")
4local Tab = Window:CreateTab("Help")
5local Section = Tab:CreateSection("Script Notice")
6
7-- Create a multiline paragraph element
8Section:CreateParagraph("Important Announcement", "Welcome to VALINC SYNDICATE! Make sure your executor supports HttpGet. Keep your license key safe and do not share your HWID with unauthorized users.")