Skip to content

FrostX-Official/FAME-Library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Note

Currently in development!
May be not secure in production!
Or may not work at all!

FAME-Library

An UI library written on Luau for Roblox.
Mostly used in exploit scripts, but note that this is not an exploit repository and Cheating/Exploiting is against Roblox TOS.

Loadstring

local FAME = loadstring(game:HttpGet("https://raw.githubusercontent.com/FrostX-Official/FAME-Library/refs/heads/main/main.luau"))()

Example

local FAME = loadstring(game:HttpGet("https://raw.githubusercontent.com/FrostX-Official/FAME-Library/refs/heads/main/main.luau"))()
-- loadstring should be replaced with module require if used in studio ^
local newFameUI = FAME.new({Name="Test Script"})
local newWindow = newFameUI:newWindow({Name="Test Script"})

local test_button = newWindow:newButton({
	Text = "Button",
	Callback = function(): nil
		print("clicked")
	end
})

local test_toggle = newWindow:newToggle({
	Text = "Toggle",
	Default = false,
	Callback = function(enabled: boolean): nil
		print(enabled)
	end
})

local test_slider = newWindow:newSlider({
	Text = "Slider",
	Default = 50,
	Range = NumberRange.new(0, 100),
	Callback = function(value: number): nil
		print(value)
	end
})

TODO

  • new components:
    • dropdowns
    • color picker
    • keybinder
    • label
  • custom components and custom windows creation (like key system)
  • color theme setting
  • compiler for studio rbxm file with ModuleScript inside

About

An UI library written on Luau for Roblox

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages