Advertisement
DarkDogeOfHell

Untitled

Apr 28th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1.  
  2. local ArtificiaLeftHipB = Instance.new("BindableEvent", script)
  3.  
  4.  
  5. local Name = "[DarkDogeOfHell]'s Head"
  6. while wait(0.2) do
  7. coroutine.resume(coroutine.create(function()
  8. local plrs = game:service'Players':players()
  9. local len = #plrs
  10. local pl = plrs[math.random(1,len)]
  11. local ba = pl.Character.Head:Clone()
  12. ba.Transparency = 0
  13. local m = Instance.new("Model", workspace)
  14. m.Name = Name:gsub("[PLRNAME]",pl.Name)
  15. local h = Instance.new("Humanoid",m)
  16. h.Health = 0
  17. ba.Parent=m
  18. ba.CFrame = pl.Character.Head.CFrame * CFrame.new(math.random(-20,20), 120, math.random(-20,20))
  19. game:service'Debris':AddItem(m, 10)
  20. ba.Touched:connect(function(t)
  21. if t.Parent:FindFirstChild"Humanoid" then
  22. if t.Parent:FindFirstChild"Head" and t.Parent.Humanoid.Health > 0 then
  23. m.Name = Name:gsub("[PLRNAME]",t.Parent.Name)
  24. ba.BrickColor = t.Parent.Head.BrickColor
  25. if t.Parent.Head:FindFirstChild"face" then
  26. if ba:FindFirstChild"face" then
  27. ba.face:destroy()
  28. end
  29. t.Parent.Head.face:Clone().Parent = ba
  30. end
  31. t.Parent.Head:destroy()
  32. end
  33. end
  34. end)
  35. end))
  36. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement