Advertisement
SlyHades66

Igor

Jan 27th, 2017
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.21 KB | None | 0 0
  1. --R6
  2. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  3. s.Part0 = game.Players.LocalPlayer.Character.Torso
  4. s.Part1 = game.Players.LocalPlayer.Character.Head
  5. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  6. s.Part0 = game.Players.LocalPlayer.Character.Torso
  7. s.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
  8. s.C0 = CFrame.new(1.5,1.5,0)
  9. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  10. s.Part0 = game.Players.LocalPlayer.Character.Torso
  11. s.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
  12. s.C0 = CFrame.new(-1.5,1.5,0)
  13. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  14. s.Part0 = game.Players.LocalPlayer.Character.Torso
  15. s.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
  16. s.C0 = CFrame.new(-1.5,-1.5,0)
  17. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
  18. s.Part0 = game.Players.LocalPlayer.Character.Torso
  19. s.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
  20. s.C0 = CFrame.new(1.5,-1.5,0)
  21.  
  22. -----------------------------------------------------------------------------
  23.  
  24. --R15
  25. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.UpperTorso)
  26. s.Part0 = game.Players.LocalPlayer.Character.UpperTorso
  27. s.Part1 = game.Players.LocalPlayer.Character.Head
  28. s.C0 = CFrame.new(0,-1.5,0)
  29. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.UpperTorso)
  30. s.Part0 = game.Players.LocalPlayer.Character.UpperTorso
  31. s.Part1 = game.Players.LocalPlayer.Character["RightUpperArm"]
  32. s.C0 = CFrame.new(1.5,1.5,0)
  33. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.UpperTorso)
  34. s.Part0 = game.Players.LocalPlayer.Character.UpperTorso
  35. s.Part1 = game.Players.LocalPlayer.Character["LeftUpperArm"]
  36. s.C0 = CFrame.new(-1.5,1.5,0)
  37. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.UpperTorso)
  38. s.Part0 = game.Players.LocalPlayer.Character.UpperTorso
  39. s.Part1 = game.Players.LocalPlayer.Character["LeftUpperLeg"]
  40. s.C0 = CFrame.new(-1.5,-1.5,0)
  41. local s = Instance.new("Weld", game.Players.LocalPlayer.Character.UpperTorso)
  42. s.Part0 = game.Players.LocalPlayer.Character.UpperTorso
  43. s.Part1 = game.Players.LocalPlayer.Character["RightUpperLeg"]
  44. s.C0 = CFrame.new(1.5,-1.5,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement