Advertisement
Guest User

Untitled

a guest
Jul 24th, 2017
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. Hat = Instance.new("Model")
  2. Hat.Parent = char
  3. Hat.Name = "Hat"
  4. rh = Instance.new("Part")
  5. rh.Parent = Hat
  6. rh.BrickColor = BrickColor.new("Really black")
  7. rh.Locked = true
  8. rh.CanCollide = false
  9. mesh = Instance.new("SpecialMesh")
  10. rh.formFactor = "Symmetric"
  11. mesh.MeshType = "FileMesh"
  12. mesh.MeshId = "rbxassetid://430064080"
  13. mesh.Parent = rh
  14. local weld = Instance.new("Weld")
  15. weld.Parent = rh
  16. weld.Part0 = rh
  17. weld.Part1 =char.Head
  18. weld.C0 = CFrame.new(0, -0.5, 0.5)*CFrame.Angles(0, 3, 0)
  19. mesh.Scale = Vector3.new(0.002,0.002, 0.002)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement