Advertisement
MaxNutellaOML

ok

Aug 15th, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1.  
  2. while true do
  3. c = game.Players:GetChildren()
  4. if c ~= nil then
  5. for i = 1, #c do
  6. c[i].Character.Head.Transparency = 1
  7. if c[i].Character:FindFirstChild("FakeHead") == nil then
  8. head2 = c[i].Character.Head:clone()
  9. head2.Parent = c[i].Character
  10. head2.Name = "FakeHead"
  11. head2.Transparency = 0
  12. head2.BrickColor = c[i].Character.Head.BrickColor
  13. head2face = c[i].Character.Head.face.Texture
  14. head2.face.Texture = head2face
  15. h2w = Instance.new("Weld")
  16. h2w.Parent = c[i].Character.Torso
  17. h2w.Part0 = h2w.Parent
  18. h2w.Part1 = head2
  19. h2w.C1 = CFrame.new(0,-1.5,0)
  20. end
  21. end
  22. end
  23. wait(0.5)
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement