Advertisement
Guest User

Untitled

a guest
Apr 29th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local p = game.Workspace.Kuriax -- ONLY CHANGE THE NAME
  2.  
  3.  
  4. for i,v in pairs (p:GetChildren()) do
  5. local e = Instance.new("ParticleEmitter", p.Torso)
  6. e.Texture = "http://www.roblox.com/asset/?id=355876953"
  7. e.Lifetime = NumberRange.new(.4)
  8. e.Rate = 8
  9. e.VelocitySpread = 360
  10. v.Parent.Humanoid.MaxHealth = math.huge
  11. v.Parent.Humanoid.Health = math.huge
  12. p.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=237062748"
  13. p.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=223572330"
  14. if v.ClassName == "Part" then
  15. v.Transparency = .15
  16. v.BrickColor = BrickColor.new("Really black")
  17. v.Parent.HumanoidRootPart.Transparency = 1
  18. if v.Name == "Head" then
  19. v.face.Texture = "http://www.roblox.com/asset/?id=362505168"
  20. end
  21. end
  22. end
  23.  
  24. function kill(s)
  25. local v = s.Parent:findFirstChild("Humanoid")
  26. if (v ~=nil) then
  27. v.PlatformStand = true
  28. wait(4)
  29. v.MaxHealth = 0
  30. end
  31. end
  32.  
  33. p.Torso.Touched:connect(kill)
  34.  
  35. local lol = game:GetService("InsertService"):loadAsset(95951330)
  36. local LOL = lol:GetChildren()[1]
  37. LOL.Parent = game.Players[p.Name].Backpack
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement