Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. -- Objects
  2.  
  3. local scriptexecutor = Instance.new("ScreenGui")
  4. local TextButton = Instance.new("TextButton")
  5. local Frame = Instance.new("Frame")
  6. local TextBox = Instance.new("TextBox")
  7. local TextButton_2 = Instance.new("TextButton")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton_3 = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. scriptexecutor.Name = "scriptexecutor"
  14. scriptexecutor.Parent = game.StarterGui
  15. scriptexecutor.Enabled = true
  16.  
  17. TextButton.Parent = scriptexecutor
  18. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  19. TextButton.Draggable = true
  20. TextButton.Position = UDim2.new(0.00595745444, 0, 0.0131795723, 0)
  21. TextButton.Size = UDim2.new(0, 18, 0, 13)
  22. TextButton.Style = Enum.ButtonStyle.RobloxRoundButton
  23. TextButton.Font = Enum.Font.SourceSans
  24. TextButton.FontSize = Enum.FontSize.Size14
  25. TextButton.Text = ""
  26. TextButton.TextSize = 14
  27.  
  28. Frame.Parent = TextButton
  29. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  30. Frame.Draggable = true
  31. Frame.Position = UDim2.new(-0.111111104, 0, 0, 0)
  32. Frame.Selectable = true
  33. Frame.Size = UDim2.new(0, 290, 0, 470)
  34. Frame.Style = Enum.FrameStyle.RobloxRound
  35.  
  36. TextBox.Parent = Frame
  37. TextBox.BackgroundColor3 = Color3.new(1, 1, 1)
  38. TextBox.BackgroundTransparency = 1
  39. TextBox.BorderSizePixel = 0
  40. TextBox.Position = UDim2.new(-0.00862069055, 0, 0.263829768, 0)
  41. TextBox.Size = UDim2.new(0, 279, 0, 335)
  42. TextBox.ClearTextOnFocus = false
  43. TextBox.Font = Enum.Font.SourceSans
  44. TextBox.FontSize = Enum.FontSize.Size14
  45. TextBox.MultiLine = true
  46. TextBox.Text = "print(\"Put a script here!\")"
  47. TextBox.TextColor3 = Color3.new(1, 1, 1)
  48. TextBox.TextSize = 14
  49. TextBox.TextWrapped = true
  50.  
  51. TextButton_2.Parent = Frame
  52. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  53. TextButton_2.Position = UDim2.new(0.0413793102, 0, -0.00315457396, 0)
  54. TextButton_2.Size = UDim2.new(0, 250, 0, 38)
  55. TextButton_2.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  56. TextButton_2.Font = Enum.Font.SourceSans
  57. TextButton_2.FontSize = Enum.FontSize.Size14
  58. TextButton_2.Text = "Execute"
  59. TextButton_2.TextSize = 14
  60.  
  61. TextLabel.Parent = Frame
  62. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  63. TextLabel.BackgroundTransparency = 1
  64. TextLabel.BorderSizePixel = 0
  65. TextLabel.Position = UDim2.new(-0.0137931034, 0, 0.207839459, 0)
  66. TextLabel.Size = UDim2.new(0, 282, 0, 27)
  67. TextLabel.Font = Enum.Font.SourceSans
  68. TextLabel.FontSize = Enum.FontSize.Size14
  69. TextLabel.Text = "Say /private or ;private in chat to get a private server."
  70. TextLabel.TextColor3 = Color3.new(1, 0, 0)
  71. TextLabel.TextScaled = true
  72. TextLabel.TextSize = 14
  73. TextLabel.TextWrapped = true
  74.  
  75. TextButton_3.Parent = Frame
  76. TextButton_3.BackgroundColor3 = Color3.new(1, 1, 1)
  77. TextButton_3.Position = UDim2.new(0.0413793102, 0, 0.103228405, 0)
  78. TextButton_3.Size = UDim2.new(0, 250, 0, 38)
  79. TextButton_3.Style = Enum.ButtonStyle.RobloxRoundButton
  80. TextButton_3.Font = Enum.Font.SourceSans
  81. TextButton_3.FontSize = Enum.FontSize.Size14
  82. TextButton_3.Text = "Clear"
  83. TextButton_3.TextSize = 14
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement