helloperson

Untitled

May 24th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.30 KB | None | 0 0
  1. --[[ B-Pose ]]--
  2. -------------------------------------------------------
  3. --[[
  4.  
  5. This script was created by WafflesAreVeryGood.
  6. ATTACKS
  7. _______
  8.  
  9.  
  10. --]]
  11. -------------------------------------------------------
  12. print("This script was created by WafflesAreVeryGood!")
  13. --[[Changeable Variables]]--
  14.  
  15. --[[Important Variables]]--
  16. local plr = game:GetService('Players').LocalPlayer
  17. local char = plr.Character
  18. local mouse = plr:GetMouse()
  19. local input = game:GetService('UserInputService')
  20. ----
  21. local joints = {"Right Shoulder", "Left Shoulder", "Right Hip", "Left Hip", "Neck", "RootJoint"}
  22. local torso,head,rootpart = char.Torso,char.Head,char.HumanoidRootPart
  23. local rs = torso["Right Shoulder"]
  24. local ls = torso["Left Shoulder"]
  25. local rh = torso["Right Hip"]
  26. local lh = torso["Left Hip"]
  27. local neck = torso.Neck
  28. local rj = rootpart["RootJoint"]
  29. local humanoid = char:FindFirstChildOfClass("Humanoid")
  30. ----
  31. local huge = Vector3.new(math.huge, math.huge, math.huge)
  32. local attacking = false
  33. local cananim = true
  34.  
  35. --[[ Functions ]]--
  36. function swait(t)
  37. if t then
  38. for i = 0, t do
  39. game:GetService('RunService').Stepped:wait(0)
  40. end
  41. else
  42. game:GetService('RunService').Stepped:wait(0)
  43. end
  44. return true
  45. end
  46. pcall(function()
  47. char.Animate:Destroy()
  48. end)
  49. for i,v in pairs(humanoid:GetPlayingAnimationTracks()) do
  50. v:Stop()
  51. end
  52. --[[ Actual script :OOOOOOOOOO ]]--
  53. while true do
  54. swait()
  55. rs.C1 = rs.C1:Lerp(CFrame.new(0.687754035, 0.787718832, 1.59043133, -4.37113883e-08, 0, 1, -0.401673257, 0.915783048, -1.75576957e-08, -0.915783048, -0.401673257, -4.00301481e-08), 0.3)
  56. ls.C1 = ls.C1:Lerp(CFrame.new(-1.56192493, 2.50332451, 0, -4.37113883e-08, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-08), 0.3)
  57. rh.C1 = rh.C1:Lerp(CFrame.new(0.5, 1, 0, -4.37113883e-08, 0, 1, -0.99638629, -0.0849373341, -4.35534275e-08, 0.0849373341, -0.99638629, 3.71272879e-09), 0.3)
  58. lh.C1 = lh.C1:Lerp(CFrame.new(-1.47374821, -0.0364760756, -1.73632467, -4.37113883e-08, 0, -1, 0.65424633, -0.756281555, -2.85980146e-08, -0.756281555, -0.65424633, 3.3058118e-08), 0.3)
  59. neck.C1 = neck.C1:Lerp(CFrame.new(0.570538223, -0.5, 0, 0.0328284353, 0.999460995, 0, 0, 0, 1, 0.999460995, -0.0328284353, 0), 0.3)
  60. rj.C1 = rj.C1:Lerp(CFrame.new(0, 0, 0, -0.00735945022, -0.999972939, 0, 0, 0, 1, -0.999972939, 0.00735945022, 0), 0.3)
  61. swait()
  62. end
Add Comment
Please, Sign In to add comment