Advertisement
Guest User

Executor [SS]

a guest
Apr 14th, 2019
5,774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.43 KB | None | 0 0
  1. ---Exuctor [SS]----
  2. ---game: https://www.roblox.com/games/3074103138/Server-Sided-Game---
  3.  
  4. -- Farewell Infortality.
  5. -- Version: 2.82
  6. -- Instances:
  7. local ServerSide = Instance.new("ScreenGui")
  8. local open = Instance.new("Frame")
  9. local openbutton = Instance.new("TextButton")
  10. local executor = Instance.new("Frame")
  11. local title = Instance.new("TextLabel")
  12. local scroll = Instance.new("ScrollingFrame")
  13. local TextBox = Instance.new("TextBox")
  14. local execute = Instance.new("TextButton")
  15. local close = Instance.new("TextButton")
  16. local TextButton = Instance.new("TextButton")
  17. --Properties:
  18. ServerSide.Name = "ServerSide"
  19. ServerSide.Parent = game.CoreGui
  20. ServerSide.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. open.Name = "open"
  23. open.Parent = ServerSide
  24. open.BackgroundColor3 = Color3.new(1, 1, 1)
  25. open.Position = UDim2.new(0.0191387534, 0, 0.901606441, 0)
  26. open.Size = UDim2.new(0, 100, 0, 32)
  27. open.Style = Enum.FrameStyle.RobloxRound
  28. open.Active = true
  29.  
  30. openbutton.Name = "openbutton"
  31. openbutton.Parent = open
  32. openbutton.BackgroundColor3 = Color3.new(1, 1, 1)
  33. openbutton.BackgroundTransparency = 1
  34. openbutton.Position = UDim2.new(-0.0784159601, 0, -0.546875, 0)
  35. openbutton.Size = UDim2.new(0, 100, 0, 32)
  36. openbutton.Font = Enum.Font.Garamond
  37. openbutton.Text = "OPEN"
  38. openbutton.TextColor3 = Color3.new(1, 1, 1)
  39. openbutton.TextScaled = true
  40. openbutton.TextSize = 14
  41. openbutton.TextWrapped = true
  42. openbutton.MouseButton1Down:connect(function()
  43.     open.Visible = false
  44.     executor.Visible = true
  45. end)
  46.  
  47. executor.Name = "executor"
  48. executor.Parent = ServerSide
  49. executor.BackgroundColor3 = Color3.new(1, 1, 1)
  50. executor.Position = UDim2.new(0.220095679, 0, 0.214859426, 0)
  51. executor.Size = UDim2.new(0, 351, 0, 284)
  52. executor.Visible = false
  53. executor.Style = Enum.FrameStyle.RobloxRound
  54. executor.Active = true
  55. executor.Draggable = true
  56.  
  57. title.Name = "title"
  58. title.Parent = executor
  59. title.BackgroundColor3 = Color3.new(0, 0, 0)
  60. title.Position = UDim2.new(-0.025641026, 0, -0.0281690136, 0)
  61. title.Size = UDim2.new(0, 351, 0, 40)
  62. title.Font = Enum.Font.Antique
  63. title.Text = "Executor [SS]"
  64. title.TextColor3 = Color3.new(1, 1, 1)
  65. title.TextScaled = true
  66. title.TextSize = 14
  67. title.TextWrapped = true
  68.  
  69. scroll.Name = "scroll"
  70. scroll.Parent = executor
  71. scroll.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0)
  72. scroll.Position = UDim2.new(-0.0250492804, 0, 0.124428824, 0)
  73. scroll.Size = UDim2.new(0, 350, 0, 200)
  74. scroll.CanvasSize = UDim2.new(0, 0, 5, 0)
  75.  
  76. TextBox.Parent = scroll
  77. TextBox.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0)
  78. TextBox.BackgroundTransparency = 1
  79. TextBox.Position = UDim2.new(0.00111860002, 0, 0, 0)
  80. TextBox.Size = UDim2.new(0, 337, 0, 200)
  81. TextBox.Font = Enum.Font.Garamond
  82. TextBox.MultiLine = true
  83. TextBox.PlaceholderColor3 = Color3.new(0.698039, 0.698039, 0.698039)
  84. TextBox.Text = ""
  85. TextBox.TextColor3 = Color3.new(0, 0, 0)
  86. TextBox.TextSize = 20
  87. TextBox.TextWrapped = true
  88. TextBox.TextXAlignment = Enum.TextXAlignment.Left
  89. TextBox.TextYAlignment = Enum.TextYAlignment.Top
  90.  
  91. execute.Name = "execute"
  92. execute.Parent = executor
  93. execute.BackgroundColor3 = Color3.new(0, 0, 0)
  94. execute.Position = UDim2.new(0.0309541263, 0, 0.870939851, 0)
  95. execute.Size = UDim2.new(0, 149, 0, 42)
  96. execute.Font = Enum.Font.Garamond
  97. execute.Text = "Execute SS"
  98. execute.TextColor3 = Color3.new(1, 1, 1)
  99. execute.TextScaled = true
  100. execute.TextSize = 14
  101. execute.TextWrapped = true
  102. execute.MouseButton1Down:connect(function()
  103.     game.ReplicatedStorage.RemoteEvent:FireServer(TextBox.Text)
  104. end)
  105.  
  106. close.Name = "close"
  107. close.Parent = executor
  108. close.BackgroundColor3 = Color3.new(1, 1, 1)
  109. close.BackgroundTransparency = 1
  110. close.Position = UDim2.new(0.887557209, 0, -0.032884784, 0)
  111. close.Size = UDim2.new(0, 45, 0, 41)
  112. close.Font = Enum.Font.Garamond
  113. close.Text = "X"
  114. close.TextColor3 = Color3.new(1, 1, 1)
  115. close.TextScaled = true
  116. close.TextSize = 14
  117. close.TextWrapped = true
  118. close.MouseButton1Down:connect(function()
  119.     executor.Visible = false
  120.     open.Visible = true
  121. end)
  122.  
  123. TextButton.Parent = executor
  124. TextButton.BackgroundColor3 = Color3.new(0, 0, 0)
  125. TextButton.Position = UDim2.new(0.524503827, 0, 0.870544612, 0)
  126. TextButton.Size = UDim2.new(0, 149, 0, 42)
  127. TextButton.Font = Enum.Font.Garamond
  128. TextButton.Text = "Clear"
  129. TextButton.TextColor3 = Color3.new(1, 1, 1)
  130. TextButton.TextScaled = true
  131. TextButton.TextSize = 14
  132. TextButton.TextWrapped = true
  133. TextButton.MouseButton1Down:connect(function()
  134.     input.Text = ""
  135. end)
  136.  
  137. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement