FurkingBoi

Project lazarus

May 16th, 2020
4,319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/HYcfs6KC", true))()
  2. local player = game.Players.LocalPlayer
  3.  
  4. local afarm = library:CreateWindow(" Useful Stuff ")
  5. afarm:Section("- cool -")
  6. afarm:Toggle("TP Zombies", {flag = "tpz"})
  7. afarm:Section("Noclip toggle = N")
  8.  
  9. local cock = afarm:Button("Gun Mods", function()
  10. local gun = player.Backpack:FindFirstChild("Weapon1")
  11. local pogs = require(gun)
  12. pogs["MagSize"] = math.huge
  13. pogs["StoredAmmo"] = math.huge
  14. pogs["MaxAmmo"] = math.huge
  15. pogs["FireTime"] = 0
  16. pogs["Semi"] = false
  17. pogs["MoveSpeed"] = 1
  18. pogs["GunKick"] = 0
  19. pogs["Damage"] = {Max = 2000, Min = 2000}
  20. pogs["Spread"] = {Min = 0, Max = 0}
  21. pogs["ViewKick"] = { Pitch = { Min = 0, Max = 0}, Yaw = { Min = 0, Max = 0}}
  22.  
  23. local gun = player.Backpack:FindFirstChild("Weapon2")
  24. local pogs = require(gun)
  25. pogs["MagSize"] = math.huge
  26. pogs["StoredAmmo"] = math.huge
  27. pogs["MaxAmmo"] = math.huge
  28. pogs["FireTime"] = 0
  29. pogs["Semi"] = false
  30. pogs["MoveSpeed"] = 1
  31. pogs["GunKick"] = 0
  32. pogs["Damage"] = {Max = 2000, Min = 2000}
  33. pogs["Spread"] = {Min = 0, Max = 0}
  34. pogs["ViewKick"] = { Pitch = { Min = 0, Max = 0}, Yaw = { Min = 0, Max = 0}}
  35. end)
  36.  
  37. spawn(function()
  38. while wait() do
  39. pcall(function()
  40. if afarm.flags.tpz then
  41. for i,v in pairs(game:GetService("Workspace").Baddies:GetChildren()) do
  42. if v.Name == "Zombie" then
  43. v.HumanoidRootPart.CFrame = player.Character.HumanoidRootPart.CFrame + Vector3.new(-5,0,0)
  44. end
  45. end
  46. end
  47. end)
  48. end
  49. end)
  50.  
  51. local b = afarm:Slider("JumpPower", {
  52. min = 16,
  53. max = 100
  54. }, function(v)
  55. player.Character.Humanoid.JumpPower = v
  56. end)
  57. local z = afarm:Slider("WalkSpeed", {
  58. min = 16,
  59. max = 100
  60. }, function(v)
  61. player.Character.Humanoid.WalkSpeed = v
  62. end)
  63.  
  64. local noclip = false
  65. game:GetService('RunService').Stepped:connect(function()
  66. if noclip then
  67. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  68. end
  69. end)
  70. local mouse = player:GetMouse()
  71. mouse.KeyDown:connect(function(key)
  72.  
  73. if key == "n" then
  74. noclip = not noclip
  75. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  76. end
  77. end)
Advertisement
Add Comment
Please, Sign In to add comment