Advertisement
EVVA_OFFICIAL

Executor

Mar 22nd, 2019
2,699
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.22 KB | None | 0 0
  1. local ExecuteGui = Instance.new("ScreenGui")
  2. local ExecuteFrame = Instance.new("Frame")
  3. local TopBar = Instance.new("Frame")
  4. local TopBarShadow = Instance.new("Frame")
  5. local CreditLabel = Instance.new("TextLabel")
  6. local ScrollingFrame = Instance.new("ScrollingFrame")
  7. local ScriptBox = Instance.new("TextBox")
  8. local Execute = Instance.new("TextButton")
  9. local ExecuteShadow = Instance.new("Frame")
  10. local ExecuteShadow_2 = Instance.new("Frame")
  11. local Clear = Instance.new("TextButton")
  12. local ClearShadow = Instance.new("Frame")
  13. local ClearShadow_2 = Instance.new("Frame")
  14. local CloseButton = Instance.new("TextButton")
  15.  
  16. ExecuteGui.Name = "ExecuteGui"
  17. ExecuteGui.Parent = game:WaitForChild("CoreGui")
  18. ExecuteGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19.  
  20. ExecuteFrame.Name = "ExecuteFrame"
  21. ExecuteFrame.Parent = ExecuteGui
  22. ExecuteFrame.BackgroundColor3 = Color3.new(0.435294, 0, 0)
  23. ExecuteFrame.BorderColor3 = Color3.new(0.258824, 0, 0)
  24. ExecuteFrame.BorderSizePixel = 2
  25. ExecuteFrame.Position = UDim2.new(0.545833349, 0, 0.240963891, 0)
  26. ExecuteFrame.Size = UDim2.new(0, 502, 0, 409)
  27. ExecuteFrame.Active = true
  28. ExecuteFrame.Draggable = true
  29.  
  30. TopBar.Name = "TopBar"
  31. TopBar.Parent = ExecuteFrame
  32. TopBar.BackgroundColor3 = Color3.new(0.6, 0, 0)
  33. TopBar.BorderSizePixel = 0
  34. TopBar.Size = UDim2.new(0, 502, 0, 44)
  35.  
  36. TopBarShadow.Name = "TopBarShadow"
  37. TopBarShadow.Parent = TopBar
  38. TopBarShadow.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  39. TopBarShadow.BorderSizePixel = 0
  40. TopBarShadow.Position = UDim2.new(0, 0, 0.988311768, 0)
  41. TopBarShadow.Size = UDim2.new(0, 502, 0, 6)
  42.  
  43. CreditLabel.Parent = TopBar
  44. CreditLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  45. CreditLabel.BackgroundTransparency = 1
  46. CreditLabel.Size = UDim2.new(0, 502, 0, 43)
  47. CreditLabel.Font = Enum.Font.SourceSans
  48. CreditLabel.Text = "Evva's Executor"
  49. CreditLabel.TextColor3 = Color3.new(1, 1, 1)
  50. CreditLabel.TextScaled = true
  51. CreditLabel.TextSize = 14
  52. CreditLabel.TextWrapped = true
  53.  
  54. CloseButton.Name = "CloseButton"
  55. CloseButton.Parent = TopBar
  56. CloseButton.BackgroundColor3 = Color3.new(0.607843, 0, 0)
  57. CloseButton.BorderSizePixel = 0
  58. CloseButton.Position = UDim2.new(0.920318723, 0, 0, 0)
  59. CloseButton.Size = UDim2.new(0, 40, 0, 43)
  60. CloseButton.Font = Enum.Font.SourceSans
  61. CloseButton.Text = "X"
  62. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  63. CloseButton.TextScaled = true
  64. CloseButton.TextSize = 14
  65. CloseButton.TextWrapped = true
  66.  
  67. ScrollingFrame.Parent = ExecuteFrame
  68. ScrollingFrame.BackgroundColor3 = Color3.new(0.435294, 0, 0)
  69. ScrollingFrame.BorderColor3 = Color3.new(0.258824, 0, 0)
  70. ScrollingFrame.BorderSizePixel = 2
  71. ScrollingFrame.Position = UDim2.new(0, 0, 0.120689653, 0)
  72. ScrollingFrame.Size = UDim2.new(0, 502, 0, 304)
  73. ScrollingFrame.CanvasPosition = Vector2.new(0, 2.67097116)
  74. ScrollingFrame.ScrollBarThickness = 10
  75.  
  76. ScriptBox.Name = "ScriptBox"
  77. ScriptBox.Parent = ScrollingFrame
  78. ScriptBox.BackgroundColor3 = Color3.new(0.435294, 0, 0)
  79. ScriptBox.BorderColor3 = Color3.new(0.258824, 0, 0)
  80. ScriptBox.Position = UDim2.new(0, 0, 0.00123152707, 0)
  81. ScriptBox.Size = UDim2.new(0, 502, 0, 304)
  82. ScriptBox.Font = Enum.Font.SourceSans
  83. ScriptBox.Text = ""
  84. ScriptBox.TextColor3 = Color3.new(0, 0, 0)
  85. ScriptBox.TextSize = 14
  86. ScriptBox.TextXAlignment = Enum.TextXAlignment.Left
  87. ScriptBox.TextYAlignment = Enum.TextYAlignment.Top
  88.  
  89. Execute.Name = "Execute"
  90. Execute.Parent = ExecuteFrame
  91. Execute.BackgroundColor3 = Color3.new(0.6, 0, 0)
  92. Execute.BorderColor3 = Color3.new(0.258824, 0, 0)
  93. Execute.BorderSizePixel = 2
  94. Execute.Position = UDim2.new(0.0418326706, 0, 0.871680439, 0)
  95. Execute.Size = UDim2.new(0, 227, 0, 39)
  96. Execute.Font = Enum.Font.SourceSans
  97. Execute.Text = "Execute"
  98. Execute.TextColor3 = Color3.new(1, 1, 1)
  99. Execute.TextScaled = true
  100. Execute.TextSize = 14
  101. Execute.TextWrapped = true
  102.  
  103. ExecuteShadow.Name = "ExecuteShadow"
  104. ExecuteShadow.Parent = Execute
  105. ExecuteShadow.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  106. ExecuteShadow.BorderColor3 = Color3.new(0.258824, 0, 0)
  107. ExecuteShadow.BorderSizePixel = 2
  108. ExecuteShadow.Position = UDim2.new(0, 0, 1, 0)
  109. ExecuteShadow.Size = UDim2.new(0, 227, 0, 3)
  110.  
  111. ExecuteShadow_2.Name = "ExecuteShadow"
  112. ExecuteShadow_2.Parent = Execute
  113. ExecuteShadow_2.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  114. ExecuteShadow_2.BorderSizePixel = 0
  115. ExecuteShadow_2.Position = UDim2.new(-0.0292092208, 0, -0.0222903565, 0)
  116. ExecuteShadow_2.Size = UDim2.new(0, 6, 0, 45)
  117.  
  118. Clear.Name = "Clear"
  119. Clear.Parent = ExecuteFrame
  120. Clear.BackgroundColor3 = Color3.new(0.6, 0, 0)
  121. Clear.BorderColor3 = Color3.new(0.258824, 0, 0)
  122. Clear.BorderSizePixel = 2
  123. Clear.Position = UDim2.new(0.529999971, 0, 0.871999979, 0)
  124. Clear.Size = UDim2.new(0, 227, 0, 39)
  125. Clear.Font = Enum.Font.SourceSans
  126. Clear.Text = "Clear"
  127. Clear.TextColor3 = Color3.new(1, 1, 1)
  128. Clear.TextScaled = true
  129. Clear.TextSize = 14
  130. Clear.TextWrapped = true
  131.  
  132. ClearShadow.Name = "ClearShadow"
  133. ClearShadow.Parent = Clear
  134. ClearShadow.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  135. ClearShadow.BorderColor3 = Color3.new(0.258824, 0, 0)
  136. ClearShadow.BorderSizePixel = 2
  137. ClearShadow.Position = UDim2.new(-0.00179179944, 0, 1, 0)
  138. ClearShadow.Size = UDim2.new(0, 227, 0, 3)
  139.  
  140. ClearShadow_2.Name = "ClearShadow"
  141. ClearShadow_2.Parent = Clear
  142. ClearShadow_2.BackgroundColor3 = Color3.new(0.258824, 0, 0)
  143. ClearShadow_2.BorderSizePixel = 0
  144. ClearShadow_2.Position = UDim2.new(-0.0292092208, 0, -0.0222903565, 0)
  145. ClearShadow_2.Size = UDim2.new(0, 6, 0, 45)
  146. -- Scripts:
  147. Execute.MouseButton1Click:Connect(function()
  148. if ScriptBox.Text == "" then
  149. CreditLabel.Text = "ScriptBox Empty"
  150. wait(1)
  151. CreditLabel.Text = "Evva's Executor"
  152. else
  153. CreditLabel.Text = "Executing Script"
  154. wait(1)
  155. CreditLabel.Text = "Evva's Executor"
  156. loadstring(ScriptBox.Text)()
  157. end
  158. end)
  159.  
  160. Clear.MouseButton1Click:Connect(function()
  161. if ScriptBox.Text == "" then
  162. CreditLabel.Text = "Clearing Script..."
  163. wait(1)
  164. CreditLabel.Text = "ScriptBox Already Empty"
  165. wait(1)
  166. CreditLabel.Text = "Evva's Executor"
  167. else
  168. CreditLabel.Text = "Clearing Script..."
  169. wait(1)
  170. ScriptBox.Text = ""
  171. wait(1)
  172. CreditLabel.Text = "Evva's Executor"
  173. end
  174. end)
  175.  
  176. CloseButton.MouseButton1Click:Connect(function()
  177. CreditLabel.Text = "Closing..."
  178. wait(1)
  179. CreditLabel.Text = "See You Soon!"
  180. wait(1)
  181. game.CoreGui.ExecuteGui:Destroy()
  182. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement