NewEmber v2 is out

Tools for Roblox and Luau

A GUI library, a live-game debugger, and a deobfuscator. Free, documented, and open.

loadstring(game:HttpGet('https://rbx.lol/ember.lua'))()

Projects

Each one solves a problem I actually hit while building for Roblox. All free, all documented, none of them abandoned.

All projects
Stable

Ember

A GUI library for Roblox executor scripts. One file, no dependencies.

Luau
Beta

NetBridge

A debugger for live Roblox games, in your browser.

TypeScript · Luau
Beta

superflow-rs

Deobfuscates LPH-protected Luau. Rust, multithreaded.

Rust
Start here

Build a script UI in about ten lines

Ember loads from one URL and has no dependencies. Thirteen controls, nine themes, a theme editor, per-control saving, and search across every section.

script.luau
local Ember = loadstring(game:HttpGet(
"https://rbx.lol/ember.lua"))()
local win = Ember.new({ Title = "My Script" })
local main = win:Section("Main", "house")
main:Toggle({
Text = "God mode", Save = "god",
Callback = function(on) godMode = on end,
})
-- and it saves itself between sessions

On the way

Scripts

Planned

Browse and upload community scripts. Fast search, real categories, and no ad-wall between you and the code.

Forum

Planned

Somewhere to actually discuss this stuff, without a Discord invite and 400 unread channels.