Advertisement
mikldapikl

a

Feb 23rd, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2. chr = plr.Character
  3. human = chr:FindFirstChild("Humanoid")
  4. human.MaxHealth, human.Health = math.huge, math.huge
  5. mouse = plr:GetMouse()
  6. cam = workspace.CurrentCamera
  7. tors = chr.Torso
  8. rarm = chr["Right Arm"]
  9. larm = chr["Left Arm"]
  10. rleg = chr["Right Leg"]
  11. lleg = chr["Left Leg"]
  12. hrp = chr.HumanoidRootPart
  13. hed = chr.Head
  14.  
  15. for i,v in pairs(chr:children()) do
  16. if v:IsA("Accessory") then
  17. v:Destroy()
  18. end
  19. end
  20.  
  21. local pa3 = Instance.new("Part",chr)
  22. pa3.Name = "hair"
  23.  
  24. local me3 = Instance.new("SpecialMesh",pa3)
  25. me3.MeshType = "FileMesh"
  26. me3.MeshId = "rbxassetid://538172339"
  27. me3.TextureId = "rbxassetid://1432255047"
  28. me3.Scale = Vector3.new(0.75, 0.75, 0.75)
  29.  
  30. local we3 = Instance.new("Weld")
  31. we3.Parent = pa3
  32. we3.Part0 = hed
  33. we3.Part1 = pa3
  34. we3.C1 = CFrame.new(0,-0.1,0)
  35. we3.C0 = CFrame.Angles(0,0,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement