Advertisement
SigmaBoy456

Roblox Trench warfare Kill all script

Oct 14th, 2024 (edited)
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2.  
  3. while wait(0.1) do
  4. for _, v in pairs(game.Players:GetPlayers()) do
  5. if v ~= player and v.Character and v.Team ~= player.Team then
  6. local jn = v.Character:FindFirstChild("Torso")
  7. local jnr = v.Character:FindFirstChildOfClass("Humanoid")
  8. if jn and jnr.Health > 0 then
  9. local args = {
  10. [1] = Vector3.new(0, 0, 0),
  11. [2] = Vector3.new(0, 0, 0),
  12. [3] = jn
  13. }
  14.  
  15. game:GetService("Players").LocalPlayer.Backpack.Gun.FIRE:FireServer(unpack(args))
  16. end
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement