Path: / Please upload my script. Here:local Players = game:GetService("Players")
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
local LocalPlayer = Players.LocalPlayer
local ScreenGui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui"))
ScreenGui.ResetOnSpawn = false
local Theme = {
Background = Color3.fromRGB(19, 19, 21),
ElementBack = Color3.fromRGB(25, 25, 28),
Accent = Color3.fromRGB(0, 125, 255),
Text = Color3.fromRGB(240, 240, 245),
Stroke = Color3.fromRGB(35, 35, 40)
}
local function SaveConfig(key, value) pcall(function() writefile("cfg_"..key..".txt", tostring(value)) end) end
local function LoadConfig(key) local success, result = pcall(function() return readfile("cfg_"..key..".txt") end) return success and result or nil end
local function LoadNotify(text, duration)
local Notif = Instance.new("Frame", ScreenGui)
Notif.Size = UDim2.new(0, 240, 0, 50)
Notif.Position = UDim2.new(1, 260, 1, -70)
Notif.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
local Corner = Instance.new("UICorner", Notif)
Corner.CornerRadius = UDim.new(0, 6)
local Stroke = Instance.new("UIStroke", Notif)
Stroke.Color = Color3.fromRGB(40, 40, 45)
Stroke.Thickness = 1
local NText = Instance.new("TextLabel", Notif)
NText.Size = UDim2.new(1, 0, 1, 0)
NText.BackgroundTransparency = 1
NText.Text = text
NText.TextColor3 = Color3.fromRGB(255, 255, 255)
NText.TextSize = 13
NText.Font = Enum.Font.GothamSemibold
NText.TextXAlignment = Enum.TextXAlignment.Center
Notif:TweenPosition(UDim2.new(1, -260, 1, -70), "Out", "Quint", 0.4, true)
task.spawn(function()
task.wait(duration)
Notif:TweenPosition(UDim2.new(1, 260, 1, -70), "In", "Quint", 0.4, true)
task.wait(0.4)
Notif:Destroy()
end)
end
local KeyFrame = Instance.new("Frame", ScreenGui) KeyFrame.Size = UDim2.new(0, 320, 0, 180) KeyFrame.Position = UDim2.new(0.5, -160, 0.5, -90) KeyFrame.BackgroundColor3 = Theme.Background KeyFrame.Visible = false
Instance.new("UICorner", KeyFrame).CornerRadius = UDim.new(0, 9) Instance.new("UIStroke", KeyFrame).Color = Theme.Stroke
local KTitle = Instance.new("TextLabel", KeyFrame) KTitle.Size = UDim2.new(1, 0, 0, 40) KTitle.Text = "No Name" KTitle.TextColor3 = Theme.Text KTitle.Font = Enum.Font.GothamBold KTitle.TextSize = 14 KTitle.BackgroundTransparency = 1
local KeyInput = Instance.new("TextBox", KeyFrame) KeyInput.Size = UDim2.new(1, -40, 0, 35) KeyInput.Position = UDim2.new(0, 20, 0, 60) KeyInput.BackgroundColor3 = Theme.ElementBack KeyInput.PlaceholderText = "No Name" KeyInput.Text = "" KeyInput.TextColor3 = Theme.Text KeyInput.Font = Enum.Font.Gotham
Instance.new("UICorner", KeyInput) Instance.new("UIStroke", KeyInput).Color = Theme.Stroke
local CheckBtn = Instance.new("TextButton", KeyFrame) CheckBtn.Size = UDim2.new(1, -40, 0, 35) CheckBtn.Position = UDim2.new(0, 20, 0, 115) CheckBtn.BackgroundColor3 = Theme.Accent CheckBtn.Text = "No Name" CheckBtn.TextColor3 = Theme.Text CheckBtn.Font = Enum.Font.GothamBold Instance.new("UICorner", CheckBtn)
local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 480, 0, 350) MainFrame.Position = UDim2.new(0.5, -240, 0.5, -175) MainFrame.BackgroundColor3 = Theme.Background MainFrame.Visible = false
MainFrame.ClipsDescendants = true
Instance.new("UICorner", MainFrame) Instance.new("UIStroke", MainFrame).Color = Theme.Stroke
local TopBar = Instance.new("Frame", MainFrame) TopBar.Size = UDim2.new(1, 0, 0, 45) TopBar.BackgroundTransparency = 1
local MTitle = Instance.new("TextLabel", TopBar) MTitle.Size = UDim2.new(0, 250, 1, 0) MTitle.Position = UDim2.new(0, 15, 0, 0) MTitle.BackgroundTransparency = 1 MTitle.Text = "No Name" MTitle.TextColor3 = Theme.Text MTitle.Font = Enum.Font.GothamBold MTitle.TextSize = 15 MTitle.TextXAlignment = Enum.TextXAlignment.Left
local ToggleBtn = Instance.new("TextButton", TopBar) ToggleBtn.Size = UDim2.new(0, 100, 0, 25) ToggleBtn.Position = UDim2.new(1, -115, 0.5, -12) ToggleBtn.BackgroundColor3 = Theme.ElementBack ToggleBtn.Text = "No Name" ToggleBtn.TextColor3 = Theme.Accent ToggleBtn.Font = Enum.Font.GothamSemibold ToggleBtn.TextSize = 11 Instance.new("UICorner", ToggleBtn).CornerRadius = UDim.new(0, 5) Instance.new("UIStroke", ToggleBtn).Color = Theme.Stroke
local MainContainer = Instance.new("ScrollingFrame", MainFrame) MainContainer.Size = UDim2.new(1, -30, 1, -65) MainContainer.Position = UDim2.new(0, 15, 0, 55) MainContainer.BackgroundTransparency = 1 MainContainer.ScrollBarThickness = 2
MainContainer.ClipsDescendants = true
local Layout = Instance.new("UIListLayout", MainContainer) Layout.Padding = UDim.new(0, 8)
local IsOpen = true
local CurrentActiveTab = nil
ToggleBtn.MouseButton1Click:Connect(function()
IsOpen = not IsOpen
ToggleBtn.Text = "No Name"
if not IsOpen then
MainContainer.Visible = false
if CurrentActiveTab then CurrentActiveTab.Visible = false end
else
task.delay(0.3, function()
if IsOpen then
if CurrentActiveTab then
CurrentActiveTab.Visible = true
else
MainContainer.Visible = true
end
end
end)
end
TweenService:Create(MainFrame, TweenInfo.new(0.35, Enum.EasingStyle.Quart, Enum.EasingDirection.Out), {
Size = IsOpen and UDim2.new(0, 480, 0, 350) or UDim2.new(0, 480, 0, 45)
}):Play()
end)
local Library = {}
function Library:CreateTab(tabName)
local TabContainer = Instance.new("ScrollingFrame", MainContainer.Parent) TabContainer.Size = MainContainer.Size TabContainer.Position = MainContainer.Position TabContainer.BackgroundTransparency = 1 TabContainer.ScrollBarThickness = 2 TabContainer.Visible = false
TabContainer.ClipsDescendants = true
local LLayout = Instance.new("UIListLayout", TabContainer) LLayout.Padding = UDim.new(0, 8)
local TabLabel = Instance.new("TextLabel", TabContainer) TabLabel.Size = UDim2.new(1, 0, 0, 20) TabLabel.BackgroundTransparency = 1 TabLabel.Text = "No Name" TabLabel.TextColor3 = Theme.Accent TabLabel.Font = Enum.Font.GothamBold TabLabel.TextSize = 11 TabLabel.TextXAlignment = Enum.TextXAlignment.Left
MainContainer.Visible = false
TabContainer.Visible = IsOpen
CurrentActiveTab = TabContainer
return TabContainer
end
function Library:CreateSection(parent, text)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 25) Frame.BackgroundTransparency = 1
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(1, 0, 1, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(130, 130, 130) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Center
end
function Library:CreateButton(parent, text, callback)
local Btn = Instance.new("TextButton", parent) Btn.Size = UDim2.new(1, 0, 0, 38) Btn.BackgroundColor3 = Theme.ElementBack Btn.Text = "No Name" Btn.TextColor3 = Theme.Text Btn.Font = Enum.Font.GothamSemibold Btn.TextSize = 12 Btn.TextXAlignment = Enum.TextXAlignment.Left
Instance.new("UICorner", Btn).CornerRadius = UDim.new(0, 6) Instance.new("UIStroke", Btn).Color = Theme.Stroke
local Icon = Instance.new("TextLabel", Btn) Icon.Size = UDim2.new(0, 20, 1, 0) Icon.Position = UDim2.new(1, -30, 0, 0) Icon.BackgroundTransparency = 1 Icon.Text = "🗑️" Icon.TextColor3 = Color3.fromRGB(100, 100, 110) Icon.Font = Enum.Font.GothamBold Icon.TextSize = 10 Icon.TextXAlignment = Enum.TextXAlignment.Right
Btn.MouseButton1Click:Connect(function()
TweenService:Create(Btn, TweenInfo.new(0.1), {BackgroundColor3 = Color3.fromRGB(32, 32, 36)}):Play() task.wait(0.05)
TweenService:Create(Btn, TweenInfo.new(0.1), {BackgroundColor3 = Theme.ElementBack}):Play() callback()
end)
end
function Library:CreateToggle(parent, text, configKey, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.6, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local TBtn = Instance.new("TextButton", Frame) TBtn.Size = UDim2.new(0, 35, 0, 20) TBtn.Position = UDim2.new(1, -47, 0.5, -10) TBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) TBtn.Text = ""
Instance.new("UICorner", TBtn).CornerRadius = UDim.new(1, 0)
local Dot = Instance.new("Frame", TBtn) Dot.Size = UDim2.new(0, 14, 0, 14) Dot.Position = UDim2.new(0, 3, 0.5, -7) Dot.BackgroundColor3 = Color3.fromRGB(150, 150, 150) Instance.new("UICorner", Dot).CornerRadius = UDim.new(1, 0)
local Toggled = false local saved = LoadConfig(configKey)
if saved == "true" then Toggled = true TBtn.BackgroundColor3 = Theme.Accent Dot.Position = UDim2.new(1, -17, 0.5, -7) callback(true) end
TBtn.MouseButton1Click:Connect(function()
Toggled = not Toggled SaveConfig(configKey, Toggled)
if Toggled then
TweenService:Create(TBtn, TweenInfo.new(0.15), {BackgroundColor3 = Theme.Accent}):Play()
TweenService:Create(Dot, TweenInfo.new(0.15), {Position = UDim2.new(1, -17, 0.5, -7)}):Play() callback(true)
else
TweenService:Create(TBtn, TweenInfo.new(0.15), {BackgroundColor3 = Color3.fromRGB(40, 40, 40)}):Play()
TweenService:Create(Dot, TweenInfo.new(0.15), {Position = UDim2.new(0, 3, 0.5, -7)}):Play() callback(false)
end
end)
end
function Library:CreateSlider(parent, text, min, max, unit, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 42) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.4, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local VLbl = Instance.new("TextLabel", Frame) VLbl.Size = UDim2.new(0, 45, 0, 20) VLbl.Position = UDim2.new(1, -175, 0.5, -10) VLbl.BackgroundTransparency = 1 VLbl.Text = "No Name" VLbl.TextColor3 = Color3.fromRGB(180, 180, 180) VLbl.Font = Enum.Font.Gotham VLbl.TextSize = 11 VLbl.TextXAlignment = Enum.TextXAlignment.Right
local SBar = Instance.new("TextButton", Frame) SBar.Size = UDim2.new(0, 110, 0, 6) SBar.Position = UDim2.new(1, -122, 0.5, -3) SBar.BackgroundColor3 = Color3.fromRGB(45, 45, 45) SBar.Text = "" Instance.new("UICorner", SBar)
local Fill = Instance.new("Frame", SBar) Fill.Size = UDim2.new(0, 0, 1, 0) Fill.BackgroundColor3 = Theme.Accent Instance.new("UICorner", Fill)
local function UpdateSlider(input)
local pct = math.clamp((input.Position.X - SBar.AbsolutePosition.X) / SBar.AbsoluteSize.X, 0, 1)
Fill.Size = UDim2.new(pct, 0, 1, 0) local val = math.floor(min + ((max - min) * pct)) VLbl.Text = "No Name" callback(val)
end
local Sliding = false
SBar.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
Sliding = true
UpdateSlider(input)
end
end)
UserInputService.InputChanged:Connect(function(input)
if Sliding and (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) then
UpdateSlider(input)
end
end)
UserInputService.InputBegan:Connect(function(input)
if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
else
if input.UserInputState == Enum.UserInputState.End then
Sliding = false
end
end
end)
end
function Library:CreateDropdown(parent, text, options, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.5, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local DBtn = Instance.new("TextButton", Frame) DBtn.Size = UDim2.new(0, 110, 0, 24) DBtn.Position = UDim2.new(1, -122, 0.5, -12) DBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) DBtn.Text = "No Name" DBtn.TextColor3 = Color3.fromRGB(180, 180, 180) DBtn.Font = Enum.Font.Gotham DBtn.TextSize = 11 Instance.new("UICorner", DBtn).CornerRadius = UDim.new(0, 4)
local DropObject = {} function DropObject:Refresh(newOptions) options = newOptions DBtn.Text = "No Name" end
DBtn.MouseButton1Click:Connect(function() if #options > 0 then DBtn.Text = "No Name" callback(options[1]) end end)
return DropObject
end
function Library:CreateInput(parent, text, placeholder, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.5, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local Box = Instance.new("TextBox", Frame) Box.Size = UDim2.new(0, 110, 0, 24) Box.Position = UDim2.new(1, -122, 0.5, -12) Box.BackgroundColor3 = Color3.fromRGB(26, 26, 26) Box.PlaceholderText = "No Name" Box.Text = "" Box.TextColor3 = Theme.Text Box.Font = Enum.Font.Gotham Box.TextSize = 11 Instance.new("UICorner", Box).CornerRadius = UDim.new(0, 4)
Box.FocusLost:Connect(function(enter) if enter and Box.Text ~= "" then callback(Box.Text) end end)
end
function Library:CreateLabel(parent, text)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 25) Frame.BackgroundTransparency = 1
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(1, 0, 1, 0) Lbl.Position = UDim2.new(0, 10, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(180, 180, 180) Lbl.Font = Enum.Font.Gotham Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
end
function Library:CreateKeybind(parent, text, defaultKey, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.6, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local BBtn = Instance.new("TextButton", Frame) BBtn.Size = UDim2.new(0, 65, 0, 24) BBtn.Position = UDim2.new(1, -77, 0.5, -12) BBtn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) BBtn.Text = "No Name" BBtn.TextColor3 = Theme.Accent BBtn.Font = Enum.Font.GothamBold BBtn.TextSize = 11 Instance.new("UICorner", BBtn).CornerRadius = UDim.new(0, 4)
local CurrentKey = defaultKey UserInputService.InputBegan:Connect(function(input, processed) if not processed and input.KeyCode == CurrentKey then callback() end end)
end
function Library:CreateColorPicker(parent, text, defaultColor, callback)
local BaseFrame = Instance.new("Frame", parent) BaseFrame.Size = UDim2.new(1, 0, 0, 38) BaseFrame.BackgroundColor3 = Theme.ElementBack BaseFrame.ClipsDescendants = true
Instance.new("UICorner", BaseFrame).CornerRadius = UDim.new(0, 6) Instance.new("UIStroke", BaseFrame).Color = Theme.Stroke
local Lbl = Instance.new("TextLabel", BaseFrame) Lbl.Size = UDim2.new(0.5, 0, 0, 38) Lbl.Position = UDim2.new(0, 12, 0, 0) BaseFrame.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Theme.Text Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local ColorPreview = Instance.new("Frame", BaseFrame) ColorPreview.Size = UDim2.new(0, 35, 0, 20) ColorPreview.Position = UDim2.new(1, -145, 0, 9) ColorPreview.BackgroundColor3 = defaultColor Instance.new("UICorner", ColorPreview).CornerRadius = UDim.new(0, 4)
local OpenBtn = Instance.new("TextButton", BaseFrame) OpenBtn.Size = UDim2.new(0, 90, 0, 24) OpenBtn.Position = UDim2.new(1, -102, 0, 7) OpenBtn.BackgroundColor3 = Color3.fromRGB(32, 32, 36) OpenBtn.Text = "No Name" OpenBtn.TextColor3 = Color3.fromRGB(180, 180, 180) OpenBtn.Font = Enum.Font.Gotham OpenBtn.TextSize = 11 Instance.new("UICorner", OpenBtn).CornerRadius = UDim.new(0, 4)
local ListFrame = Instance.new("Frame", BaseFrame) ListFrame.Size = UDim2.new(1, -24, 0, 125) ListFrame.Position = UDim2.new(0, 12, 0, 45) ListFrame.BackgroundTransparency = 1
local ListLayout = Instance.new("UIListLayout", ListFrame) ListLayout.Padding = UDim.new(0, 4)
local Colors = {
{Name = "No Name", Value = Color3.fromRGB(255, 255, 255)},
{Name = "No Name", Value = Color3.fromRGB(0, 125, 255)},
{Name = "No Name", Value = Color3.fromRGB(0, 225, 110)},
{Name = "No Name", Value = Color3.fromRGB(255, 50, 140)},
{Name = "No Name", Value = Color3.fromRGB(140, 50, 255)},
{Name = "No Name", Value = Color3.fromRGB(255, 60, 60)}
}
local Expanded = false
local function UpdateUIAccent(newColor)
Theme.Accent = newColor
for _, obj in ipairs(ScreenGui:GetDescendants()) do
if obj:IsA("TextButton") and obj ~= ToggleBtn and obj.Name ~= "OpenBtn" and obj.Parent ~= ListFrame then
if obj.BackgroundColor3 == Theme.Accent or obj.BackgroundColor3 ~= Theme.ElementBack then
TweenService:Create(obj, TweenInfo.new(0.25), {BackgroundColor3 = newColor}):Play()
end
elseif obj:IsA("TextLabel") and obj.TextColor3 == Color3.fromRGB(0, 125, 255) then
TweenService:Create(obj, TweenInfo.new(0.25), {TextColor3 = newColor}):Play()
elseif obj:IsA("Frame") and obj.BackgroundColor3 == Color3.fromRGB(0, 125, 255) then
TweenService:Create(obj, TweenInfo.new(0.25), {BackgroundColor3 = newColor}):Play()
elseif obj:IsA("TextButton") and obj.TextColor3 == Color3.fromRGB(0, 125, 255) then
TweenService:Create(obj, TweenInfo.new(0.25), {TextColor3 = newColor}):Play()
end
end
TweenService:Create(ToggleBtn, TweenInfo.new(0.25), {TextColor3 = newColor}):Play()
end
for _, info in ipairs(Colors) do
local OptBtn = Instance.new("TextButton", ListFrame) OptBtn.Size = UDim2.new(1, 0, 0, 21) OptBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 22) OptBtn.Text = "No Name" OptBtn.TextColor3 = Color3.fromRGB(190, 190, 190) OptBtn.Font = Enum.Font.Gotham OptBtn.TextSize = 11 OptBtn.TextXAlignment = Enum.TextXAlignment.Left Instance.new("UICorner", OptBtn).CornerRadius = UDim.new(0, 4)
local Dot = Instance.new("Frame", OptBtn) Dot.Size = UDim2.new(0, 10, 0, 10) Dot.Position = UDim2.new(1, -20, 0.5, -5) Dot.BackgroundColor3 = info.Value Instance.new("UICorner", Dot).CornerRadius = UDim.new(1, 0)
OptBtn.MouseButton1Click:Connect(function()
ColorPreview.BackgroundColor3 = info.Value
OpenBtn.Text = "No Name"
UpdateUIAccent(info.Value)
callback(info.Value)
Expanded = false
TweenService:Create(BaseFrame, TweenInfo.new(0.2), {Size = UDim2.new(1, 0, 0, 38)}):Play()
end)
end
OpenBtn.MouseButton1Click:Connect(function()
Expanded = not Expanded
if Expanded then
OpenBtn.Text = "No Name"
TweenService:Create(BaseFrame, TweenInfo.new(0.2), {Size = UDim2.new(1, 0, 0, 180)}):Play()
else
OpenBtn.Text = "No Name"
TweenService:Create(BaseFrame, TweenInfo.new(0.2), {Size = UDim2.new(1, 0, 0, 38)}):Play()
end
end)
end
task.spawn(function()
LoadNotify("poroto ui load..", 2.5)
task.wait(2.5)
KeyFrame.Visible = true
end)
CheckBtn.MouseButton1Click:Connect(function()
if KeyInput.Text == "poroto123" then
KeyFrame:Destroy()
MainFrame.Visible = true
else
LoadNotify("Wrong Key", 1.5)
end
end)
local Dragging, DragInput, DragStart, StartPosition
TopBar.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then Dragging = true DragStart = input.Position StartPosition = MainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then Dragging = false end end) end end)
UserInputService.InputChanged:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) and Dragging then local Delta = input.Position - DragStart TweenService:Create(MainFrame, TweenInfo.new(0.1), {Position = UDim2.new(StartPosition.X.Scale, StartPosition.X.Offset + Delta.X, StartPosition.Y.Scale, StartPosition.Y.Offset + Delta.Y)}):Play() end end)
local MainTab = Library:CreateTab("No Name")
Library:CreateSection(MainTab, "No Name")
-- Your script here
Library:CreateToggle(MainTab, "No Name", "all_spam_key", function(state)
-- Your script here
end)
Library:CreateButton(MainTab, "No Name", function()
-- Your script here
end)
Library:CreateSlider(MainTab, "No Name", 16, 200, "No Name", function(value)
-- Your script here
end)
Library:CreateDropdown(MainTab, "No Name", {"No Name", "No Name"}, function(selected)
-- Your script here
end)
Library:CreateInput(MainTab, "No Name", "No Name", function(text)
-- Your script here
end)
Library:CreateLabel(MainTab, "No Name")
Library:CreateKeybind(MainTab, "No Name", Enum.KeyCode.Q, function()
-- Your script here
end)
Library:CreateColorPicker(MainTab, "No Name", Color3.fromRGB(0, 125, 255), function(finalColor)
-- Your script here
end) key poroto123
Path: / Please upload my script. Here:local Players = game:GetService("Players")
local TweenService = game:GetService("TweenService")
local UserInputService = game:GetService("UserInputService")
local LocalPlayer = Players.LocalPlayer
local ScreenGui = Instance.new("ScreenGui", LocalPlayer:WaitForChild("PlayerGui"))
ScreenGui.ResetOnSpawn = false
local Theme = {
Background = Color3.fromRGB(19, 19, 21),
ElementBack = Color3.fromRGB(25, 25, 28),
Accent = Color3.fromRGB(0, 125, 255),
Text = Color3.fromRGB(240, 240, 245),
Stroke = Color3.fromRGB(35, 35, 40)
}
local function SaveConfig(key, value) pcall(function() writefile("cfg_"..key..".txt", tostring(value)) end) end
local function LoadConfig(key) local success, result = pcall(function() return readfile("cfg_"..key..".txt") end) return success and result or nil end
local function LoadNotify(text, duration)
local Notif = Instance.new("Frame", ScreenGui)
Notif.Size = UDim2.new(0, 240, 0, 50)
Notif.Position = UDim2.new(1, 260, 1, -70)
Notif.BackgroundColor3 = Color3.fromRGB(10, 10, 10)
end
local KeyFrame = Instance.new("Frame", ScreenGui) KeyFrame.Size = UDim2.new(0, 320, 0, 180) KeyFrame.Position = UDim2.new(0.5, -160, 0.5, -90) KeyFrame.BackgroundColor3 = Theme.Background KeyFrame.Visible = false
Instance.new("UICorner", KeyFrame).CornerRadius = UDim.new(0, 9) Instance.new("UIStroke", KeyFrame).Color = Theme.Stroke
local KTitle = Instance.new("TextLabel", KeyFrame) KTitle.Size = UDim2.new(1, 0, 0, 40) KTitle.Text = "No Name" KTitle.TextColor3 = Theme.Text KTitle.Font = Enum.Font.GothamBold KTitle.TextSize = 14 KTitle.BackgroundTransparency = 1
local KeyInput = Instance.new("TextBox", KeyFrame) KeyInput.Size = UDim2.new(1, -40, 0, 35) KeyInput.Position = UDim2.new(0, 20, 0, 60) KeyInput.BackgroundColor3 = Theme.ElementBack KeyInput.PlaceholderText = "No Name" KeyInput.Text = "" KeyInput.TextColor3 = Theme.Text KeyInput.Font = Enum.Font.Gotham
Instance.new("UICorner", KeyInput) Instance.new("UIStroke", KeyInput).Color = Theme.Stroke
local CheckBtn = Instance.new("TextButton", KeyFrame) CheckBtn.Size = UDim2.new(1, -40, 0, 35) CheckBtn.Position = UDim2.new(0, 20, 0, 115) CheckBtn.BackgroundColor3 = Theme.Accent CheckBtn.Text = "No Name" CheckBtn.TextColor3 = Theme.Text CheckBtn.Font = Enum.Font.GothamBold Instance.new("UICorner", CheckBtn)
local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.Size = UDim2.new(0, 480, 0, 350) MainFrame.Position = UDim2.new(0.5, -240, 0.5, -175) MainFrame.BackgroundColor3 = Theme.Background MainFrame.Visible = false
MainFrame.ClipsDescendants = true
Instance.new("UICorner", MainFrame) Instance.new("UIStroke", MainFrame).Color = Theme.Stroke
local TopBar = Instance.new("Frame", MainFrame) TopBar.Size = UDim2.new(1, 0, 0, 45) TopBar.BackgroundTransparency = 1
local MTitle = Instance.new("TextLabel", TopBar) MTitle.Size = UDim2.new(0, 250, 1, 0) MTitle.Position = UDim2.new(0, 15, 0, 0) MTitle.BackgroundTransparency = 1 MTitle.Text = "No Name" MTitle.TextColor3 = Theme.Text MTitle.Font = Enum.Font.GothamBold MTitle.TextSize = 15 MTitle.TextXAlignment = Enum.TextXAlignment.Left
local ToggleBtn = Instance.new("TextButton", TopBar) ToggleBtn.Size = UDim2.new(0, 100, 0, 25) ToggleBtn.Position = UDim2.new(1, -115, 0.5, -12) ToggleBtn.BackgroundColor3 = Theme.ElementBack ToggleBtn.Text = "No Name" ToggleBtn.TextColor3 = Theme.Accent ToggleBtn.Font = Enum.Font.GothamSemibold ToggleBtn.TextSize = 11 Instance.new("UICorner", ToggleBtn).CornerRadius = UDim.new(0, 5) Instance.new("UIStroke", ToggleBtn).Color = Theme.Stroke
local MainContainer = Instance.new("ScrollingFrame", MainFrame) MainContainer.Size = UDim2.new(1, -30, 1, -65) MainContainer.Position = UDim2.new(0, 15, 0, 55) MainContainer.BackgroundTransparency = 1 MainContainer.ScrollBarThickness = 2
MainContainer.ClipsDescendants = true
local Layout = Instance.new("UIListLayout", MainContainer) Layout.Padding = UDim.new(0, 8)
local IsOpen = true
local CurrentActiveTab = nil
ToggleBtn.MouseButton1Click:Connect(function()
IsOpen = not IsOpen
ToggleBtn.Text = "No Name"
end)
local Library = {}
function Library:CreateTab(tabName)
local TabContainer = Instance.new("ScrollingFrame", MainContainer.Parent) TabContainer.Size = MainContainer.Size TabContainer.Position = MainContainer.Position TabContainer.BackgroundTransparency = 1 TabContainer.ScrollBarThickness = 2 TabContainer.Visible = false
TabContainer.ClipsDescendants = true
local LLayout = Instance.new("UIListLayout", TabContainer) LLayout.Padding = UDim.new(0, 8)
local TabLabel = Instance.new("TextLabel", TabContainer) TabLabel.Size = UDim2.new(1, 0, 0, 20) TabLabel.BackgroundTransparency = 1 TabLabel.Text = "No Name" TabLabel.TextColor3 = Theme.Accent TabLabel.Font = Enum.Font.GothamBold TabLabel.TextSize = 11 TabLabel.TextXAlignment = Enum.TextXAlignment.Left
end
function Library:CreateSection(parent, text)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 25) Frame.BackgroundTransparency = 1
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(1, 0, 1, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(130, 130, 130) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Center
end
function Library:CreateButton(parent, text, callback)
local Btn = Instance.new("TextButton", parent) Btn.Size = UDim2.new(1, 0, 0, 38) Btn.BackgroundColor3 = Theme.ElementBack Btn.Text = "No Name" Btn.TextColor3 = Theme.Text Btn.Font = Enum.Font.GothamSemibold Btn.TextSize = 12 Btn.TextXAlignment = Enum.TextXAlignment.Left
Instance.new("UICorner", Btn).CornerRadius = UDim.new(0, 6) Instance.new("UIStroke", Btn).Color = Theme.Stroke
local Icon = Instance.new("TextLabel", Btn) Icon.Size = UDim2.new(0, 20, 1, 0) Icon.Position = UDim2.new(1, -30, 0, 0) Icon.BackgroundTransparency = 1 Icon.Text = "🗑️" Icon.TextColor3 = Color3.fromRGB(100, 100, 110) Icon.Font = Enum.Font.GothamBold Icon.TextSize = 10 Icon.TextXAlignment = Enum.TextXAlignment.Right
Btn.MouseButton1Click:Connect(function()
TweenService:Create(Btn, TweenInfo.new(0.1), {BackgroundColor3 = Color3.fromRGB(32, 32, 36)}):Play() task.wait(0.05)
TweenService:Create(Btn, TweenInfo.new(0.1), {BackgroundColor3 = Theme.ElementBack}):Play() callback()
end)
end
function Library:CreateToggle(parent, text, configKey, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.6, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local TBtn = Instance.new("TextButton", Frame) TBtn.Size = UDim2.new(0, 35, 0, 20) TBtn.Position = UDim2.new(1, -47, 0.5, -10) TBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) TBtn.Text = ""
Instance.new("UICorner", TBtn).CornerRadius = UDim.new(1, 0)
local Dot = Instance.new("Frame", TBtn) Dot.Size = UDim2.new(0, 14, 0, 14) Dot.Position = UDim2.new(0, 3, 0.5, -7) Dot.BackgroundColor3 = Color3.fromRGB(150, 150, 150) Instance.new("UICorner", Dot).CornerRadius = UDim.new(1, 0)
local Toggled = false local saved = LoadConfig(configKey)
if saved == "true" then Toggled = true TBtn.BackgroundColor3 = Theme.Accent Dot.Position = UDim2.new(1, -17, 0.5, -7) callback(true) end
TBtn.MouseButton1Click:Connect(function()
Toggled = not Toggled SaveConfig(configKey, Toggled)
if Toggled then
TweenService:Create(TBtn, TweenInfo.new(0.15), {BackgroundColor3 = Theme.Accent}):Play()
TweenService:Create(Dot, TweenInfo.new(0.15), {Position = UDim2.new(1, -17, 0.5, -7)}):Play() callback(true)
else
TweenService:Create(TBtn, TweenInfo.new(0.15), {BackgroundColor3 = Color3.fromRGB(40, 40, 40)}):Play()
TweenService:Create(Dot, TweenInfo.new(0.15), {Position = UDim2.new(0, 3, 0.5, -7)}):Play() callback(false)
end
end)
end
function Library:CreateSlider(parent, text, min, max, unit, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 42) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.4, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local VLbl = Instance.new("TextLabel", Frame) VLbl.Size = UDim2.new(0, 45, 0, 20) VLbl.Position = UDim2.new(1, -175, 0.5, -10) VLbl.BackgroundTransparency = 1 VLbl.Text = "No Name" VLbl.TextColor3 = Color3.fromRGB(180, 180, 180) VLbl.Font = Enum.Font.Gotham VLbl.TextSize = 11 VLbl.TextXAlignment = Enum.TextXAlignment.Right
local SBar = Instance.new("TextButton", Frame) SBar.Size = UDim2.new(0, 110, 0, 6) SBar.Position = UDim2.new(1, -122, 0.5, -3) SBar.BackgroundColor3 = Color3.fromRGB(45, 45, 45) SBar.Text = "" Instance.new("UICorner", SBar)
local Fill = Instance.new("Frame", SBar) Fill.Size = UDim2.new(0, 0, 1, 0) Fill.BackgroundColor3 = Theme.Accent Instance.new("UICorner", Fill)
end
function Library:CreateDropdown(parent, text, options, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.5, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local DBtn = Instance.new("TextButton", Frame) DBtn.Size = UDim2.new(0, 110, 0, 24) DBtn.Position = UDim2.new(1, -122, 0.5, -12) DBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) DBtn.Text = "No Name" DBtn.TextColor3 = Color3.fromRGB(180, 180, 180) DBtn.Font = Enum.Font.Gotham DBtn.TextSize = 11 Instance.new("UICorner", DBtn).CornerRadius = UDim.new(0, 4)
local DropObject = {} function DropObject:Refresh(newOptions) options = newOptions DBtn.Text = "No Name" end
DBtn.MouseButton1Click:Connect(function() if #options > 0 then DBtn.Text = "No Name" callback(options[1]) end end)
return DropObject
end
function Library:CreateInput(parent, text, placeholder, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.5, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local Box = Instance.new("TextBox", Frame) Box.Size = UDim2.new(0, 110, 0, 24) Box.Position = UDim2.new(1, -122, 0.5, -12) Box.BackgroundColor3 = Color3.fromRGB(26, 26, 26) Box.PlaceholderText = "No Name" Box.Text = "" Box.TextColor3 = Theme.Text Box.Font = Enum.Font.Gotham Box.TextSize = 11 Instance.new("UICorner", Box).CornerRadius = UDim.new(0, 4)
Box.FocusLost:Connect(function(enter) if enter and Box.Text ~= "" then callback(Box.Text) end end)
end
function Library:CreateLabel(parent, text)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 25) Frame.BackgroundTransparency = 1
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(1, 0, 1, 0) Lbl.Position = UDim2.new(0, 10, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(180, 180, 180) Lbl.Font = Enum.Font.Gotham Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
end
function Library:CreateKeybind(parent, text, defaultKey, callback)
local Frame = Instance.new("Frame", parent) Frame.Size = UDim2.new(1, 0, 0, 38) Frame.BackgroundColor3 = Theme.ElementBack
Instance.new("UICorner", Frame).CornerRadius = UDim.new(0, 6)
local Lbl = Instance.new("TextLabel", Frame) Lbl.Size = UDim2.new(0.6, 0, 1, 0) Lbl.Position = UDim2.new(0, 12, 0, 0) Lbl.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Color3.fromRGB(235, 235, 235) Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local BBtn = Instance.new("TextButton", Frame) BBtn.Size = UDim2.new(0, 65, 0, 24) BBtn.Position = UDim2.new(1, -77, 0.5, -12) BBtn.BackgroundColor3 = Color3.fromRGB(35, 35, 35) BBtn.Text = "No Name" BBtn.TextColor3 = Theme.Accent BBtn.Font = Enum.Font.GothamBold BBtn.TextSize = 11 Instance.new("UICorner", BBtn).CornerRadius = UDim.new(0, 4)
local CurrentKey = defaultKey UserInputService.InputBegan:Connect(function(input, processed) if not processed and input.KeyCode == CurrentKey then callback() end end)
end
function Library:CreateColorPicker(parent, text, defaultColor, callback)
local BaseFrame = Instance.new("Frame", parent) BaseFrame.Size = UDim2.new(1, 0, 0, 38) BaseFrame.BackgroundColor3 = Theme.ElementBack BaseFrame.ClipsDescendants = true
Instance.new("UICorner", BaseFrame).CornerRadius = UDim.new(0, 6) Instance.new("UIStroke", BaseFrame).Color = Theme.Stroke
local Lbl = Instance.new("TextLabel", BaseFrame) Lbl.Size = UDim2.new(0.5, 0, 0, 38) Lbl.Position = UDim2.new(0, 12, 0, 0) BaseFrame.BackgroundTransparency = 1 Lbl.Text = "No Name" Lbl.TextColor3 = Theme.Text Lbl.Font = Enum.Font.GothamSemibold Lbl.TextSize = 12 Lbl.TextXAlignment = Enum.TextXAlignment.Left
local ColorPreview = Instance.new("Frame", BaseFrame) ColorPreview.Size = UDim2.new(0, 35, 0, 20) ColorPreview.Position = UDim2.new(1, -145, 0, 9) ColorPreview.BackgroundColor3 = defaultColor Instance.new("UICorner", ColorPreview).CornerRadius = UDim.new(0, 4)
local OpenBtn = Instance.new("TextButton", BaseFrame) OpenBtn.Size = UDim2.new(0, 90, 0, 24) OpenBtn.Position = UDim2.new(1, -102, 0, 7) OpenBtn.BackgroundColor3 = Color3.fromRGB(32, 32, 36) OpenBtn.Text = "No Name" OpenBtn.TextColor3 = Color3.fromRGB(180, 180, 180) OpenBtn.Font = Enum.Font.Gotham OpenBtn.TextSize = 11 Instance.new("UICorner", OpenBtn).CornerRadius = UDim.new(0, 4)
local ListFrame = Instance.new("Frame", BaseFrame) ListFrame.Size = UDim2.new(1, -24, 0, 125) ListFrame.Position = UDim2.new(0, 12, 0, 45) ListFrame.BackgroundTransparency = 1
local ListLayout = Instance.new("UIListLayout", ListFrame) ListLayout.Padding = UDim.new(0, 4)
end
task.spawn(function()
LoadNotify("poroto ui load..", 2.5)
task.wait(2.5)
KeyFrame.Visible = true
end)
CheckBtn.MouseButton1Click:Connect(function()
if KeyInput.Text == "poroto123" then
KeyFrame:Destroy()
MainFrame.Visible = true
else
LoadNotify("Wrong Key", 1.5)
end
end)
local Dragging, DragInput, DragStart, StartPosition
TopBar.InputBegan:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch) then Dragging = true DragStart = input.Position StartPosition = MainFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then Dragging = false end end) end end)
UserInputService.InputChanged:Connect(function(input) if (input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch) and Dragging then local Delta = input.Position - DragStart TweenService:Create(MainFrame, TweenInfo.new(0.1), {Position = UDim2.new(StartPosition.X.Scale, StartPosition.X.Offset + Delta.X, StartPosition.Y.Scale, StartPosition.Y.Offset + Delta.Y)}):Play() end end)
local MainTab = Library:CreateTab("No Name")
Library:CreateSection(MainTab, "No Name")
-- Your script here
Library:CreateToggle(MainTab, "No Name", "all_spam_key", function(state)
-- Your script here
end)
Library:CreateButton(MainTab, "No Name", function()
-- Your script here
end)
Library:CreateSlider(MainTab, "No Name", 16, 200, "No Name", function(value)
-- Your script here
end)
Library:CreateDropdown(MainTab, "No Name", {"No Name", "No Name"}, function(selected)
-- Your script here
end)
Library:CreateInput(MainTab, "No Name", "No Name", function(text)
-- Your script here
end)
Library:CreateLabel(MainTab, "No Name")
Library:CreateKeybind(MainTab, "No Name", Enum.KeyCode.Q, function()
-- Your script here
end)
Library:CreateColorPicker(MainTab, "No Name", Color3.fromRGB(0, 125, 255), function(finalColor)
-- Your script here
end) key poroto123