The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Counter Blox script pastebin roblox
By Counter Blox on 2024-09-19 08:00 am | Syntax: LUA | Views: 16



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  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