Advertisement
legomantiny

[Re-REL] Project Lazarus

Nov 12th, 2019
2,507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. local PERSONS = Instance.new("ScreenGui")
  2. local Main = Instance.new("Frame")
  3. local projectlaz_1 = Instance.new("TextButton")
  4. local projectlaz_2 = Instance.new("TextButton")
  5. local BeautyB = Instance.new("Frame")
  6. local credits_2 = Instance.new("TextLabel")
  7. local BeautyA = Instance.new("Frame")
  8. local Credits = Instance.new("TextLabel")
  9. --Properties:
  10. PERSONS.Name = "PERSONS"
  11. PERSONS.Parent = game.CoreGui
  12. PERSONS.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Main.Name = "Main"
  15. Main.Parent = PERSONS
  16. Main.Active = true
  17. Main.BackgroundColor3 = Color3.new(0.976471, 0.956863, 1)
  18. Main.BackgroundTransparency = 0.20000000298023
  19. Main.BorderSizePixel = 3
  20. Main.Position = UDim2.new(0.0726124644, 0, 0.0810810775, 0)
  21. Main.Size = UDim2.new(0, 255, 0, 225)
  22.  
  23. projectlaz_1.Name = "projectlaz_1"
  24. projectlaz_1.Parent = Main
  25. projectlaz_1.BackgroundColor3 = Color3.new(1, 1, 1)
  26. projectlaz_1.BackgroundTransparency = 0.20000000298023
  27. projectlaz_1.Position = UDim2.new(0.101960786, 0, 0.173333332, 0)
  28. projectlaz_1.Size = UDim2.new(0, 97, 0, 76)
  29. projectlaz_1.Font = Enum.Font.Cartoon
  30. projectlaz_1.Text = "Mod Weapon 1"
  31. projectlaz_1.TextColor3 = Color3.new(0, 0, 0)
  32. projectlaz_1.TextSize = 14
  33. projectlaz_1.MouseButton1Down:connect(function()
  34. local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  35. m.StoredAmmo = math.huge
  36. m.MagSize = math.huge
  37. m.Semi = false
  38. m.Damage = {Max = 1500000, Min = 10000}
  39. m.Spread = {Min = 0, Max = 0}
  40. m.BulletPenetration = 1500
  41. m.FireTime = 0
  42. m.GunKick = 0
  43. m.ViewKick = {
  44. Pitch = {Min = 0, Max = 0},
  45. Yaw = {Min = 0, Max = 0}
  46. }
  47. print("stop copying person#9995 scripts <3")
  48. end)
  49.  
  50. projectlaz_2.Name = "projectlaz_2"
  51. projectlaz_2.Parent = Main
  52. projectlaz_2.BackgroundColor3 = Color3.new(1, 1, 1)
  53. projectlaz_2.BackgroundTransparency = 0.20000000298023
  54. projectlaz_2.Position = UDim2.new(0.576470613, 0, 0.462222219, 0)
  55. projectlaz_2.Size = UDim2.new(0, 97, 0, 76)
  56. projectlaz_2.Font = Enum.Font.Cartoon
  57. projectlaz_2.Text = "Mod Weapon 2"
  58. projectlaz_2.TextColor3 = Color3.new(0, 0, 0)
  59. projectlaz_2.TextSize = 14
  60. projectlaz_2.MouseButton1Down:connect(function()
  61. local m = require(game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Weapon1"))
  62. m.StoredAmmo = math.huge
  63. m.MagSize = math.huge
  64. m.Semi = false
  65. m.Damage = {Max = 1500000, Min = 10000}
  66. m.Spread = {Min = 0, Max = 0}
  67. m.BulletPenetration = 1500
  68. m.FireTime = 0
  69. m.GunKick = 0
  70. m.ViewKick = {
  71. Pitch = {Min = 0, Max = 0},
  72. Yaw = {Min = 0, Max = 0}
  73. }
  74. print("Nothing")
  75. end)
  76.  
  77. BeautyB.Name = "BeautyB"
  78. BeautyB.Parent = PERSONS
  79. BeautyB.Active = true
  80. BeautyB.BackgroundColor3 = Color3.new(1, 1, 1)
  81. BeautyB.BackgroundTransparency = 4
  82. BeautyB.Position = UDim2.new(0.0726124719, 0, 0.0810810775, 0)
  83. BeautyB.Size = UDim2.new(0, 255, 0, 33)
  84.  
  85. credits_2.Name = "credits_2"
  86. credits_2.Parent = BeautyB
  87. credits_2.Active = true
  88. credits_2.BackgroundColor3 = Color3.new(1, 1, 1)
  89. credits_2.BackgroundTransparency = 0.40000000596046
  90. credits_2.Size = UDim2.new(0, 255, 0, 33)
  91. credits_2.Font = Enum.Font.Code
  92. credits_2.Text = "You Are Hot"
  93. credits_2.TextColor3 = Color3.new(0, 0, 0)
  94. credits_2.TextSize = 14
  95.  
  96. BeautyA.Name = "BeautyA"
  97. BeautyA.Parent = PERSONS
  98. BeautyA.Active = true
  99. BeautyA.BackgroundColor3 = Color3.new(1, 1, 1)
  100. BeautyA.BackgroundTransparency = 4
  101. BeautyA.Position = UDim2.new(0.0726124719, 0, 0.316953331, 0)
  102. BeautyA.Size = UDim2.new(0, 255, 0, 33)
  103.  
  104. Credits.Name = "Credits"
  105. Credits.Parent = BeautyA
  106. Credits.Active = true
  107. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  108. Credits.BackgroundTransparency = 0.40000000596046
  109. Credits.Size = UDim2.new(0, 255, 0, 33)
  110. Credits.Font = Enum.Font.Code
  111. Credits.Text = "You Are Hot"
  112. Credits.TextColor3 = Color3.new(0, 0, 0)
  113. Credits.TextSize = 14
  114. -- Scripts:
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement