Advertisement
Guest User

Mortem Metallum Crossbow Gun :D

a guest
Apr 19th, 2022
31,421
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.55 KB | None | 1 0
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  2. local Window = Library.CreateLib("Mortem Metallum [Alpha]", "DarkTheme")
  3.  
  4. local Tab = Window:NewTab("Main")
  5. local Section = Tab:NewSection("Step 1")
  6. Section:NewButton("Dupe Crossbows", "Execute this while in the select weapon menu", function()
  7. local plr = game.Players.LocalPlayer
  8. local dupe = {}
  9.  
  10. for i=1,80 do table.insert(dupe,tonumber(12)) end -- IF YOU WANT MORE THAN 80 AMMO, CHANGE THE (80) TO WHATEVER NUMBER
  11.  
  12. settings().Network.IncomingReplicationLag = math.huge
  13. wait()
  14. for i,v in pairs(dupe) do
  15. local h = v
  16.  
  17. local args = {
  18. [1] = h,
  19. [2] = "0:0:0:0"
  20. }game:GetService("ReplicatedStorage").Item:FireServer(unpack(args))
  21. end
  22. wait(0.5)
  23. settings().Network.IncomingReplicationLag = 0
  24. wait(#dupe/19)
  25. for i,v in pairs(plr.Backpack:GetChildren()) do
  26. if v.Name == "C4" or v.Name == "Fire bomb" or v.Name == "Grenade" or v.Name == "Bear trap" then
  27. v:Destroy()
  28. end
  29. end
  30. end)
  31. local Section = Tab:NewSection("Step 2")
  32. Section:NewButton("Mingun Crossbows", "Execute this ONCE", function()
  33. local plr = game.Players.LocalPlayer
  34. local us = game:GetService("UserInputService")
  35. local m = plr:GetMouse()
  36.  
  37. -- T: minigun
  38. -- G: reload all
  39. -- V: shoot all
  40. -- C: shoot 3 at once (insta-kill bodyshot)
  41.  
  42. local gunning = false
  43. us.InputBegan:Connect(function(key,pro)
  44. if not pro then
  45. if key.KeyCode == Enum.KeyCode.T then
  46. gunning = not gunning
  47.  
  48. if gunning then
  49. for i,v in pairs(plr.Backpack:GetChildren()) do
  50. if v:FindFirstChild("Reloaded") and v.Reloaded.Value then
  51. if not gunning then return end
  52.  
  53. plr.Character.Humanoid:EquipTool(v)
  54. mouse1click()
  55. wait()
  56. end
  57. end
  58. end
  59. elseif key.KeyCode == Enum.KeyCode.G then
  60. plr.Character.Humanoid:UnequipTools()
  61. wait()
  62. for i,v in pairs(plr.Backpack:GetChildren()) do
  63. if v:FindFirstChild("Reloaded") and v.Reloaded.Value == false then
  64. v.Parent = plr.Character
  65. end
  66. end
  67. wait(0.05)
  68. mouse1click()
  69. elseif key.KeyCode == Enum.KeyCode.V then
  70. plr.Character.Humanoid:UnequipTools()
  71. wait()
  72. for i,v in pairs(plr.Backpack:GetChildren()) do
  73. if v:FindFirstChild("Reloaded") and v.Reloaded.Value then
  74. v.Parent = plr.Character
  75. end
  76. end
  77. wait(0.05)
  78. mouse1click()
  79. elseif key.KeyCode == Enum.KeyCode.C then
  80. plr.Character.Humanoid:UnequipTools()
  81. wait(0.05)
  82. local h = 0
  83. for i,v in pairs(plr.Backpack:GetChildren()) do
  84. if v:FindFirstChild("Reloaded") and v.Reloaded.Value then
  85. h = h + 1
  86. if h > 3 then
  87. break
  88. else
  89. v.Parent = plr.Character
  90. mouse1click()
  91. end
  92. end
  93. end
  94. end
  95. end
  96. end)
  97. end)
  98. Section:NewLabel("Key Controls")
  99. Section:NewLabel("T: toggle minigun")
  100. Section:NewLabel("G: reload all crossbows (use if you cant shoot)")
  101. Section:NewLabel("C: shoot 3 at once (insta-kills even when bodyshot)")
  102. Section:NewLabel("V: shoot all at once (loud, reload after)")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement