Advertisement
Ben_Scripts343

Fe rasengan

May 27th, 2021
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.86 KB | None | 0 0
  1. -- bubble gum hat
  2. --bubble gum keybind e
  3. local Player = game:GetService("Players").LocalPlayer
  4. local Character = Player.Character
  5. local Hats = { Ex1 = Character:WaitForChild("MeshPartAccessory"),
  6. }
  7.  
  8. for i,v in next, Hats do
  9. v.Handle.AccessoryWeld:Remove()
  10. for _,mesh in next, v:GetDescendants() do
  11. if mesh:IsA("Mesh") or mesh:IsA("SpecialMesh") then
  12. --mesh:Remove()
  13. end
  14. end
  15. end
  16.  
  17. local function p(i, v)
  18. local att0 = Instance.new("Attachment", i)
  19. local att1 = Instance.new("Attachment", v)
  20. att0.Position = Vector3.new(0,0,0)
  21. att1.Position = Vector3.new(0,0,0)
  22. local AP = Instance.new("AlignPosition", i)
  23. AP.Attachment1 = att1
  24. AP.Attachment0 = att0
  25. AP.RigidityEnabled = true
  26. local AO = Instance.new("AlignOrientation", i)
  27. AO.Attachment1 = att1
  28. AO.Attachment0 = att0
  29. AO.RigidityEnabled = true
  30. end
  31.  
  32. p(Hats.Ex1.Handle, Character["Right Arm"])
  33.  
  34. Hats.Ex1.Handle.Attachment.Rotation = Vector3.new(0,0,0)--part1
  35.  
  36. Character:WaitForChild("Right Arm"):FindFirstChild("Attachment").Name = "Attachment1"
  37.  
  38.  
  39. Character:WaitForChild("Right Arm").Attachment1.Position = Vector3.new(0,0,0)--part1
  40.  
  41. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  42. if key == "e" then
  43. wait(1.09)
  44. Character:WaitForChild("Right Arm").Attachment1.Position = Vector3.new(0,-1,0)--part1
  45.  
  46. wait(1.10)
  47. Character:WaitForChild("Right Arm").Attachment1.Position = Vector3.new(0,-5,0)--part1
  48. wait(0.46)
  49. Character:WaitForChild("Right Arm").Attachment1.Position = Vector3.new(0,0.1,0)--part1
  50. end
  51. end
  52. )
  53.  
  54. plr = game.Players.LocalPlayer
  55. dead = false
  56. char = plr.Character
  57.  
  58. rarm = char["Right Arm"]
  59. larm = char["Left Arm"]
  60. lleg = char["Left Leg"]
  61. rleg = char["Right Leg"]
  62. hum = char["HumanoidRootPart"]
  63.  
  64. rarm:BreakJoints()
  65. larm:BreakJoints()
  66.  
  67.  
  68. l = Instance.new("Attachment",larm)
  69. l.Rotation = Vector3.new(78,0,0)
  70. l.Position = Vector3.new(1.5, 0.45, -0.29)
  71.  
  72. h = Instance.new("Attachment", hum)
  73.  
  74. r = Instance.new("Attachment",rarm)
  75. r.Rotation = Vector3.new(78,0,0)
  76. r.Position = Vector3.new(-1.5, 0.4, -0.29)
  77.  
  78.  
  79. --rarm
  80. rap = Instance.new("AlignPosition",rarm)
  81. rap.Attachment0 = r
  82. rap.Attachment1 = h
  83. rap.RigidityEnabled = true
  84.  
  85.  
  86. rao = Instance.new("AlignOrientation",rarm)
  87. rao.Attachment0 = r
  88. rao.Attachment1 = h
  89. rao.RigidityEnabled = true
  90.  
  91. --larm
  92. lap = Instance.new("AlignPosition",larm)
  93. lap.Attachment0 = l
  94. lap.Attachment1 = h
  95. lap.RigidityEnabled = true
  96.  
  97. lao = Instance.new("AlignOrientation",larm)
  98. lao.Attachment0 = l
  99. lao.Attachment1 = h
  100. lao.RigidityEnabled = true
  101.  
  102.  
  103.  
  104. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  105. if k == "e" then
  106.  
  107. r.Rotation = Vector3.new(70,0,0)
  108. r.Position = Vector3.new(-1.5, 0.4, -0.29)
  109.  
  110. wait(0.09)
  111.  
  112. r.Rotation = Vector3.new(-78,0,0)
  113. r.Position = Vector3.new(-1.5, 0.4, 0.45)
  114.  
  115. wait(1.2)
  116.  
  117. r.Rotation = Vector3.new(-90,0,0)
  118. r.Position = Vector3.new(-1.5, 0.4, 0.67)
  119.  
  120. wait(0.8)
  121.  
  122. r.Rotation = Vector3.new(-90,0,0)
  123. r.Position = Vector3.new(-1.5, 2, 0.67)
  124.  
  125. wait(0.4)
  126.  
  127. r.Rotation = Vector3.new(-78,0,0)
  128. r.Position = Vector3.new(-1.5, 2, 0.45)
  129.  
  130.  
  131. wait(0.09)
  132.  
  133. r.Rotation = Vector3.new(-78,0,0)
  134. r.Position = Vector3.new(-1.5, 0.4, 0.45)
  135.  
  136. wait(0.01)
  137. r.Rotation = Vector3.new(70,0,0)
  138. r.Position = Vector3.new(-1.5, 0.4, -0.29)
  139. wait(0.01)
  140. r.Rotation = Vector3.new(78,0,0)
  141. r.Position = Vector3.new(-1.5, 0.4, -0.29)
  142.  
  143. end
  144. end
  145. )
  146.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement