iiJosephCats205

Exploit GUI

Mar 22nd, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 9.46 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4.  -- Objects
  5.  
  6. local ExploitGUI = Instance.new("ScreenGui")
  7. local Open = Instance.new("TextButton")
  8. local OPEN = Instance.new("Frame")
  9. local ExecutorFrame = Instance.new("Frame")
  10. local ebar2 = Instance.new("Frame")
  11. local ebar1 = Instance.new("Frame")
  12. local ExecutorMain = Instance.new("ScrollingFrame")
  13. local Input = Instance.new("TextBox")
  14. local execute = Instance.new("TextButton")
  15. local eclear = Instance.new("TextButton")
  16. local mtitle = Instance.new("TextLabel")
  17. local sclose = Instance.new("TextButton")
  18. local MainFrame = Instance.new("Frame")
  19. local mbar2 = Instance.new("Frame")
  20. local mbar1 = Instance.new("Frame")
  21. local mtitle_2 = Instance.new("TextLabel")
  22. local mtitle2 = Instance.new("TextLabel")
  23. local mexecutor = Instance.new("TextButton")
  24. local mscritps = Instance.new("TextButton")
  25. local ScriptsFrame = Instance.new("Frame")
  26. local mbar2_2 = Instance.new("Frame")
  27. local mbar1_2 = Instance.new("Frame")
  28. local gnv3 = Instance.new("TextButton")
  29. local stitle = Instance.new("TextLabel")
  30. local sclose_2 = Instance.new("TextButton")
  31.  
  32. -- Properties
  33.  
  34. ExploitGUI.Name = "ExploitGUI"
  35. ExploitGUI.Parent = game.Players.LocalPlayer.PlayerGui
  36.  
  37. Open.Name = "Open"
  38. Open.Parent = ExploitGUI
  39. Open.BackgroundColor3 = Color3.new(0, 0, 0)
  40. Open.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  41. Open.BorderSizePixel = 6
  42. Open.Position = UDim2.new(0, 0, 0.642010093, 0)
  43. Open.Size = UDim2.new(0, 102, 0, 16)
  44. Open.Font = Enum.Font.Cartoon
  45. Open.Text = "Open/Close"
  46. Open.TextColor3 = Color3.new(1, 1, 1)
  47. Open.TextScaled = true
  48. Open.TextSize = 14
  49. Open.TextWrapped = true
  50.  
  51. OPEN.Name = "OPEN"
  52. OPEN.Parent = ExploitGUI
  53. OPEN.BackgroundColor3 = Color3.new(1, 1, 1)
  54. OPEN.BackgroundTransparency = 1
  55. OPEN.Size = UDim2.new(1, 0, 1, 0)
  56.  
  57. --Open Close
  58. Open.MouseButton1Down:Connect(function()
  59.     OPEN.Visible = not OPEN.Visible
  60. end)
  61.  
  62. ExecutorFrame.Name = "ExecutorFrame"
  63. ExecutorFrame.Parent = OPEN
  64. ExecutorFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  65. ExecutorFrame.Position = UDim2.new(0.735584974, 0, 0.421282172, 0)
  66. ExecutorFrame.Size = UDim2.new(0, 472, 0, 452)
  67. ExecutorFrame.Visible = false
  68.  
  69. ebar2.Name = "ebar2"
  70. ebar2.Parent = ExecutorFrame
  71. ebar2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  72. ebar2.BorderSizePixel = 0
  73. ebar2.Size = UDim2.new(0, 472, 0, 23)
  74.  
  75. ebar1.Name = "ebar1"
  76. ebar1.Parent = ExecutorFrame
  77. ebar1.BackgroundColor3 = Color3.new(0, 0, 0)
  78. ebar1.BorderSizePixel = 0
  79. ebar1.Position = UDim2.new(0, 0, 0.0507956967, 0)
  80. ebar1.Size = UDim2.new(0, 472, 0, 8)
  81.  
  82. ExecutorMain.Name = "ExecutorMain"
  83. ExecutorMain.Parent = ExecutorFrame
  84. ExecutorMain.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  85. ExecutorMain.BorderSizePixel = 0
  86. ExecutorMain.Position = UDim2.new(0.112288132, 0, 0.121681415, 0)
  87. ExecutorMain.Size = UDim2.new(0, 386, 0, 277)
  88. ExecutorMain.CanvasSize = UDim2.new(0, 0, 100000, 0)
  89.  
  90. Input.Name = "Input"
  91. Input.Parent = ExecutorMain
  92. Input.BackgroundColor3 = Color3.new(1, 1, 1)
  93. Input.BackgroundTransparency = 1
  94. Input.BorderSizePixel = 0
  95. Input.Size = UDim2.new(0, 370, 0, 999)
  96. Input.ClearTextOnFocus = false
  97. Input.Font = Enum.Font.Cartoon
  98. Input.MultiLine = true
  99. Input.Text = "--Insert Script Here"
  100. Input.TextColor3 = Color3.new(1, 1, 1)
  101. Input.TextSize = 20
  102. Input.TextWrapped = true
  103. Input.TextXAlignment = Enum.TextXAlignment.Left
  104. Input.TextYAlignment = Enum.TextYAlignment.Top
  105.  
  106. execute.Name = "execute"
  107. execute.Parent = ExecutorFrame
  108. execute.BackgroundColor3 = Color3.new(0, 0, 0)
  109. execute.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  110. execute.BorderSizePixel = 6
  111. execute.Position = UDim2.new(0.112288132, 0, 0.807522118, 0)
  112. execute.Size = UDim2.new(0, 261, 0, 50)
  113. execute.Font = Enum.Font.Cartoon
  114. execute.Text = "Execute"
  115. execute.TextColor3 = Color3.new(1, 1, 1)
  116. execute.TextScaled = true
  117. execute.TextSize = 14
  118. execute.TextWrapped = true
  119.  
  120. eclear.Name = "eclear"
  121. eclear.Parent = ExecutorFrame
  122. eclear.BackgroundColor3 = Color3.new(0, 0, 0)
  123. eclear.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  124. eclear.BorderSizePixel = 6
  125. eclear.Position = UDim2.new(0.743644059, 0, 0.807522118, 0)
  126. eclear.Size = UDim2.new(0, 88, 0, 50)
  127. eclear.Font = Enum.Font.Cartoon
  128. eclear.Text = "Clear"
  129. eclear.TextColor3 = Color3.new(1, 1, 1)
  130. eclear.TextScaled = true
  131. eclear.TextSize = 14
  132. eclear.TextWrapped = true
  133.  
  134. mtitle.Name = "mtitle"
  135. mtitle.Parent = ExecutorFrame
  136. mtitle.BackgroundColor3 = Color3.new(1, 1, 1)
  137. mtitle.BackgroundTransparency = 1
  138. mtitle.Size = UDim2.new(0, 156, 0, 23)
  139. mtitle.Font = Enum.Font.Cartoon
  140. mtitle.Text = "Executor"
  141. mtitle.TextColor3 = Color3.new(1, 1, 1)
  142. mtitle.TextScaled = true
  143. mtitle.TextSize = 14
  144. mtitle.TextWrapped = true
  145.  
  146. sclose.Name = "sclose"
  147. sclose.Parent = ExecutorFrame
  148. sclose.BackgroundColor3 = Color3.new(1, 1, 1)
  149. sclose.BackgroundTransparency = 1
  150. sclose.Position = UDim2.new(0.951017022, 0, 0, 0)
  151. sclose.Size = UDim2.new(0, 23, 0, 23)
  152. sclose.Font = Enum.Font.Cartoon
  153. sclose.Text = "X"
  154. sclose.TextColor3 = Color3.new(1, 1, 1)
  155. sclose.TextScaled = true
  156. sclose.TextSize = 14
  157. sclose.TextWrapped = true
  158.  
  159. MainFrame.Name = "MainFrame"
  160. MainFrame.Parent = OPEN
  161. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  162. MainFrame.BorderSizePixel = 0
  163. MainFrame.Position = UDim2.new(0.080141902, 0, 0.45466128, 0)
  164. MainFrame.Size = UDim2.new(0, 474, 0, 321)
  165. MainFrame.Visible = false
  166.  
  167. mbar2.Name = "mbar2"
  168. mbar2.Parent = MainFrame
  169. mbar2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  170. mbar2.BorderSizePixel = 0
  171. mbar2.Size = UDim2.new(0, 474, 0, 23)
  172.  
  173. mbar1.Name = "mbar1"
  174. mbar1.Parent = MainFrame
  175. mbar1.BackgroundColor3 = Color3.new(0, 0, 0)
  176. mbar1.BorderSizePixel = 0
  177. mbar1.Position = UDim2.new(0, 0, 0.0716510937, 0)
  178. mbar1.Size = UDim2.new(0, 474, 0, 6)
  179.  
  180. mtitle_2.Name = "mtitle"
  181. mtitle_2.Parent = MainFrame
  182. mtitle_2.BackgroundColor3 = Color3.new(1, 1, 1)
  183. mtitle_2.BackgroundTransparency = 1
  184. mtitle_2.Size = UDim2.new(0, 156, 0, 23)
  185. mtitle_2.Font = Enum.Font.Cartoon
  186. mtitle_2.Text = "Exploit GUI"
  187. mtitle_2.TextColor3 = Color3.new(1, 1, 1)
  188. mtitle_2.TextScaled = true
  189. mtitle_2.TextSize = 14
  190. mtitle_2.TextWrapped = true
  191.  
  192. mtitle2.Name = "mtitle2"
  193. mtitle2.Parent = MainFrame
  194. mtitle2.BackgroundColor3 = Color3.new(1, 1, 1)
  195. mtitle2.BackgroundTransparency = 1
  196. mtitle2.Position = UDim2.new(0, 0, 0.9096573, 0)
  197. mtitle2.Size = UDim2.new(0, 156, 0, 19)
  198. mtitle2.Font = Enum.Font.Cartoon
  199. mtitle2.Text = "By: iiJosephCats205"
  200. mtitle2.TextColor3 = Color3.new(1, 1, 1)
  201. mtitle2.TextScaled = true
  202. mtitle2.TextSize = 14
  203. mtitle2.TextWrapped = true
  204.  
  205. mexecutor.Name = "mexecutor"
  206. mexecutor.Parent = MainFrame
  207. mexecutor.BackgroundColor3 = Color3.new(0, 0, 0)
  208. mexecutor.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  209. mexecutor.BorderSizePixel = 6
  210. mexecutor.Position = UDim2.new(0.0295358617, 0, 0.422118366, 0)
  211. mexecutor.Size = UDim2.new(0, 200, 0, 50)
  212. mexecutor.Font = Enum.Font.Cartoon
  213. mexecutor.Text = "Executor"
  214. mexecutor.TextColor3 = Color3.new(1, 1, 1)
  215. mexecutor.TextScaled = true
  216. mexecutor.TextSize = 14
  217. mexecutor.TextWrapped = true
  218.  
  219. mscritps.Name = "mscritps"
  220. mscritps.Parent = MainFrame
  221. mscritps.BackgroundColor3 = Color3.new(0, 0, 0)
  222. mscritps.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  223. mscritps.BorderSizePixel = 6
  224. mscritps.Position = UDim2.new(0.548523188, 0, 0.422118366, 0)
  225. mscritps.Size = UDim2.new(0, 200, 0, 50)
  226. mscritps.Font = Enum.Font.Cartoon
  227. mscritps.Text = "Scripts"
  228. mscritps.TextColor3 = Color3.new(1, 1, 1)
  229. mscritps.TextScaled = true
  230. mscritps.TextSize = 14
  231. mscritps.TextWrapped = true
  232.  
  233. ScriptsFrame.Name = "ScriptsFrame"
  234. ScriptsFrame.Parent = OPEN
  235. ScriptsFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  236. ScriptsFrame.BorderSizePixel = 0
  237. ScriptsFrame.Position = UDim2.new(0.558047533, 0, 0.148496211, 0)
  238. ScriptsFrame.Size = UDim2.new(0, 271, 0, 336)
  239. ScriptsFrame.Visible = false
  240.  
  241. mbar2_2.Name = "mbar2"
  242. mbar2_2.Parent = ScriptsFrame
  243. mbar2_2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  244. mbar2_2.BorderSizePixel = 0
  245. mbar2_2.Size = UDim2.new(0, 271, 0, 23)
  246.  
  247. mbar1_2.Name = "mbar1"
  248. mbar1_2.Parent = ScriptsFrame
  249. mbar1_2.BackgroundColor3 = Color3.new(0, 0, 0)
  250. mbar1_2.BorderSizePixel = 0
  251. mbar1_2.Position = UDim2.new(0, 0, 0.0684523806, 0)
  252. mbar1_2.Size = UDim2.new(0, 271, 0, 6)
  253.  
  254. gnv3.Name = "gnv3"
  255. gnv3.Parent = ScriptsFrame
  256. gnv3.BackgroundColor3 = Color3.new(0, 0, 0)
  257. gnv3.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  258. gnv3.BorderSizePixel = 6
  259. gnv3.Position = UDim2.new(0.131549016, 0, 0.425094545, 0)
  260. gnv3.Size = UDim2.new(0, 200, 0, 50)
  261. gnv3.Font = Enum.Font.Cartoon
  262. gnv3.Text = "Grab Knife"
  263. gnv3.TextColor3 = Color3.new(1, 1, 1)
  264. gnv3.TextScaled = true
  265. gnv3.TextSize = 14
  266. gnv3.TextWrapped = true
  267.  
  268. stitle.Name = "stitle"
  269. stitle.Parent = ScriptsFrame
  270. stitle.BackgroundColor3 = Color3.new(1, 1, 1)
  271. stitle.BackgroundTransparency = 1
  272. stitle.Size = UDim2.new(0, 156, 0, 23)
  273. stitle.Font = Enum.Font.Cartoon
  274. stitle.Text = "Scripts"
  275. stitle.TextColor3 = Color3.new(1, 1, 1)
  276. stitle.TextScaled = true
  277. stitle.TextSize = 14
  278. stitle.TextWrapped = true
  279.  
  280. sclose_2.Name = "sclose"
  281. sclose_2.Parent = ScriptsFrame
  282. sclose_2.BackgroundColor3 = Color3.new(1, 1, 1)
  283. sclose_2.BackgroundTransparency = 1
  284. sclose_2.Position = UDim2.new(0.915000021, 0, 0, 0)
  285. sclose_2.Size = UDim2.new(0, 23, 0, 23)
  286. sclose_2.Font = Enum.Font.Cartoon
  287. sclose_2.Text = "X"
  288. sclose_2.TextColor3 = Color3.new(1, 1, 1)
  289. sclose_2.TextScaled = true
  290. sclose_2.TextSize = 14
  291. sclose_2.TextWrapped = true
  292.  
  293. -- Scripts
Add Comment
Please, Sign In to add comment