Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --// GUI Initialization
- local ScreenGui = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local Title = Instance.new("TextLabel")
- local ButtonHolder = Instance.new("ScrollingFrame")
- local UIListLayout = Instance.new("UIListLayout")
- local UIPadding = Instance.new("UIPadding")
- local UICorner = Instance.new("UICorner")
- local UIStroke = Instance.new("UIStroke")
- --// ScreenGui Setup
- ScreenGui.Name = "ExecutorFixedUI"
- ScreenGui.Parent = game.CoreGui
- ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- --// Main Frame (The Dark Box)
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = ScreenGui
- MainFrame.BackgroundColor3 = Color3.fromRGB(15, 20, 35) -- Slightly lighter dark blue
- MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0) -- Perfectly Centered
- MainFrame.AnchorPoint = Vector2.new(0.5, 0.5) -- Pivot point in center
- MainFrame.Size = UDim2.new(0, 320, 0, 450)
- MainFrame.Active = true
- MainFrame.Draggable = true -- Simple drag enabled
- UICorner.CornerRadius = UDim.new(0, 12)
- UICorner.Parent = MainFrame
- UIStroke.Color = Color3.fromRGB(0, 200, 255) -- Cyan Border
- UIStroke.Thickness = 2
- UIStroke.Parent = MainFrame
- --// Title Text
- Title.Name = "Title"
- Title.Parent = MainFrame
- Title.BackgroundTransparency = 1
- Title.Position = UDim2.new(0, 0, 0, 10)
- Title.Size = UDim2.new(1, 0, 0, 30)
- Title.Font = Enum.Font.GothamBlack
- Title.Text = "EXECUTOR UI SCRIPTS"
- Title.TextColor3 = Color3.fromRGB(0, 255, 255)
- Title.TextSize = 20
- --// Scrolling Area (Where buttons live)
- ButtonHolder.Name = "ButtonHolder"
- ButtonHolder.Parent = MainFrame
- ButtonHolder.Active = true
- ButtonHolder.BackgroundTransparency = 1
- ButtonHolder.Position = UDim2.new(0, 0, 0, 50)
- ButtonHolder.Size = UDim2.new(1, 0, 1, -60)
- ButtonHolder.ScrollBarThickness = 6
- ButtonHolder.ScrollBarImageColor3 = Color3.fromRGB(0, 200, 255)
- -- CRITICAL FIX: This makes the scroll area grow with the buttons
- ButtonHolder.AutomaticCanvasSize = Enum.AutomaticSize.Y
- ButtonHolder.CanvasSize = UDim2.new(0, 0, 0, 0)
- UIListLayout.Parent = ButtonHolder
- UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
- UIListLayout.Padding = UDim.new(0, 8)
- UIPadding.Parent = ButtonHolder
- UIPadding.PaddingTop = UDim.new(0, 5)
- UIPadding.PaddingLeft = UDim.new(0, 10)
- UIPadding.PaddingRight = UDim.new(0, 10)
- --// Function to Create Buttons
- local function AddButton(text, scriptCode)
- local Button = Instance.new("TextButton")
- local BtnCorner = Instance.new("UICorner")
- local BtnStroke = Instance.new("UIStroke")
- Button.Name = text
- Button.Parent = ButtonHolder
- Button.BackgroundColor3 = Color3.fromRGB(35, 45, 70) -- Visible Blue-Grey
- Button.Size = UDim2.new(1, 0, 0, 45) -- Height 45px
- Button.Font = Enum.Font.GothamBold
- Button.Text = text
- Button.TextColor3 = Color3.fromRGB(255, 255, 255)
- Button.TextSize = 14
- Button.AutoButtonColor = true
- BtnCorner.CornerRadius = UDim.new(0, 8)
- BtnCorner.Parent = Button
- BtnStroke.Color = Color3.fromRGB(0, 150, 255)
- BtnStroke.Thickness = 1
- BtnStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
- BtnStroke.Parent = Button
- Button.MouseButton1Click:Connect(function()
- local func = loadstring(scriptCode)
- if func then
- func()
- end
- end)
- end
- --// Script Data (Array format to ensure they all load)
- local scripts = {
- {Name = "Synapse X [ PE Delta ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/delta-hydro/secret-host-haha/main/syn_ui_new.lua"))()]]},
- {Name = "Codex [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Codex.lua"))()]]},
- {Name = "Kiwi [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Kiwi-Ui.lua"))()]]},
- {Name = "Krypton [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Krypton.lua"))()]]},
- {Name = "Krnl [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Knrl.lua"))()]]},
- {Name = "Animation [ PE ]", Script = [[loadstring(game:HttpGet('https://raw.githubusercontent.com/IlikeyocutgHAH12/EGEGESGGH/main/FE%20Animation%20GUI.txt'))()]]},
- {Name = "Arceus x [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Arceus_X_V3.lua"))()]]},
- {Name = "Execute | Ui Library [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Execute%20%7C%20UI%20Library.lua"))()]]}
- }
- --// Generate the buttons
- for _, data in ipairs(scripts) do
- AddButton(data.Name, data.Script)
- end
Advertisement
Add Comment
Please, Sign In to add comment