Modder29000

Execution

Mar 6th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.56 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4.  -- Objects
  5.  
  6. local Execution = Instance.new("ScreenGui")
  7. local Scripts = Instance.new("Frame")
  8. local Bar1 = Instance.new("Frame")
  9. local ScriptsInject = Instance.new("ScrollingFrame")
  10. local Input = Instance.new("TextBox")
  11. local Execute = Instance.new("TextButton")
  12. local Clear = Instance.new("TextButton")
  13.  
  14. -- Properties
  15.  
  16. Execution.Name = "Execution"
  17. Execution.Parent = game.CoreGui
  18.  
  19. Scripts.Name = "Scripts"
  20. Scripts.Parent = Execution
  21. Scripts.Active = true
  22. Scripts.BackgroundColor3 = Color3.new(1, 1, 1)
  23. Scripts.ClipsDescendants = true
  24. Scripts.Draggable = true
  25. Scripts.Position = UDim2.new(0.232003868, 0, 0.113691941, 0)
  26. Scripts.Size = UDim2.new(0, 563, 0, 298)
  27.  
  28. Bar1.Name = "Bar1"
  29. Bar1.Parent = Scripts
  30. Bar1.BackgroundColor3 = Color3.new(0, 1, 1)
  31. Bar1.Size = UDim2.new(0, 563, 0, 44)
  32.  
  33. ScriptsInject.Name = "Scripts Inject"
  34. ScriptsInject.Parent = Scripts
  35. ScriptsInject.BackgroundColor3 = Color3.new(0.576471, 0.576471, 0.576471)
  36. ScriptsInject.BackgroundTransparency = 0.5
  37. ScriptsInject.BorderColor3 = Color3.new(0.333333, 1, 1)
  38. ScriptsInject.BorderSizePixel = 5
  39. ScriptsInject.Position = UDim2.new(0.0337477811, 0, 0.191275164, 0)
  40. ScriptsInject.Size = UDim2.new(0, 530, 0, 186)
  41.  
  42. Input.Name = "Input"
  43. Input.Parent = ScriptsInject
  44. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  45. Input.BackgroundTransparency = 0.5
  46. Input.BorderSizePixel = 0
  47. Input.Size = UDim2.new(0, 506, 0, 999)
  48. Input.Font = Enum.Font.SourceSans
  49. Input.MultiLine = true
  50. Input.TextColor3 = Color3.new(1, 1, 1)
  51. Input.TextSize = 14
  52. Input.TextWrapped = true
  53.  
  54. Execute.Name = "Execute"
  55. Execute.Parent = Scripts
  56. Execute.BackgroundColor3 = Color3.new(1, 1, 1)
  57. Execute.BorderSizePixel = 0
  58. Execute.Position = UDim2.new(0.0888099521, 0, 0.855704725, 0)
  59. Execute.Size = UDim2.new(0, 169, 0, 34)
  60. Execute.Font = Enum.Font.SourceSans
  61. Execute.Text = "Execute"
  62. Execute.TextColor3 = Color3.new(0.333333, 1, 1)
  63. Execute.TextScaled = true
  64. Execute.TextSize = 14
  65. Execute.TextWrapped = true
  66.  
  67. Execute.MouseButton1Down:connect(function()
  68. loadstring(Input.Text)()
  69. end)
  70.  
  71. Clear.Name = "Clear"
  72. Clear.Parent = Scripts
  73. Clear.BackgroundColor3 = Color3.new(1, 1, 1)
  74. Clear.BorderSizePixel = 0
  75. Clear.Position = UDim2.new(0.564831197, 0, 0.855704725, 0)
  76. Clear.Size = UDim2.new(0, 169, 0, 34)
  77. Clear.Font = Enum.Font.SourceSans
  78. Clear.Text = "Clear"
  79. Clear.TextColor3 = Color3.new(0.333333, 1, 1)
  80. Clear.TextScaled = true
  81. Clear.TextSize = 14
  82. Clear.TextWrapped = true
  83. Clear.MouseButton1Down:connect(function()
  84. Input.Text = ""
  85. end)
  86.  
  87.  
  88. -- Scripts
Add Comment
Please, Sign In to add comment