Advertisement
FuZe_Bleed

FuZe_Bleed

Nov 12th, 2018
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.25 KB | None | 0 0
  1. local GetUIs = game.CoreGui:GetChildren()
  2.  
  3. for i=1, #GetUIs do
  4. if GetUIs[i].Name == "BloodfestGUI" then
  5. GetUIs[i]:Destroy()
  6. end
  7. end
  8.  
  9. -- Objects
  10.  
  11. local BloodfestGUI = Instance.new("ScreenGui")
  12. local Menu = Instance.new("Frame")
  13. local UpdateLogFrame = Instance.new("Frame")
  14. local NewUpdateInfo = Instance.new("TextLabel")
  15. local NewUpdateDescriptionInfo = Instance.new("TextLabel")
  16. local PreviousUpdateDescriptionInfo = Instance.new("TextLabel")
  17. local PreviousUpdateInfo = Instance.new("TextLabel")
  18. local FunctionsButton = Instance.new("ImageButton")
  19. local FunctionsInfo = Instance.new("TextLabel")
  20. local GUIName = Instance.new("TextLabel")
  21. local UpdateLogButton = Instance.new("ImageButton")
  22. local UpdateLogInfo = Instance.new("TextLabel")
  23. local CreditsButton = Instance.new("ImageButton")
  24. local CreditsInfo = Instance.new("TextLabel")
  25. local FunctionsFrame = Instance.new("Frame")
  26. local AddFunds = Instance.new("ImageButton")
  27. local AddFundsInfo = Instance.new("TextLabel")
  28. local SpawnCash = Instance.new("ImageButton")
  29. local SpawnCashInfo = Instance.new("TextLabel")
  30. local AccessShop = Instance.new("ImageButton")
  31. local AccessShopInfo = Instance.new("TextLabel")
  32. local Respawn = Instance.new("ImageButton")
  33. local RespawnInfo = Instance.new("TextLabel")
  34. local ModWeapons = Instance.new("ImageButton")
  35. local ModWeaponsInfo = Instance.new("TextLabel")
  36. local GodMode = Instance.new("ImageButton")
  37. local GodModeInfo = Instance.new("TextLabel")
  38. local Nuke = Instance.new("ImageButton")
  39. local NukeInfo = Instance.new("TextLabel")
  40. local UnlockSkills = Instance.new("ImageButton")
  41. local UnlockSkillsInfo = Instance.new("TextLabel")
  42. local CreditsFrame = Instance.new("Frame")
  43. local CreatorUser = Instance.new("TextLabel")
  44. local CreatorInfo = Instance.new("TextLabel")
  45. local SponsorInfo = Instance.new("TextLabel")
  46. local SponsorType = Instance.new("TextLabel")
  47. local ToggleGUI = Instance.new("ImageButton")
  48. local ToggleGUIImage = Instance.new("ImageLabel")
  49.  
  50. -- Properties
  51.  
  52. BloodfestGUI.Name = "BloodfestGUI"
  53. BloodfestGUI.Parent = game.CoreGui
  54.  
  55. Menu.Name = "Menu"
  56. Menu.Parent = BloodfestGUI
  57. Menu.BackgroundColor3 = Color3.new(0.239216, 0.207843, 0.207843)
  58. Menu.BackgroundTransparency = 1
  59. Menu.BorderColor3 = Color3.new(0, 0, 0)
  60. Menu.BorderSizePixel = 2
  61. Menu.Position = UDim2.new(0.200000003, 0, 0.150000006, 0)
  62. Menu.Size = UDim2.new(0.600000024, 0, 0.600000024, 0)
  63.  
  64. UpdateLogFrame.Name = "UpdateLogFrame"
  65. UpdateLogFrame.Parent = Menu
  66. UpdateLogFrame.BackgroundColor3 = Color3.new(0.239216, 0.207843, 0.207843)
  67. UpdateLogFrame.BackgroundTransparency = 0.5
  68. UpdateLogFrame.BorderColor3 = Color3.new(0, 0, 0)
  69. UpdateLogFrame.BorderSizePixel = 2
  70. UpdateLogFrame.Size = UDim2.new(1, 0, 1, 0)
  71. UpdateLogFrame.Visible = false
  72. UpdateLogFrame.ZIndex = 2
  73.  
  74. NewUpdateInfo.Name = "NewUpdateInfo"
  75. NewUpdateInfo.Parent = UpdateLogFrame
  76. NewUpdateInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  77. NewUpdateInfo.BackgroundTransparency = 1
  78. NewUpdateInfo.Size = UDim2.new(1, 0, 0.0500000007, 0)
  79. NewUpdateInfo.ZIndex = 3
  80. NewUpdateInfo.Font = Enum.Font.SourceSansBold
  81. NewUpdateInfo.Text = "New Update v1.01:"
  82. NewUpdateInfo.TextColor3 = Color3.new(1, 1, 0)
  83. NewUpdateInfo.TextScaled = true
  84. NewUpdateInfo.TextSize = 14
  85. NewUpdateInfo.TextWrapped = true
  86. NewUpdateInfo.TextXAlignment = Enum.TextXAlignment.Left
  87.  
  88. NewUpdateDescriptionInfo.Name = "NewUpdateDescriptionInfo"
  89. NewUpdateDescriptionInfo.Parent = UpdateLogFrame
  90. NewUpdateDescriptionInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  91. NewUpdateDescriptionInfo.BackgroundTransparency = 1
  92. NewUpdateDescriptionInfo.Position = UDim2.new(0, 0, 0.0599999987, 0)
  93. NewUpdateDescriptionInfo.Size = UDim2.new(1, 0, 0.400000006, 0)
  94. NewUpdateDescriptionInfo.ZIndex = 3
  95. NewUpdateDescriptionInfo.Font = Enum.Font.SourceSansBold
  96. NewUpdateDescriptionInfo.Text = "- God Mode (Infinite Health)\n- Nuke (Kills All Zombies)\n- Mod Weapons Button (Infinite Clips / Rapidfire)\n- Force Spawn In Button (Spawn in at anytime for free)\n- GUI Design Update"
  97. NewUpdateDescriptionInfo.TextColor3 = Color3.new(1, 1, 1)
  98. NewUpdateDescriptionInfo.TextSize = 14
  99. NewUpdateDescriptionInfo.TextWrapped = true
  100. NewUpdateDescriptionInfo.TextXAlignment = Enum.TextXAlignment.Left
  101. NewUpdateDescriptionInfo.TextYAlignment = Enum.TextYAlignment.Top
  102.  
  103. PreviousUpdateDescriptionInfo.Name = "PreviousUpdateDescriptionInfo"
  104. PreviousUpdateDescriptionInfo.Parent = UpdateLogFrame
  105. PreviousUpdateDescriptionInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  106. PreviousUpdateDescriptionInfo.BackgroundTransparency = 1
  107. PreviousUpdateDescriptionInfo.Position = UDim2.new(0, 0, 0.600000024, 0)
  108. PreviousUpdateDescriptionInfo.Size = UDim2.new(1, 0, 0.400000006, 0)
  109. PreviousUpdateDescriptionInfo.ZIndex = 3
  110. PreviousUpdateDescriptionInfo.Font = Enum.Font.SourceSansBold
  111. PreviousUpdateDescriptionInfo.Text = "- GUI Release\n- Add Funds Button\n- Spawn Cash\n- Access Shop"
  112. PreviousUpdateDescriptionInfo.TextColor3 = Color3.new(1, 1, 1)
  113. PreviousUpdateDescriptionInfo.TextSize = 14
  114. PreviousUpdateDescriptionInfo.TextWrapped = true
  115. PreviousUpdateDescriptionInfo.TextXAlignment = Enum.TextXAlignment.Left
  116. PreviousUpdateDescriptionInfo.TextYAlignment = Enum.TextYAlignment.Top
  117.  
  118. PreviousUpdateInfo.Name = "PreviousUpdateInfo"
  119. PreviousUpdateInfo.Parent = UpdateLogFrame
  120. PreviousUpdateInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  121. PreviousUpdateInfo.BackgroundTransparency = 1
  122. PreviousUpdateInfo.Position = UDim2.new(0, 0, 0.529999971, 0)
  123. PreviousUpdateInfo.Size = UDim2.new(1, 0, 0.0500000007, 0)
  124. PreviousUpdateInfo.ZIndex = 3
  125. PreviousUpdateInfo.Font = Enum.Font.SourceSansBold
  126. PreviousUpdateInfo.Text = "Update v1.0:"
  127. PreviousUpdateInfo.TextColor3 = Color3.new(1, 1, 0)
  128. PreviousUpdateInfo.TextScaled = true
  129. PreviousUpdateInfo.TextSize = 14
  130. PreviousUpdateInfo.TextWrapped = true
  131. PreviousUpdateInfo.TextXAlignment = Enum.TextXAlignment.Left
  132.  
  133. FunctionsButton.Name = "FunctionsButton"
  134. FunctionsButton.Parent = Menu
  135. FunctionsButton.BackgroundColor3 = Color3.new(1, 0, 0)
  136. FunctionsButton.BackgroundTransparency = 0.5
  137. FunctionsButton.BorderColor3 = Color3.new(0, 0, 0)
  138. FunctionsButton.BorderSizePixel = 2
  139. FunctionsButton.Position = UDim2.new(1.005, 0, 0, 0)
  140. FunctionsButton.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  141. FunctionsButton.ZIndex = 2
  142. FunctionsButton.Image = "rbxassetid://867235667"
  143. FunctionsButton.ImageColor3 = Color3.new(1, 0, 0)
  144. FunctionsButton.ImageTransparency = 0.5
  145.  
  146. FunctionsInfo.Name = "FunctionsInfo"
  147. FunctionsInfo.Parent = FunctionsButton
  148. FunctionsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  149. FunctionsInfo.BackgroundTransparency = 1
  150. FunctionsInfo.Size = UDim2.new(1, 0, 1, 0)
  151. FunctionsInfo.ZIndex = 3
  152. FunctionsInfo.Font = Enum.Font.SourceSansBold
  153. FunctionsInfo.Text = "Functions"
  154. FunctionsInfo.TextColor3 = Color3.new(1, 1, 1)
  155. FunctionsInfo.TextScaled = true
  156. FunctionsInfo.TextSize = 14
  157. FunctionsInfo.TextWrapped = true
  158.  
  159. GUIName.Name = "GUIName"
  160. GUIName.Parent = Menu
  161. GUIName.BackgroundColor3 = Color3.new(0.239216, 0.207843, 0.207843)
  162. GUIName.BackgroundTransparency = 0.5
  163. GUIName.BorderColor3 = Color3.new(0, 0, 0)
  164. GUIName.BorderSizePixel = 2
  165. GUIName.Position = UDim2.new(0, 0, -0.109999999, 0)
  166. GUIName.Size = UDim2.new(1, 0, 0.100000001, 0)
  167. GUIName.ZIndex = 3
  168. GUIName.Font = Enum.Font.SourceSansBold
  169. GUIName.Text = "Bloodfest GUI v1.01 | Scripted By: FuZe_Bleed"
  170. GUIName.TextColor3 = Color3.new(1, 1, 1)
  171. GUIName.TextScaled = true
  172. GUIName.TextSize = 14
  173. GUIName.TextWrapped = true
  174.  
  175. UpdateLogButton.Name = "UpdateLogButton"
  176. UpdateLogButton.Parent = Menu
  177. UpdateLogButton.BackgroundColor3 = Color3.new(1, 0, 0)
  178. UpdateLogButton.BackgroundTransparency = 0.5
  179. UpdateLogButton.BorderColor3 = Color3.new(0, 0, 0)
  180. UpdateLogButton.BorderSizePixel = 2
  181. UpdateLogButton.Position = UDim2.new(1.005, 0, 0.109999999, 0)
  182. UpdateLogButton.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  183. UpdateLogButton.ZIndex = 2
  184. UpdateLogButton.Image = "rbxassetid://867235667"
  185. UpdateLogButton.ImageColor3 = Color3.new(1, 0, 0)
  186. UpdateLogButton.ImageTransparency = 0.5
  187.  
  188. UpdateLogInfo.Name = "UpdateLogInfo"
  189. UpdateLogInfo.Parent = UpdateLogButton
  190. UpdateLogInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  191. UpdateLogInfo.BackgroundTransparency = 1
  192. UpdateLogInfo.Size = UDim2.new(1, 0, 1, 0)
  193. UpdateLogInfo.ZIndex = 3
  194. UpdateLogInfo.Font = Enum.Font.SourceSansBold
  195. UpdateLogInfo.Text = "Update Log"
  196. UpdateLogInfo.TextColor3 = Color3.new(1, 1, 1)
  197. UpdateLogInfo.TextScaled = true
  198. UpdateLogInfo.TextSize = 14
  199. UpdateLogInfo.TextWrapped = true
  200.  
  201. CreditsButton.Name = "CreditsButton"
  202. CreditsButton.Parent = Menu
  203. CreditsButton.BackgroundColor3 = Color3.new(1, 0, 0)
  204. CreditsButton.BackgroundTransparency = 0.5
  205. CreditsButton.BorderColor3 = Color3.new(0, 0, 0)
  206. CreditsButton.BorderSizePixel = 2
  207. CreditsButton.Position = UDim2.new(1.005, 0, 0.219999999, 0)
  208. CreditsButton.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  209. CreditsButton.ZIndex = 2
  210. CreditsButton.Image = "rbxassetid://867235667"
  211. CreditsButton.ImageColor3 = Color3.new(1, 0, 0)
  212. CreditsButton.ImageTransparency = 0.5
  213.  
  214. CreditsInfo.Name = "CreditsInfo"
  215. CreditsInfo.Parent = CreditsButton
  216. CreditsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  217. CreditsInfo.BackgroundTransparency = 1
  218. CreditsInfo.Size = UDim2.new(1, 0, 1, 0)
  219. CreditsInfo.ZIndex = 3
  220. CreditsInfo.Font = Enum.Font.SourceSansBold
  221. CreditsInfo.Text = "Credits"
  222. CreditsInfo.TextColor3 = Color3.new(1, 1, 1)
  223. CreditsInfo.TextScaled = true
  224. CreditsInfo.TextSize = 14
  225. CreditsInfo.TextWrapped = true
  226.  
  227. FunctionsFrame.Name = "FunctionsFrame"
  228. FunctionsFrame.Parent = Menu
  229. FunctionsFrame.BackgroundColor3 = Color3.new(0.239216, 0.207843, 0.207843)
  230. FunctionsFrame.BackgroundTransparency = 0.5
  231. FunctionsFrame.BorderColor3 = Color3.new(0, 0, 0)
  232. FunctionsFrame.BorderSizePixel = 2
  233. FunctionsFrame.Size = UDim2.new(1, 0, 1, 0)
  234. FunctionsFrame.ZIndex = 2
  235.  
  236. AddFunds.Name = "AddFunds"
  237. AddFunds.Parent = FunctionsFrame
  238. AddFunds.BackgroundColor3 = Color3.new(1, 0, 0)
  239. AddFunds.BackgroundTransparency = 0.5
  240. AddFunds.BorderColor3 = Color3.new(0, 0, 0)
  241. AddFunds.Position = UDim2.new(0.00999999978, 0, 0.00999999978, 0)
  242. AddFunds.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  243. AddFunds.ZIndex = 3
  244. AddFunds.Image = "rbxassetid://867235667"
  245. AddFunds.ImageColor3 = Color3.new(1, 0, 0)
  246. AddFunds.ImageTransparency = 0.5
  247.  
  248. AddFundsInfo.Name = "AddFundsInfo"
  249. AddFundsInfo.Parent = AddFunds
  250. AddFundsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  251. AddFundsInfo.BackgroundTransparency = 1
  252. AddFundsInfo.Size = UDim2.new(1, 0, 1, 0)
  253. AddFundsInfo.ZIndex = 3
  254. AddFundsInfo.Font = Enum.Font.SourceSansLight
  255. AddFundsInfo.Text = "Add Free Funds"
  256. AddFundsInfo.TextColor3 = Color3.new(1, 1, 1)
  257. AddFundsInfo.TextScaled = true
  258. AddFundsInfo.TextSize = 14
  259. AddFundsInfo.TextWrapped = true
  260.  
  261. SpawnCash.Name = "SpawnCash"
  262. SpawnCash.Parent = FunctionsFrame
  263. SpawnCash.BackgroundColor3 = Color3.new(1, 0, 0)
  264. SpawnCash.BackgroundTransparency = 0.5
  265. SpawnCash.BorderColor3 = Color3.new(0, 0, 0)
  266. SpawnCash.Position = UDim2.new(0.00999999978, 0, 0.119999997, 0)
  267. SpawnCash.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  268. SpawnCash.ZIndex = 3
  269. SpawnCash.Image = "rbxassetid://867235667"
  270. SpawnCash.ImageColor3 = Color3.new(1, 0, 0)
  271. SpawnCash.ImageTransparency = 0.5
  272.  
  273. SpawnCashInfo.Name = "SpawnCashInfo"
  274. SpawnCashInfo.Parent = SpawnCash
  275. SpawnCashInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  276. SpawnCashInfo.BackgroundTransparency = 1
  277. SpawnCashInfo.Size = UDim2.new(1, 0, 1, 0)
  278. SpawnCashInfo.ZIndex = 3
  279. SpawnCashInfo.Font = Enum.Font.SourceSansLight
  280. SpawnCashInfo.Text = "Spawn Cash"
  281. SpawnCashInfo.TextColor3 = Color3.new(1, 1, 1)
  282. SpawnCashInfo.TextScaled = true
  283. SpawnCashInfo.TextSize = 14
  284. SpawnCashInfo.TextWrapped = true
  285.  
  286. AccessShop.Name = "AccessShop"
  287. AccessShop.Parent = FunctionsFrame
  288. AccessShop.BackgroundColor3 = Color3.new(1, 0, 0)
  289. AccessShop.BackgroundTransparency = 0.5
  290. AccessShop.BorderColor3 = Color3.new(0, 0, 0)
  291. AccessShop.Position = UDim2.new(0.00999999978, 0, 0.230000004, 0)
  292. AccessShop.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  293. AccessShop.ZIndex = 3
  294. AccessShop.Image = "rbxassetid://867235667"
  295. AccessShop.ImageColor3 = Color3.new(1, 0, 0)
  296. AccessShop.ImageTransparency = 0.5
  297.  
  298. AccessShopInfo.Name = "AccessShopInfo"
  299. AccessShopInfo.Parent = AccessShop
  300. AccessShopInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  301. AccessShopInfo.BackgroundTransparency = 1
  302. AccessShopInfo.Size = UDim2.new(1, 0, 1, 0)
  303. AccessShopInfo.ZIndex = 3
  304. AccessShopInfo.Font = Enum.Font.SourceSansLight
  305. AccessShopInfo.Text = "Access Shop"
  306. AccessShopInfo.TextColor3 = Color3.new(1, 1, 1)
  307. AccessShopInfo.TextScaled = true
  308. AccessShopInfo.TextSize = 14
  309. AccessShopInfo.TextWrapped = true
  310.  
  311. Respawn.Name = "Respawn"
  312. Respawn.Parent = FunctionsFrame
  313. Respawn.BackgroundColor3 = Color3.new(1, 0, 0)
  314. Respawn.BackgroundTransparency = 0.5
  315. Respawn.BorderColor3 = Color3.new(0, 0, 0)
  316. Respawn.Position = UDim2.new(0.00999999978, 0, 0.340000004, 0)
  317. Respawn.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  318. Respawn.ZIndex = 3
  319. Respawn.Image = "rbxassetid://867235667"
  320. Respawn.ImageColor3 = Color3.new(1, 0, 0)
  321. Respawn.ImageTransparency = 0.5
  322.  
  323. RespawnInfo.Name = "RespawnInfo"
  324. RespawnInfo.Parent = Respawn
  325. RespawnInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  326. RespawnInfo.BackgroundTransparency = 1
  327. RespawnInfo.Size = UDim2.new(1, 0, 1, 0)
  328. RespawnInfo.ZIndex = 3
  329. RespawnInfo.Font = Enum.Font.SourceSansLight
  330. RespawnInfo.Text = "Force Spawn In"
  331. RespawnInfo.TextColor3 = Color3.new(1, 1, 1)
  332. RespawnInfo.TextScaled = true
  333. RespawnInfo.TextSize = 14
  334. RespawnInfo.TextWrapped = true
  335.  
  336. ModWeapons.Name = "ModWeapons"
  337. ModWeapons.Parent = FunctionsFrame
  338. ModWeapons.BackgroundColor3 = Color3.new(1, 0, 0)
  339. ModWeapons.BackgroundTransparency = 0.5
  340. ModWeapons.BorderColor3 = Color3.new(0, 0, 0)
  341. ModWeapons.Position = UDim2.new(0.00999999978, 0, 0.449999988, 0)
  342. ModWeapons.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  343. ModWeapons.ZIndex = 3
  344. ModWeapons.Image = "rbxassetid://867235667"
  345. ModWeapons.ImageColor3 = Color3.new(1, 0, 0)
  346. ModWeapons.ImageTransparency = 0.5
  347.  
  348. ModWeaponsInfo.Name = "ModWeaponsInfo"
  349. ModWeaponsInfo.Parent = ModWeapons
  350. ModWeaponsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  351. ModWeaponsInfo.BackgroundTransparency = 1
  352. ModWeaponsInfo.Size = UDim2.new(1, 0, 1, 0)
  353. ModWeaponsInfo.ZIndex = 3
  354. ModWeaponsInfo.Font = Enum.Font.SourceSansLight
  355. ModWeaponsInfo.Text = "Mod Weapons"
  356. ModWeaponsInfo.TextColor3 = Color3.new(1, 1, 1)
  357. ModWeaponsInfo.TextScaled = true
  358. ModWeaponsInfo.TextSize = 14
  359. ModWeaponsInfo.TextWrapped = true
  360.  
  361. GodMode.Name = "GodMode"
  362. GodMode.Parent = FunctionsFrame
  363. GodMode.BackgroundColor3 = Color3.new(1, 0, 0)
  364. GodMode.BackgroundTransparency = 0.5
  365. GodMode.BorderColor3 = Color3.new(0, 0, 0)
  366. GodMode.Position = UDim2.new(0.00999999978, 0, 0.560000002, 0)
  367. GodMode.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  368. GodMode.ZIndex = 3
  369. GodMode.Image = "rbxassetid://867235667"
  370. GodMode.ImageColor3 = Color3.new(1, 0, 0)
  371. GodMode.ImageTransparency = 0.5
  372.  
  373. GodModeInfo.Name = "GodModeInfo"
  374. GodModeInfo.Parent = GodMode
  375. GodModeInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  376. GodModeInfo.BackgroundTransparency = 1
  377. GodModeInfo.Size = UDim2.new(1, 0, 1, 0)
  378. GodModeInfo.ZIndex = 3
  379. GodModeInfo.Font = Enum.Font.SourceSansLight
  380. GodModeInfo.Text = "God Mode"
  381. GodModeInfo.TextColor3 = Color3.new(1, 1, 1)
  382. GodModeInfo.TextScaled = true
  383. GodModeInfo.TextSize = 14
  384. GodModeInfo.TextWrapped = true
  385.  
  386. Nuke.Name = "Nuke"
  387. Nuke.Parent = FunctionsFrame
  388. Nuke.BackgroundColor3 = Color3.new(1, 0, 0)
  389. Nuke.BackgroundTransparency = 0.5
  390. Nuke.BorderColor3 = Color3.new(0, 0, 0)
  391. Nuke.Position = UDim2.new(0.00999999978, 0, 0.670000017, 0)
  392. Nuke.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  393. Nuke.ZIndex = 3
  394. Nuke.Image = "rbxassetid://867235667"
  395. Nuke.ImageColor3 = Color3.new(1, 0, 0)
  396. Nuke.ImageTransparency = 0.5
  397.  
  398. NukeInfo.Name = "NukeInfo"
  399. NukeInfo.Parent = Nuke
  400. NukeInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  401. NukeInfo.BackgroundTransparency = 1
  402. NukeInfo.Size = UDim2.new(1, 0, 1, 0)
  403. NukeInfo.ZIndex = 3
  404. NukeInfo.Font = Enum.Font.SourceSansLight
  405. NukeInfo.Text = "Nuke"
  406. NukeInfo.TextColor3 = Color3.new(1, 1, 1)
  407. NukeInfo.TextScaled = true
  408. NukeInfo.TextSize = 14
  409. NukeInfo.TextWrapped = true
  410.  
  411. UnlockSkills.Name = "UnlockSkills"
  412. UnlockSkills.Parent = FunctionsFrame
  413. UnlockSkills.BackgroundColor3 = Color3.new(1, 0, 0)
  414. UnlockSkills.BackgroundTransparency = 0.5
  415. UnlockSkills.BorderColor3 = Color3.new(0, 0, 0)
  416. UnlockSkills.Position = UDim2.new(0.00999999978, 0, 0.779999971, 0)
  417. UnlockSkills.Size = UDim2.new(0.200000003, 0, 0.100000001, 0)
  418. UnlockSkills.ZIndex = 3
  419. UnlockSkills.Image = "rbxassetid://867235667"
  420. UnlockSkills.ImageColor3 = Color3.new(1, 0, 0)
  421. UnlockSkills.ImageTransparency = 0.5
  422.  
  423. UnlockSkillsInfo.Name = "UnlockSkillsInfo"
  424. UnlockSkillsInfo.Parent = UnlockSkills
  425. UnlockSkillsInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  426. UnlockSkillsInfo.BackgroundTransparency = 1
  427. UnlockSkillsInfo.Size = UDim2.new(1, 0, 1, 0)
  428. UnlockSkillsInfo.ZIndex = 3
  429. UnlockSkillsInfo.Font = Enum.Font.SourceSansLight
  430. UnlockSkillsInfo.Text = "Unlock All Skills"
  431. UnlockSkillsInfo.TextColor3 = Color3.new(1, 1, 1)
  432. UnlockSkillsInfo.TextScaled = true
  433. UnlockSkillsInfo.TextSize = 14
  434. UnlockSkillsInfo.TextWrapped = true
  435.  
  436. CreditsFrame.Name = "CreditsFrame"
  437. CreditsFrame.Parent = Menu
  438. CreditsFrame.BackgroundColor3 = Color3.new(0.239216, 0.207843, 0.207843)
  439. CreditsFrame.BackgroundTransparency = 0.5
  440. CreditsFrame.BorderColor3 = Color3.new(0, 0, 0)
  441. CreditsFrame.BorderSizePixel = 2
  442. CreditsFrame.Size = UDim2.new(1, 0, 1, 0)
  443. CreditsFrame.Visible = false
  444. CreditsFrame.ZIndex = 2
  445.  
  446. CreatorUser.Name = "CreatorUser"
  447. CreatorUser.Parent = CreditsFrame
  448. CreatorUser.BackgroundColor3 = Color3.new(1, 1, 1)
  449. CreatorUser.BackgroundTransparency = 1
  450. CreatorUser.Size = UDim2.new(1, 0, 0.0500000007, 0)
  451. CreatorUser.ZIndex = 3
  452. CreatorUser.Font = Enum.Font.SourceSansBold
  453. CreatorUser.Text = "Developed By: FuZe_Bleed"
  454. CreatorUser.TextColor3 = Color3.new(1, 1, 0)
  455. CreatorUser.TextScaled = true
  456. CreatorUser.TextSize = 14
  457. CreatorUser.TextWrapped = true
  458. CreatorUser.TextXAlignment = Enum.TextXAlignment.Left
  459.  
  460. CreatorInfo.Name = "CreatorInfo"
  461. CreatorInfo.Parent = CreditsFrame
  462. CreatorInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  463. CreatorInfo.BackgroundTransparency = 1
  464. CreatorInfo.Position = UDim2.new(0, 0, 0.0599999987, 0)
  465. CreatorInfo.Size = UDim2.new(1, 0, 0.400000006, 0)
  466. CreatorInfo.ZIndex = 3
  467. CreatorInfo.Font = Enum.Font.SourceSansBold
  468. CreatorInfo.Text = "As a scripter, I work hard to make these menus come true. We sponsor ProtoSmasher due to it's high quality program. Thank you all for your help. I will work hard to find new abilities to release to the community."
  469. CreatorInfo.TextColor3 = Color3.new(1, 1, 1)
  470. CreatorInfo.TextSize = 14
  471. CreatorInfo.TextWrapped = true
  472. CreatorInfo.TextXAlignment = Enum.TextXAlignment.Left
  473. CreatorInfo.TextYAlignment = Enum.TextYAlignment.Top
  474.  
  475. SponsorInfo.Name = "SponsorInfo"
  476. SponsorInfo.Parent = CreditsFrame
  477. SponsorInfo.BackgroundColor3 = Color3.new(1, 1, 1)
  478. SponsorInfo.BackgroundTransparency = 1
  479. SponsorInfo.Position = UDim2.new(0, 0, 0.600000024, 0)
  480. SponsorInfo.Size = UDim2.new(1, 0, 0.400000006, 0)
  481. SponsorInfo.ZIndex = 3
  482. SponsorInfo.Font = Enum.Font.SourceSansBold
  483. SponsorInfo.Text = "This menu was reborn 11/16/18 updates will happen"
  484. SponsorInfo.TextColor3 = Color3.new(1, 1, 1)
  485. SponsorInfo.TextSize = 14
  486. SponsorInfo.TextWrapped = true
  487. SponsorInfo.TextXAlignment = Enum.TextXAlignment.Left
  488. SponsorInfo.TextYAlignment = Enum.TextYAlignment.Top
  489.  
  490. SponsorType.Name = "SponsorType"
  491. SponsorType.Parent = CreditsFrame
  492. SponsorType.BackgroundColor3 = Color3.new(1, 1, 1)
  493. SponsorType.BackgroundTransparency = 1
  494. SponsorType.Position = UDim2.new(0, 0, 0.529999971, 0)
  495. SponsorType.Size = UDim2.new(1, 0, 0.0500000007, 0)
  496. SponsorType.ZIndex = 3
  497. SponsorType.Font = Enum.Font.SourceSansBold
  498. SponsorType.Text = "Sponsored: Protosmasher (http://protosmasher.net/)"
  499. SponsorType.TextColor3 = Color3.new(1, 1, 0)
  500. SponsorType.TextScaled = true
  501. SponsorType.TextSize = 14
  502. SponsorType.TextWrapped = true
  503. SponsorType.TextXAlignment = Enum.TextXAlignment.Left
  504.  
  505. ToggleGUI.Name = "ToggleGUI"
  506. ToggleGUI.Parent = BloodfestGUI
  507. ToggleGUI.BackgroundColor3 = Color3.new(1, 1, 1)
  508. ToggleGUI.BackgroundTransparency = 1
  509. ToggleGUI.Position = UDim2.new(0.00700000022, 0, 0.649999976, 0)
  510. ToggleGUI.Size = UDim2.new(0, 60, 0, 60)
  511. ToggleGUI.Image = "rbxassetid://867177861"
  512. ToggleGUI.ImageColor3 = Color3.new(0.239216, 0.207843, 0.207843)
  513.  
  514. ToggleGUIImage.Name = "ToggleGUIImage"
  515. ToggleGUIImage.Parent = ToggleGUI
  516. ToggleGUIImage.BackgroundColor3 = Color3.new(1, 1, 1)
  517. ToggleGUIImage.BackgroundTransparency = 1
  518. ToggleGUIImage.Size = UDim2.new(1, 0, 1, 0)
  519. ToggleGUIImage.Image = "rbxassetid://35924240"
  520.  
  521. local Prefix = "[Bloodfest GUI]: "
  522.  
  523. ToggleGUI.MouseButton1Click:connect(function()
  524. if Menu.Visible == false then
  525. Menu.Visible = true
  526. else
  527. Menu.Visible = false
  528. end
  529. end)
  530.  
  531. FunctionsButton.MouseButton1Click:connect(function()
  532. ShowFrame("FunctionsFrame")
  533. end)
  534.  
  535. UpdateLogButton.MouseButton1Click:connect(function()
  536. ShowFrame("UpdateLogFrame")
  537. end)
  538.  
  539. CreditsButton.MouseButton1Click:connect(function()
  540. ShowFrame("CreditsFrame")
  541. end)
  542.  
  543. GodMode.MouseButton1Click:connect(function()
  544. game.Workspace.Remotes.PerkMisc:FireServer(999999999,999999999)
  545. wait()
  546. for i=1, 10000 do
  547. game.Workspace.Remotes.Heal:FireServer()
  548. end
  549. end)
  550.  
  551. Nuke.MouseButton1Click:connect(function()
  552. local Enemies = game.Workspace.Enemies:GetChildren()
  553.  
  554. for i=1, #Enemies do
  555. if Enemies[i].ClassName == "Model" then
  556. for n=1, 100 do
  557. game.Workspace.Remotes.DMG:FireServer("Punch", Enemies[i])
  558. end
  559. end
  560. end
  561. end)
  562.  
  563. AddFunds.MouseButton1Click:connect(function()
  564. AddCash()
  565. end)
  566.  
  567. SpawnCash.MouseButton1Click:connect(function()
  568. for i=1, 100 do
  569. game.Workspace.Remotes.DropMoney:FireServer()
  570. end
  571.  
  572. end)
  573.  
  574. AccessShop.MouseButton1Click:connect(function()
  575. ShowShopGUI()
  576. end)
  577.  
  578. Respawn.MouseButton1Click:connect(function()
  579. game.Workspace.Remotes.LobbyTele:InvokeServer()
  580. end)
  581.  
  582. UnlockSkills.MouseButton1Click:connect(function()
  583. local GetClassSets = game.Players.LocalPlayer.PlayerGui.screen.PerksChar.Class.Contents.ClassInformation.ChangeSkills:GetChildren()
  584. for i=1, #GetClassSets do
  585. if GetClassSets[i].ClassName == "ScrollingFrame" then
  586. local GetSkillSets = GetClassSets[i]:GetChildren()
  587.  
  588. for n=1, #GetSkillSets do
  589. if GetSkillSets[n]:FindFirstChild("lvl") ~= nil then
  590. GetSkillSets[n]:FindFirstChild("lvl").Value = 0
  591. AlertLog("Skillsets Unlocked!")
  592. end
  593. end
  594. end
  595. end
  596. end)
  597.  
  598. ModWeapons.MouseButton1Click:connect(function()
  599. local GetBackpackWeapons = game.Players.LocalPlayer.Backpack:GetChildren()
  600.  
  601. for i=1, #GetBackpackWeapons do
  602. if GetBackpackWeapons[i].ClassName == "Tool" then
  603. if GetBackpackWeapons[i]:FindFirstChild("Stats") then
  604. GetBackpackWeapons[i]:FindFirstChild("Stats").Firerate.Value = 0.01
  605. GetBackpackWeapons[i]:FindFirstChild("Stats").ClipSize.Value = 999999
  606. GetBackpackWeapons[i]:FindFirstChild("Stats").Range.Value = 999999
  607. GetBackpackWeapons[i]:FindFirstChild("Stats").Pierce.Value = 999
  608. end
  609. end
  610. end
  611.  
  612. local GetEquippedWeapons = game.Players.LocalPlayer.Character:GetChildren()
  613.  
  614. for i=1, #GetEquippedWeapons do
  615. if GetEquippedWeapons[i].ClassName == "Tool" then
  616. if GetEquippedWeapons[i]:FindFirstChild("Stats") then
  617. GetEquippedWeapons[i]:FindFirstChild("Stats").Firerate.Value = 0.01
  618. GetEquippedWeapons[i]:FindFirstChild("Stats").ClipSize.Value = 999999
  619. GetEquippedWeapons[i]:FindFirstChild("Stats").Range.Value = 999999
  620. GetEquippedWeapons[i]:FindFirstChild("Stats").Pierce.Value = 999
  621. GetEquippedWeapons[i]:FindFirstChild("Stats").MeleeSpeed.Value = 5
  622. end
  623. end
  624. end
  625. end)
  626.  
  627. function HideFrames()
  628. local GetFrames = Menu:GetChildren()
  629.  
  630. for i=1, #GetFrames do
  631. if GetFrames[i].ClassName == "Frame" then
  632. GetFrames[i].Visible = false
  633. end
  634. end
  635. end
  636.  
  637. function ShowFrame(FrameName)
  638. HideFrames()
  639. Menu:FindFirstChild(FrameName).Visible = true
  640. end
  641.  
  642. function ShowShopGUI()
  643. if game.Players.LocalPlayer.PlayerGui.screen:FindFirstChild("Shop1") ~= nil then
  644. Menu.Visible = false
  645. game.Players.LocalPlayer.PlayerGui.screen:FindFirstChild("Shop1").Visible = true
  646. else
  647. AlertLog("ShopGUI not found! Contact Creator For Update/Fix!")
  648. end
  649.  
  650. end
  651.  
  652. function AddCash()
  653. game.Workspace.Remotes.BuyGun:FireServer("M60",true)
  654. end
  655.  
  656. function Log(Message)
  657. print(Prefix..""..Message)
  658. end
  659.  
  660. function AlertLog(Message)
  661. warn(Prefix..""..Message)
  662. end
  663.  
  664. function FirstLoad()
  665. Menu.Visible = false
  666. ShowFrame("UpdateLogFrame")
  667. end
  668.  
  669. FirstLoad()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement