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
Games
Download the latest .rbxm file from the releases.
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)
Last updated