danbomeow

COUNTER BLOX KILL ALL

Jul 7th, 2020
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. local Remote = game.ReplicatedStorage.Events['HitPart']
  2.  
  3. for _,v in pairs(game:GetService"Players":GetChildren()) do
  4. if v.Team ~= game.Players.LocalPlayer.Team then
  5. if v.Character and v.Character.Head then
  6. local Arguments = {
  7. [1] = workspace[v.Name].Head,
  8. [2] = workspace[v.Name].Head.Position,
  9. [3] = workspace[game.Players.LocalPlayer.Name].EquippedTool.Value,
  10. [4] = math.rad(1,100000),
  11. [5] = workspace[game.Players.LocalPlayer.Name].Gun,
  12. [8] = 8, --damage multiplier
  13. [9] = false,
  14. [10] = false,
  15. [11] = Vector3.new(),
  16. [12] = math.rad(1,100000),
  17. [13] = Vector3.new()
  18. }
  19.  
  20. Remote:FireServer(unpack(Arguments))
  21. end
  22. end
  23. end
Add Comment
Please, Sign In to add comment