Sign In to Your Account

Manual registration is temporarily disabled. Please use Discord, Google or GitHub to create an account.

CONTINUE WITH
Nexus UI Revamp - Universal Script | Free Roblox Script

Nexus UI Revamp

Universal 25 views 3 weeks ago
Nexus UI Revamp - Roblox Script
Mobile Mobile Friendly
Key Key Required

Description

Credits: Carterjam28YT

Nexus UI Revamped ⚡Nexus is a clean, fast, and modern UI library made for script developers who want good-looking UIs without the extra effort 🔥Lightweight, customizable, and easy to use 💨Features: 🧩Checkbox ✅Slider 🎚️Toggle 🔘Dropdown / Multi-Dropdown 📂Button 🖱️Color Picker 🎨Labels & Paragraphs 🏷️Keybinds ⌨️Textbox 📝Theme system 🌙Config saving 💾”Clean and tight, done right”Made by Carterjam28YT 👑Built from Dinas 🧠

98 Lines 3,636 Bytes
Nexus = loadstring(game:HttpGet("https://raw.githubusercontent.com/Carterjam28YT/Nexus-Revamped/refs/heads/main/Nexus.lua"))()

-- // ==============================================
-- // EXAMPLE USAGE
-- // =================================================

-- 1. Create a window
-- Arguments: "Title", "Lucide Icon", "Bottom Text", UseTooltips?  (true = only on hover (not working), false = icon always visible)
local Win = Nexus:Window("Nexus ui", "crown", "Version 1 | Created by Carterjam28", false)

-- 2. Left menu section (Separator)
Win:TabSection("Combat Section")

-- 3. Tabs
local Combat = Win:Tab("", "swords") -- can be used without name, only with icon
local Visuals = Win:Tab("Visuals", "eye")

-- 4. Pages within the Combat tab
local Legit = Combat:Page("Legit", "shield")
local Rage = Combat:Page("Rage", "skull")

-- 5. Sections (Function Groups) within the Legit page
-- "Left" - left column, "Right" - right  Column
local MainAim = Legit:Section("Aimbot", "Left")
local ExtraAim = Legit:Section("Extra", "Right")

-- ================== FUNCTIONS INSIDE A SECTION ==================

-- Label (Plain Text)
MainAim:Label("Main Configuration")

-- Toggle (Toggle)
-- Arguments: Name, Flag, Default, Description, Function
MainAim:Toggle("Enable Aimbot", "AimEn", true, "Enables the aimbot logic", function(state)
print("Aimbot:", state)
end)

-- Checkbox (Checkbox)
MainAim:Checkbox("Check Team", "TeamCheck", false, "Ignore teammates",  function(state)
print("Team Check:", state)
end)

-- Slider
-- Arguments: Name, Flag, Min, Max, Default, Function, Description
MainAim:Slider("FOV Radius", "AimFov", 0, 500, 150, function(val)
print("FOV:", val)
end, "Circle size for aiming")

-- Keybind
-- Arguments: Name, Flag, Button, Function, Description
MainAim:Keybind("Aim Key", "AimBind", Enum.KeyCode.E, function() -- also you can add keybind on mobile (touch)
print("Aim key pressed")
end, "Hold to lock on target")

-- Dropdown (List)
-- Arguments: Name, Flag, Element Table, Function, Description
ExtraAim:Dropdown("Hitbox Priority",  "Hitbox", {"Head", "Torso", "Legs"}, function(val)
print("Hitbox:", val)
end, "Where to aim first")

-- MultiDropdown (Many options)
ExtraAim:MultiDropdown("Ignore List", "IgnList", {"Knocked", "Friends", "NPCs"}, function(val)
-- val returns the table
end, "Select entities to ignore")

-- ColorPicker (Color)
-- Arguments: Name, Flag, Color, Opacity(0-1), Function, Description
ExtraAim:ColorPicker("FOV Color", "FovCol", Color3.fromRGB(255, 0, 0), 0, function(col)
print("New Color:", col)
end, "Changes the FOV circle color")

-- Button  (Button)
-- Arguments: Name, Description, Function
ExtraAim:Button("Force Reset", "Kills your character", function()
game.Players.LocalPlayer.Character:BreakJoints()
end)

-- TextBox (Text Input)
ExtraAim:TextBox("Custom Config", "CfgName", "default", function(txt)
print("Config name:", txt)
end, "Enter config name to load")

-- ================== FUNCTIONS OUTSIDE A SECTION (ON A PAGE) ==================
-- If adding directly to a Page, you must specify the side ("Left" or "Right") before the callback.

 local EspPage = Visuals:Page("ESP", "eye")

-- Toggle Example WITHOUT Section
EspPage:Toggle("Master ESP", "EspMaster", true, "Turn on all visuals", "Left", function(s)
print("Master ESP:", s)
end)

-- Paragraph Example
EspPage:Paragraph("Info", "This visual tab contains wallhack features.", "Right")

-- 6. Loading configs (required at the end)
Nexus:Notification("Loaded", "Script loaded successfully!", 5)
Nexus:ConfigSystem(Win)

Comments

Comments section coming soon...

Frequently Asked Questions

To use this script, you need a Roblox Executor. Simply copy the script from this page, paste it into your executor, and run it while you are in the Universal game.

This script may require a payment or subscription. Please check the script's description for more details.

Yes, this script has a key system. You may need to complete a task or join a Discord server to get a key.

Yes, this script is designed to be compatible with mobile executors.

Similar Scripts

Share Script

Share this script with others by copying the link or using your device's share options.

https://rbxscripts.net/scripts/nexus-ui-revamp/
or

Report Script

Help us maintain a safe community. Your report will be reviewed by our moderation team and appropriate action will be taken if needed.

Select a reason...
Malicious Code
Inappropriate Content
Copyright Infringement
Spam
Misleading Information
Other