Sander05nor

1rLazarus

Aug 18th, 2019
1,109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.60 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local _1rLazarus = Instance.new("ScreenGui")
  5. local ProjectLazarusV1 = Instance.new("Frame")
  6. local _1rLazarus_2 = Instance.new("TextLabel")
  7. local INFAmmo = Instance.new("TextButton")
  8. local ESP = Instance.new("TextButton")
  9. local KillAllZombies = Instance.new("TextButton")
  10. local OPGuns = Instance.new("TextButton")
  11. local Close = Instance.new("TextButton")
  12. local Credit = Instance.new("TextLabel")
  13. local OpenFrame = Instance.new("Frame")
  14. local Open = Instance.new("TextButton")
  15. --Properties:
  16. _1rLazarus.Name = "1rLazarus"
  17. _1rLazarus.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  18. _1rLazarus.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  19. _1rLazarus.Parent = game.CoreGui
  20.  
  21. ProjectLazarusV1.Name = "ProjectLazarusV1"
  22. ProjectLazarusV1.Parent = _1rLazarus
  23. ProjectLazarusV1.BackgroundColor3 = Color3.new(0.0627451, 0.0980392, 0.101961)
  24. ProjectLazarusV1.Position = UDim2.new(0.0117211593, 0, 0.106879599, 0)
  25. ProjectLazarusV1.Size = UDim2.new(0, 235, 0, 371)
  26. ProjectLazarusV1.Visible = false
  27.  
  28. _1rLazarus_2.Name = "1rLazarus"
  29. _1rLazarus_2.Parent = ProjectLazarusV1
  30. _1rLazarus_2.BackgroundColor3 = Color3.new(1, 1, 1)
  31. _1rLazarus_2.BackgroundTransparency = 1
  32. _1rLazarus_2.Size = UDim2.new(0, 235, 0, 47)
  33. _1rLazarus_2.Font = Enum.Font.GothamBlack
  34. _1rLazarus_2.Text = "1rLazarus"
  35. _1rLazarus_2.TextColor3 = Color3.new(1, 0, 0)
  36. _1rLazarus_2.TextSize = 24
  37. _1rLazarus_2.TextWrapped = true
  38.  
  39. INFAmmo.Name = "INFAmmo"
  40. INFAmmo.Parent = ProjectLazarusV1
  41. INFAmmo.BackgroundColor3 = Color3.new(1, 1, 1)
  42. INFAmmo.BackgroundTransparency = 1
  43. INFAmmo.Position = UDim2.new(0, 0, 0.19137466, 0)
  44. INFAmmo.Size = UDim2.new(0, 235, 0, 32)
  45. INFAmmo.Font = Enum.Font.GothamBold
  46. INFAmmo.Text = "INF Ammo"
  47. INFAmmo.TextColor3 = Color3.new(0.72549, 0.0235294, 0)
  48. INFAmmo.TextScaled = true
  49. INFAmmo.TextSize = 14
  50. INFAmmo.TextWrapped = true
  51. INFAmmo.MouseButton1Down:connect(function()
  52. for _,v in pairs(debug.getregistry()) do
  53. if typeof(v) == "table" then
  54. if v.Ammo then
  55. v.Ammo = math.huge
  56. end
  57. end
  58. end
  59. end)
  60.  
  61. ESP.Name = "ESP"
  62. ESP.Parent = ProjectLazarusV1
  63. ESP.BackgroundColor3 = Color3.new(1, 1, 1)
  64. ESP.BackgroundTransparency = 1
  65. ESP.Position = UDim2.new(0, 0, 0.431266844, 0)
  66. ESP.Size = UDim2.new(0, 235, 0, 32)
  67. ESP.Font = Enum.Font.GothamBold
  68. ESP.Text = "Zombie ESP"
  69. ESP.TextColor3 = Color3.new(0.72549, 0.0235294, 0)
  70. ESP.TextScaled = true
  71. ESP.TextSize = 14
  72. ESP.TextWrapped = true
  73. ESP.MouseButton1Down:connect(function()
  74. function CreateESPPart(BodyPart,color)
  75. local ESPPartparent = BodyPart
  76. local Box = Instance.new("BoxHandleAdornment")
  77. Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
  78. Box.Name = "ESPPart"
  79. Box.Adornee = ESPPartparent
  80. Box.Color3 = color
  81. Box.AlwaysOnTop = true
  82. Box.ZIndex = 5
  83. Box.Transparency = 0.8
  84. Box.Parent = BodyPart
  85. end
  86.  
  87. local zombs = workspace.Baddies:getChildren()
  88. for i=1,#zombs do
  89. local bodypart = zombs[i]:getChildren()
  90. for i=1,#bodypart do
  91. if bodypart[i].ClassName == "Part" then
  92. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  93. end
  94. end
  95. end
  96.  
  97. workspace.Baddies.ChildAdded:Connect(function(zomb)
  98. wait(1)
  99. local bodypart = zomb:getChildren()
  100. for i=1,#bodypart do
  101. if bodypart[i].ClassName == "Part" then
  102. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  103. end
  104. end
  105. end)
  106. end)
  107.  
  108. KillAllZombies.Name = "KillAllZombies"
  109. KillAllZombies.Parent = ProjectLazarusV1
  110. KillAllZombies.BackgroundColor3 = Color3.new(1, 1, 1)
  111. KillAllZombies.BackgroundTransparency = 1
  112. KillAllZombies.Position = UDim2.new(0, 0, 0.654986501, 0)
  113. KillAllZombies.Size = UDim2.new(0, 235, 0, 32)
  114. KillAllZombies.Font = Enum.Font.GothamBold
  115. KillAllZombies.Text = "Kill All Zombies"
  116. KillAllZombies.TextColor3 = Color3.new(0.72549, 0.0235294, 0)
  117. KillAllZombies.TextScaled = true
  118. KillAllZombies.TextSize = 14
  119. KillAllZombies.TextWrapped = true
  120. KillAllZombies.MouseButton1Down:connect(function()
  121. local getrawmetatable = getrawmetatable or debug.getmetatable
  122. local make_writeable = make_writeable or setreadonly or changereadonly or change_writeable
  123. make_writeable(getrawmetatable(game), false)
  124. local backup = getrawmetatable(game).__namecall
  125.  
  126. local Zombies={}
  127.  
  128. _G.WeaponKey = nil
  129.  
  130. getrawmetatable(game).__namecall = function(self, ...)
  131. local packed = {...}
  132. if not _G.WeaponKey then
  133. if packed[#packed] == 'FireServer' then
  134. if self.Name == 'Damage' then
  135. _G.WeaponKey = packed[2]
  136. warn('Key acquired.')
  137. return backup(self, ...)
  138. end
  139. end
  140. end
  141. return backup(self, ...)
  142. end
  143.  
  144. local KILLALL = function()
  145. for k,v in next, workspace.Baddies:GetChildren()do
  146. if v.Name == 'Zombie' then
  147. table.insert(Zombies, v)
  148. end
  149. end
  150.  
  151. table.foreach(Zombies, function(k,v)
  152. if not _G.WeaponKey then
  153. return
  154. end
  155. local status, ret = xpcall(function()
  156. return v.Humanoid.Damage
  157. end, function(err) warn('Remote not found.') end)
  158. if status then
  159. --repeat wait()
  160. ret:FireServer(
  161. {
  162. ["BodyPart"] = v['HeadBox'],
  163. ["GibPower"] = 100,
  164. ["Damage"] = v.Humanoid.MaxHealth,
  165.  
  166. },_G.WeaponKey)
  167. --until v.Humanoid.Health <= 0
  168. end
  169. end)
  170. end
  171.  
  172. game:GetService('UserInputService').InputBegan:Connect(function(key)
  173. if key.KeyCode == Enum.KeyCode.E then
  174. if _G.WeaponKey then
  175. KILLALL()
  176. else
  177. print('No key')
  178. end
  179. end
  180. end)
  181. end)
  182.  
  183. OPGuns.Name = "OPGuns"
  184. OPGuns.Parent = ProjectLazarusV1
  185. OPGuns.BackgroundColor3 = Color3.new(1, 1, 1)
  186. OPGuns.BackgroundTransparency = 1
  187. OPGuns.Position = UDim2.new(0, 0, 0.84636116, 0)
  188. OPGuns.Size = UDim2.new(0, 235, 0, 32)
  189. OPGuns.Font = Enum.Font.GothamBold
  190. OPGuns.Text = "OP Guns"
  191. OPGuns.TextColor3 = Color3.new(0.72549, 0.0235294, 0)
  192. OPGuns.TextScaled = true
  193. OPGuns.TextSize = 14
  194. OPGuns.TextWrapped = true
  195. OPGuns.MouseButton1Down:connect(function()
  196. local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  197. m.StoredAmmo = math.huge
  198. m.MagSize = math.huge
  199. m.Semi = false
  200. m.Damage = {Max = 1500000, Min = 10000}
  201. m.Spread = {Min = 0, Max = 0}
  202. m.BulletPenetration = 1500
  203. m.FireTime = 0
  204. end)
  205.  
  206. Close.Name = "Close"
  207. Close.Parent = ProjectLazarusV1
  208. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  209. Close.BackgroundTransparency = 1
  210. Close.Size = UDim2.new(0, 39, 0, 33)
  211. Close.Font = Enum.Font.GothamBold
  212. Close.Text = "X"
  213. Close.TextColor3 = Color3.new(0.898039, 0, 0)
  214. Close.TextSize = 24
  215. Close.MouseButton1Down:connect(function()
  216. OpenFrame.Visible = true
  217. ProjectLazarusV1.Visible = false
  218. end)
  219.  
  220. Credit.Name = "Credit"
  221. Credit.Parent = ProjectLazarusV1
  222. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  223. Credit.BackgroundTransparency = 1
  224. Credit.Position = UDim2.new(0, 0, 0.932614565, 0)
  225. Credit.Size = UDim2.new(0, 235, 0, 25)
  226. Credit.Font = Enum.Font.GothamBlack
  227. Credit.Text = "Made by ???�??#0340"
  228. Credit.TextColor3 = Color3.new(1, 0, 0)
  229. Credit.TextSize = 15
  230. Credit.TextWrapped = true
  231.  
  232. OpenFrame.Name = "OpenFrame"
  233. OpenFrame.Parent = _1rLazarus
  234. OpenFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  235. OpenFrame.BackgroundTransparency = 1
  236. OpenFrame.Position = UDim2.new(0.481801361, 0, 0.233415231, 0)
  237. OpenFrame.Size = UDim2.new(0, 100, 0, 100)
  238.  
  239. Open.Name = "Open"
  240. Open.Parent = OpenFrame
  241. Open.BackgroundColor3 = Color3.new(1, 1, 1)
  242. Open.BackgroundTransparency = 1
  243. Open.Position = UDim2.new(-7.80999994, 0, 4.69999981, 0)
  244. Open.Size = UDim2.new(0, 44, 0, 47)
  245. Open.Font = Enum.Font.SourceSans
  246. Open.Text = "|||"
  247. Open.TextColor3 = Color3.new(0.678431, 0, 0)
  248. Open.TextScaled = true
  249. Open.TextSize = 32
  250. Open.TextStrokeColor3 = Color3.new(0.745098, 0, 0.0117647)
  251. Open.TextWrapped = true
  252. Open.MouseButton1Down:connect(function()
  253. ProjectLazarusV1.Visible = true
  254. OpenFrame.Visible = false
  255. end)
  256. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment