Advertisement
zza

Fixed

zza
Mar 29th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. -- Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local TextLabel = Instance.new("TextLabel")
  5. local ScrollingFrame = Instance.new("ScrollingFrame")
  6. local TextBox = Instance.new("TextBox")
  7. local TextButton = Instance.new("TextButton")
  8. local TextButton_2 = Instance.new("TextButton")
  9. --Properties:
  10. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. Frame.Parent = ScreenGui
  15. Frame.Active = true
  16. Frame.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  17. Frame.Position = UDim2.new(0.0210185926, 0, 0.635634065, 0)
  18. Frame.Size = UDim2.new(0, 313, 0, 217)
  19. Frame.Draggable = true
  20.  
  21. TextLabel.Parent = Frame
  22. TextLabel.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  23. TextLabel.BorderColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  24. TextLabel.Position = UDim2.new(0.140575081, 0, 0.0737327188, 0)
  25. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  26. TextLabel.Font = Enum.Font.SourceSans
  27. TextLabel.Text = "EXOLINER"
  28. TextLabel.TextColor3 = Color3.new(0.980392, 0.980392, 0.980392)
  29. TextLabel.TextSize = 20
  30.  
  31. ScrollingFrame.Parent = Frame
  32. ScrollingFrame.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  33. ScrollingFrame.BorderColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  34. ScrollingFrame.Position = UDim2.new(0.0447284356, 0, 0.304147333, 0)
  35. ScrollingFrame.Size = UDim2.new(0, 276, 0, 116)
  36. ScrollingFrame.CanvasPosition = Vector2.new(0, 3.09999943)
  37.  
  38. TextBox.Parent = ScrollingFrame
  39. TextBox.BackgroundColor3 = Color3.new(0.141176, 0.141176, 0.141176)
  40. TextBox.BorderColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  41. TextBox.Position = UDim2.new(-0.00137799024, 0, -0.00429207925, 0)
  42. TextBox.Size = UDim2.new(0, 276, 0, 120)
  43. TextBox.Font = Enum.Font.SourceSans
  44. TextBox.Text = ""
  45. TextBox.TextColor3 = Color3.new(0, 0, 0)
  46. TextBox.TextSize = 14
  47.  
  48. TextButton.Parent = Frame
  49. TextButton.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  50. TextButton.BorderColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  51. TextButton.Position = UDim2.new(0.0638977662, 0, 0.866359293, 0)
  52. TextButton.Size = UDim2.new(0, 112, 0, 23)
  53. TextButton.Font = Enum.Font.SourceSans
  54. TextButton.Text = "Execute"
  55. TextButton.TextColor3 = Color3.new(0, 0, 0)
  56. TextButton.TextSize = 20
  57. TextButton.MouseButton1Click:Connect(function()
  58. loadstring(TextBox.Text)()
  59. end)
  60.  
  61. TextButton_2.Parent = Frame
  62. TextButton_2.BackgroundColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  63. TextButton_2.BorderColor3 = Color3.new(0.188235, 0.188235, 0.188235)
  64. TextButton_2.Position = UDim2.new(0.466453671, 0, 0.866359293, 0)
  65. TextButton_2.Size = UDim2.new(0, 116, 0, 23)
  66. TextButton_2.Font = Enum.Font.SourceSans
  67. TextButton_2.Text = "Clear"
  68. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  69. TextButton_2.TextSize = 20
  70. TextButton_2.MouseButton1Click:Connect(function()
  71. TextButton_2.Text = ""
  72. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement