I_M_Epic

Dab (edited)

May 27th, 2017
279
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. local Plr = game.Players.LocalPlayer
  2. local PChar = Plr.Character
  3. local PlrMouse = Plr:GetMouse()
  4. wait(0.5)
  5. print("Press F For DAAAAB!")
  6. function NewWeld(Parent, Part0, Part1, C0, C1)
  7. local Weld = Instance.new("Weld", Parent)
  8. Weld.Part0 = Part0
  9. Weld.Part1 = Part1
  10. Weld.C0 = C0
  11. Weld.C1 = C1
  12. return Weld
  13. end
  14.  
  15. function Dab()
  16. local LeftArmWeld = NewWeld(PChar["Torso"], PChar["Torso"], PChar["Left Arm"], CFrame.new(0, 0, 0), CFrame.new(-0.920207739, -0.218444109, 0.510000706, -0.342019916, 0.939692736, 0, -0.939692736, -0.342019886, 0, 0, 0, 1))
  17. local RightArmWeld = NewWeld(PChar["Torso"], PChar["Torso"], PChar["Right Arm"], CFrame.new(0, 0, 0), CFrame.new(-0.230916262, 2.08470058, 0, -0.342019916, 0.939692736, 0, -0.939692736, -0.342019886, 0, 0, 0, 1))
  18. LeftArmWeld.Parent = PChar["Torso"]
  19. RightArmWeld.Parent = PChar["Torso"]
  20. local DabSound = Instance.new("Sound", PChar)
  21. DabSound.SoundId = "rbxassetid://325360758"
  22. DabSound.Volume = 100
  23. DabSound.Pitch = 1.1
  24. DabSound:Play()
  25. local DabParticle = Instance.new("ParticleEmitter", PChar["Torso"])
  26. DabParticle.Texture = "rbxassetid://225169638"
  27. DabParticle.Rate = 30
  28. DabParticle.VelocitySpread = 100
  29. end
  30.  
  31. PlrMouse.KeyDown:connect(function(key) local key = key:lower()
  32. if key == "f" then
  33. Dab()
  34. end
  35. end)
Advertisement
Add Comment
Please, Sign In to add comment