Advertisement
erfecdwxsthgevfcd

Untitled

Jan 20th, 2020
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. rarm = char:findFirstChild("Right Arm")
  2.  
  3. larm = char:findFirstChild("Left Arm")
  4.  
  5. lleg = char:findFirstChild("Left Leg")
  6.  
  7. torso = char:findFirstChild("Torso")
  8.  
  9. hum = char:findFirstChild("Humanoid")
  10.  
  11.  
  12. righthold = Instance.new("Part")
  13.  
  14. prop(righthold, bricks, false, 1, 0, 0.1, 0.1, 0.1, "White", false, "Custom")
  15.  
  16. w11 = Instance.new("Weld")
  17.  
  18. weld(w11, rarm, righthold, 0, 0, 0, 0, 1, 0)
  19.  
  20.  
  21. lefthold = Instance.new("Part")
  22.  
  23. prop(lefthold, bricks, false, 1, 0, 0.1, 0.1, 0.1, "White", false, "Custom")
  24.  
  25. w12 = Instance.new("Weld")
  26.  
  27. weld(w12, larm, lefthold, 0, 0, 0, 0, 1, 0)
  28.  
  29.  
  30. hold = Instance.new("Part")
  31.  
  32. prop(hold, bricks, false, 0, 0, 0.2, 0.4, 0.7, "Really red", false, "Custom")
  33.  
  34. oh = Instance.new("Weld")
  35.  
  36. weld(oh, lleg, hold, -math.pi/1.4, 0, math.rad(35), 0.55, -0.9, 0.3)
  37.  
  38.  
  39. knife = Instance.new("Part")
  40.  
  41. prop(knife, bricks, false, 0, 0, 0.35, 1.1, 0.5, "Really black", false, "Custom")
  42.  
  43. orr = Instance.new("Weld")
  44.  
  45. weld(orr, hold, knife, 0, 0, 0, 0, 0.7, 0)
  46.  
  47. ar = Instance.new("Weld")
  48.  
  49. weld(ar, lefthold, nil, math.pi/2, 0, math.pi, 0, 0, 0)
  50.  
  51.  
  52.  
  53. blade = Instance.new("Part")
  54.  
  55. prop(blade, bricks, false, 0, 0, 0.1, 1.5, 0.4, "Medium grey", false, "Custom")
  56.  
  57. Instance.new("BlockMesh",blade).Scale = Vector3.new(0.3,1,1)
  58.  
  59. w2 = Instance.new("Weld")
  60.  
  61. weld(w2, knife, blade, 0, 0, 0, 0, -1.2, 0)
  62.  
  63.  
  64. blade2 = Instance.new("Part")
  65.  
  66. prop(blade2, bricks, false, 0, 0, 0.1, 0.5, 0.4, "Medium grey", false, "Custom")
  67.  
  68. mew = Instance.new("SpecialMesh",blade2)
  69.  
  70. mew.MeshType = "Wedge"
  71.  
  72. mew.Scale = Vector3.new(0.3,1,1)
  73.  
  74. w3 = Instance.new("Weld")
  75.  
  76. weld(w3, blade, blade2, 0, 0, 0, 0, -1, 0)
  77.  
  78.  
  79.  
  80.  
  81.  
  82. rb = Instance.new("Part")
  83.  
  84. prop(rb, bricks, false, 1, 0, 0.1, 0.1, 0.1, "White", false, "Custom")
  85.  
  86. w13 = Instance.new("Weld")
  87.  
  88. weld(w13, torso, rb, 0, 0, 0, -1.5, -0.5, 0)
  89.  
  90.  
  91. lb = Instance.new("Part")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement