💣
idontgiveaf's fluent gui
  • Fluent Library
    • Example Script
  • Fluent
    • Setup
      • Interface and Save Manager
      • Properties
  • Components
    • Window
      • Tabs
      • Dialog
  • elements
    • Guide
      • Destroying Elements
      • Section
      • Paragraphs
      • Buttons
      • Toggles
      • Sliders
      • Inputs
      • Dropdowns
      • Colorpickers
      • Keybinds
Powered by GitBook
On this page
  1. elements
  2. Guide

Section

I'd label this as a component, but it just seemed right to be in elements.

To create a section, use this.

local Section = Tabs.Main:AddSection("Section Name")

Replace the local Section to your variable name. Use something different every time.

If you are having issues, you're supposed to replace "Tabs.Main" with your actual tab.

Example: "Tabs.Exploits"

Whatever you put in your Tabs variable, it's what you need.

Parenting Elements

Section:AddParagraph({ -- Replace Section with your variable name
    Title = "Paragraph"
})
PreviousDestroying ElementsNextParagraphs

Last updated 7 months ago