Kelsondre69

Idk

Jan 30th, 2026
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.65 KB | None | 0 0
  1. --// GUI Initialization
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local MainFrame = Instance.new("Frame")
  4. local Title = Instance.new("TextLabel")
  5. local ButtonHolder = Instance.new("ScrollingFrame")
  6. local UIListLayout = Instance.new("UIListLayout")
  7. local UIPadding = Instance.new("UIPadding")
  8. local UICorner = Instance.new("UICorner")
  9. local UIStroke = Instance.new("UIStroke")
  10.  
  11. --// ScreenGui Setup
  12. ScreenGui.Name = "ExecutorFixedUI"
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. --// Main Frame (The Dark Box)
  17. MainFrame.Name = "MainFrame"
  18. MainFrame.Parent = ScreenGui
  19. MainFrame.BackgroundColor3 = Color3.fromRGB(15, 20, 35) -- Slightly lighter dark blue
  20. MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0) -- Perfectly Centered
  21. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5) -- Pivot point in center
  22. MainFrame.Size = UDim2.new(0, 320, 0, 450)
  23. MainFrame.Active = true
  24. MainFrame.Draggable = true -- Simple drag enabled
  25.  
  26. UICorner.CornerRadius = UDim.new(0, 12)
  27. UICorner.Parent = MainFrame
  28.  
  29. UIStroke.Color = Color3.fromRGB(0, 200, 255) -- Cyan Border
  30. UIStroke.Thickness = 2
  31. UIStroke.Parent = MainFrame
  32.  
  33. --// Title Text
  34. Title.Name = "Title"
  35. Title.Parent = MainFrame
  36. Title.BackgroundTransparency = 1
  37. Title.Position = UDim2.new(0, 0, 0, 10)
  38. Title.Size = UDim2.new(1, 0, 0, 30)
  39. Title.Font = Enum.Font.GothamBlack
  40. Title.Text = "EXECUTOR UI SCRIPTS"
  41. Title.TextColor3 = Color3.fromRGB(0, 255, 255)
  42. Title.TextSize = 20
  43.  
  44. --// Scrolling Area (Where buttons live)
  45. ButtonHolder.Name = "ButtonHolder"
  46. ButtonHolder.Parent = MainFrame
  47. ButtonHolder.Active = true
  48. ButtonHolder.BackgroundTransparency = 1
  49. ButtonHolder.Position = UDim2.new(0, 0, 0, 50)
  50. ButtonHolder.Size = UDim2.new(1, 0, 1, -60)
  51. ButtonHolder.ScrollBarThickness = 6
  52. ButtonHolder.ScrollBarImageColor3 = Color3.fromRGB(0, 200, 255)
  53. -- CRITICAL FIX: This makes the scroll area grow with the buttons
  54. ButtonHolder.AutomaticCanvasSize = Enum.AutomaticSize.Y
  55. ButtonHolder.CanvasSize = UDim2.new(0, 0, 0, 0)
  56.  
  57. UIListLayout.Parent = ButtonHolder
  58. UIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  59. UIListLayout.Padding = UDim.new(0, 8)
  60.  
  61. UIPadding.Parent = ButtonHolder
  62. UIPadding.PaddingTop = UDim.new(0, 5)
  63. UIPadding.PaddingLeft = UDim.new(0, 10)
  64. UIPadding.PaddingRight = UDim.new(0, 10)
  65.  
  66. --// Function to Create Buttons
  67. local function AddButton(text, scriptCode)
  68. local Button = Instance.new("TextButton")
  69. local BtnCorner = Instance.new("UICorner")
  70. local BtnStroke = Instance.new("UIStroke")
  71.  
  72. Button.Name = text
  73. Button.Parent = ButtonHolder
  74. Button.BackgroundColor3 = Color3.fromRGB(35, 45, 70) -- Visible Blue-Grey
  75. Button.Size = UDim2.new(1, 0, 0, 45) -- Height 45px
  76. Button.Font = Enum.Font.GothamBold
  77. Button.Text = text
  78. Button.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. Button.TextSize = 14
  80. Button.AutoButtonColor = true
  81.  
  82. BtnCorner.CornerRadius = UDim.new(0, 8)
  83. BtnCorner.Parent = Button
  84.  
  85. BtnStroke.Color = Color3.fromRGB(0, 150, 255)
  86. BtnStroke.Thickness = 1
  87. BtnStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  88. BtnStroke.Parent = Button
  89.  
  90. Button.MouseButton1Click:Connect(function()
  91. local func = loadstring(scriptCode)
  92. if func then
  93. func()
  94. end
  95. end)
  96. end
  97.  
  98. --// Script Data (Array format to ensure they all load)
  99. local scripts = {
  100. {Name = "Synapse X [ PE Delta ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/delta-hydro/secret-host-haha/main/syn_ui_new.lua"))()]]},
  101. {Name = "Codex [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Codex.lua"))()]]},
  102. {Name = "Kiwi [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Kiwi-Ui.lua"))()]]},
  103. {Name = "Krypton [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Krypton.lua"))()]]},
  104. {Name = "Krnl [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Knrl.lua"))()]]},
  105. {Name = "Animation [ PE ]", Script = [[loadstring(game:HttpGet('https://raw.githubusercontent.com/IlikeyocutgHAH12/EGEGESGGH/main/FE%20Animation%20GUI.txt'))()]]},
  106. {Name = "Arceus x [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Arceus_X_V3.lua"))()]]},
  107. {Name = "Execute | Ui Library [ PE ]", Script = [[loadstring(game:HttpGet("https://raw.githubusercontent.com/Giangplay/Script/main/Execute%20%7C%20UI%20Library.lua"))()]]}
  108. }
  109.  
  110. --// Generate the buttons
  111. for _, data in ipairs(scripts) do
  112. AddButton(data.Name, data.Script)
  113. end
Advertisement
Add Comment
Please, Sign In to add comment