ITzMat

Untitled

Oct 31st, 2017
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.99 KB | None | 0 0
  1. local BaconExploitzGui = Instance.new("ScreenGui")
  2. local LoginFrame = Instance.new("Frame")
  3. local board1 = Instance.new("Frame")
  4. local board2 = Instance.new("Frame")
  5. local title = Instance.new("TextLabel")
  6. local version = Instance.new("TextLabel")
  7. local board3 = Instance.new("Frame")
  8. local credits = Instance.new("TextLabel")
  9. local userbox = Instance.new("TextBox")
  10. local passbox = Instance.new("TextBox")
  11. local submit = Instance.new("TextButton")
  12. local MainFrame = Instance.new("Frame")
  13. local mboard1 = Instance.new("Frame")
  14. local mboard2 = Instance.new("Frame")
  15. local mtitle = Instance.new("TextLabel")
  16. local exebut = Instance.new("TextButton")
  17. local exebut_2 = Instance.new("TextButton")
  18. local mversion = Instance.new("TextLabel")
  19. local mboard3 = Instance.new("Frame")
  20. local mcredits = Instance.new("TextLabel")
  21. local Image1 = Instance.new("ImageLabel")
  22. local Image2 = Instance.new("ImageLabel")
  23. local ScriptFrame = Instance.new("Frame")
  24. local sboard1 = Instance.new("Frame")
  25. local stitle = Instance.new("TextLabel")
  26. local sboard2 = Instance.new("Frame")
  27. local scredits = Instance.new("TextLabel")
  28. local sversion = Instance.new("TextLabel")
  29. local stitle2 = Instance.new("TextLabel")
  30. local gbv3 = Instance.new("TextButton")
  31.  
  32. -- Properties
  33.  
  34. BaconExploitzGui.Name = "BaconExploitzGui"
  35. BaconExploitzGui.Parent = game.StarterGui
  36.  
  37. LoginFrame.Name = "LoginFrame"
  38. LoginFrame.Parent = BaconExploitzGui
  39. LoginFrame.Active = true
  40. LoginFrame.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  41. LoginFrame.BackgroundTransparency = 0.5
  42. LoginFrame.Position = UDim2.new(0, 0, 0, 110)
  43. LoginFrame.Size = UDim2.new(0, 285, 0, 370)
  44.  
  45. board1.Name = "board1"
  46. board1.Parent = LoginFrame
  47. board1.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  48. board1.Size = UDim2.new(0, 285, 0, 25)
  49.  
  50. board2.Name = "board2"
  51. board2.Parent = LoginFrame
  52. board2.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  53. board2.Position = UDim2.new(0, 0, 0, 30)
  54. board2.Size = UDim2.new(0, 285, 0, 5)
  55.  
  56. title.Name = "title"
  57. title.Parent = LoginFrame
  58. title.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  59. title.BorderSizePixel = 0
  60. title.Size = UDim2.new(0, 253, 0, 22)
  61. title.Font = Enum.Font.SciFi
  62. title.FontSize = Enum.FontSize.Size14
  63. title.Text = "BaconExploitz Gui"
  64. title.TextColor3 = Color3.new(0.333333, 1, 1)
  65. title.TextScaled = true
  66. title.TextSize = 14
  67. title.TextWrapped = true
  68. title.TextXAlignment = Enum.TextXAlignment.Left
  69.  
  70. version.Name = "version"
  71. version.Parent = LoginFrame
  72. version.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  73. version.BorderSizePixel = 0
  74. version.Position = UDim2.new(0, 264, 0, 0)
  75. version.Size = UDim2.new(0, 21, 0, 22)
  76. version.Font = Enum.Font.SciFi
  77. version.FontSize = Enum.FontSize.Size14
  78. version.Text = "V1"
  79. version.TextColor3 = Color3.new(0.333333, 1, 1)
  80. version.TextScaled = true
  81. version.TextSize = 14
  82. version.TextWrapped = true
  83.  
  84. board3.Name = "board3"
  85. board3.Parent = LoginFrame
  86. board3.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  87. board3.Position = UDim2.new(0, 0, 0, 345)
  88. board3.Size = UDim2.new(0, 285, 0, 25)
  89.  
  90. credits.Name = "credits"
  91. credits.Parent = LoginFrame
  92. credits.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  93. credits.BorderSizePixel = 0
  94. credits.Position = UDim2.new(0, 0, 0, 348)
  95. credits.Size = UDim2.new(0, 143, 0, 22)
  96. credits.Font = Enum.Font.SciFi
  97. credits.FontSize = Enum.FontSize.Size14
  98. credits.Text = "Made By NoobExploitz"
  99. credits.TextColor3 = Color3.new(0.333333, 1, 1)
  100. credits.TextSize = 14
  101. credits.TextWrapped = true
  102. credits.TextXAlignment = Enum.TextXAlignment.Left
  103.  
  104. userbox.Name = "userbox"
  105. userbox.Parent = LoginFrame
  106. userbox.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  107. userbox.Position = UDim2.new(0, 0, 0, 109)
  108. userbox.Size = UDim2.new(0, 285, 0, 24)
  109. userbox.Font = Enum.Font.SciFi
  110. userbox.FontSize = Enum.FontSize.Size14
  111. userbox.Text = "Username"
  112. userbox.TextColor3 = Color3.new(0.333333, 1, 1)
  113. userbox.TextScaled = true
  114. userbox.TextSize = 14
  115. userbox.TextWrapped = true
  116. userbox.TextXAlignment = Enum.TextXAlignment.Left
  117.  
  118. passbox.Name = "passbox"
  119. passbox.Parent = LoginFrame
  120. passbox.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  121. passbox.Position = UDim2.new(0, 0, 0, 173)
  122. passbox.Size = UDim2.new(0, 285, 0, 24)
  123. passbox.Font = Enum.Font.SciFi
  124. passbox.FontSize = Enum.FontSize.Size14
  125. passbox.Text = "Password"
  126. passbox.TextColor3 = Color3.new(0.333333, 1, 1)
  127. passbox.TextScaled = true
  128. passbox.TextSize = 14
  129. passbox.TextWrapped = true
  130. passbox.TextXAlignment = Enum.TextXAlignment.Left
  131.  
  132. submit.Name = "submit"
  133. submit.Parent = LoginFrame
  134. submit.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  135. submit.Position = UDim2.new(0, 27, 0, 251)
  136. submit.Size = UDim2.new(0, 200, 0, 50)
  137. submit.Font = Enum.Font.SciFi
  138. submit.FontSize = Enum.FontSize.Size14
  139. submit.Text = "Submit"
  140. submit.TextColor3 = Color3.new(0.333333, 1, 1)
  141. submit.TextScaled = true
  142. submit.TextSize = 14
  143. submit.TextWrapped = true
  144.  
  145. submit.MouseButton1Down:connect(function()
  146. LoginFrame.Visible = false
  147. MainFrame.Visible = true
  148. end)
  149.  
  150.  
  151.  
  152. MainFrame.Name = "MainFrame"
  153. MainFrame.Parent = BaconExploitzGui
  154. MainFrame.Active = true
  155. MainFrame.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  156. MainFrame.BackgroundTransparency = 0.5
  157. MainFrame.Draggable = true
  158. MainFrame.Position = UDim2.new(0, 398, 0, 65)
  159. MainFrame.Selectable = true
  160. MainFrame.Size = UDim2.new(0, 818, 0, 493)
  161. MainFrame.Visible = false
  162.  
  163. mboard1.Name = "mboard1"
  164. mboard1.Parent = MainFrame
  165. mboard1.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  166. mboard1.Size = UDim2.new(0, 818, 0, 43)
  167.  
  168. mboard2.Name = "mboard2"
  169. mboard2.Parent = MainFrame
  170. mboard2.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  171. mboard2.Position = UDim2.new(0, 0, 0, 50)
  172. mboard2.Size = UDim2.new(0, 818, 0, 4)
  173.  
  174. mtitle.Name = "mtitle"
  175. mtitle.Parent = MainFrame
  176. mtitle.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  177. mtitle.BorderSizePixel = 0
  178. mtitle.Size = UDim2.new(0, 269, 0, 39)
  179. mtitle.Font = Enum.Font.SciFi
  180. mtitle.FontSize = Enum.FontSize.Size14
  181. mtitle.Text = "BaconExploitz Gui"
  182. mtitle.TextColor3 = Color3.new(0.333333, 1, 1)
  183. mtitle.TextScaled = true
  184. mtitle.TextSize = 14
  185. mtitle.TextWrapped = true
  186.  
  187. exebut.Name = "exebut"
  188. exebut.Parent = MainFrame
  189. exebut.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  190. exebut.BackgroundTransparency = 0.5
  191. exebut.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  192. exebut.BorderSizePixel = 4
  193. exebut.Position = UDim2.new(0, 0, 0, 273)
  194. exebut.Size = UDim2.new(0, 295, 0, 68)
  195. exebut.Font = Enum.Font.SciFi
  196. exebut.FontSize = Enum.FontSize.Size36
  197. exebut.Text = "Executor"
  198. exebut.TextColor3 = Color3.new(0.333333, 1, 1)
  199. exebut.TextSize = 35
  200.  
  201. exebut_2.Name = "exebut_2"
  202. exebut_2.Parent = MainFrame
  203. exebut_2.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  204. exebut_2.BackgroundTransparency = 0.5
  205. exebut_2.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  206. exebut_2.BorderSizePixel = 4
  207. exebut_2.Position = UDim2.new(0, 523, 0, 274)
  208. exebut_2.Size = UDim2.new(0, 295, 0, 68)
  209. exebut_2.Font = Enum.Font.SciFi
  210. exebut_2.FontSize = Enum.FontSize.Size36
  211. exebut_2.Text = "Scripts"
  212. exebut_2.TextColor3 = Color3.new(0.333333, 1, 1)
  213. exebut_2.TextSize = 35
  214.  
  215. mversion.Name = "mversion"
  216. mversion.Parent = MainFrame
  217. mversion.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  218. mversion.BorderSizePixel = 0
  219. mversion.Position = UDim2.new(0, 787, 0, 0)
  220. mversion.Size = UDim2.new(0, 31, 0, 39)
  221. mversion.Font = Enum.Font.SciFi
  222. mversion.FontSize = Enum.FontSize.Size14
  223. mversion.Text = "V1"
  224. mversion.TextColor3 = Color3.new(0.333333, 1, 1)
  225. mversion.TextScaled = true
  226. mversion.TextSize = 14
  227. mversion.TextWrapped = true
  228.  
  229. mboard3.Name = "mboard3"
  230. mboard3.Parent = MainFrame
  231. mboard3.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  232. mboard3.Position = UDim2.new(0, 0, 0, 450)
  233. mboard3.Size = UDim2.new(0, 818, 0, 43)
  234.  
  235. mcredits.Name = "mcredits"
  236. mcredits.Parent = MainFrame
  237. mcredits.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  238. mcredits.BorderSizePixel = 0
  239. mcredits.Position = UDim2.new(0, 0, 0, 454)
  240. mcredits.Size = UDim2.new(0, 269, 0, 39)
  241. mcredits.Font = Enum.Font.SciFi
  242. mcredits.FontSize = Enum.FontSize.Size14
  243. mcredits.Text = "Made By NoobExploitz"
  244. mcredits.TextColor3 = Color3.new(0.333333, 1, 1)
  245. mcredits.TextScaled = true
  246. mcredits.TextSize = 14
  247. mcredits.TextWrapped = true
  248.  
  249. Image1.Name = "Image1"
  250. Image1.Parent = MainFrame
  251. Image1.BackgroundColor3 = Color3.new(1, 1, 1)
  252. Image1.BackgroundTransparency = 1
  253. Image1.Position = UDim2.new(0, 0, 0, 58)
  254. Image1.Size = UDim2.new(0, 196, 0, 168)
  255. Image1.Image = "rbxgameasset://Images/Bacon Hair"
  256.  
  257. Image2.Name = "Image2"
  258. Image2.Parent = MainFrame
  259. Image2.BackgroundColor3 = Color3.new(1, 1, 1)
  260. Image2.BackgroundTransparency = 1
  261. Image2.Position = UDim2.new(0, 311, 0, 199)
  262. Image2.Size = UDim2.new(0, 199, 0, 186)
  263. Image2.Image = "rbxgameasset://Images/Bacon Hair"
  264.  
  265. ScriptFrame.Name = "ScriptFrame"
  266. ScriptFrame.Parent = BaconExploitzGui
  267. ScriptFrame.Active = true
  268. ScriptFrame.BackgroundColor3 = Color3.new(0.223529, 0.223529, 0.223529)
  269. ScriptFrame.Draggable = true
  270. ScriptFrame.Position = UDim2.new(0, 366, 0, 85)
  271. ScriptFrame.Selectable = true
  272. ScriptFrame.Size = UDim2.new(0, 876, 0, 467)
  273. ScriptFrame.Visible = false
  274.  
  275. sboard1.Name = "sboard1"
  276. sboard1.Parent = ScriptFrame
  277. sboard1.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  278. sboard1.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  279. sboard1.BorderSizePixel = 0
  280. sboard1.Size = UDim2.new(0, 876, 0, 50)
  281.  
  282. stitle.Name = "stitle"
  283. stitle.Parent = ScriptFrame
  284. stitle.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  285. stitle.BorderSizePixel = 0
  286. stitle.Size = UDim2.new(0, 200, 0, 50)
  287. stitle.Font = Enum.Font.SciFi
  288. stitle.FontSize = Enum.FontSize.Size24
  289. stitle.Text = "BaconExploitz Gui"
  290. stitle.TextColor3 = Color3.new(0.333333, 1, 1)
  291. stitle.TextScaled = true
  292. stitle.TextSize = 22
  293. stitle.TextWrapped = true
  294.  
  295. sboard2.Name = "sboard2"
  296. sboard2.Parent = ScriptFrame
  297. sboard2.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  298. sboard2.BorderColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  299. sboard2.BorderSizePixel = 0
  300. sboard2.Position = UDim2.new(0, 0, 0, 417)
  301. sboard2.Size = UDim2.new(0, 876, 0, 50)
  302.  
  303. scredits.Name = "scredits"
  304. scredits.Parent = ScriptFrame
  305. scredits.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  306. scredits.BorderSizePixel = 0
  307. scredits.Position = UDim2.new(0, 0, 0, 417)
  308. scredits.Size = UDim2.new(0, 222, 0, 50)
  309. scredits.Font = Enum.Font.SciFi
  310. scredits.FontSize = Enum.FontSize.Size24
  311. scredits.Text = "Made By NoobExploitz"
  312. scredits.TextColor3 = Color3.new(0.333333, 1, 1)
  313. scredits.TextSize = 22
  314. scredits.TextWrapped = true
  315. scredits.TextXAlignment = Enum.TextXAlignment.Left
  316.  
  317. sversion.Name = "sversion"
  318. sversion.Parent = ScriptFrame
  319. sversion.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  320. sversion.BorderSizePixel = 0
  321. sversion.Position = UDim2.new(0, 829, 0, 417)
  322. sversion.Size = UDim2.new(0, 47, 0, 50)
  323. sversion.Font = Enum.Font.SciFi
  324. sversion.FontSize = Enum.FontSize.Size24
  325. sversion.Text = "V1"
  326. sversion.TextColor3 = Color3.new(0.333333, 1, 1)
  327. sversion.TextSize = 22
  328. sversion.TextWrapped = true
  329. sversion.TextXAlignment = Enum.TextXAlignment.Right
  330.  
  331. stitle2.Name = "stitle2"
  332. stitle2.Parent = ScriptFrame
  333. stitle2.BackgroundColor3 = Color3.new(0.666667, 0, 1)
  334. stitle2.BorderSizePixel = 0
  335. stitle2.Position = UDim2.new(0, 676, 0, 0)
  336. stitle2.Size = UDim2.new(0, 200, 0, 50)
  337. stitle2.Font = Enum.Font.SciFi
  338. stitle2.FontSize = Enum.FontSize.Size24
  339. stitle2.Text = "Script Area"
  340. stitle2.TextColor3 = Color3.new(0.333333, 1, 1)
  341. stitle2.TextSize = 22
  342. stitle2.TextWrapped = true
  343. stitle2.TextXAlignment = Enum.TextXAlignment.Right
  344.  
  345. gbv3.Name = "gbv3"
  346. gbv3.Parent = ScriptFrame
  347. gbv3.BackgroundColor3 = Color3.new(0.184314, 0.184314, 0.184314)
  348. gbv3.Position = UDim2.new(0, 0, 0, 82)
  349. gbv3.Size = UDim2.new(0, 200, 0, 50)
  350. gbv3.Font = Enum.Font.SciFi
  351. gbv3.FontSize = Enum.FontSize.Size14
  352. gbv3.Text = "Grab Knife V3"
  353. gbv3.TextColor3 = Color3.new(0.333333, 1, 1)
  354. gbv3.TextScaled = true
  355. gbv3.TextSize = 14
  356. gbv3.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment