Advertisement
robloxscript111

Zombie Merge Tycoon|Kill All

Feb 11th, 2023
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local players = game:GetService("Players")
  2. local player = players.LocalPlayer
  3.  
  4. local tool = ( player.Backpack:FindFirstChild("Pistol") or player.Character.Pistol )
  5. local takeDamage = tool.Remotes.TakeDamage
  6.  
  7. for _, humanoid in ipairs( workspace:GetDescendants() ) do
  8. if ( humanoid == player.Character.Humanoid or not humanoid:IsA("Humanoid") ) then continue end
  9. takeDamage:FireServer( humanoid, math.huge )
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement