Advertisement
iiCrazeh

epic sword

Mar 27th, 2015
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. local lp = game.Players.LocalPlayer
  2. local chr = lp.Character
  3.  
  4. --welding
  5. local rs = Instance.new("Motor",chr.Torso)
  6. rs.Part0=chr['Right Arm']
  7. rs.Part1=chr['Torso']
  8. rs.C0=CFrame.new(-1.5,0,0)
  9. local SetWeld=function(weld,cf,ca)
  10. if weld:IsA("Motor") then
  11. weld.C0=cf*ca
  12. end
  13. end
  14.  
  15. local ls = Instance.new("Motor",chr.Torso)
  16. ls.Part0=chr['Left Arm']
  17. ls.Part1=chr['Torso']
  18. ls.C0=CFrame.new(-1.5,0,0)
  19. local SetWeld=function(weld,cf,ca)
  20. if weld:IsA("Motor") then
  21. weld.C0=cf*ca
  22. end
  23. end
  24.  
  25.  
  26. --Stance
  27. SetWeld(rs,CFrame.new(-1.7,.5,0),CFrame.Angles(math.rad(0),math.rad(0),-math.rad(20)))
  28. SetWeld(ls,CFrame.new(1.7,.5,0),CFrame.Angles(math.rad(0),math.rad(0),-math.rad(20)))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement