Advertisement
Steamhesaproblox

Roblox Executor Script Krnl

Mar 11th, 2025 (edited)
1,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Players = game:GetService("Players")
  2. local player = Players.LocalPlayer
  3.  
  4. local ScreenGui = Instance.new("ScreenGui")
  5. ScreenGui.Parent = player:FindFirstChildOfClass("PlayerGui")
  6.  
  7. local Frame = Instance.new("Frame")
  8. Frame.Size = UDim2.new(0, 700, 0, 400)
  9. Frame.Position = UDim2.new(0.5, -350, 0.5, -200)
  10. Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  11. Frame.BorderSizePixel = 2
  12. Frame.BorderColor3 = Color3.fromRGB(0, 170, 255)
  13. Frame.Visible = false
  14. Frame.Parent = ScreenGui
  15.  
  16. local TitleBar = Instance.new("Frame")
  17. TitleBar.Size = UDim2.new(1, 0, 0, 50)
  18. TitleBar.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  19. TitleBar.Parent = Frame
  20.  
  21. local Title = Instance.new("TextLabel")
  22. Title.Size = UDim2.new(1, 0, 1, 0)
  23. Title.Text = "KRNL Executor                          Elmas Sizlere Sunar:=)"
  24. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  25. Title.Font = Enum.Font.SourceSansBold
  26. Title.TextSize = 20
  27. Title.Parent = TitleBar
  28.  
  29. local TabHolder = Instance.new("Frame")
  30. TabHolder.Size = UDim2.new(1, 0, 0, 30)
  31. TabHolder.Position = UDim2.new(0, 0, 0, 50)
  32. TabHolder.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
  33. TabHolder.Parent = Frame
  34.  
  35. local Tabs = {}
  36. local TextBoxes = {}
  37. local ActiveTab = nil
  38.  
  39. for i = 1, 6 do
  40.     local TabButton = Instance.new("TextButton")
  41.     TabButton.Size = UDim2.new(0.16, -5, 1, 0)
  42.     TabButton.Position = UDim2.new((i - 1) * 0.16, 5, 0, 0)
  43.     TabButton.BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  44.     TabButton.Text = "Tab " .. i
  45.     TabButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  46.     TabButton.Font = Enum.Font.SourceSansBold
  47.     TabButton.TextSize = 16
  48.     TabButton.Parent = TabHolder
  49.  
  50.     local TextBox = Instance.new("TextBox")
  51.     TextBox.Size = UDim2.new(1, -10, 0.6, -10)
  52.     TextBox.Position = UDim2.new(0, 5, 0, 85)
  53.     TextBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
  54.     TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  55.     TextBox.ClearTextOnFocus = false
  56.     TextBox.MultiLine = true
  57.     TextBox.Text = ""
  58.     TextBox.Font = Enum.Font.Code
  59.     TextBox.TextSize = 16
  60.     TextBox.TextWrapped = true
  61.     TextBox.ClipsDescendants = true
  62.     TextBox.Visible = false
  63.     TextBox.Parent = Frame
  64.  
  65.     Tabs[i] = TabButton
  66.     TextBoxes[i] = TextBox
  67.  
  68.     TabButton.MouseButton1Click:Connect(function()
  69.         if ActiveTab then
  70.             TextBoxes[ActiveTab].Visible = false
  71.             Tabs[ActiveTab].BackgroundColor3 = Color3.fromRGB(70, 70, 70)
  72.         end
  73.         ActiveTab = i
  74.         TextBox.Visible = true
  75.         TabButton.BackgroundColor3 = Color3.fromRGB(100, 100, 100)
  76.     end)
  77. end
  78.  
  79. local InjectButton = Instance.new("TextButton")
  80. InjectButton.Size = UDim2.new(0.3, -5, 0, 30)
  81. InjectButton.Position = UDim2.new(0.05, 0, 0.80, 0)
  82. InjectButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  83. InjectButton.Text = "INJECT"
  84. InjectButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  85. InjectButton.Font = Enum.Font.SourceSansBold
  86. InjectButton.TextSize = 16
  87. InjectButton.Parent = Frame
  88.  
  89. local ExecuteButton = Instance.new("TextButton")
  90. ExecuteButton.Size = UDim2.new(0.3, -5, 0, 30)
  91. ExecuteButton.Position = UDim2.new(0.05, 0, 0.90, 0)
  92. ExecuteButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  93. ExecuteButton.Text = "EXECUTE"
  94. ExecuteButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  95. ExecuteButton.Font = Enum.Font.SourceSansBold
  96. ExecuteButton.TextSize = 16
  97. ExecuteButton.Parent = Frame
  98.  
  99. local ClearButton = Instance.new("TextButton")
  100. ClearButton.Size = UDim2.new(0.2, -5, 0, 40)
  101. ClearButton.Position = UDim2.new(0.75, 0, 0.85, 0)
  102. ClearButton.BackgroundColor3 = Color3.fromRGB(255, 255, 0)
  103. ClearButton.Text = "CLEAR"
  104. ClearButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  105. ClearButton.Font = Enum.Font.SourceSansBold
  106. ClearButton.TextSize = 16
  107. ClearButton.Parent = Frame
  108.  
  109. local ToggleButton = Instance.new("TextButton")
  110. ToggleButton.Size = UDim2.new(0, 50, 0, 50)
  111. ToggleButton.Position = UDim2.new(0, 10, 0.5, -25)
  112. ToggleButton.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
  113. ToggleButton.Text = "▶"
  114. ToggleButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  115. ToggleButton.Font = Enum.Font.SourceSansBold
  116. ToggleButton.TextSize = 20
  117. ToggleButton.Parent = ScreenGui
  118.  
  119. InjectButton.MouseButton1Click:Connect(function()
  120.     InjectButton.BackgroundColor3 = Color3.fromRGB(255, 165, 0)
  121.     InjectButton.Text = "INJECTING..."
  122.     wait(2)
  123.     InjectButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
  124.     InjectButton.Text = "INJECTED"
  125. end)
  126.  
  127. ExecuteButton.MouseButton1Click:Connect(function()
  128.     if ActiveTab then
  129.         print("Executing Script: " .. TextBoxes[ActiveTab].Text)
  130.     end
  131. end)
  132.  
  133. ClearButton.MouseButton1Click:Connect(function()
  134.     if ActiveTab then
  135.         TextBoxes[ActiveTab].Text = ""
  136.     end
  137. end)
  138.  
  139. ToggleButton.MouseButton1Click:Connect(function()
  140.     Frame.Visible = not Frame.Visible
  141.     ToggleButton.Text = Frame.Visible and "❚❚" or "▶"
  142. end)
  143.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement