Advertisement
DiveGamerV2

Executor SS Script

Aug 24th, 2021
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.46 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local SS = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local source = Instance.new("TextBox")
  9. local execute = Instance.new("TextButton")
  10. local clear = Instance.new("TextButton")
  11. local TextLabel = Instance.new("TextLabel")
  12. local Close = Instance.new("TextButton")
  13. local open = Instance.new("TextButton")
  14.  
  15. --Properties:
  16.  
  17. SS.Name = "SS"
  18. SS.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. SS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = SS
  22. Frame.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  23. Frame.Position = UDim2.new(0.267644346, 0, 0.147410363, 0)
  24. Frame.Size = UDim2.new(0, 523, 0, 302)
  25. Frame.Draggable = true
  26. Frame.Visible = false
  27.  
  28. source.Name = "source"
  29. source.Parent = Frame
  30. source.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  31. source.Size = UDim2.new(0, 386, 0, 234)
  32. source.ClearTextOnFocus = false
  33. source.Font = Enum.Font.SourceSans
  34. source.Text = ""
  35. source.TextColor3 = Color3.fromRGB(0, 0, 0)
  36. source.TextScaled = true
  37. source.TextSize = 14.000
  38. source.TextWrapped = true
  39.  
  40. execute.Name = "execute"
  41. execute.Parent = Frame
  42. execute.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  43. execute.Position = UDim2.new(0, 0, 0.804635763, 0)
  44. execute.Size = UDim2.new(0, 188, 0, 50)
  45. execute.Font = Enum.Font.SourceSans
  46. execute.Text = "Execute"
  47. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  48. execute.TextScaled = true
  49. execute.TextSize = 14.000
  50. execute.TextWrapped = true
  51.  
  52. clear.Name = "clear"
  53. clear.Parent = Frame
  54. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
  55. clear.Position = UDim2.new(0.3785851, 0, 0.804635763, 0)
  56. clear.Size = UDim2.new(0, 188, 0, 50)
  57. clear.Font = Enum.Font.SourceSans
  58. clear.Text = "Clear"
  59. clear.TextColor3 = Color3.fromRGB(0, 0, 0)
  60. clear.TextScaled = true
  61. clear.TextSize = 14.000
  62. clear.TextWrapped = true
  63.  
  64. TextLabel.Parent = Frame
  65. TextLabel.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  66. TextLabel.Position = UDim2.new(0.738049686, 0, 0, 0)
  67. TextLabel.Size = UDim2.new(0, 137, 0, 302)
  68. TextLabel.Font = Enum.Font.ArialBold
  69. TextLabel.Text = "This ss executor dosent work for any games"
  70. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  71. TextLabel.TextScaled = true
  72. TextLabel.TextSize = 14.000
  73. TextLabel.TextWrapped = true
  74.  
  75. Close.Name = "Close"
  76. Close.Parent = SS
  77. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  78. Close.Size = UDim2.new(0, 60, 0, 50)
  79. Close.Font = Enum.Font.SourceSans
  80. Close.Text = "X"
  81. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  82. Close.TextScaled = true
  83. Close.TextSize = 14.000
  84. Close.TextWrapped = true
  85.  
  86. open.Name = "open"
  87. open.Parent = SS
  88. open.BackgroundColor3 = Color3.fromRGB(170, 255, 127)
  89. open.Position = UDim2.new(0.0549954176, 0, 0, 0)
  90. open.Size = UDim2.new(0, 91, 0, 50)
  91. open.Font = Enum.Font.SourceSans
  92. open.Text = "Open"
  93. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  94. open.TextScaled = true
  95. open.TextSize = 14.000
  96. open.TextWrapped = true
  97.  
  98. -- scripts
  99.  
  100. execute.MouseButton1Click:connect(function()
  101. game.ReplicatedStorage.RemoteEvent:FireServer(source.Text)
  102. end)
  103.  
  104. clear.MouseButton1Click:connect(function()
  105. source.Text = ""
  106. end)
  107.  
  108. Close.MouseButton1Click:connect(function()
  109. Frame.Visible = false
  110. end)
  111.  
  112. open.MouseButton1Click:connect(function()
  113. Frame.Visible = true
  114. end)-- Gui to Lua
  115. -- Version: 3.2
  116.  
  117. -- Instances:
  118.  
  119. local SS = Instance.new("ScreenGui")
  120. local Frame = Instance.new("Frame")
  121. local source = Instance.new("TextBox")
  122. local execute = Instance.new("TextButton")
  123. local clear = Instance.new("TextButton")
  124. local TextLabel = Instance.new("TextLabel")
  125. local Close = Instance.new("TextButton")
  126. local open = Instance.new("TextButton")
  127.  
  128. --Properties:
  129.  
  130. SS.Name = "SS"
  131. SS.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  132. SS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  133.  
  134. Frame.Parent = SS
  135. Frame.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  136. Frame.Position = UDim2.new(0.267644346, 0, 0.147410363, 0)
  137. Frame.Size = UDim2.new(0, 523, 0, 302)
  138. Frame.Draggable = true
  139. Frame.Visible = false
  140.  
  141. source.Name = "source"
  142. source.Parent = Frame
  143. source.BackgroundColor3 = Color3.fromRGB(0, 255, 255)
  144. source.Size = UDim2.new(0, 386, 0, 234)
  145. source.ClearTextOnFocus = false
  146. source.Font = Enum.Font.SourceSans
  147. source.Text = ""
  148. source.TextColor3 = Color3.fromRGB(0, 0, 0)
  149. source.TextScaled = true
  150. source.TextSize = 14.000
  151. source.TextWrapped = true
  152.  
  153. execute.Name = "execute"
  154. execute.Parent = Frame
  155. execute.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  156. execute.Position = UDim2.new(0, 0, 0.804635763, 0)
  157. execute.Size = UDim2.new(0, 188, 0, 50)
  158. execute.Font = Enum.Font.SourceSans
  159. execute.Text = "Execute"
  160. execute.TextColor3 = Color3.fromRGB(0, 0, 0)
  161. execute.TextScaled = true
  162. execute.TextSize = 14.000
  163. execute.TextWrapped = true
  164.  
  165. clear.Name = "clear"
  166. clear.Parent = Frame
  167. clear.BackgroundColor3 = Color3.fromRGB(255, 255, 127)
  168. clear.Position = UDim2.new(0.3785851, 0, 0.804635763, 0)
  169. clear.Size = UDim2.new(0, 188, 0, 50)
  170. clear.Font = Enum.Font.SourceSans
  171. clear.Text = "Clear"
  172. clear.TextColor3 = Color3.fromRGB(0, 0, 0)
  173. clear.TextScaled = true
  174. clear.TextSize = 14.000
  175. clear.TextWrapped = true
  176.  
  177. TextLabel.Parent = Frame
  178. TextLabel.BackgroundColor3 = Color3.fromRGB(85, 255, 0)
  179. TextLabel.Position = UDim2.new(0.738049686, 0, 0, 0)
  180. TextLabel.Size = UDim2.new(0, 137, 0, 302)
  181. TextLabel.Font = Enum.Font.ArialBold
  182. TextLabel.Text = "This ss executor dosent work for any games"
  183. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  184. TextLabel.TextScaled = true
  185. TextLabel.TextSize = 14.000
  186. TextLabel.TextWrapped = true
  187.  
  188. Close.Name = "Close"
  189. Close.Parent = SS
  190. Close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  191. Close.Size = UDim2.new(0, 60, 0, 50)
  192. Close.Font = Enum.Font.SourceSans
  193. Close.Text = "X"
  194. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  195. Close.TextScaled = true
  196. Close.TextSize = 14.000
  197. Close.TextWrapped = true
  198.  
  199. open.Name = "open"
  200. open.Parent = SS
  201. open.BackgroundColor3 = Color3.fromRGB(170, 255, 127)
  202. open.Position = UDim2.new(0.0549954176, 0, 0, 0)
  203. open.Size = UDim2.new(0, 91, 0, 50)
  204. open.Font = Enum.Font.SourceSans
  205. open.Text = "Open"
  206. open.TextColor3 = Color3.fromRGB(0, 0, 0)
  207. open.TextScaled = true
  208. open.TextSize = 14.000
  209. open.TextWrapped = true
  210.  
  211. -- scripts
  212.  
  213. execute.MouseButton1Click:connect(function()
  214. game.ReplicatedStorage.RemoteEvent:FireServer(source.Text)
  215. end)
  216.  
  217. clear.MouseButton1Click:connect(function()
  218. source.Text = ""
  219. end)
  220.  
  221. Close.MouseButton1Click:connect(function()
  222. Frame.Visible = false
  223. end)
  224.  
  225. open.MouseButton1Click:connect(function()
  226. Frame.Visible = true
  227. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement