PersonsadminTeam

Script Execute Gui

Feb 21st, 2017
353
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.04 KB | None | 0 0
  1. --Raindrop: loadstring(Raindrop:DownloadString('http://pastebin.com/raw/didEzqqT'))()--
  2. --give me a vouch?
  3. local screen = Instance.new('ScreenGui')
  4. local frame = Instance.new('Frame')
  5. local input = Instance.new('TextBox')
  6. local exit = Instance.new('TextButton')
  7. local label = Instance.new('TextLabel')
  8. local clear = Instance.new('TextButton')
  9. local exec = Instance.new('TextButton')
  10. screen.Parent = game.CoreGui
  11. screen.Name = 'screen'
  12. screen.Enabled = true
  13. frame.Parent = screen
  14. frame.Name = 'frame'
  15. frame.Active = true
  16. frame.BackgroundColor3 = Color3.new(0, 0.498039, 0.745098)
  17. frame.BorderSizePixel = 0
  18. frame.Position = UDim2.new(0.5, -225, 0.5, -157)
  19. frame.Selectable = true
  20. frame.Size = UDim2.new(0, 280, 0, 315)
  21. frame.Visible = true
  22. frame.Draggable = true
  23. input.Parent = frame
  24. input.Name = 'input'
  25. input.Active = true
  26. input.BackgroundColor3 = Color3.new(255, 255, 255)
  27. input.BorderSizePixel = 0
  28. input.ClearTextOnFocus = false
  29. input.MultiLine = true
  30. input.Position = UDim2.new(0, 15, 0, 35)
  31. input.Selectable = true
  32. input.Size = UDim2.new(0, 250, 0, 240)
  33. input.Visible = true
  34. input.Font = Enum.Font.ArialBold
  35. input.FontSize = Enum.FontSize.Size12
  36. input.Text = ''
  37. input.TextColor3 = Color3.new(0, 0.498039, 0.745098)
  38. input.TextScaled = false
  39. input.TextSize = 12
  40. input.TextStrokeColor3 = Color3.new(255, 255, 255)
  41. input.TextStrokeTransparency = 1
  42. input.TextWrapped = true
  43. input.TextXAlignment = Enum.TextXAlignment.Left
  44. input.TextYAlignment = Enum.TextYAlignment.Top
  45. exit.Parent = frame
  46. exit.Name = 'exit'
  47. exit.Active = true
  48. exit.BackgroundTransparency = 1
  49. exit.BorderSizePixel = 1
  50. exit.Position = UDim2.new(0, 255, 0, 1)
  51. exit.Selectable = true
  52. exit.Size = UDim2.new(0, 20, 0, 25)
  53. exit.Visible = true
  54. exit.Font = Enum.Font.ArialBold
  55. exit.FontSize = Enum.FontSize.Size24
  56. exit.Text = 'X'
  57. exit.TextColor3 = Color3.new(255, 255, 255)
  58. exit.TextScaled = false
  59. exit.TextSize = 24
  60. exit.TextStrokeColor3 = Color3.new(0, 0, 0)
  61. exit.TextStrokeTransparency = 1
  62. exit.TextXAlignment = Enum.TextXAlignment.Center
  63. exit.TextYAlignment = Enum.TextYAlignment.Center
  64. label.Parent = frame
  65. label.Name = 'label'
  66. label.Active = true
  67. label.BackgroundTransparency = 1
  68. label.BorderSizePixel = 1
  69. label.Position = UDim2.new(0, 35, 0, -10)
  70. label.Selectable = true
  71. label.Size = UDim2.new(0, 200, 0, 50)
  72. label.Visible = true
  73. label.Font = Enum.Font.ArialBold
  74. label.FontSize = Enum.FontSize.Size18
  75. label.Text = "Vortexe's Script Executor"
  76. label.TextColor3 = Color3.new(255, 255, 255)
  77. label.TextScaled = false
  78. label.TextSize = 18
  79. label.TextStrokeColor3 = Color3.new(0, 0, 0)
  80. label.TextStrokeTransparency = 1
  81. label.TextXAlignment = Enum.TextXAlignment.Center
  82. label.TextYAlignment = Enum.TextYAlignment.Center
  83. clear.Parent = frame
  84. clear.Name = 'clear'
  85. clear.Active = true
  86. clear.BackgroundTransparency = 1
  87. clear.BorderSizePixel = 1
  88. clear.Position = UDim2.new(0, 165, 0, 282)
  89. clear.Selectable = true
  90. clear.Size = UDim2.new(0, 100, 0, 25)
  91. clear.Visible = true
  92. clear.Font = Enum.Font.ArialBold
  93. clear.FontSize = Enum.FontSize.Size18
  94. clear.Text = 'Clear'
  95. clear.TextColor3 = Color3.new(255, 255, 255)
  96. clear.TextScaled = false
  97. clear.TextSize = 18
  98. clear.TextStrokeColor3 = Color3.new(0, 0, 0)
  99. clear.TextStrokeTransparency = 1
  100. clear.TextXAlignment = Enum.TextXAlignment.Center
  101. clear.TextYAlignment = Enum.TextYAlignment.Center
  102. exec.Parent = frame
  103. exec.Name = 'exec'
  104. exec.Active = true
  105. exec.BackgroundTransparency = 1
  106. exec.BorderSizePixel = 1
  107. exec.Position = UDim2.new(0, 15, 0, 282)
  108. exec.Selectable = true
  109. exec.Size = UDim2.new(0, 100, 0, 25)
  110. exec.Visible = true
  111. exec.Font = Enum.Font.ArialBold
  112. exec.FontSize = Enum.FontSize.Size18
  113. exec.Text = 'Execute'
  114. exec.TextColor3 = Color3.new(255, 255, 255)
  115. exec.TextScaled = false
  116. exec.TextSize = 18
  117. exec.TextStrokeColor3 = Color3.new(0, 0, 0)
  118. exec.TextStrokeTransparency = 1
  119. exec.TextXAlignment = Enum.TextXAlignment.Center
  120. exec.TextYAlignment = Enum.TextYAlignment.Center
  121. --ending
  122. clear.MouseButton1Down:connect(function()
  123.     input.Text = ''
  124. end)
  125. exec.MouseButton1Down:connect(function()
  126.     loadstring(input.Text)()
  127. end)
Add Comment
Please, Sign In to add comment