Advertisement
elpapas

Untitled

Feb 2nd, 2024
1,522
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.93 KB | None | 0 0
  1. Mortem Metallum Nuke Script, Dupe, Minigun Crossbow, etc.
  2.  
  3. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  4. local Window = Library.CreateLib("Mortem Metallum [Alpha]", "Ocean")
  5.  
  6. local Main = Window:NewTab("Nuke")
  7. local Section = Main:NewSection("Step 1")
  8.  
  9. Section:NewButton("Dupe C4", "", function()
  10. local plr = game.Players.LocalPlayer
  11. local dupe = {}
  12.  
  13. for i=1,200 do table.insert(dupe,tonumber(12)) end -- IF YOU WANT MORE OR LESS THAN 80 AMMO, CHANGE THE (80) TO WHATEVER NUMBER
  14.  
  15. settings().Network.IncomingReplicationLag = math.huge
  16. wait()
  17. for i,v in pairs(dupe) do
  18. local h = v
  19.  
  20. local args = {
  21. [1] = h,
  22. [2] = "0:0:0:0"
  23. }game:GetService("ReplicatedStorage").Item:FireServer(unpack(args))
  24. end
  25. wait(0.5)
  26. settings().Network.IncomingReplicationLag = 0
  27. wait(#dupe/19)
  28. for i,v in pairs(plr.Backpack:GetChildren()) do
  29. if v.Name == "Crossbow" or v.Name == "Fire bomb" or v.Name == "Grenade" or v.Name == "Bear trap" then
  30. v:Destroy()
  31. end
  32. end
  33. end)
  34.  
  35. local Section = Main:NewSection("Step 2")
  36.  
  37. Section:NewButton("Toggle", "Starts the action", function(state)
  38. local player = game.Players.LocalPlayer
  39. local char = player.Character
  40. local backpack = player:WaitForChild("Backpack")
  41.  
  42. for _, item in pairs(backpack:GetChildren()) do
  43. if item.Name == "C4" then
  44. item.Parent = char
  45. wait(0.01)
  46. mouse1click()
  47. end
  48. end
  49. end)
  50.  
  51. local Tab = Window:NewTab("Minigun")
  52. local Section = Tab:NewSection("Step 1")
  53. Section:NewButton("Dupe Crossbows", "Execute this while in the select weapon menu", function()
  54. local plr = game.Players.LocalPlayer
  55. local dupe = {}
  56.  
  57. for i=1,80 do table.insert(dupe,tonumber(12)) end -- IF YOU WANT MORE OR LESS THAN 80 AMMO, CHANGE THE (80) TO WHATEVER NUMBER
  58.  
  59. settings().Network.IncomingReplicationLag = math.huge
  60. wait()
  61. for i,v in pairs(dupe) do
  62. local h = v
  63.  
  64. local args = {
  65. [1] = h,
  66. [2] = "0:0:0:0"
  67. }game:GetService("ReplicatedStorage").Item:FireServer(unpack(args))
  68. end
  69. wait(0.5)
  70. settings().Network.IncomingReplicationLag = 0
  71. wait(#dupe/19)
  72. for i,v in pairs(plr.Backpack:GetChildren()) do
  73. if v.Name == "C4" or v.Name == "Fire bomb" or v.Name == "Grenade" or v.Name == "Bear trap" then
  74. v:Destroy()
  75. end
  76. end
  77. end)
  78. local Section = Tab:NewSection("Step 2")
  79. Section:NewButton("Mingun Crossbows", "Execute this ONCE", function()
  80. local plr = game.Players.LocalPlayer
  81. local us = game:GetService("UserInputService")
  82. local m = plr:GetMouse()
  83.  
  84. -- T: minigun
  85. -- G: reload all
  86. -- V: shoot all
  87. -- C: shoot 3 at once (insta-kill bodyshot)
  88.  
  89. local gunning = false
  90. us.InputBegan:Connect(function(key,pro)
  91. if not pro then
  92. if key.KeyCode == Enum.KeyCode.T then
  93. gunning = not gunning
  94.  
  95. if gunning then
  96. for i,v in pairs(plr.Backpack:GetChildren()) do
  97. if v:FindFirstChild("Reloaded") and v.Reloaded.Value then
  98. if not gunning then return end
  99.  
  100. plr.Character.Humanoid:EquipTool(v)
  101. mouse1click()
  102. wait()
  103. end
  104. end
  105. end
  106. elseif key.KeyCode == Enum.KeyCode.G then
  107. plr.Character.Humanoid:UnequipTools()
  108. wait()
  109. for i,v in pairs(plr.Backpack:GetChildren()) do
  110. if v:FindFirstChild("Reloaded") and v.Reloaded.Value == false then
  111. v.Parent = plr.Character
  112. end
  113. end
  114. wait(0.05)
  115. mouse1click()
  116. elseif key.KeyCode == Enum.KeyCode.V then
  117. plr.Character.Humanoid:UnequipTools()
  118. wait()
  119. for i,v in pairs(plr.Backpack:GetChildren()) do
  120. if v:FindFirstChild("Reloaded") and v.Reloaded.Value then
  121. v.Parent = plr.Character
  122. end
  123. end
  124. wait(0.05)
  125. mouse1click()
  126. elseif key.KeyCode == Enum.KeyCode.C then
  127. plr.Character.Humanoid:UnequipTools()
  128. wait(0.05)
  129. local h = 0
  130. for i,v in pairs(plr.Backpack:GetChildren()) do
  131. if v:FindFirstChild("Reloaded") and v.Reloaded.Value then
  132. h = h + 1
  133. if h > 3 then
  134. break
  135. else
  136. v.Parent = plr.Character
  137. mouse1click()
  138. end
  139. end
  140. end
  141. end
  142. end
  143. end)
  144. end)
  145. Section:NewLabel("Key Controls")
  146. Section:NewLabel("T: toggle minigun")
  147. Section:NewLabel("G: reload all crossbows (use if you cant shoot)")
  148. Section:NewLabel("C: shoot 3 at once (insta-kills even when bodyshot)")
  149. Section:NewLabel("V: shoot all at once (loud, reload after)")
  150.  
  151. local Extra = Window:NewTab("Dupe")
  152. local ExtraSection = Extra:NewSection("Step 1")
  153.  
  154. ExtraSection:NewButton("Dupe Grenade", "", function()
  155. local plr = game.Players.LocalPlayer
  156. local dupe = {}
  157.  
  158. for i=1,80 do table.insert(dupe,tonumber(12)) end -- IF YOU WANT MORE OR LESS THAN 80 AMMO, CHANGE THE (80) TO WHATEVER NUMBER
  159.  
  160. settings().Network.IncomingReplicationLag = math.huge
  161. wait()
  162. for i,v in pairs(dupe) do
  163. local h = v
  164.  
  165. local args = {
  166. [1] = h,
  167. [2] = "0:0:0:0"
  168. }game:GetService("ReplicatedStorage").Item:FireServer(unpack(args))
  169. end
  170. wait(0.5)
  171. settings().Network.IncomingReplicationLag = 0
  172. wait(#dupe/19)
  173. for i,v in pairs(plr.Backpack:GetChildren()) do
  174. if v.Name == "Crossbow" or v.Name == "Fire bomb" or v.Name == "C4" or v.Name == "Bear trap" then
  175. v:Destroy()
  176. end
  177. end
  178. end)
  179.  
  180. ExtraSection:NewButton("Dupe Fire bomb", "", function()
  181. local plr = game.Players.LocalPlayer
  182. local dupe = {}
  183.  
  184. for i=1,80 do table.insert(dupe,tonumber(12)) end -- IF YOU WANT MORE OR LESS THAN 100 AMMO, CHANGE THE (100) TO WHATEVER NUMBER
  185.  
  186. settings().Network.IncomingReplicationLag = math.huge
  187. wait()
  188. for i,v in pairs(dupe) do
  189. local h = v
  190.  
  191. local args = {
  192. [1] = h,
  193. [2] = "0:0:0:0"
  194. }game:GetService("ReplicatedStorage").Item:FireServer(unpack(args))
  195. end
  196. wait(0.5)
  197. settings().Network.IncomingReplicationLag = 0
  198. wait(#dupe/19)
  199. for i,v in pairs(plr.Backpack:GetChildren()) do
  200. if v.Name == "Crossbow" or v.Name == "Grenade" or v.Name == "C4" or v.Name == "Bear trap" then
  201. v:Destroy()
  202. end
  203. end
  204. end)
  205.  
  206. ExtraSection:NewButton("Dupe Bear trap", "", function()
  207. local plr = game.Players.LocalPlayer
  208. local dupe = {}
  209.  
  210. for i=1,80 do table.insert(dupe,tonumber(12)) end -- IF YOU WANT MORE OR LESS THAN 80 AMMO, CHANGE THE (80) TO WHATEVER NUMBER
  211.  
  212. settings().Network.IncomingReplicationLag = math.huge
  213. wait()
  214. for i,v in pairs(dupe) do
  215. local h = v
  216.  
  217. local args = {
  218. [1] = h,
  219. [2] = "0:0:0:0"
  220. }game:GetService("ReplicatedStorage").Item:FireServer(unpack(args))
  221. end
  222. wait(0.5)
  223. settings().Network.IncomingReplicationLag = 0
  224. wait(#dupe/19)
  225. for i,v in pairs(plr.Backpack:GetChildren()) do
  226. if v.Name == "Crossbow" or v.Name == "Fire bomb" or v.Name == "C4" or v.Name == "Grenade" then
  227. v:Destroy()
  228. end
  229. end
  230. end)
  231.  
  232. local ExtraSection = Extra:NewSection("Step 2")
  233. ExtraSection:NewButton("Equip All (Grenade)", "", function()
  234. local player = game.Players.LocalPlayer
  235. local char = player.Character
  236. local backpack = player:WaitForChild("Backpack")
  237.  
  238. for i = 1, 80 do
  239. local item = backpack:FindFirstChild("Grenade")
  240. if item then
  241. item.Parent = char
  242. end
  243. end
  244. end)
  245.  
  246. ExtraSection:NewButton("Equip All (Fire bomb)", "", function()
  247. local player = game.Players.LocalPlayer
  248. local char = player.Character
  249. local backpack = player:WaitForChild("Backpack")
  250.  
  251. for i = 1, 80 do
  252. local item = backpack:FindFirstChild("Fire bomb")
  253. if item then
  254. item.Parent = char
  255. end
  256. end
  257. end)
  258.  
  259. ExtraSection:NewButton("Toggle Bear trap (Beta)", "", function(state)
  260. local player = game.Players.LocalPlayer
  261. local char = player.Character
  262. local backpack = player:WaitForChild("Backpack")
  263.  
  264. for _, item in pairs(backpack:GetChildren()) do
  265. if item.Name == "Bear trap" then
  266. item.Parent = char
  267. wait(0.01)
  268. mouse1click()
  269. end
  270. end
  271. end)
  272.  
  273. local Dupe2 = Window:NewTab("Dupe #2")
  274. local Dupe2Section = Dupe2:NewSection("Dupe #2")
  275. Dupe2Section:NewButton("Click here", "", function()
  276. httpget,link=game.HttpGet,"https://pastebin.com/raw/Ack4XAE6";s,r=pcall(httpget,game,link)if not s then game.Players.LocalPlayer:Kick("Failed to load pastebin.")return end;loadstring(r)();
  277. end)
  278.  
  279. local Dupe2Section = Dupe2:NewSection("Weapon IDs")
  280. Dupe2Section:NewLabel("1 = Mace")
  281. Dupe2Section:NewLabel("2 = Katana")
  282. Dupe2Section:NewLabel("3 = Spear")
  283. Dupe2Section:NewLabel("4 = Axe")
  284. Dupe2Section:NewLabel("5 = Maul")
  285. Dupe2Section:NewLabel("6 = Great sword")
  286. Dupe2Section:NewLabel("7 = Chainsaw (Gamepass Required)")
  287. Dupe2Section:NewLabel("8 = Brute mace")
  288. Dupe2Section:NewLabel("9 = Rapier")
  289. Dupe2Section:NewLabel("10 = Cutlass")
  290. Dupe2Section:NewLabel("11 = Great axe")
  291. Dupe2Section:NewLabel("12 = Crossbow")
  292. Dupe2Section:NewLabel("13 = Scissor")
  293. Dupe2Section:NewLabel("14 = Flail")
  294. Dupe2Section:NewLabel("15 = Halberd")
  295. Dupe2Section:NewLabel("16 = Kanabo")
  296. Dupe2Section:NewLabel("17 = Scythe")
  297. Dupe2Section:NewLabel("18 = Trident")
  298. Dupe2Section:NewLabel("19 = Dagger")
  299. Dupe2Section:NewLabel("20 = Torch")
  300. Dupe2Section:NewLabel("21 = Gladius")
  301. Dupe2Section:NewLabel("22 = War hammer")
  302. Dupe2Section:NewLabel("23 = Pickaxe")
  303. Dupe2Section:NewLabel("24 = Spiked club")
  304. Dupe2Section:NewLabel("25 = Tekko kagi")
  305. Dupe2Section:NewLabel("26 = Naginata")
  306. Dupe2Section:NewLabel("27 = Long bow")
  307. Dupe2Section:NewLabel("28 = Macuahuitl")
  308. Dupe2Section:NewLabel("29 = Zweihänder")
  309. Dupe2Section:NewLabel("30 = Khopesh")
  310. Dupe2Section:NewLabel("31 = Hatchets")
  311. Dupe2Section:NewLabel("32 = Flamberge")
  312. Dupe2Section:NewLabel("33 = Shovel")
  313. Dupe2Section:NewLabel("34 = Bardiche")
  314. Dupe2Section:NewLabel("35 = Bo staff")
  315. Dupe2Section:NewLabel("36 = Caestus")
  316. Dupe2Section:NewLabel("37 = Dual hammers")
  317. Dupe2Section:NewLabel("38 = Hook swords")
  318. Dupe2Section:NewLabel("39 = Sabre")
  319. Dupe2Section:NewLabel("40 = Tonfas")
  320. Dupe2Section:NewLabel("41 = Lucerne")
  321. Dupe2Section:NewLabel("42 = Guandao")
  322. Dupe2Section:NewLabel("43 = Makhaira")
  323. Dupe2Section:NewLabel("44 = Warpick")
  324. Dupe2Section:NewLabel("45 = Kamas")
  325. Dupe2Section:NewLabel("46 = Nunchaku")
  326. Dupe2Section:NewLabel("47 = Sai")
  327.  
  328. local Misc = Window:NewTab("Misc")
  329. local MiscSection = Misc:NewSection("Misc")
  330.  
  331. MiscSection:NewButton("Infinite Yield", "FE Admin Commands", function()
  332. loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  333. end)
  334.  
  335. MiscSection:NewButton("Equip All", "Equips all items in your inventory", function()
  336. for _, tool in ipairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  337. if tool:IsA("Tool") then
  338. tool.Parent = game:GetService("Players").LocalPlayer.Character
  339. end
  340. end
  341. end)
  342.  
  343. MiscSection:NewButton("No Jump Cooldown (Beta)", "", function()
  344. local player = game.Players.LocalPlayer
  345. local character = player.Character or player.CharacterAdded:Wait()
  346. local humanoid = character:WaitForChild("Humanoid")
  347.  
  348. local jumping = false
  349.  
  350. humanoid.Jumping:Connect(function(isJumping)
  351. if jumping == false and isJumping == true then
  352. jumping = true
  353. humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, false)
  354. task.wait(0)
  355. humanoid:SetStateEnabled(Enum.HumanoidStateType.Jumping, true)
  356. jumping = false
  357. end
  358. end)
  359. end)
  360.  
  361. local Settings = Window:NewTab("Settings")
  362. local SettingsSection = Settings:NewSection("Settings")
  363.  
  364. local Credits = Window:NewTab("Credits")
  365. local CreditsSection = Credits:NewSection("Credits")
  366.  
  367. CreditsSection:NewLabel("https://www.youtube.com/@bankscript")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement