Advertisement
1e_0

Untitled

Nov 12th, 2020 (edited)
2,831
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.44 KB | None | 0 0
  1. -- Hats Needed
  2. -- https://www.roblox.com/catalog/62724852/Chestnut-Bun
  3. -- https://www.roblox.com/catalog/63690008/Pal-Hair
  4. -- https://www.roblox.com/catalog/48474294/ROBLOX-Girl-Hair
  5.  
  6. -- Replace USERNAME with your Roblox Username
  7.  
  8. game.Players.LocalPlayer.Character["Pal Hair"].Handle.Mesh:Destroy()
  9. game.Players.LocalPlayer.Character["Kate Hair"].Handle.Mesh:Destroy()
  10. game.Players.LocalPlayer.Character["Pink Hair"].Handle.Mesh:Destroy()
  11.  
  12. local Player = game:GetService("Players").LocalPlayer
  13. local Character = game.Workspace.USERNAME -- REPLACE USERNAME WITH UR NAME
  14. local Hats = {
  15. gun = game.Workspace.USERNAME:WaitForChild("Kate Hair"), -- REPLACE USERNAME WITH UR NAME
  16.  
  17. }
  18. Hats.gun.Handle.AccessoryWeld:Remove()
  19. local function align(i,v)
  20. local att0 = Instance.new("Attachment", i)
  21. att0.Position = Vector3.new(0,0,0)
  22. local att1 = Instance.new("Attachment", v)
  23. att1.Position = Vector3.new(0,-1.5,-1)
  24. local AP = Instance.new("AlignPosition", i)
  25. AP.Attachment0 = att0
  26. AP.Attachment1 = att1
  27. AP.RigidityEnabled = false
  28. AP.ReactionForceEnabled = false
  29. AP.ApplyAtCenterOfMass = true
  30. AP.MaxForce = 9999999
  31. AP.MaxVelocity = math.huge
  32. AP.Responsiveness = 1000000000000
  33. local AO = Instance.new("AlignOrientation", i)
  34. AO.Attachment0 = att0
  35. AO.Attachment1 = att1
  36. AO.ReactionTorqueEnabled = false
  37. AO.PrimaryAxisOnly = false
  38. AO.MaxTorque = 9999999
  39. AO.MaxAngularVelocity = math.huge
  40. AO.Responsiveness = 10000000000000
  41. end
  42. align(Hats.gun.Handle, Character["Torso"])
  43.  
  44. Hats.gun.Handle.Attachment.Orientation = Vector3.new(90,90,0)
  45. local Hats = {
  46. gun = game.Workspace.USERNAME:WaitForChild("Pink Hair"), -- REPLACE USERNAME WITH UR NAME
  47.  
  48. }
  49. Hats.gun.Handle.AccessoryWeld:Remove()
  50. local function align(i,v)
  51. local att0 = Instance.new("Attachment", i)
  52. att0.Position = Vector3.new(0,0,0)
  53. local att1 = Instance.new("Attachment", v)
  54. att1.Position = Vector3.new(0,-1,-1.5)
  55. local AP = Instance.new("AlignPosition", i)
  56. AP.Attachment0 = att0
  57. AP.Attachment1 = att1
  58. AP.RigidityEnabled = false
  59. AP.ReactionForceEnabled = false
  60. AP.ApplyAtCenterOfMass = true
  61. AP.MaxForce = 9999999
  62. AP.MaxVelocity = math.huge
  63. AP.Responsiveness = 1000000000000
  64. local AO = Instance.new("AlignOrientation", i)
  65. AO.Attachment0 = att0
  66. AO.Attachment1 = att1
  67. AO.ReactionTorqueEnabled = false
  68. AO.PrimaryAxisOnly = false
  69. AO.MaxTorque = 9999999
  70. AO.MaxAngularVelocity = math.huge
  71. AO.Responsiveness = 10000000000000
  72. end
  73. align(Hats.gun.Handle, Character["Torso"])
  74.  
  75. Hats.gun.Handle.Attachment.Orientation = Vector3.new(0,0,0)
  76. local Hats = {
  77. gun = game.Workspace.USERNAME:WaitForChild("Pal Hair"), -- REPLACE USERNAME WITH UR NAME
  78.  
  79. }
  80. Hats.gun.Handle.AccessoryWeld:Remove()
  81. local function align(i,v)
  82. local att0 = Instance.new("Attachment", i)
  83. att0.Position = Vector3.new(0,0,0)
  84. local att1 = Instance.new("Attachment", v)
  85. att1.Position = Vector3.new(0,-1,-3.5)
  86. local AP = Instance.new("AlignPosition", i)
  87. AP.Attachment0 = att0
  88. AP.Attachment1 = att1
  89. AP.RigidityEnabled = false
  90. AP.ReactionForceEnabled = false
  91. AP.ApplyAtCenterOfMass = true
  92. AP.MaxForce = 9999999
  93. AP.MaxVelocity = math.huge
  94. AP.Responsiveness = 1000000000000
  95. local AO = Instance.new("AlignOrientation", i)
  96. AO.Attachment0 = att0
  97. AO.Attachment1 = att1
  98. AO.ReactionTorqueEnabled = false
  99. AO.PrimaryAxisOnly = false
  100. AO.MaxTorque = 9999999
  101. AO.MaxAngularVelocity = math.huge
  102. AO.Responsiveness = 10000000000000
  103. end
  104. align(Hats.gun.Handle, Character["Torso"])
  105.  
  106. Hats.gun.Handle.Attachment.Orientation = Vector3.new(0,0,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement