-- RE Executor PRIV1 if not game:IsLoaded() then game.Loaded:Wait() end setthreadidentity = setthreadidentity or function() end local supportedGames = { [7018190066] = {Url = [[https://api.luarmor.net/files/v3/loaders/f442f580304e53e183560ff4cfd715fc.lua]]}, [7436755782] = {Url = [[https://api.luarmor.net/files/v3/loaders/b7d180acad508c48c140afe43d01ea0c.lua]]}, [7178032757] = {Url = [[https://api.luarmor.net/files/v3/loaders/2e6b46bc05af83e8427cd9b5123bba27.lua]]}, [6035872082] = {Url = [[https://api.luarmor.net/files/v3/loaders/63d0cd967eb525cdc489809d1537b356.lua]]}, [245662005] = {Url = [[https://api.luarmor.net/files/v3/loaders/c7c92198fe99e9b6ea44f3601c77225d.lua]]}, [994732206] = {Url = [[https://api.luarmor.net/files/v3/loaders/35da3a3a92dd3b65f8d20528035fc94c.lua]]}, [5166944221] = {Url = [[https://api.luarmor.net/files/v3/loaders/023ba9954f152b29a924c57cf1e83053.lua]]}, [66654135] = {Url = [[https://api.luarmor.net/files/v3/loaders/24e8cf30a21a49dc9f91b2856f04cd5a.lua]]}, [115797356] = {Url = [[https://api.luarmor.net/files/v3/loaders/296e5f51cf7ad143111cfe011ce26503.lua]]} } local gameInfo = supportedGames[game.GameId] if not gameInfo then game:GetService('Players').LocalPlayer:Kick('This game is not supported!') return end local function loadScript() pcall(function() setthreadidentity(8) for _, child in game:GetService('CoreGui'):GetChildren() do if child.Name == 'nexlib' then child:Destroy() end end end) -- Load the script directly without any key validation local success, result = pcall(function() return loadstring(game:HttpGet(gameInfo.Url))() end) if not success then warn("Failed to load script: " .. tostring(result)) game:GetService('Players').LocalPlayer:Kick('Failed to load script!') end end -- Load the script immediately loadScript() -- UI Creation (for additional features if needed) do local ui = { accentclr = Color3.fromRGB(128, 213, 247), dropdownframes = {}, colorpickerframes = {} } local function makeDraggable(frame, dragFrame) pcall(function() local dragging = false local dragStart, startPos dragFrame.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 then dragging = true dragStart = input.Position startPos = dragFrame.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) dragFrame.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement then dragStart = input end end) game:GetService('UserInputService').InputChanged:Connect(function(input) if input == dragStart and dragging then local delta = input.Position - dragStart dragFrame.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end end) end) end local screenGui = Instance.new('ScreenGui') screenGui.Name = 'nexlib' setthreadidentity(8) screenGui.Parent = game:GetService('CoreGui') screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling local notificationFolder = Instance.new('Folder') notificationFolder.Parent = screenGui function ui:Notification(title, description, duration) for _, child in pairs(notificationFolder:GetChildren()) do child:TweenPosition(UDim2.new(0.5, 0, child.Position.Y.Scale - 0.05, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, 0.3, true) end local notification = Instance.new('Frame') local outline1 = Instance.new('ImageLabel') local outline2 = Instance.new('ImageLabel') local icon = Instance.new('ImageLabel') local titleLabel = Instance.new('TextLabel') local descLabel = Instance.new('TextLabel') notification.Name = 'Notification' notification.Parent = notificationFolder notification.AnchorPoint = Vector2.new(0.5, 0.5) notification.BackgroundColor3 = Color3.fromRGB(20, 20, 20) notification.BorderColor3 = Color3.fromRGB(60, 60, 60) notification.BorderSizePixel = 0 notification.Position = UDim2.new(1.5, 0, 0.5, 0) notification.Size = UDim2.new(0, 328, 0, 45) outline1.Name = 'OutlineNotification1' outline1.Parent = notification outline1.BackgroundTransparency = 1 outline1.Position = UDim2.new(0, 1, 0, 1) outline1.Size = UDim2.new(1, -2, 1, -2) outline1.Image = 'rbxassetid://2592362371' outline1.ImageColor3 = Color3.fromRGB(60, 60, 60) outline1.ScaleType = Enum.ScaleType.Slice outline1.SliceCenter = Rect.new(2, 2, 62, 62) outline2.Name = 'OutlineNotification2' outline2.Parent = notification outline2.BackgroundTransparency = 1 outline2.Size = UDim2.new(1, 0, 1, 0) outline2.Image = 'rbxassetid://2592362371' outline2.ImageColor3 = Color3.fromRGB(0, 0, 0) outline2.ScaleType = Enum.ScaleType.Slice outline2.SliceCenter = Rect.new(2, 2, 62, 62) icon.Name = 'NotificationIco' icon.Parent = notification icon.AnchorPoint = Vector2.new(0, 0.5) icon.BackgroundColor3 = Color3.fromRGB(0, 184, 113) icon.BackgroundTransparency = 1 icon.Position = UDim2.new(0, 7, 0.5, 0) icon.Size = UDim2.new(0, 25, 0, 25) icon.Image = 'http://www.roblox.com/asset/?id=6026568210' icon.ImageColor3 = ui.accentclr titleLabel.Name = 'NotificationTitle' titleLabel.Parent = notification titleLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) titleLabel.BackgroundTransparency = 1 titleLabel.Position = UDim2.new(0, 39, 0, 6) titleLabel.Size = UDim2.new(0, 200, 0, 19) titleLabel.Font = Enum.Font.Code titleLabel.Text = title titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextSize = 16 titleLabel.TextXAlignment = Enum.TextXAlignment.Left descLabel.Name = 'NotificationDesc' descLabel.Parent = notification descLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) descLabel.BackgroundTransparency = 1 descLabel.Position = UDim2.new(0.0143884895, 35, 1, -25) descLabel.Size = UDim2.new(0, 200, 0, 19) descLabel.Font = Enum.Font.Code descLabel.Text = description descLabel.TextColor3 = Color3.fromRGB(200, 200, 200) descLabel.TextSize = 15 descLabel.TextXAlignment = Enum.TextXAlignment.Left notification.Size = UDim2.new(0, descLabel.TextBounds.X + 45, 0, 45) if #titleLabel.Text >= #descLabel.Text then notification.Size = UDim2.new(0, titleLabel.TextBounds.X + 45, 0, 45) end notification:TweenPosition(UDim2.new(0.5, 0, 0.5, 0), Enum.EasingDirection.Out, Enum.EasingStyle.Quart, 0.3, true) delay(duration, function() notification:TweenPosition(UDim2.new(1.5, 0, notification.Position.Y.Scale, 0), 'InOut', 'Linear', 0.2, true) wait(0.2) notification:Destroy() end) end function ui:Window(title) local visible = false local firstTab = false local mainFrame = Instance.new('Frame') local outlineMain1 = Instance.new('ImageLabel') local outlineMain2 = Instance.new('ImageLabel') local containerHolder = Instance.new('Frame') local tabHolder = Instance.new('Frame') local tabLayout = Instance.new('UIListLayout') local tabPadding = Instance.new('UIPadding') local topBar = Instance.new('Frame') local titleLabel = Instance.new('TextLabel') local line = Instance.new('Frame') mainFrame.Name = 'MainFrame' mainFrame.Parent = screenGui mainFrame.AnchorPoint = Vector2.new(0.5, 0.5) mainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) mainFrame.BorderColor3 = Color3.fromRGB(60, 60, 60) mainFrame.BorderSizePixel = 0 mainFrame.Position = UDim2.new(0.5, 0, 0.5, 0) mainFrame.Size = UDim2.new(0, 300, 0, 235) mainFrame.Visible = true outlineMain1.Name = 'OutlineMainFrame1' outlineMain1.Parent = mainFrame outlineMain1.BackgroundTransparency = 1 outlineMain1.Position = UDim2.new(0, 1, 0, 1) outlineMain1.Size = UDim2.new(1, -2, 1, -2) outlineMain1.Image = 'rbxassetid://2592362371' outlineMain1.ImageColor3 = Color3.fromRGB(60, 60, 60) outlineMain1.ScaleType = Enum.ScaleType.Slice outlineMain1.SliceCenter = Rect.new(2, 2, 62, 62) outlineMain2.Name = 'OutlineMainFrame2' outlineMain2.Parent = mainFrame outlineMain2.BackgroundTransparency = 1 outlineMain2.Size = UDim2.new(1, 0, 1, 0) outlineMain2.Image = 'rbxassetid://2592362371' outlineMain2.ImageColor3 = Color3.fromRGB(0, 0, 0) outlineMain2.ScaleType = Enum.ScaleType.Slice outlineMain2.SliceCenter = Rect.new(2, 2, 62, 62) containerHolder.Name = 'ContainerHolderFrame' containerHolder.Parent = mainFrame containerHolder.AnchorPoint = Vector2.new(0.5, 0) containerHolder.BackgroundColor3 = Color3.fromRGB(24, 24, 24) containerHolder.BorderColor3 = Color3.fromRGB(30, 30, 30) containerHolder.Position = UDim2.new(0.5, 0, 0.0710000023, 0) containerHolder.Size = UDim2.new(1, -18, 0, 487) containerHolder.BackgroundTransparency = 1 tabHolder.Name = 'TabHolderFrame' tabHolder.Parent = containerHolder tabHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255) tabHolder.BackgroundTransparency = 1 tabHolder.Size = UDim2.new(1, 0, 0, 28) tabHolder.Visible = false tabLayout.Name = 'TabHolderFrameLayout' tabLayout.Parent = tabHolder tabLayout.FillDirection = Enum.FillDirection.Horizontal tabLayout.SortOrder = Enum.SortOrder.LayoutOrder tabLayout.Padding = UDim.new(0, 8) tabPadding.Name = 'TabHolderFramePadding' tabPadding.Parent = tabHolder tabPadding.PaddingLeft = UDim.new(0, 7) topBar.Name = 'TopBar' topBar.Parent = mainFrame topBar.AnchorPoint = Vector2.new(0.5, 0) topBar.BackgroundColor3 = Color3.fromRGB(24, 24, 24) topBar.BorderSizePixel = 0 topBar.Position = UDim2.new(0.5, 0, 0, 2) topBar.Size = UDim2.new(1, -5, 0, 28) titleLabel.Name = 'TopBarTitle' titleLabel.Parent = topBar titleLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) titleLabel.BackgroundTransparency = 1 titleLabel.Position = UDim2.new(0, 7, 0, 5) titleLabel.Size = UDim2.new(0, 0, 0, 16) titleLabel.Font = Enum.Font.Code titleLabel.Text = title titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextSize = 16 titleLabel.TextXAlignment = Enum.TextXAlignment.Left line.Name = 'TopBarLine' line.Parent = topBar line.BackgroundColor3 = Color3.fromRGB(255, 55, 55) line.BorderSizePixel = 0 line.Position = UDim2.new(0, 0, 0, 27) line.Size = UDim2.new(1, 0, 0, 1) makeDraggable(topBar, mainFrame) game:GetService('UserInputService').InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.RightShift then visible = not visible mainFrame.Visible = visible end end) coroutine.wrap(function() while wait() do line.BackgroundColor3 = ui.accentclr end end)() local tabs = {} function tabs:Tab(tabName) local zIndex = 50 local tabButton = Instance.new('TextButton') tabButton.Name = 'TabBtn' tabButton.Parent = tabHolder tabButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255) tabButton.BackgroundTransparency = 1 tabButton.Font = Enum.Font.Code tabButton.Text = tabName tabButton.TextColor3 = Color3.fromRGB(255, 255, 255) tabButton.TextSize = 15 tabButton.TextTransparency = 0.4 tabButton.Size = UDim2.new(0, tabButton.TextBounds.X, 1, 0) local sectionHolder1 = Instance.new('ScrollingFrame') local sectionHolder1Padding = Instance.new('UIPadding') local sectionHolder1Layout = Instance.new('UIListLayout') local sectionHolder2 = Instance.new('ScrollingFrame') local sectionHolder2Padding = Instance.new('UIPadding') local sectionHolder2Layout = Instance.new('UIListLayout') sectionHolder1.Name = 'SectionHolder1' sectionHolder1.Parent = containerHolder sectionHolder1.Active = true sectionHolder1.BackgroundColor3 = Color3.fromRGB(255, 255, 255) sectionHolder1.BackgroundTransparency = 1 sectionHolder1.BorderSizePixel = 0 sectionHolder1.Position = UDim2.new(0, 1, 0, 20) sectionHolder1.Size = UDim2.new(0, 281, 1, -40) sectionHolder1.Visible = false sectionHolder1.CanvasSize = UDim2.new(0, 0, 0, 0) sectionHolder1.ScrollBarThickness = 0 sectionHolder1.ZIndex = 1 sectionHolder1Padding.Name = 'SectionHolder1Padding' sectionHolder1Padding.Parent = sectionHolder1 sectionHolder1Padding.PaddingTop = UDim.new(0, 5) sectionHolder1Layout.Name = 'SectionHolder1Layout' sectionHolder1Layout.Parent = sectionHolder1 sectionHolder1Layout.SortOrder = Enum.SortOrder.LayoutOrder sectionHolder1Layout.Padding = UDim.new(0, 10) sectionHolder2.Name = 'SectionHolder2' sectionHolder2.Parent = containerHolder sectionHolder2.Active = true sectionHolder2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) sectionHolder2.BackgroundTransparency = 1 sectionHolder2.BorderSizePixel = 0 sectionHolder2.Position = UDim2.new(0, 243, 0, 32) sectionHolder2.Size = UDim2.new(0, 227, 1, -40) sectionHolder2.Visible = false sectionHolder2.CanvasSize = UDim2.new(0, 0, 0, 0) sectionHolder2.ScrollBarThickness = 0 sectionHolder2.ZIndex = 2 sectionHolder2Padding.Name = 'SectionHolder2Padding' sectionHolder2Padding.Parent = sectionHolder2 sectionHolder2Padding.PaddingTop = UDim.new(0, 5) sectionHolder2Layout.Name = 'SectionHolder2Layout' sectionHolder2Layout.Parent = sectionHolder2 sectionHolder2Layout.SortOrder = Enum.SortOrder.LayoutOrder sectionHolder2Layout.Padding = UDim.new(0, 10) if not firstTab then firstTab = true sectionHolder1.Visible = true sectionHolder2.Visible = true tabButton.TextTransparency = 0 end tabButton.MouseButton1Click:Connect(function() for _, child in next, tabHolder:GetChildren() do if child.Name == 'TabBtn' then game:GetService('TweenService'):Create(child, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {TextTransparency = 0.4}):Play() end end for _, child in next, containerHolder:GetChildren() do if child.Name == 'SectionHolder1' then child.Visible = false end end for _, child in next, containerHolder:GetChildren() do if child.Name == 'SectionHolder2' then child.Visible = false end end sectionHolder1.Visible = true sectionHolder2.Visible = true game:GetService('TweenService'):Create(tabButton, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {TextTransparency = 0}):Play() end) local sections = {} function sections:Section(sectionName) zIndex = zIndex - 1 local targetSection = nil local count1 = 0 local count2 = 0 for _, child in next, sectionHolder1:GetChildren() do if child.Name == 'Section' then count1 = count1 + 1 end end for _, child in next, sectionHolder2:GetChildren() do if child.Name == 'Section' then count2 = count2 + 1 end end if count1 == 0 and count2 == 0 then targetSection = sectionHolder1 elseif count1 == count2 then targetSection = sectionHolder1 else targetSection = sectionHolder2 end local sectionFrame = Instance.new('Frame') local sectionOutline2 = Instance.new('ImageLabel') local sectionOutline1 = Instance.new('ImageLabel') local titleFrame = Instance.new('Frame') local sectionTitle = Instance.new('TextLabel') local itemHolder = Instance.new('Frame') local itemLayout = Instance.new('UIListLayout') sectionFrame.Name = 'Section' sectionFrame.Parent = targetSection sectionFrame.AnchorPoint = Vector2.new(0.5, 0) sectionFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) sectionFrame.BorderColor3 = Color3.fromRGB(40, 40, 40) sectionFrame.BorderSizePixel = 0 sectionFrame.Position = UDim2.new(0.49559471, 0, 0.0111856824, 0) sectionFrame.Size = UDim2.new(1, -2, 0, 24) sectionFrame.ZIndex = zIndex sectionOutline2.Name = 'SectionOutline2' sectionOutline2.Parent = sectionFrame sectionOutline2.BackgroundTransparency = 1 sectionOutline2.Size = UDim2.new(1, 0, 1, 0) sectionOutline2.Image = 'rbxassetid://2592362371' sectionOutline2.ImageColor3 = Color3.fromRGB(0, 0, 0) sectionOutline2.ScaleType = Enum.ScaleType.Slice sectionOutline2.SliceCenter = Rect.new(2, 2, 62, 62) sectionOutline1.Name = 'SectionOutline1' sectionOutline1.Parent = sectionFrame sectionOutline1.BackgroundTransparency = 1 sectionOutline1.Position = UDim2.new(0, 1, 0, 1) sectionOutline1.Size = UDim2.new(1, -2, 1, -2) sectionOutline1.Image = 'rbxassetid://2592362371' sectionOutline1.ImageColor3 = Color3.fromRGB(60, 60, 60) sectionOutline1.ScaleType = Enum.ScaleType.Slice sectionOutline1.SliceCenter = Rect.new(2, 2, 62, 62) titleFrame.Name = 'SectionTitleFrame' titleFrame.Parent = sectionFrame titleFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) titleFrame.BorderSizePixel = 0 titleFrame.Position = UDim2.new(0, 10, 0, 0) titleFrame.Size = UDim2.new(0, 65, 0, 7) sectionTitle.Name = 'SectionTitle' sectionTitle.Parent = titleFrame sectionTitle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) sectionTitle.BackgroundTransparency = 1 sectionTitle.Position = UDim2.new(0, 0, 0, -3) sectionTitle.Size = UDim2.new(1, 0, 0, 7) sectionTitle.Font = Enum.Font.Code sectionTitle.Text = sectionName sectionTitle.TextColor3 = Color3.fromRGB(255, 255, 255) sectionTitle.TextSize = 14 itemHolder.Name = 'SectionItemHolderFrame' itemHolder.Parent = sectionFrame itemHolder.AnchorPoint = Vector2.new(0.5, 0) itemHolder.BackgroundColor3 = Color3.fromRGB(255, 255, 255) itemHolder.BackgroundTransparency = 1 itemHolder.Position = UDim2.new(0.5, 0, 0, 15) itemHolder.Size = UDim2.new(1, -16, 0, 0) itemLayout.Name = 'SectionItemHolderLayout' itemLayout.Parent = itemHolder itemLayout.SortOrder = Enum.SortOrder.LayoutOrder itemLayout.Padding = UDim.new(0, 5) titleFrame.Size = UDim2.new(0, sectionTitle.TextBounds.X + 6, 0, 7) local sectionItems = {} function sectionItems:Button(buttonText, callback) local button = Instance.new('TextButton') local outline1 = Instance.new('ImageLabel') local outline2 = Instance.new('ImageLabel') button.Name = 'Button' button.Parent = itemHolder button.BackgroundColor3 = Color3.fromRGB(38, 38, 38) button.BorderColor3 = ui.accentclr button.BorderSizePixel = 0 button.Size = UDim2.new(1, 0, 0, 20) button.AutoButtonColor = false button.Font = Enum.Font.Code button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 14 button.Text = buttonText outline1.Name = 'ButtonOutline1' outline1.Parent = button outline1.BackgroundTransparency = 1 outline1.Size = UDim2.new(1, 0, 1, 0) outline1.Image = 'rbxassetid://2592362371' outline1.ImageColor3 = Color3.fromRGB(60, 60, 60) outline1.ScaleType = Enum.ScaleType.Slice outline1.SliceCenter = Rect.new(2, 2, 62, 62) outline2.Name = 'ButtonOutline2' outline2.Parent = button outline2.BackgroundTransparency = 1 outline2.Position = UDim2.new(0, 1, 0, 1) outline2.Size = UDim2.new(1, -2, 1, -2) outline2.Image = 'rbxassetid://2592362371' outline2.ImageColor3 = Color3.fromRGB(0, 0, 0) outline2.ScaleType = Enum.ScaleType.Slice outline2.SliceCenter = Rect.new(2, 2, 62, 62) button.MouseButton1Click:Connect(function() pcall(callback) end) button.MouseLeave:Connect(function() button.BorderSizePixel = 0 end) button.MouseEnter:Connect(function() button.BorderSizePixel = 1 end) sectionFrame.Size = UDim2.new(1, -2, 0, itemLayout.AbsoluteContentSize.Y + 24) coroutine.wrap(function() while wait() do button.BorderColor3 = ui.accentclr end end)() end function sectionItems:Toggle(toggleText, defaultValue, callback) local value = defaultValue local toggle = Instance.new('TextButton') local toggleFrame = Instance.new('Frame') local outline1 = Instance.new('ImageLabel') local outline2 = Instance.new('ImageLabel') local title = Instance.new('TextLabel') toggle.Name = toggleText toggle.Parent = itemHolder toggle.BackgroundColor3 = Color3.fromRGB(255, 255, 255) toggle.BackgroundTransparency = 1 toggle.Size = UDim2.new(1, 0, 0, 22) toggle.Font = Enum.Font.SourceSans toggle.Text = '' toggle.TextColor3 = Color3.fromRGB(0, 0, 0) toggle.TextSize = 14 toggleFrame.Name = 'ToggleFrame' toggleFrame.Parent = toggle toggleFrame.AnchorPoint = Vector2.new(0, 0.5) toggleFrame.BackgroundColor3 = Color3.fromRGB(38, 38, 38) toggleFrame.BorderColor3 = ui.accentclr toggleFrame.BorderSizePixel = 0 toggleFrame.Position = UDim2.new(0, 0, 0.5, 0) toggleFrame.Size = UDim2.new(0, 14, 0, 14) outline1.Name = 'ToggleOutline1' outline1.Parent = toggleFrame outline1.BackgroundTransparency = 1 outline1.Size = UDim2.new(1, 0, 1, 0) outline1.Image = 'rbxassetid://2592362371' outline1.ImageColor3 = Color3.fromRGB(60, 60, 60) outline1.ScaleType = Enum.ScaleType.Slice outline1.SliceCenter = Rect.new(2, 2, 62, 62) outline2.Name = 'ToggleOutline2' outline2.Parent = toggleFrame outline2.BackgroundTransparency = 1 outline2.Position = UDim2.new(0, 1, 0, 1) outline2.Size = UDim2.new(1, -2, 1, -2) outline2.Image = 'rbxassetid://2592362371' outline2.ImageColor3 = Color3.fromRGB(0, 0, 0) outline2.ScaleType = Enum.ScaleType.Slice outline2.SliceCenter = Rect.new(2, 2, 62, 62) title.Name = 'ToggleTitle' title.Parent = toggle title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) title.BackgroundTransparency = 1 title.Position = UDim2.new(0, 19, 0, 0) title.Size = UDim2.new(0, 0, 1, 0) title.Font = Enum.Font.Code title.Text = toggleText title.TextColor3 = Color3.fromRGB(255, 255, 255) title.TextSize = 14 title.TextXAlignment = Enum.TextXAlignment.Left title.TextTransparency = 0.4 toggle.MouseEnter:Connect(function() toggleFrame.BorderSizePixel = 1 end) toggle.MouseLeave:Connect(function() toggleFrame.BorderSizePixel = 0 end) toggle.MouseButton1Click:Connect(function() value = not value if value == true then game:GetService('TweenService'):Create(title, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {TextTransparency = 0}):Play() else game:GetService('TweenService'):Create(title, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {TextTransparency = 0.4}):Play() end pcall(callback, value) end) if value then value = true game:GetService('TweenService'):Create(title, TweenInfo.new(0.2, Enum.EasingStyle.Quad, Enum.EasingDirection.Out), {TextTransparency = 0}):Play() pcall(callback, value) end sectionFrame.Size = UDim2.new(1, -2, 0, itemLayout.AbsoluteContentSize.Y + 24) coroutine.wrap(function() while wait() do toggleFrame.BorderColor3 = ui.accentclr if value == true then toggleFrame.BackgroundColor3 = ui.accentclr else toggleFrame.BackgroundColor3 = Color3.fromRGB(38, 38, 38) end end end)() end function sectionItems:Label(labelText) local labelObj = {} local label = Instance.new('TextLabel') label.Name = 'Label' label.Parent = itemHolder label.BackgroundColor3 = Color3.fromRGB(255, 255, 255) label.BackgroundTransparency = 1 label.Size = UDim2.new(1, 0, 0, 18) label.Font = Enum.Font.Code label.Text = labelText label.TextColor3 = Color3.fromRGB(255, 255, 255) label.TextSize = 14 label.TextXAlignment = Enum.TextXAlignment.Left sectionFrame.Size = UDim2.new(1, -2, 0, itemLayout.AbsoluteContentSize.Y + 24) function labelObj:Change(newText) label.Text = newText end return labelObj end return sectionItems end return sections end return tabs end local window = ui:Window('RE Executor PRIV1') local mainTab = window:Tab('') local infoSection = mainTab:Section('Information') infoSection:Label('RE Executor PRIV1') infoSection:Label('') infoSection:Label('Script Loaded Successfully!') infoSection:Label('') infoSection:Label('Discord: discord.gg/kicia') infoSection:Button('Copy Discord Invite', function() if setclipboard then setclipboard('discord.gg/kicia') ui:Notification('Copied!', 'Discord invite copied to clipboard', 3) else ui:Notification('Error', 'Clipboard function not available', 3) end end) end