Advertisement
idkwhatiam

take the l

May 10th, 2019
478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.78 KB | None | 0 0
  1. plr = owner
  2. char = owner.Character
  3. tors = char.Torso
  4. left = char["Left Leg"]
  5. right = char["Right Leg"]
  6. rights = char["Right Arm"]
  7. lefts = char["Left Arm"]
  8. head = char.Head
  9. rootpart = char.HumanoidRootPart
  10.  
  11. leg1 = Instance.new("Weld")
  12. leg1.Parent = left
  13. leg1.Part0 = left
  14. leg1.Part1 = rootpart
  15. leg1.C0 = CFrame.new(0.5, 2, 0)
  16.  
  17. root = Instance.new("Weld")
  18. root.Parent = tors
  19. root.Part0 = tors
  20. root.Part1 = rootpart
  21.  
  22. leg2 = Instance.new("Weld")
  23. leg2.Parent = right
  24. leg2.Part0 = right
  25. leg2.Part1 = rootpart
  26. leg2.C0 = CFrame.new(-0.5, 2, 0)
  27.  
  28. arm2 = Instance.new("Weld")
  29. arm2.Parent = rights
  30. arm2.Part0 = rights
  31. arm2.Part1 = tors
  32. arm2.C0 = CFrame.new(-1.5, 0, 0)
  33.  
  34. arm1 = Instance.new("Weld")
  35. arm1.Parent = lefts
  36. arm1.Part0 = lefts
  37. arm1.Part1 = tors
  38. arm1.C0 = CFrame.new(1.5, 0, 0)
  39.  
  40. hed = Instance.new("Weld")
  41. hed.Parent = head
  42. hed.Part0 = head
  43. hed.Part1 = tors
  44. hed.C0 = CFrame.new(0, -1.5, 0)
  45.  
  46. dancing = true
  47.  
  48. music = Instance.new("Sound")
  49. music.Parent = head
  50. music.Playing = true
  51. music.Volume = 99999
  52. music.Looped = true
  53. music.SoundId = "rbxassetid://1690737535"
  54.  
  55. while dancing do
  56.     arm2.C1 = CFrame.Angles(-0.75, 0, -15)
  57.     arm2.C0 = CFrame.new(1.5, 1, -0.5)
  58.     leg1.C0 = CFrame.new(-0.25, 2, 0)
  59.     leg1.C1 = CFrame.Angles(0, 0, 68)
  60.     root.C0 = CFrame.new(0, 0.1, 0)
  61.     wait(0.05)
  62.     leg1.C1 = CFrame.Angles(0, 0, 100)
  63.     root.C0 = CFrame.new(0, 0.05, 0)
  64.     wait(0.05)
  65.     leg1.C0 = CFrame.new(0.5, 2, 0)
  66.     leg1.C1 = leg2.C1
  67.     root.C0 = CFrame.new(0, 0, 0)
  68.     wait(0.05)
  69.     leg2.C0 = CFrame.new(0.25, 2, 0)
  70.     root.C0 = CFrame.new(0, 0.05, 0)
  71.     leg2.C1 = CFrame.Angles(0, 0, -68)
  72.     wait(0.05)
  73.     leg2.C1 = CFrame.Angles(0, 0, -100)
  74.     root.C0 = CFrame.new(0, 0.1, 0)
  75.     wait(0.05)
  76.     leg2.C0 = CFrame.new(-0.5, 2, 0)
  77.     root.C0 = CFrame.new(0, 0.1, 0)
  78.     leg2.C1 = leg1.C1
  79.     wait(0.05)
  80. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement