Advertisement
Guest User

tail

a guest
Dec 13th, 2019
557
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. print("Furry script, now with more cringe!")
  2. wait(0)
  3. plr = owner
  4. char = plr.Character
  5.  
  6. --Hat Remove
  7. for _, child in pairs(char:GetChildren()) do
  8. if child.ClassName == 'Accessory' then
  9. child:Destroy()
  10. end
  11. end
  12.  
  13. --Tail
  14. debounce = false
  15. h = Instance.new("Hat")
  16. p = Instance.new("Part")
  17. h.Name = "Tail"
  18. p.Parent = h
  19. p.Position = char:findFirstChild("Head").Position
  20. p.Name = "Handle"
  21. p.formFactor = 0
  22. p.Size = Vector3.new(2, 1, 2)
  23. p.BottomSurface = 0
  24. p.TopSurface = 0
  25. p.Locked = true
  26. Hat = Instance.new("SpecialMesh", p)
  27. Hat.MeshId = "http://www.roblox.com/asset/?id=188635159"
  28. Hat.TextureId = "http://www.roblox.com/asset/?id=15224980"
  29. h.Parent = char
  30. h.AttachmentForward = Vector3.new (0, 0, -1)
  31. h.AttachmentPos = Vector3.new(-1, 1.8, -0.8)
  32. h.AttachmentRight = Vector3.new (1, 0, 0)
  33. h.AttachmentUp = Vector3.new (0, 1, 0)
  34. wait(0.5)
  35. debounce = true
  36.  
  37. --Ears
  38. debounce = false
  39. h = Instance.new("Hat")
  40. p = Instance.new("Part")
  41. h.Name = "Tail"
  42. p.Parent = h
  43. p.Position = char:findFirstChild("Head").Position
  44. p.Name = "Handle"
  45. p.formFactor = 0
  46. p.Size = Vector3.new(2, 1, 2)
  47. p.BottomSurface = 0
  48. p.TopSurface = 0
  49. p.Locked = true
  50. Hat = Instance.new("SpecialMesh", p)
  51. Hat.MeshId = "http://www.roblox.com/asset/?id=152606713"
  52. Hat.TextureId = "http://www.roblox.com/asset/?id=624604971"
  53. h.Parent = char
  54. h.AttachmentForward = Vector3.new (0, 0, -1)
  55. h.AttachmentPos = Vector3.new(0, -0.8, -0.15)
  56. h.AttachmentRight = Vector3.new (1, 0, 0)
  57. h.AttachmentUp = Vector3.new (0, 1, 0)
  58. wait(0.5)
  59. debounce = true
  60.  
  61. --Face
  62. Face = char.Head.face
  63. Face.Texture = "http://www.roblox.com/asset/?id=114820106"
  64. --Song
  65. sound = Instance.new("Sound", char.Torso)
  66. sound.SoundId = "http://www.roblox.com/asset/?id=616077866"
  67. sound.Volume = 0.5
  68. sound.Looped = true
  69. sound : play()
  70.  
  71. --Unicorn
  72. Tool = Instance.new("Tool", char)
  73. Tool.Name = "Unicorn LOL"
  74. Handle = Instance.new("Part", Tool)
  75. Handle.BottomSurface = "Smooth"
  76. Handle.TopSurface = "Smooth"
  77. Handle.Name = "Handle"
  78. Mesh = Instance.new("SpecialMesh", Handle)
  79. Mesh.MeshId = "http://www.roblox.com/asset/?id=84003494"
  80. Mesh.TextureId = "http://www.roblox.com/asset/?id=83992632"
  81.  
  82. while true do
  83. char.Torso.Touched:connect(function(p)
  84. if p.Parent then
  85. if p.Parent:IsA("Model") then
  86. if game.Players:FindFirstChild(p.Parent.Name) then
  87. if p.Parent.Name ~= owner then
  88. game.Players:FindFirstChild(p.Parent.Name).Character:BreakJoints()
  89. end
  90. end
  91. end
  92. end
  93. end)
  94.  
  95.  
  96. wait(0.1)
  97. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement