Advertisement
coolgoldboy166

mapaches

Dec 30th, 2017
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.17 KB | None | 0 0
  1. wait(0)
  2. char = game.Players.LocalPlayer.Character
  3. for _, child in pairs(char:GetChildren()) do
  4. if child.ClassName == 'Accessory' then
  5. child:Destroy()
  6. end
  7. end
  8.  
  9. --"Ridiculous"
  10. debounce = false
  11. h = Instance.new("Accessory")
  12. p = Instance.new("Part")
  13. h.Name = "Friendly"
  14. p.Parent = h
  15. p.Position = char:findFirstChild("Head").Position
  16. p.Name = "Handle"
  17. p.formFactor = 0
  18. p.BottomSurface = 0
  19. p.TopSurface = 0
  20. p.Locked = true
  21. Hat = Instance.new("SpecialMesh", p)
  22. Hat.MeshId = "http://www.roblox.com/asset/?id=185811808"
  23. Hat.TextureId = "http://www.roblox.com/asset/?id=185811850"
  24. Hat.Scale = Vector3.new(1.2, 1.2, 1.2)
  25. h.Parent = char
  26. h.AttachmentForward = Vector3.new (0, 0, -1)
  27. h.AttachmentPos = Vector3.new(0, -0.08, -0.1)
  28. h.AttachmentRight = Vector3.new (1, 0, 0)
  29. h.AttachmentUp = Vector3.new (0, 1, 0)
  30. wait(0.01)
  31. debounce = true
  32.  
  33.  
  34. --"Friendly"
  35. debounce = false
  36. h = Instance.new("Accessory")
  37. p = Instance.new("Part")
  38. h.Name = "Friendly"
  39. p.Parent = h
  40. p.Position = char:findFirstChild("Head").Position
  41. p.Name = "Handle"
  42. p.formFactor = 0
  43. p.BottomSurface = 0
  44. p.TopSurface = 0
  45. p.Locked = true
  46. Hat = Instance.new("SpecialMesh", p)
  47. Hat.MeshId = "http://www.roblox.com/asset/?id=450508134"
  48. Hat.TextureId = "http://www.roblox.com/asset/?id=450507988"
  49. Hat.Scale = Vector3.new(0.5, 0.5, 0.5)
  50. h.Parent = char
  51. h.AttachmentForward = Vector3.new (0, 0, -1)
  52. h.AttachmentPos = Vector3.new(0, -0.48, -0.5)
  53. h.AttachmentRight = Vector3.new (1, 0, 0)
  54. h.AttachmentUp = Vector3.new (0, 1, 0)
  55. wait(0.01)
  56. debounce = true
  57. --Sound
  58. IDs = {304511128,190316871}
  59. Sound = Instance.new("Sound", char.Head)
  60. Sound.SoundId = "rbxassetid://" .. IDs[math.random(1,2)]
  61. Sound.Looped = true
  62. Sound.Volume = 100
  63. Sound :play()
  64.  
  65. while true do
  66. h.AttachmentPos = Vector3.new(0, -0.48, -0.5)
  67. wait(0.05)
  68. h.AttachmentPos = Vector3.new(0, -0.55, -0.5)
  69. wait(0.05)
  70. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement