ReGui
  • Introduction
  • Getting Started
    • Installing
    • Creating windows
  • Plugins
    • Custom elements
    • Custom flags
    • Custom themes
  • Examples
    • Demo window
    • Example scripts
  • Methods
  • ReGui functions
  • Canvas functions
  • Configuration saving
  • Elements
    • :Label
    • :Error
    • Code Editor
    • :Button
    • :SmallButton
    • :RadioButton
    • :Image
    • :VideoPlayer
    • :Checkbox
    • :Radiobox
    • :Viewport
    • :Console
    • :Region
    • :List
    • :CollapsingHeader
    • :TreeNode
    • :Separator
    • :Indent
    • :BulletText
    • :Bullet
    • :Row
    • :SliderInt
    • :SliderFloat
    • :SliderEnum
    • :SliderColor3
    • :SliderCFrame
    • :SliderProgress
    • :DragInt
    • :DragFloat
    • :DragColor3
    • :DragCFrame
    • :InputText
    • :InputTextMultiline
    • :InputInt
    • :InputColor3
    • :InputCFrame
    • :ProgressBar
    • :Combo
    • :Keybind
    • :PlotHistogram
    • :Table
    • :TabSelector
    • :Window
    • :TabsWindow
    • :PopupModal
Powered by GitBook
On this page
  • Games
  • Executors
  1. Getting Started

Installing

Dear ReGui requires a prefabs base to generate elements. Use :Init to overwrite the default configuration and point Prefabs to the prefabs Gui if needed otherwise it's automatic

PreviousIntroductionNextCreating windows

Last updated 12 days ago

Games

  • Download the latest .rbxm file from the .

  • Drag and drop the File into your game's workspace.

  • Move the Module into a desired location, such as ReplicatedStorage

  • You can use the library with a LocalScript.

Executors

  • If you face problems with obfuscation, please check you are not using any Type checks in your script as many obfuscators compile to Lua not Luau. The demo window has some type checking so please remove those

  • Please use the loadstring rather than bundling with Darklua as it will not compile

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ReGui = require(ReplicatedStorage.ReGui)
local ReGui = loadstring(game:HttpGet('https://raw.githubusercontent.com/depthso/Dear-ReGui/refs/heads/main/ReGui.lua'))()
releases