Advertisement
zza

Executor

zza
Mar 31st, 2019
365
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.12 KB | None | 0 0
  1. --Made By : OptimalExQ10Z567
  2. -- Instances:
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local Whitelist = Instance.new("Frame")
  5. local Key = Instance.new("TextBox")
  6. local Enter = Instance.new("TextButton")
  7. local TextButton = Instance.new("TextButton")
  8. local Executor = Instance.new("Frame")
  9. local Execute = Instance.new("TextButton")
  10. local Clear = Instance.new("TextButton")
  11. local ScrollingFrame = Instance.new("ScrollingFrame")
  12. local TextBox = Instance.new("TextBox")
  13. --Properties:
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16. ScreenGui.Parent = game.CoreGui
  17.  
  18. Whitelist.Name = "Whitelist"
  19. Whitelist.Parent = ScreenGui
  20. Whitelist.Active = true
  21. Whitelist.BackgroundColor3 = Color3.new(0, 0, 0)
  22. Whitelist.Position = UDim2.new(0.395311236, 0, 0.364365965, 0)
  23. Whitelist.Size = UDim2.new(0, 313, 0, 152)
  24. Whitelist.Draggable = true
  25.  
  26. Key.Name = "Key"
  27. Key.Parent = Whitelist
  28. Key.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  29. Key.Position = UDim2.new(0.239616618, 0, 0.256578952, 0)
  30. Key.Size = UDim2.new(0, 162, 0, 30)
  31. Key.Font = Enum.Font.SourceSans
  32. Key.Text = ""
  33. Key.TextColor3 = Color3.new(0.976471, 0.976471, 0.976471)
  34. Key.TextSize = 14
  35.  
  36. Enter.Name = "Enter"
  37. Enter.Parent = Whitelist
  38. Enter.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  39. Enter.Position = UDim2.new(0.178913742, 0, 0.506578922, 0)
  40. Enter.Size = UDim2.new(0, 200, 0, 34)
  41. Enter.Font = Enum.Font.SourceSans
  42. Enter.Text = "Enter"
  43. Enter.TextColor3 = Color3.new(0.976471, 0.976471, 0.976471)
  44. Enter.TextSize = 14
  45. Enter.MouseButton1Click:Connect(function()
  46. if Key.Text == "iatemone" then
  47. Whitelist:Destroy()
  48. Executor.Visible = true
  49. end
  50. end)
  51.  
  52. TextButton.Parent = Whitelist
  53. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  54. TextButton.BorderColor3 = Color3.new(0, 0, 0)
  55. TextButton.Position = UDim2.new(0.862619817, 0, 0, 0)
  56. TextButton.Size = UDim2.new(0, 43, 0, 22)
  57. TextButton.Font = Enum.Font.SourceSans
  58. TextButton.Text = "X"
  59. TextButton.TextColor3 = Color3.new(0.666667, 0, 0)
  60. TextButton.TextSize = 20
  61. TextButton.MouseButton1Click:Connect(function()
  62. Whitelist:Destroy()
  63. end)
  64.  
  65. Executor.Name = "Executor"
  66. Executor.Parent = ScreenGui
  67. Executor.Active = true
  68. Executor.BackgroundColor3 = Color3.new(0.137255, 0.137255, 0.137255)
  69. Executor.Position = UDim2.new(0.0129345059, 0, 0.608346701, 0)
  70. Executor.Size = UDim2.new(0, 288, 0, 240)
  71. Executor.Visible = false
  72. Executor.Draggable = true
  73.  
  74. Execute.Name = "Execute"
  75. Execute.Parent = Executor
  76. Execute.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  77. Execute.BorderColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  78. Execute.Position = UDim2.new(-0.000281440094, 0, 0.782831311, 0)
  79. Execute.Size = UDim2.new(0, 146, 0, 52)
  80. Execute.Font = Enum.Font.SourceSans
  81. Execute.Text = "Execute"
  82. Execute.TextColor3 = Color3.new(0.976471, 0.976471, 0.976471)
  83. Execute.TextSize = 14
  84. Execute.MouseButton1Click:Connect(function()
  85. loadstring(TextBox.Text)()
  86. end)
  87.  
  88. Clear.Name = "Clear"
  89. Clear.Parent = Executor
  90. Clear.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  91. Clear.BorderColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  92. Clear.Position = UDim2.new(0.506663024, 0, 0.782831311, 0)
  93. Clear.Size = UDim2.new(0, 142, 0, 52)
  94. Clear.Font = Enum.Font.SourceSans
  95. Clear.Text = "Clear"
  96. Clear.TextColor3 = Color3.new(0.976471, 0.976471, 0.976471)
  97. Clear.TextSize = 14
  98. Clear.MouseButton1Click:Connect(function()
  99. TextBox.Text = ""
  100. end)
  101.  
  102. ScrollingFrame.Parent = Executor
  103. ScrollingFrame.Active = true
  104. ScrollingFrame.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  105. ScrollingFrame.Position = UDim2.new(0.0173611119, 0, 0.0291666668, 0)
  106. ScrollingFrame.Size = UDim2.new(0, 276, 0, 180)
  107.  
  108. TextBox.Parent = ScrollingFrame
  109. TextBox.BackgroundColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  110. TextBox.BorderColor3 = Color3.new(0.133333, 0.133333, 0.133333)
  111. TextBox.Size = UDim2.new(0, 276, 0, 180)
  112. TextBox.Font = Enum.Font.SourceSans
  113. TextBox.LineHeight = 3
  114. TextBox.MultiLine = true
  115. TextBox.Text = ""
  116. TextBox.TextColor3 = Color3.new(0.956863, 0.956863, 0.956863)
  117. TextBox.TextSize = 20
  118. TextBox.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement