SalatBlitz123

Project Lazarus

Sep 7th, 2020 (edited)
11,597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.30 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local By = Instance.new("TextLabel")
  9. local infammo = Instance.new("TextButton")
  10. local OpGun = Instance.new("TextButton")
  11. local Zombieesp = Instance.new("TextButton")
  12. local Heads = Instance.new("TextButton")
  13. local Open = Instance.new("TextButton")
  14. local Close = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20. ScreenGui.Parent = game.CoreGui
  21.  
  22. Main.Name = "Main"
  23. Main.Parent = ScreenGui
  24. Main.BackgroundColor3 = Color3.fromRGB(112, 115, 98)
  25. Main.BackgroundTransparency = 0.500
  26. Main.BorderSizePixel = 5
  27. Main.Position = UDim2.new(0.363914371, 0, 0.236842111, 0)
  28. Main.Size = UDim2.new(0, 267, 0, 363)
  29. Main.Draggable = true
  30. Main.Active = true
  31. Main.Visible = false
  32.  
  33. By.Name = "By"
  34. By.Parent = Main
  35. By.BackgroundColor3 = Color3.fromRGB(63, 65, 55)
  36. By.Size = UDim2.new(0, 267, 0, 35)
  37. By.Font = Enum.Font.SciFi
  38. By.Text = "By SalatBlitz"
  39. By.TextColor3 = Color3.fromRGB(0, 0, 0)
  40. By.TextSize = 35.000
  41.  
  42. infammo.Name = "infammo"
  43. infammo.Parent = Main
  44. infammo.BackgroundColor3 = Color3.fromRGB(63, 65, 55)
  45. infammo.BorderSizePixel = 4
  46. infammo.Position = UDim2.new(0.123595506, 0, 0.137741044, 0)
  47. infammo.Size = UDim2.new(0, 200, 0, 50)
  48. infammo.Font = Enum.Font.SciFi
  49. infammo.Text = "Inf. Ammo"
  50. infammo.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. infammo.TextSize = 35.000
  52. infammo.MouseButton1Down:connect(function()
  53. local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  54. m.StoredAmmo = math.huge
  55. m.MagSize = math.huge
  56. m.Semi = false
  57. m.Damage = {Max = 1500000, Min = 10000}
  58. m.Spread = {Min = 0, Max = 0}
  59. m.BulletPenetration = 1500
  60. m.FireTime = 0
  61.  
  62. local n = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon2"))
  63. n.StoredAmmo = math.huge
  64. n.MagSize = math.huge
  65. n.Semi = false
  66. n.Damage = {Max = 1500000, Min = 10000}
  67. n.Spread = {Min = 0, Max = 0}
  68. n.BulletPenetration = 1500
  69. n.FireTime = 0
  70. end)
  71.  
  72. OpGun.Name = "OpGun"
  73. OpGun.Parent = Main
  74. OpGun.BackgroundColor3 = Color3.fromRGB(63, 65, 55)
  75. OpGun.BorderSizePixel = 4
  76. OpGun.Position = UDim2.new(0.123595506, 0, 0.35812673, 0)
  77. OpGun.Size = UDim2.new(0, 200, 0, 50)
  78. OpGun.Font = Enum.Font.SciFi
  79. OpGun.Text = "Op Gun"
  80. OpGun.TextColor3 = Color3.fromRGB(0, 0, 0)
  81. OpGun.TextSize = 35.000
  82. OpGun.MouseButton1Down:connect(function()
  83. local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  84. m.StoredAmmo = math.huge
  85. m.MagSize = math.huge
  86. m.Semi = false
  87. m.Damage = {Max = 1500000, Min = 10000}
  88. m.Spread = {Min = 0, Max = 0}
  89. m.ViewKick = {
  90. Pitch = {Min = 0, Max = 0},
  91. Yaw = {Min = 0, Max = 0}
  92. }
  93. m.BulletPenetration = 1500
  94. m.FireTime = 0
  95.  
  96. local n = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon2"))
  97. n.StoredAmmo = math.huge
  98. n.MagSize = math.huge
  99. n.Semi = false
  100. n.Damage = {Max = 1500000, Min = 10000}
  101. n.Spread = {Min = 0, Max = 0}
  102. n.ViewKick = {
  103. Pitch = {Min = 0, Max = 0},
  104. Yaw = {Min = 0, Max = 0}
  105. }
  106. n.BulletPenetration = 1500
  107. n.FireTime = 0
  108. end)
  109.  
  110. Zombieesp.Name = "Zombieesp"
  111. Zombieesp.Parent = Main
  112. Zombieesp.BackgroundColor3 = Color3.fromRGB(63, 65, 55)
  113. Zombieesp.BorderSizePixel = 4
  114. Zombieesp.Position = UDim2.new(0.123595506, 0, 0.564738274, 0)
  115. Zombieesp.Size = UDim2.new(0, 200, 0, 50)
  116. Zombieesp.Font = Enum.Font.SciFi
  117. Zombieesp.Text = "Esp Zombie"
  118. Zombieesp.TextColor3 = Color3.fromRGB(0, 0, 0)
  119. Zombieesp.TextSize = 35.000
  120. Zombieesp.MouseButton1Down:connect(function()
  121. function CreateESPPart(BodyPart,color)
  122. local ESPPartparent = BodyPart
  123. local Box = Instance.new("BoxHandleAdornment")
  124. Box.Size = BodyPart.Size + Vector3.new(0.1, 0.1, 0.1)
  125. Box.Name = "ESPPart"
  126. Box.Adornee = ESPPartparent
  127. Box.Color3 = color
  128. Box.AlwaysOnTop = true
  129. Box.ZIndex = 5
  130. Box.Transparency = 0.8
  131. Box.Parent = BodyPart
  132. end
  133.  
  134. local zombs = workspace.Baddies:getChildren()
  135. for i=1,#zombs do
  136. local bodypart = zombs[i]:getChildren()
  137. for i=1,#bodypart do
  138. if bodypart[i].ClassName == "Part" then
  139. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  140. end
  141. end
  142. end
  143.  
  144. workspace.Baddies.ChildAdded:Connect(function(zomb)
  145. wait(1)
  146. local bodypart = zomb:getChildren()
  147. for i=1,#bodypart do
  148. if bodypart[i].ClassName == "Part" then
  149. CreateESPPart(bodypart[i], Color3.fromRGB(0,255,0))
  150. end
  151. end
  152. end)
  153. end)
  154.  
  155. Heads.Name = "Heads"
  156. Heads.Parent = Main
  157. Heads.BackgroundColor3 = Color3.fromRGB(63, 65, 55)
  158. Heads.BorderSizePixel = 4
  159. Heads.Position = UDim2.new(0.123595506, 0, 0.785123944, 0)
  160. Heads.Size = UDim2.new(0, 200, 0, 50)
  161. Heads.Font = Enum.Font.SciFi
  162. Heads.Text = "Bring Heads"
  163. Heads.TextColor3 = Color3.fromRGB(0, 0, 0)
  164. Heads.TextSize = 35.000
  165. Heads.MouseButton1Down:connect(function()
  166. local pos = 5,0,5
  167.  
  168. local zomb = workspace.Baddies:GetChildren()
  169. for i=1,#zomb do
  170. zomb[i].HeadBox.Transparency = 0
  171. zomb[i].HeadBox.Material = "Neon"
  172. zomb[i].HeadBox.CanCollide = false
  173. zomb[i].HeadBox.Anchored = true
  174. zomb[i].HeadBox.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position+Vector3.new(pos)
  175. end
  176. end)
  177.  
  178. Open.Name = "Open"
  179. Open.Parent = ScreenGui
  180. Open.BackgroundColor3 = Color3.fromRGB(112, 115, 98)
  181. Open.BackgroundTransparency = 0.400
  182. Open.BorderColor3 = Color3.fromRGB(48, 75, 95)
  183. Open.BorderSizePixel = 3
  184. Open.Position = UDim2.new(0, 0, 0.417293221, 0)
  185. Open.Size = UDim2.new(0, 82, 0, 36)
  186. Open.Font = Enum.Font.SciFi
  187. Open.Text = "Open"
  188. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  189. Open.TextSize = 23.000
  190. Open.MouseButton1Down:connect(function()
  191. Close.Visible = true
  192. Open.Visible = false
  193. Main.Visible = true
  194. end)
  195.  
  196. Close.Name = "Close"
  197. Close.Parent = ScreenGui
  198. Close.BackgroundColor3 = Color3.fromRGB(112, 115, 98)
  199. Close.BackgroundTransparency = 0.400
  200. Close.BorderColor3 = Color3.fromRGB(48, 75, 95)
  201. Close.BorderSizePixel = 3
  202. Close.Position = UDim2.new(0, 0, 0.417293221, 0)
  203. Close.Size = UDim2.new(0, 82, 0, 36)
  204. Close.Visible = false
  205. Close.Font = Enum.Font.SciFi
  206. Close.Text = "Close"
  207. Close.TextColor3 = Color3.fromRGB(0, 0, 0)
  208. Close.TextSize = 23.000
  209. Close.MouseButton1Down:connect(function()
  210. Close.Visible = false
  211. Open.Visible = true
  212. Main.Visible = false
  213. end)
Add Comment
Please, Sign In to add comment