Advertisement
00fjg

Untitled

Jul 23rd, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local p = game.Players.XxXexe5
  2. for i,v in pairs (p.Character:GetChildren()) do
  3. local e = Instance.new("ParticleEmitter", p.Character.Torso)
  4. e.Texture = "http://www.roblox.com/asset/?id=434168218"
  5. e.Lifetime = NumberRange.new(.4)
  6. e.Rate = 8
  7. e.VelocitySpread = 360
  8. e.RotSpeed = NumberRange.new(400)
  9. e.Rotation = NumberRange.new(1, 360)
  10. v.Parent.Humanoid.MaxHealth = math.huge
  11. v.Parent.Humanoid.Health = math.huge
  12. if v.ClassName == "Part" then
  13. v.Transparency = .15
  14. v.BrickColor = BrickColor.new("Really black")
  15. v.Parent.HumanoidRootPart.Transparency = 1
  16. if v.Name == "Head" then
  17. v.face.Texture = "http://www.roblox.com/asset/?id=362505168"
  18. end
  19. end
  20. end
  21.  
  22. function kill(s)
  23. local v = s.Parent:findFirstChild("Humanoid")
  24. if (v ~=nil) then
  25. v.PlatformStand = true
  26. if v.PlatformStand == false then
  27. v.PlatformStand = true
  28. end
  29. wait(4)
  30. v.MaxHealth = 0
  31. end
  32. end
  33.  
  34. p.Character.Torso.Touched:connect(kill)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement