Raven B4 UI Library

Most Powerful & Intuitive Roblox UI Library Customization

Important: Config Support is currently in testing. Please report any bugs by submitting an issue on GitHub or filing a bug report on our Discord.

✨ Features

🚀 Getting Started

Load Raven B4

Include this loadstring at the start of your script to initialize Raven B4:

Load Raven B4
loadstring(game:HttpGet('https://raw.githubusercontent.com/Near-B4/Raven-B4-For-Roblox/main/Raven%20B4%20Loader'))()
⚠️ Critical: The Loadstring must be set to at the start so it loads properly.

🛠️ Configuration Guide

1. Custom Configuration Naming

Set a unique name for your config file (optional):

Config Name
shared.RavenConfigName = "My Awesome Config"  -- Place this ABOVE the loadstring
-- Default: "Default Config" or "Gamename" file if unspecified

2. Custom Watermark

Add a branded watermark to the UI:

Watermark Setup
shared.WaterMark = "My Custom Text" -- Watermark text
shared.WaterMarkColor = Color3.fromRGB(255, 0, 0)  -- RGB color (place above loadstring)

📂 Building Your UI

Creating a Tab

Create Tab
local MyTab = RavenConfig:CreateWindow(
    "Tab Name",   -- String
    UDim2.new(0, 0, 0, 0),  -- Position (UDim2)
    )

Adding a Module (Toggle)

Create Toggle
local MyToggle = MyTab:CreateToggle({
    Name = "Enable Feature X",
    StartingState = false,  -- Initial state (only applies on first load)
    Callback = function(state)
        print("Toggle state:", state)
    end
})
Avoid duplicate module names for proper SaveSystem functionality.

Attaching an Info Card

Add Info Card
MyToggle:CreateInfo("This feature enhances your gameplay!")  -- Supports multi-line text

Nested Mini-Toggle

Nested Toggle
MyToggle:CreateToggle({
    Name = "Sub-Option",
    StartingState = true,
    Callback = function(state)
        -- Your logic here
    end
})

Slider Component

Create Slider
MyTab:CreateSlider({
    Name = "Intensity Level",
    Min = 0,
    Max = 100,
    Default = 50,
    Callback = function(value)
        print("Slider value:", value)
    end
})

📢 Notifications

Display contextual alerts to users:

Create Notification
shared:createnotification(
    "Connection established!",  -- Message
    5,  -- Duration (seconds)
    "System Alert",  -- Optional title
    0.5  -- Optional animation duration
)

🎨 Array Animations

Display whatever color you want in a gradient like animation:

Gradient Setup
shared.customgradlist = {
    ["Rainbow"] = { 0, 360 },
    ["Cotton Candy"] = { 250 , 310 }
}

The gradient uses a HSV Color System -> hsv(color value, 1, 1)

❗ Important Notes