Advertisement
Guest User

Untitled

a guest
Dec 11th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Bloodfeast = Instance.new("ScreenGui")
  5. local MainFrame = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local GunModz = Instance.new("TextButton")
  8. local KillAllMonsters = Instance.new("TextButton")
  9. local Credits = Instance.new("TextLabel")
  10. --Properties:
  11. Bloodfeast.Name = "Bloodfeast"
  12. Bloodfeast.Parent = game.Workspace
  13.  
  14. MainFrame.Name = "MainFrame"
  15. MainFrame.Parent = Bloodfeast
  16. MainFrame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  17. MainFrame.BorderColor3 = Color3.new(1, 0.00784314, 0.00784314)
  18. MainFrame.Position = UDim2.new(0.678552747, 0, 0.225724012, 0)
  19. MainFrame.Size = UDim2.new(0, 362, 0, 239)
  20.  
  21. Title.Name = "Title"
  22. Title.Parent = MainFrame
  23. Title.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  24. Title.BorderColor3 = Color3.new(1, 0, 0)
  25. Title.Position = UDim2.new(0.223756909, 0, 0.0251046028, 0)
  26. Title.Size = UDim2.new(0, 200, 0, 50)
  27. Title.Font = Enum.Font.SourceSansItalic
  28. Title.Text = "BloodNigger"
  29. Title.TextColor3 = Color3.new(1, 0, 0)
  30. Title.TextScaled = true
  31. Title.TextSize = 14
  32. Title.TextWrapped = true
  33.  
  34. GunModz.Name = "Gun Modz"
  35. GunModz.Parent = MainFrame
  36. GunModz.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  37. GunModz.BorderColor3 = Color3.new(1, 0, 0)
  38. GunModz.Position = UDim2.new(0.0745856389, 0, 0.393305451, 0)
  39. GunModz.Size = UDim2.new(0, 118, 0, 50)
  40. GunModz.Font = Enum.Font.SourceSans
  41. GunModz.Text = "Gun Modz"
  42. GunModz.TextColor3 = Color3.new(1, 0.0235294, 0.0235294)
  43. GunModz.TextSize = 14
  44. GunModz.MouseButton1Down:connect(function()
  45. local p = game.Players.LocalPlayer
  46. local c = p.Character
  47.  
  48. local reg = debug.getregistry()
  49. for i,v in pairs(reg) do
  50. if (type(v) == "function") then
  51. local upVals = debug.getupvalues(v)
  52. if upVals.ammoLeft then
  53. debug.setupvalue(v, "ammoLeft", 9e999)
  54. end
  55. end
  56. end
  57.  
  58. for i,v in pairs(p:WaitForChild("Backpack"):GetChildren()) do
  59. if v:IsA("Tool") then
  60. if v:FindFirstChild("Stats") then
  61. v.Stats.Firerate.Value = .001
  62. v.Stats.spreadMax.Value = 0.01
  63. v.Stats.Laser.Value = true
  64. end
  65. end
  66. end
  67. for i,v in pairs(c:GetChildren()) do
  68. if v:IsA("Tool") then
  69. if v:FindFirstChild("Stats") then
  70. v.Stats.Firerate.Value = .001
  71. v.Stats.spreadMax.Value = 0.01
  72. v.Stats.Laser.Value = true
  73. end
  74. end
  75. end
  76.  
  77.  
  78.  
  79. end)
  80.  
  81. KillAllMonsters.Name = "Kill All Monsters"
  82. KillAllMonsters.Parent = MainFrame
  83. KillAllMonsters.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  84. KillAllMonsters.BorderColor3 = Color3.new(1, 0, 0)
  85. KillAllMonsters.Position = UDim2.new(0.582872927, 0, 0.393305451, 0)
  86. KillAllMonsters.Size = UDim2.new(0, 128, 0, 50)
  87. KillAllMonsters.Font = Enum.Font.SourceSans
  88. KillAllMonsters.Text = "Kill All Monsters"
  89. KillAllMonsters.TextColor3 = Color3.new(1, 0.0235294, 0.0235294)
  90. KillAllMonsters.TextSize = 14
  91. KillAllMonsters.MouseButton1Down:connect(function()
  92. local Event = workspace.Remotes.DMG
  93. while wait(0.1) do
  94. for i,v in pairs(workspace.Enemies:GetChildren()) do
  95. Event:FireServer("P220_H",v,true,10,100, "Head", "Commando", 1,9e9,1,0,0,false,1)
  96. end
  97. end
  98. end)
  99.  
  100. Credits.Name = "Credits"
  101. Credits.Parent = MainFrame
  102. Credits.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  103. Credits.BorderColor3 = Color3.new(1, 0, 0)
  104. Credits.Position = UDim2.new(0.223756909, 0, 0.757322192, 0)
  105. Credits.Size = UDim2.new(0, 200, 0, 50)
  106. Credits.Font = Enum.Font.SourceSansItalic
  107. Credits.Text = "Made By Vital"
  108. Credits.TextColor3 = Color3.new(1, 0, 0)
  109. Credits.TextScaled = true
  110. Credits.TextSize = 14
  111. Credits.TextWrapped = true
  112. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement