Advertisement
AmazonBox

DoomHaxx

Jun 13th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.45 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local ScreenGui = Instance.new("ScreenGui")
  5. local Frame = Instance.new("Frame")
  6. local REDButton = Instance.new("TextButton")
  7. local TopFrame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local BLUEButton = Instance.new("TextButton")
  10. local YELLOWButton = Instance.new("TextButton")
  11. local GREENButton = Instance.new("TextButton")
  12. --Properties:
  13. ScreenGui.Parent = game.CoreGui
  14. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.Active = true
  18. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  19. Frame.BorderColor3 = Color3.new(0.784314, 0.784314, 0.784314)
  20. Frame.BorderSizePixel = 2
  21. Frame.Position = UDim2.new(0.157853201, 0, 0.612724781, 0)
  22. Frame.Size = UDim2.new(0, 345, 0, 205)
  23. Frame.Draggable = true
  24.  
  25. REDButton.Name = "REDButton"
  26. REDButton.Parent = Frame
  27. REDButton.BackgroundColor3 = Color3.new(1, 1, 1)
  28. REDButton.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  29. REDButton.BorderSizePixel = 3
  30. REDButton.Position = UDim2.new(0.0724637657, 0, 0.326829255, 0)
  31. REDButton.Size = UDim2.new(0, 140, 0, 50)
  32. REDButton.Font = Enum.Font.GothamBlack
  33. REDButton.Text = "Kill RED players"
  34. REDButton.TextColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  35. REDButton.TextSize = 14
  36. REDButton.MouseButton1Down:connect(function()
  37.     while true do
  38. for i, v in pairs (game.Teams.RED:GetPlayers()) do
  39. local tbl_main =
  40. {
  41.       v.Character.Torso.Position
  42. }
  43. game:GetService("Workspace").ErasedCode.RocketLauncher.Fire:FireServer(unpack(tbl_main))
  44. wait()
  45. end
  46. end
  47. end)
  48.  
  49. TopFrame.Name = "TopFrame"
  50. TopFrame.Parent = Frame
  51. TopFrame.BackgroundColor3 = Color3.new(1, 0.6, 0.25098)
  52. TopFrame.BorderColor3 = Color3.new(0.866667, 0.509804, 0.215686)
  53. TopFrame.BorderSizePixel = 2
  54. TopFrame.Size = UDim2.new(0, 345, 0, 49)
  55.  
  56. TextLabel.Parent = TopFrame
  57. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  58. TextLabel.BackgroundTransparency = 1
  59. TextLabel.Size = UDim2.new(0, 345, 0, 50)
  60. TextLabel.Font = Enum.Font.GothamBlack
  61. TextLabel.Text = "DoomHaxx"
  62. TextLabel.TextColor3 = Color3.new(0.156863, 0.156863, 0.156863)
  63. TextLabel.TextSize = 25
  64.  
  65. BLUEButton.Name = "BLUEButton"
  66. BLUEButton.Parent = Frame
  67. BLUEButton.BackgroundColor3 = Color3.new(1, 1, 1)
  68. BLUEButton.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  69. BLUEButton.BorderSizePixel = 3
  70. BLUEButton.Position = UDim2.new(0.521739125, 0, 0.326829255, 0)
  71. BLUEButton.Size = UDim2.new(0, 140, 0, 50)
  72. BLUEButton.Font = Enum.Font.GothamBlack
  73. BLUEButton.Text = "Kill BLUE players"
  74. BLUEButton.TextColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  75. BLUEButton.TextSize = 14
  76. BLUEButton.MouseButton1Down:connect(function()
  77. while true do
  78. for i, v in pairs (game.Teams.BLUE:GetPlayers()) do
  79. local tbl_main =
  80. {
  81.       v.Character.Torso.Position
  82. }
  83. game:GetService("Workspace").ErasedCode.RocketLauncher.Fire:FireServer(unpack(tbl_main))
  84. wait()
  85. end
  86. end
  87. end)
  88. YELLOWButton.Name = "YELLOWButton"
  89. YELLOWButton.Parent = Frame
  90. YELLOWButton.BackgroundColor3 = Color3.new(1, 1, 1)
  91. YELLOWButton.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  92. YELLOWButton.BorderSizePixel = 3
  93. YELLOWButton.Position = UDim2.new(0.0724637657, 0, 0.658536553, 0)
  94. YELLOWButton.Size = UDim2.new(0, 140, 0, 50)
  95. YELLOWButton.Font = Enum.Font.GothamBlack
  96. YELLOWButton.Text = "Kill YELLOW players"
  97. YELLOWButton.TextColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  98. YELLOWButton.TextSize = 14
  99. YELLOWButton.MouseButton1Down:connect(function()
  100. while true do
  101. for i, v in pairs (game.Teams.YELLOW:GetPlayers()) do
  102. local tbl_main =
  103. {
  104.       v.Character.Torso.Position
  105. }
  106. game:GetService("Workspace").ErasedCode.RocketLauncher.Fire:FireServer(unpack(tbl_main))
  107. wait()
  108. end
  109. end
  110. end)
  111.  
  112. GREENButton.Name = "GREENButton"
  113. GREENButton.Parent = Frame
  114. GREENButton.BackgroundColor3 = Color3.new(1, 1, 1)
  115. GREENButton.BorderColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  116. GREENButton.BorderSizePixel = 3
  117. GREENButton.Position = UDim2.new(0.521739125, 0, 0.658536553, 0)
  118. GREENButton.Size = UDim2.new(0, 140, 0, 50)
  119. GREENButton.Font = Enum.Font.GothamBlack
  120. GREENButton.Text = "Kill GREEN players"
  121. GREENButton.TextColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  122. GREENButton.TextSize = 14
  123. GREENButton.MouseButton1Down:connect(function()
  124. while true do
  125. for i, v in pairs (game.Teams.GREEN:GetPlayers()) do
  126. local tbl_main =
  127. {
  128.       v.Character.Torso.Position
  129. }
  130. game:GetService("Workspace").ErasedCode.RocketLauncher.Fire:FireServer(unpack(tbl_main))
  131. wait()
  132. end
  133. end
  134. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement