Introducing
About WindUI
Setup
LoadstringThemes
UI
WindowKey SystemTabDialogPopupNotificationTagTab Section
Elements
SectionButtonToggleSliderInputDropdownParagraphKeybindColorpickerCodeDividerSpaceImageGroup (deprecated)HStack & VStack
Advanced
ConfigsIcons

Paragraph

Display static text and media content in WindUI

Paragraph Element

Paragraph displays text content with optional icons, thumbnails, and buttons.
Use it for information blocks, status messages, descriptions, or annotated UI text.

Tab:Paragraph({
    Title = "Info",
    Desc = "Basic paragraph text"
})

Paragraph Properties

NameDefault
: string""
: string""
: string?nil
: number?nil
: string?nil
: number?nil
: string | Color3?nil
: table?nil
: boolean?false

Button Properties

NameDefault
: string""
: string?nil
: string?nil
()nil

Paragraph Functions

Name
()
()
(, )
(, )
()
()

Examples

Simple Paragraph

Tab:Paragraph({
    Title = "Version",
    Desc = "App version 2.1.0"
})

With Image

Tab:Paragraph({
    Title = "Status",
    Desc = "All systems operational",
    Image = "check-circle",
    ImageSize = 20
})

With Thumbnail

Tab:Paragraph({
    Title = "Feature Highlight",
    Desc = "See the new UI",
    Thumbnail = "rbxassetid://",
    ThumbnailSize = 80
})

With Buttons

Tab:Paragraph({
    Title = "Update Available",
    Desc = "Version 3.0 ready to install",
    Buttons = {
        { Title = "Install", Icon = "download", Callback = function() end }
    }
})