Advertisement
subaru112g

hold your head fe

Jan 22nd, 2019
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. local plr = owner
  2. local c = owner.Character
  3. local head = c.Head
  4. local tool = Instance.new("Tool")
  5. tool.Name = "Head"
  6. local handle = Instance.new("Part",tool)
  7. handle.Size = Vector3.new(1,1,1)
  8. handle.Name = "Handle"
  9. handle.Transparency = 1
  10. local m = Instance.new("Model",handle)
  11. m.Name = owner.Name
  12. local fakehead = head:Clone()
  13. fakehead.Parent = m
  14. local w = Instance.new("Weld",tool)
  15. w.Part0 = handle
  16. w.Part1 = fakehead
  17. local hu = Instance.new("Humanoid",m)
  18. hu.Name = "head"
  19. hu.MaxHealth = 0
  20. for i,v in pairs(c:GetChildren()) do
  21. if v.ClassName == "Hat" or v.ClassName == "Accessory" then
  22. local copy = v.Handle.AccessoryWeld:Clone()
  23. copy.Part1 = nil
  24. copy.Part0 = v.Handle
  25. copy.Parent = v.Handle
  26. v.Parent = m
  27. wait(0.1)
  28. copy.Part1 = fakehead
  29. end
  30. end
  31. wait(0.1)
  32. tool.Parent = c
  33. c.Head.face.Transparency = 1
  34. c.Head.Transparency = 1
  35. local pe = Instance.new("ParticleEmitter", fakehead)
  36. pe.Color = ColorSequence.new(Color3.fromRGB(255, 0, 0))
  37. pe.Size = NumberSequence.new(0.1)
  38. pe.EmissionDirection = "Bottom"
  39. pe.Lifetime = NumberRange.new(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement