Advertisement
TheEndHacks

DO THE FAVE!

Apr 23rd, 2020
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.84 KB | None | 0 0
  1. local player = owner
  2. local char = player.Character
  3. local RightArm = char["Right Arm"]
  4. print("success")
  5.  
  6. local RSweld = Instance.new("Weld")
  7. local motor = char.Torso["Right Shoulder"]
  8. RSweld.C0 = motor.C0
  9. RSweld.C1 = motor.C1
  10. RSweld.Parent = motor.Parent
  11. RSweld.Name = "arm1weld"
  12. RSweld.Part0 = motor.Part0
  13. RSweld.Part1 = motor.Part1
  14.  
  15. local LSweld = Instance.new("Weld")
  16. local motor = char.Torso["Left Shoulder"]
  17. LSweld.C0 = motor.C0
  18. LSweld.C1 = motor.C1
  19. LSweld.Parent = motor.Parent
  20. LSweld.Name = "arm2weld"
  21. LSweld.Part0 = motor.Part0
  22. LSweld.Part1 = motor.Part1
  23.  
  24. local RHweld = Instance.new("Weld")
  25. local motor = char.Torso["Right Hip"]
  26. RHweld.C0 = motor.C0
  27. RHweld.C1 = motor.C1
  28. RHweld.Parent = motor.Parent
  29. RHweld.Name = "leg1weld"
  30. RHweld.Part0 = motor.Part0
  31. RHweld.Part1 = motor.Part1
  32.  
  33. local LHweld = Instance.new("Weld")
  34. local motor = char.Torso["Left Hip"]
  35. LHweld.C0 = motor.C0
  36. LHweld.C1 = motor.C1
  37. LHweld.Parent = motor.Parent
  38. LHweld.Name = "leg2weld"
  39. LHweld.Part0 = motor.Part0
  40. LHweld.Part1 = motor.Part1
  41.  
  42. local NKweld = Instance.new("Weld")
  43. local motor = char.Torso["Neck"]
  44. NKweld.C0 = motor.C0
  45. NKweld.C1 = motor.C1
  46. NKweld.Parent = motor.Parent
  47. NKweld.Name = "neckweld"
  48. NKweld.Part0 = motor.Part0
  49. NKweld.Part1 = motor.Part1
  50.  
  51. -- right arm CFrames
  52. local rightdefault = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  53. local rightFAVE = CFrame.new(1.61877656, 0.333991408, 0, 0, -0.866025984, -0.499998987, 0, -0.499998987, 0.866025984, -1, 0, 0)
  54. -- left arm CFrames
  55. local leftdefault = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  56. local leftFAVE = CFrame.new(-1.78829527, 0.609139919, 0, 0, 0.766044974, 0.64278698, 0, -0.64278698, 0.766044974, 1, 0, 0)
  57. -- right leg CFrames
  58. local rightLdefault = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  59. local rightLFAVE = CFrame.new(1, -1, 0, 0, -0.342019916, 0.939692736, 0, 0.939692736, 0.342019886, -1, 0, 0)
  60. --left leg CFrames
  61. local leftLdefault = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  62. local leftLFAVE = CFrame.new(-1, -1, 0, 0, 0.342019916, -0.939692736, 0, 0.939692736, 0.342019886, 1, 0, 0)
  63. --head CFrames
  64.  
  65. local headdefault = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  66.  
  67. --animation time!
  68.  
  69. local tweenservice = game:GetService("TweenService")
  70. local tweensettings = TweenInfo.new(1, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, 0, false, 0)
  71. tweenservice:Create(RHweld, tweensettings, {C0 = rightLFAVE}):Play()
  72. tweenservice:Create(LSweld, tweensettings, {C0 = leftFAVE}):Play()
  73. wait(1)
  74. local m = Instance.new("Sound", player.Character.Head)
  75. m.Name = "DOTHEFAVE"
  76. m.SoundId = "rbxassetid://2907411680"
  77. m.Volume = 0
  78. m.Looped = true
  79. m:play()
  80. wait(0.5)
  81. for _,v in pairs(workspace:GetDescendants()) do
  82. pcall(function()
  83. if v.Name == "DOTHEFAVE" and v.SoundId == "rbxassetid://2907411680" then
  84. v.TimePosition = 0
  85. end
  86. end)
  87. end
  88. m.Volume = 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement