Advertisement
Guest User

Untitled

a guest
Dec 16th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local name = "Hollows" -- You can change this to 'Raid' to kill Raid Bosses or 'Mollows' to kill Adjuchas and such.
  2.  
  3. while wait() do
  4. for i,v in pairs(game.Workspace:findFirstChild(name):GetChildren()) do
  5. if v.Name ~= "Place Holder" then
  6. local m = Instance.new("ObjectValue",v:findFirstChild'Humanoid')
  7. m.Value = game.Players.LocalPlayer
  8. m.Name = "SenzoVFX"
  9. game.Debris:AddItem(m,.5)
  10. v:findFirstChild'Humanoid':TakeDamage(10)
  11. end
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement