Advertisement
kolijake

Executor ss

Jul 30th, 2020
14
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.24 KB | None | 0 0
  1. -- Made By Baconman24143
  2.  
  3. -- Instances:
  4.  
  5. local ExecutorMain = Instance.new("ScreenGui")
  6. local fat = Instance.new("Frame")
  7. local title = Instance.new("TextLabel")
  8. local designbar = Instance.new("TextLabel")
  9. local ScrollingFrame = Instance.new("ScrollingFrame")
  10. local input = Instance.new("TextBox")
  11. local requireid = Instance.new("TextBox")
  12. local servermode = Instance.new("TextButton")
  13. local clientmode = Instance.new("TextButton")
  14. local execute = Instance.new("TextButton")
  15. local clear = Instance.new("TextButton")
  16. local hiddenlabel = Instance.new("TextLabel")
  17. local hidecode = Instance.new("TextButton")
  18. local close = Instance.new("TextButton")
  19.  
  20. --Properties:
  21.  
  22. ExecutorMain.Name = "ExecutorMain"
  23. ExecutorMain.Parent = game.Workspace
  24. ExecutorMain.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  25. ExecutorMain.ResetOnSpawn = false
  26.  
  27. fat.Name = "fat"
  28. fat.Parent = ExecutorMain
  29. fat.BackgroundColor3 = Color3.fromRGB(52, 52, 52)
  30. fat.BorderSizePixel = 0
  31. fat.Position = UDim2.new(0.420177281, 0, 0.300365269, 0)
  32. fat.Size = UDim2.new(0, 482, 0, 307)
  33.  
  34. title.Name = "title"
  35. title.Parent = fat
  36. title.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  37. title.BorderSizePixel = 0
  38. title.Size = UDim2.new(0, 482, 0, 28)
  39. title.Font = Enum.Font.SourceSansLight
  40. title.Text = "ServerSided Executor"
  41. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  42. title.TextScaled = true
  43. title.TextSize = 14.000
  44. title.TextWrapped = true
  45.  
  46. designbar.Name = "designbar"
  47. designbar.Parent = fat
  48. designbar.BackgroundColor3 = Color3.fromRGB(62, 62, 62)
  49. designbar.BorderSizePixel = 0
  50. designbar.Position = UDim2.new(0, 0, 0.0912052244, 0)
  51. designbar.Size = UDim2.new(0, 482, 0, 3)
  52. designbar.Font = Enum.Font.SourceSansLight
  53. designbar.Text = " "
  54. designbar.TextColor3 = Color3.fromRGB(255, 255, 255)
  55. designbar.TextSize = 14.000
  56.  
  57. ScrollingFrame.Parent = fat
  58. ScrollingFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  59. ScrollingFrame.BackgroundTransparency = 1.000
  60. ScrollingFrame.BorderSizePixel = 0
  61. ScrollingFrame.Position = UDim2.new(0.0331950225, 0, 0.205211729, 0)
  62. ScrollingFrame.Size = UDim2.new(0, 451, 0, 196)
  63. ScrollingFrame.BottomImage = "rbxasset://textures/blackBkg_square.png"
  64. ScrollingFrame.CanvasSize = UDim2.new(0, 0, 3.5, 0)
  65. ScrollingFrame.MidImage = "rbxasset://textures/blackBkg_square.png"
  66. ScrollingFrame.ScrollBarThickness = 8
  67. ScrollingFrame.TopImage = "rbxasset://textures/blackBkg_square.png"
  68.  
  69. input.Name = "input"
  70. input.Parent = ScrollingFrame
  71. input.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  72. input.BorderSizePixel = 0
  73. input.Size = UDim2.new(0, 442, 0, 9999)
  74. input.ClearTextOnFocus = false
  75. input.Font = Enum.Font.SourceSansSemibold
  76. input.MultiLine = true
  77. input.Text = "Script Here"
  78. input.TextColor3 = Color3.fromRGB(255, 255, 255)
  79. input.TextSize = 14.000
  80. input.TextXAlignment = Enum.TextXAlignment.Left
  81. input.TextYAlignment = Enum.TextYAlignment.Top
  82.  
  83. requireid.Name = "requireid"
  84. requireid.Parent = fat
  85. requireid.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  86. requireid.BorderSizePixel = 0
  87. requireid.Position = UDim2.new(0.0331950225, 0, 0.1237785, 0)
  88. requireid.Size = UDim2.new(0, 155, 0, 19)
  89. requireid.Font = Enum.Font.SourceSansSemibold
  90. requireid.PlaceholderText = "require(id)"
  91. requireid.Text = ""
  92. requireid.TextColor3 = Color3.fromRGB(255, 255, 255)
  93. requireid.TextSize = 14.000
  94. requireid.TextXAlignment = Enum.TextXAlignment.Left
  95.  
  96. servermode.Name = "servermode"
  97. servermode.Parent = fat
  98. servermode.BackgroundColor3 = Color3.fromRGB(67, 67, 67)
  99. servermode.BorderColor3 = Color3.fromRGB(255, 255, 255)
  100. servermode.Position = UDim2.new(0.616182506, 0, 0.1237785, 0)
  101. servermode.Size = UDim2.new(0, 74, 0, 19)
  102. servermode.Font = Enum.Font.SourceSansLight
  103. servermode.Text = "Server"
  104. servermode.TextColor3 = Color3.fromRGB(255, 255, 255)
  105. servermode.TextSize = 14.000
  106.  
  107. clientmode.Name = "clientmode"
  108. clientmode.Parent = fat
  109. clientmode.BackgroundColor3 = Color3.fromRGB(67, 67, 67)
  110. clientmode.BorderColor3 = Color3.fromRGB(255, 255, 255)
  111. clientmode.BorderSizePixel = 0
  112. clientmode.Position = UDim2.new(0.79668045, 0, 0.1237785, 0)
  113. clientmode.Size = UDim2.new(0, 74, 0, 19)
  114. clientmode.Font = Enum.Font.SourceSansLight
  115. clientmode.Text = "Client"
  116. clientmode.TextColor3 = Color3.fromRGB(255, 255, 255)
  117. clientmode.TextSize = 14.000
  118.  
  119. execute.Name = "execute"
  120. execute.Parent = fat
  121. execute.BackgroundColor3 = Color3.fromRGB(67, 67, 67)
  122. execute.BorderSizePixel = 0
  123. execute.Position = UDim2.new(0.0331950225, 0, 0.866449535, 0)
  124. execute.Size = UDim2.new(0, 120, 0, 33)
  125. execute.Font = Enum.Font.SourceSansLight
  126. execute.Text = "Execute"
  127. execute.TextColor3 = Color3.fromRGB(255, 255, 255)
  128. execute.TextSize = 20.000
  129.  
  130. clear.Name = "clear"
  131. clear.Parent = fat
  132. clear.BackgroundColor3 = Color3.fromRGB(67, 67, 67)
  133. clear.BorderSizePixel = 0
  134. clear.Position = UDim2.new(0.315352708, 0, 0.866449535, 0)
  135. clear.Size = UDim2.new(0, 120, 0, 33)
  136. clear.Font = Enum.Font.SourceSansLight
  137. clear.Text = "Clear"
  138. clear.TextColor3 = Color3.fromRGB(255, 255, 255)
  139. clear.TextSize = 20.000
  140.  
  141. hiddenlabel.Name = "hiddenlabel"
  142. hiddenlabel.Parent = fat
  143. hiddenlabel.BackgroundColor3 = Color3.fromRGB(38, 38, 38)
  144. hiddenlabel.BackgroundTransparency = 1.000
  145. hiddenlabel.BorderSizePixel = 0
  146. hiddenlabel.Position = UDim2.new(0.616182566, 0, 0.872964144, 0)
  147. hiddenlabel.Size = UDim2.new(0, 58, 0, 28)
  148. hiddenlabel.Font = Enum.Font.SourceSansLight
  149. hiddenlabel.Text = "Hide Code:"
  150. hiddenlabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  151. hiddenlabel.TextSize = 20.000
  152. hiddenlabel.TextXAlignment = Enum.TextXAlignment.Left
  153.  
  154. hidecode.Name = "hidecode"
  155. hidecode.Parent = fat
  156. hidecode.BackgroundColor3 = Color3.fromRGB(67, 67, 67)
  157. hidecode.BorderColor3 = Color3.fromRGB(255, 255, 255)
  158. hidecode.BorderSizePixel = 0
  159. hidecode.Position = UDim2.new(0.79668051, 0, 0.879478812, 0)
  160. hidecode.Size = UDim2.new(0, 25, 0, 24)
  161. hidecode.Font = Enum.Font.SourceSans
  162. hidecode.Text = " "
  163. hidecode.TextColor3 = Color3.fromRGB(0, 0, 0)
  164. hidecode.TextSize = 14.000
  165.  
  166. close.Name = "close"
  167. close.Parent = fat
  168. close.BackgroundColor3 = Color3.fromRGB(67, 67, 67)
  169. close.BackgroundTransparency = 1.000
  170. close.BorderSizePixel = 0
  171. close.Position = UDim2.new(0.948132753, 0, 0, 0)
  172. close.Size = UDim2.new(0, 25, 0, 21)
  173. close.Font = Enum.Font.SourceSansLight
  174. close.Text = "X"
  175. close.TextColor3 = Color3.fromRGB(255, 0, 0)
  176. close.TextSize = 20.000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement