Skip to content

SquidGurr/CascadeUI

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 

Repository files navigation

CascadeUI

A clean, simple UI library for Roblox exploits inspired by Venyx UI.

Features

  • Sleek design with a dark theme
  • Tab system for organizing different sections
  • Various UI elements including:
    • Toggle buttons
    • Regular buttons
    • Sliders
    • Dropdowns
    • Color pickers

Getting Started

Booting library:

local CascadeUI = loadstring(game:HttpGet('https://raw.githubusercontent.com/SquidGurr/CascadeUI/main/CascadeUI.lua'))()

Creating a Window

local Window = CascadeUI:CreateWindow({
    Title = "CascadeUI",
    Size = UDim2.new(0, 550, 0, 400),
    Position = UDim2.new(0.5, -275, 0.5, -200)
})

Creating Tabs

local MainTab = Window:CreateTab("Main")
local SettingsTab = Window:CreateTab("Settings")

Creating Sections

local GeneralSection = MainTab:CreateSection("General")

Creating UI Elements

Toggle

local Toggle = Section:CreateToggle({
    Name = "Toggle",
    Default = false,
    Callback = function(Value)
        print("Toggle value:", Value)
    end
})

Toggle:Set(true)

local value = Toggle:Get()

Button

local Button = Section:CreateButton({
    Name = "Button",
    Callback = function()
        print("Button clicked!")
    end
})

Button:Fire()

Slider

local Slider = Section:CreateSlider({
    Name = "Slider",
    Min = 0,
    Max = 100,
    Default = 50,
    Callback = function(Value)
        print("Slider value:", Value)
    end
})

Slider:Set(75)

local value = Slider:Get()

Dropdown

local Dropdown = Section:CreateDropdown({
    Name = "Dropdown",
    Options = {"Option 1", "Option 2", "Option 3"},
    Default = "Option 1",
    Callback = function(Option)
        print("Selected option:", Option)
    end
})

Dropdown:Set("Option 2")

local option = Dropdown:Get()

Dropdown:Refresh({"New Option 1", "New Option 2"}, false)

Color Picker

local ColorPicker = Section:CreateColorPicker({
    Name = "Color Picker",
    Default = Color3.fromRGB(255, 0, 0),
    Callback = function(Color)
        print("Selected color:", Color)
    end
})

ColorPicker:Set(Color3.fromRGB(0, 255, 0))

local color = ColorPicker:Get()

Example

Check out Example.lua file if you wanna test CascadeUI.

Credits

  • Inspired by Venyx UI
  • Created by SquidGurr

About

UI library for Roblox

Topics

Resources

Stars

Watchers

Forks

Languages