Advertisement
iiJosephCats205

Executor

Apr 6th, 2018
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4.  -- Objects
  5.  
  6. local Executor = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local bar1 = Instance.new("Frame")
  9. local bar1_2 = Instance.new("Frame")
  10. local ScriptGenerator = Instance.new("ScrollingFrame")
  11. local Input = Instance.new("TextBox")
  12. local Execute = Instance.new("TextButton")
  13. local Clear = Instance.new("TextButton")
  14.  
  15. -- Properties
  16.  
  17. Executor.Name = "Executor"
  18. Executor.Parent = game.Players.LocalPlayer.PlayerGui
  19.  
  20. Main.Name = "Main"
  21. Main.Parent = Executor
  22. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  23. Main.BorderSizePixel = 0
  24. Main.Position = UDim2.new(0.680951059, 0, 0.392525077, 0)
  25. Main.Size = UDim2.new(0, 441, 0, 392)
  26.  
  27. bar1.Name = "bar1"
  28. bar1.Parent = Main
  29. bar1.BackgroundColor3 = Color3.new(0.745098, 0, 0)
  30. bar1.BorderSizePixel = 0
  31. bar1.Size = UDim2.new(0, 442, 0, 22)
  32.  
  33. bar1_2.Name = "bar1"
  34. bar1_2.Parent = Main
  35. bar1_2.BackgroundColor3 = Color3.new(0.45098, 0, 0)
  36. bar1_2.BorderSizePixel = 0
  37. bar1_2.Position = UDim2.new(0, 0, 0.0561224483, 0)
  38. bar1_2.Size = UDim2.new(0, 442, 0, 10)
  39.  
  40. ScriptGenerator.Name = "ScriptGenerator"
  41. ScriptGenerator.Parent = Main
  42. ScriptGenerator.BackgroundColor3 = Color3.new(0.392157, 0.392157, 0.392157)
  43. ScriptGenerator.BorderSizePixel = 0
  44. ScriptGenerator.Position = UDim2.new(0.10997732, 0, 0.153849542, 0)
  45. ScriptGenerator.Size = UDim2.new(0, 344, 0, 228)
  46. ScriptGenerator.CanvasSize = UDim2.new(0, 0, 100000, 0)
  47.  
  48. Input.Name = "Input"
  49. Input.Parent = ScriptGenerator
  50. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  51. Input.BackgroundTransparency = 1
  52. Input.BorderSizePixel = 0
  53. Input.Size = UDim2.new(0, 328, 0, 999)
  54. Input.ClearTextOnFocus = false
  55. Input.Font = Enum.Font.SourceSans
  56. Input.MultiLine = true
  57. Input.Text = "--Script Here"
  58. Input.TextColor3 = Color3.new(1, 1, 1)
  59. Input.TextSize = 14
  60. Input.TextXAlignment = Enum.TextXAlignment.Left
  61. Input.TextYAlignment = Enum.TextYAlignment.Top
  62.  
  63. Execute.Name = "Execute"
  64. Execute.Parent = Main
  65. Execute.BackgroundColor3 = Color3.new(0.45098, 0, 0)
  66. Execute.BorderColor3 = Color3.new(0.745098, 0, 0)
  67. Execute.BorderSizePixel = 5
  68. Execute.Position = UDim2.new(0.111111112, 0, 0.80292201, 0)
  69. Execute.Size = UDim2.new(0, 200, 0, 50)
  70. Execute.Font = Enum.Font.Cartoon
  71. Execute.Text = "Execute"
  72. Execute.TextColor3 = Color3.new(1, 1, 0.498039)
  73. Execute.TextScaled = true
  74. Execute.TextSize = 14
  75. Execute.TextWrapped = true
  76.  
  77. Clear.Name = "Clear"
  78. Clear.Parent = Main
  79. Clear.BackgroundColor3 = Color3.new(0.45098, 0, 0)
  80. Clear.BorderColor3 = Color3.new(0.745098, 0, 0)
  81. Clear.BorderSizePixel = 5
  82. Clear.Position = UDim2.new(0.687239528, 0, 0.803571403, 0)
  83. Clear.Size = UDim2.new(0, 90, 0, 50)
  84. Clear.Font = Enum.Font.Cartoon
  85. Clear.Text = "Clear"
  86. Clear.TextColor3 = Color3.new(1, 1, 0.498039)
  87. Clear.TextScaled = true
  88. Clear.TextSize = 14
  89. Clear.TextWrapped = true
  90.  
  91. -- Scripts
  92.  
  93. Execute.MouseButton1Down:Connect(function()
  94.     loadstring(Input.Text)
  95. end)
  96.  
  97. Clear.MouseButton1Down:Connect(function()
  98.     Input.Text = "--Script Here"
  99. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement