Documentation

Clean • Modern • Professional Roblox UI Library

Usage

Paste this into a LocalScript:

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/333shop/sqservicesui/refs/heads/main/sqservicesui.lua"))() local Window = Library:CreateWindow({ Title = "sqservices.me", Size = UDim2.new(0, 520, 0, 340) }) local HomeTab = Window:CreateTab("Home") local VisualsTab = Window:CreateTab("Visuals") local SettingsTab = Window:CreateTab("Settings")

That’s all you need. Works exactly like Rayfield.

CreateWindow Options

Library:CreateWindow({ Title = "sqservices.me", Size = UDim2.new(0, 520, 0, 340), BackgroundColor = Color3.fromRGB(12, 16, 32), TextColor = Color3.fromRGB(220, 230, 255), SubTextColor = Color3.fromRGB(140, 155, 190), CornerRadius = UDim.new(0, 10), })

Adding Tabs

Just call CreateTab as many times as you want:

local HomeTab = Window:CreateTab("Home") local VisualsTab = Window:CreateTab("Visuals") local PlayerTab = Window:CreateTab("Player") local MiscTab = Window:CreateTab("Misc")

Features

Rayfield Style CreateWindow() CreateTab() Smooth Dragging Clean Dark Theme Fully Customizable

← Back to Home