Gokussjg

Untitled

Nov 15th, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 239.46 KB | None | 0 0
  1. print("DSSJ4 Loading..")
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local Character = char
  5. local mouse = p:GetMouse()
  6. local larm = char["Left Arm"]
  7. local rarm = char["Right Arm"]
  8. local lleg = char["Left Leg"]
  9. local rleg = char["Right Leg"]
  10. local hed = char.Head
  11. local torso = char.Torso
  12. local hum = char.Humanoid
  13. local cam = game.Workspace.CurrentCamera
  14. local root = char.HumanoidRootPart
  15. local deb = false
  16. local shot = 0
  17. local debris=game:service"Debris"
  18. local l = game:GetService("Lighting")
  19. local rs = game:GetService("RunService").RenderStepped
  20. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  21. local RbxUtility = LoadLibrary("RbxUtility")
  22. local Create = RbxUtility.Create
  23. local m = Create("Model"){
  24. Parent = Character,
  25. Name = "WeaponModel",
  26. }
  27. math.randomseed(os.time())
  28. for i,v in pairs(char:children()) do
  29. if v:IsA("Hat") then
  30. v:Destroy()
  31. end
  32. end
  33. for i,v in pairs (hed:GetChildren()) do
  34. if v:IsA("Sound") then
  35. v:Destroy()
  36. end
  37. end
  38. ----------------------------------------------------
  39. Debounces = {
  40. CanAttack = true;
  41. NoIdl = false;
  42. Slashing = false;
  43. Slashed = false;
  44. RPunch = false;
  45. RPunched = false;
  46. LPunch = false;
  47. LPunched = false;
  48. }
  49. local Touche = {char.Name, }
  50. ----------------------------------------------------
  51. hed.face.Texture = "rbxassetid://34668268"
  52. char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  53. char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  54. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  55. char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  56. ----------------------------------------------------
  57. ypcall(function()
  58. char.Shirt:Destroy()
  59. char.Pants:Destroy()
  60. shirt = Instance.new("Shirt", char)
  61. shirt.Name = "Shirt"
  62. pants = Instance.new("Pants", char)
  63. pants.Name = "Pants"
  64. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  65. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  66. end)
  67. ----------------------------------------------------
  68. function lerp(a, b, t) -- Linear interpolation
  69. return a + (b - a)*t
  70. end
  71.  
  72. function slerp(a, b, t) --Spherical interpolation
  73. dot = a:Dot(b)
  74. if dot > 0.99999 or dot < -0.99999 then
  75. return t <= 0.5 and a or b
  76. else
  77. r = math.acos(dot)
  78. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  79. end
  80. end
  81.  
  82. function matrixInterpolate(a, b, t)
  83. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  84. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  85. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  86. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  87. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  88. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  89. local t = v1:Dot(v2)
  90. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  91. return CFrame.new()
  92. end
  93. return CFrame.new(
  94. v0.x, v0.y, v0.z,
  95. v1.x, v1.y, v1.z,
  96. v2.x, v2.y, v2.z,
  97. v3.x, v3.y, v3.z)
  98. end
  99. ----------------------------------------------------
  100. function genWeld(a,b)
  101. local w = Instance.new("Weld",a)
  102. w.Part0 = a
  103. w.Part1 = b
  104. return w
  105. end
  106. function weld(a, b)
  107. local weld = Instance.new("Weld")
  108. weld.Name = "W"
  109. weld.Part0 = a
  110. weld.Part1 = b
  111. weld.C0 = a.CFrame:inverse() * b.CFrame
  112. weld.Parent = a
  113. return weld;
  114. end
  115. ----------------------------------------------------
  116. function Lerp(c1,c2,al)
  117. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  118. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  119. for i,v in pairs(com1) do
  120. com1[i] = v+(com2[i]-v)*al
  121. end
  122. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  123. end
  124. ----------------------------------------------------
  125. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  126. local wld = Instance.new("Weld", wp1)
  127. wld.Part0 = wp0
  128. wld.Part1 = wp1
  129. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  130. end
  131. ----------------------------------------------------
  132. function weld5(part0, part1, c0, c1)
  133. weeld=Instance.new("Weld", part0)
  134. weeld.Part0=part0
  135. weeld.Part1=part1
  136. weeld.C0=c0
  137. weeld.C1=c1
  138. return weeld
  139. end
  140. ----------------------------------------------------
  141. function HasntTouched(plrname)
  142. local ret = true
  143. for _, v in pairs(Touche) do
  144. if v == plrname then
  145. ret = false
  146. end
  147. end
  148. return ret
  149. end
  150. ----------------------------------------------------
  151. newWeld(torso, larm, -1.5, 0.5, 0)
  152. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  153. newWeld(torso, rarm, 1.5, 0.5, 0)
  154. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  155. newWeld(torso, hed, 0, 1.5, 0)
  156. newWeld(torso, lleg, -0.5, -1, 0)
  157. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  158. newWeld(torso, rleg, 0.5, -1, 0)
  159. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  160. newWeld(root, torso, 0, -1, 0)
  161. torso.Weld.C1 = CFrame.new(0, -1, 0)
  162. ----------------------------------------------------
  163. z = Instance.new("Sound", char)
  164. z.SoundId = "rbxassetid://269443916" --303570180
  165. z.Looped = true
  166. z.Pitch = 1
  167. z.Volume = 1
  168. wait(.1)
  169. z:Play()
  170. ----------------------------------------------------
  171. function NoOutline(Part)
  172. Part.TopSurface, Part.BottomSurface, Part.LeftSurface, Part.RightSurface, Part.FrontSurface, Part.BackSurface = 10, 10, 10, 10, 10, 10
  173. end
  174. function swait(num)
  175. if num == 0 or num == nil then
  176. game:service'RunService'.Heartbeat:wait(0)
  177. else
  178. for i = 0, num do
  179. game:service'RunService'.Heartbeat:wait(0)
  180. end
  181. end
  182. end
  183.  
  184. function nooutline(part)
  185. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  186. end
  187.  
  188. function part(formfactor, parent, material, reflectance, transparency, brickcolor, name, size)
  189. local fp = Create("Part"){
  190. formFactor = formfactor,
  191. Parent = parent,
  192. Reflectance = reflectance,
  193. Transparency = transparency,
  194. CanCollide = false,
  195. Locked = true,
  196. BrickColor = BrickColor.new(tostring(brickcolor)),
  197. Name = name,
  198. Size = size,
  199. Position = Character.Torso.Position,
  200. Material = material,
  201. }
  202. nooutline(fp)
  203. return fp
  204. end
  205.  
  206. function mesh(Mesh, part, meshtype, meshid, offset, scale)
  207. local Msh = Create(Mesh){
  208. Parent = part,
  209. Offset = offset,
  210. Scale = scale,
  211. }
  212. if Mesh == "SpecialMesh" then
  213. Msh.MeshType = meshtype
  214. Msh.MeshId = meshid
  215. end
  216. return Msh
  217. end
  218.  
  219. function weld(parent, part0, part1, c0, c1)
  220. local Weld = Create("Weld"){
  221. Parent = parent,
  222. Part0 = part0,
  223. Part1 = part1,
  224. C0 = c0,
  225. C1 = c1,
  226. }
  227. return Weld
  228. end
  229. ----------------------------------------------------
  230. local m = Instance.new("Model")
  231. m.Name = "Wings"
  232. p1 = Instance.new("Part", m)
  233. p1.Name = "Part1"
  234. p1.BrickColor = BrickColor.new("Really black")
  235. p1.Material = "Fabric"
  236. p1.CFrame = CFrame.new(2.23064709, 5.42307234, -12.1674881, -0.707106709, 0.707106888, -
  237. 2.23517389e-007, -0.499999762, -0.499999851, -0.707106233, -0.499999374, -0.499999732,
  238. 0.707105637)
  239. p1.CanCollide = false
  240. p1.FormFactor = Enum.FormFactor.Symmetric
  241. p1.Elasticity = 0
  242. p1.Size = Vector3.new(1, 4, 1)
  243. p1.BottomSurface = Enum.SurfaceType.Smooth
  244. p1.TopSurface = Enum.SurfaceType.Smooth
  245. b1 = Instance.new("BlockMesh", p1)
  246. b1.Name = "Mesh"
  247. b1.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  248. p2 = Instance.new("Part", m)
  249. p2.Name = "Part2"
  250. p2.BrickColor = BrickColor.new("Really black")
  251. p2.Material = "Fabric"
  252. p2.CFrame = CFrame.new(3.99841213, 4.17309284, -13.4174824, 0.707106709, 2.23517418e-007, -
  253. 0.707106829, 0.49999994, 0.707106292, 0.499999851, 0.499999553, -0.707105696, 0.499999791)
  254. p2.CanCollide = false
  255. p2.FormFactor = Enum.FormFactor.Symmetric
  256. p2.Elasticity = 0
  257. p2.Size = Vector3.new(1, 1, 1)
  258. p2.BottomSurface = Enum.SurfaceType.Smooth
  259. p2.TopSurface = Enum.SurfaceType.Smooth
  260. b2 = Instance.new("SpecialMesh", p2)
  261. b2.MeshType = Enum.MeshType.Wedge
  262. b2.Name = "Mesh"
  263. b2.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  264. p3 = Instance.new("Part", m)
  265. p3.Name = "Part3"
  266. p3.BrickColor = BrickColor.new("Really black")
  267. p3.Material = "Fabric"
  268. p3.CFrame = CFrame.new(2.20711732, 3.78849339, -12.3740644, 0.959171534, 0.28168276,
  269. 0.0253876615, -0.282448769, 0.958654881, 0.0346818939, -0.0145691708, -0.0404358432,
  270. 0.999074996)
  271. p3.CanCollide = false
  272. p3.FormFactor = Enum.FormFactor.Symmetric
  273. p3.Elasticity = 0
  274. p3.Size = Vector3.new(1, 3, 1)
  275. p3.BottomSurface = Enum.SurfaceType.Smooth
  276. p3.TopSurface = Enum.SurfaceType.Smooth
  277. b3 = Instance.new("BlockMesh", p3)
  278. b3.Name = "Mesh"
  279. b3.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  280. p4 = Instance.new("Part", m)
  281. p4.Name = "Part4"
  282. p4.BrickColor = BrickColor.new("Really red")
  283. p4.Material = "Fabric"
  284. p4.CFrame = CFrame.new(1.26502275, 5.19090509, -11.4009991, 0.988936007, -0.146727905,
  285. 0.0218264833, 0.14821738, 0.983390749, -0.104755871, -0.00609340565, 0.106832691, 0.994257689)
  286. p4.CanCollide = false
  287. p4.FormFactor = Enum.FormFactor.Symmetric
  288. p4.Elasticity = 0
  289. p4.Size = Vector3.new(1, 2, 1)
  290. p4.BottomSurface = Enum.SurfaceType.Smooth
  291. p4.TopSurface = Enum.SurfaceType.Smooth
  292. b4 = Instance.new("BlockMesh", p4)
  293. b4.Name = "Mesh"
  294. b4.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  295. p5 = Instance.new("Part", m)
  296. p5.Name = "Part5"
  297. p5.BrickColor = BrickColor.new("Really black")
  298. p5.Material = "Fabric"
  299. p5.CFrame = CFrame.new(-4.44179106, 5.13394976, -11.382658, 0.9583143, 0.284877658,
  300. 0.0218711179, -0.281183124, 0.953924894, -0.104703665, -0.0506914668, 0.0941898227,
  301. 0.994262278)
  302. p5.CanCollide = false
  303. p5.FormFactor = Enum.FormFactor.Symmetric
  304. p5.Elasticity = 0
  305. p5.Size = Vector3.new(1, 3, 1)
  306. p5.BottomSurface = Enum.SurfaceType.Smooth
  307. p5.TopSurface = Enum.SurfaceType.Smooth
  308. b5 = Instance.new("BlockMesh", p5)
  309. b5.Name = "Mesh"
  310. b5.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  311. p6 = Instance.new("Part", m)
  312. p6.Name = "Part6"
  313. p6.BrickColor = BrickColor.new("Really red")
  314. p6.Material = "Fabric"
  315. p6.CFrame = CFrame.new(-3.25746775, 4.10252142, -11.1188278, 0.990586162, 0.136166841,
  316. 0.0140535301, -0.122137889, 0.925523639, -0.358451784, -0.0618163571, 0.353361398,
  317. 0.933441639)
  318. p6.CanCollide = false
  319. p6.FormFactor = Enum.FormFactor.Symmetric
  320. p6.Elasticity = 0
  321. p6.Size = Vector3.new(1, 3, 1)
  322. p6.BottomSurface = Enum.SurfaceType.Smooth
  323. p6.TopSurface = Enum.SurfaceType.Smooth
  324. b6 = Instance.new("BlockMesh", p6)
  325. b6.Name = "Mesh"
  326. b6.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  327. p7 = Instance.new("Part", m)
  328. p7.Name = "Part7"
  329. p7.BrickColor = BrickColor.new("Really red")
  330. p7.Material = "Fabric"
  331. p7.CFrame = CFrame.new(-5.3205142, 5.61000919, -11.9814529, -0.656058729, -0.754709721, -
  332. 5.77419996e-008, 0.533660352, -0.463903487, -0.707106411, 0.533660412, -0.463903487,
  333. 0.707106233)
  334. p7.CanCollide = false
  335. p7.FormFactor = Enum.FormFactor.Symmetric
  336. p7.Elasticity = 0
  337. p7.Size = Vector3.new(1, 4, 1)
  338. p7.BottomSurface = Enum.SurfaceType.Smooth
  339. p7.TopSurface = Enum.SurfaceType.Smooth
  340. b7 = Instance.new("BlockMesh", p7)
  341. b7.Name = "Mesh"
  342. b7.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  343. p8 = Instance.new("Part", m)
  344. p8.Name = "Part8"
  345. p8.BrickColor = BrickColor.new("Really red")
  346. p8.Material = "Fabric"
  347. p8.CFrame = CFrame.new(-0.130102158, 4.73467064, -10.7141094, 0.874170661, 0.484677076,
  348. 0.0302294046, -0.475244969, 0.841039479, 0.258445919, 0.0998384058, -0.240292028, 0.96555239)
  349. p8.CanCollide = false
  350. p8.FormFactor = Enum.FormFactor.Symmetric
  351. p8.Elasticity = 0
  352. p8.Size = Vector3.new(1, 4, 1)
  353. p8.BottomSurface = Enum.SurfaceType.Smooth
  354. p8.TopSurface = Enum.SurfaceType.Smooth
  355. b8 = Instance.new("BlockMesh", p8)
  356. b8.Name = "Mesh"
  357. b8.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  358. p9 = Instance.new("Part", m)
  359. p9.Name = "Part9"
  360. p9.BrickColor = BrickColor.new("Really black")
  361. p9.Material = "Fabric"
  362. p9.CFrame = CFrame.new(-2.9284029, 4.80385351, -10.6452761, 0.890645742, -0.453692019,
  363. 0.0302294642, 0.431499481, 0.864299536, 0.258445889, -0.143382162, -0.217139587, 0.965552568)
  364. p9.CanCollide = false
  365. p9.FormFactor = Enum.FormFactor.Symmetric
  366. p9.Elasticity = 0
  367. p9.Size = Vector3.new(1, 4, 1)
  368. p9.BottomSurface = Enum.SurfaceType.Smooth
  369. p9.TopSurface = Enum.SurfaceType.Smooth
  370. b9 = Instance.new("BlockMesh", p9)
  371. b9.Name = "Mesh"
  372. b9.Scale = Vector3.new(0.299999923, 1, 0.299999923)
  373. p10 = Instance.new("Part", m)
  374. p10.Name = "Part10"
  375. p10.BrickColor = BrickColor.new("Really black")
  376. p10.Material = "Fabric"
  377. p10.CFrame = CFrame.new(0.461318254, 4.42153645, -10.9603891, 0.993439734, -0.112256877,
  378. 0.0218180809, 0.113935865, 0.987964332, -0.104616776, -0.00981165841, 0.106416553,
  379. 0.994273067)
  380. p10.CanCollide = false
  381. p10.FormFactor = Enum.FormFactor.Symmetric
  382. p10.Elasticity = 0
  383. p10.Size = Vector3.new(1, 2, 1)
  384. p10.BottomSurface = Enum.SurfaceType.Smooth
  385. p10.TopSurface = Enum.SurfaceType.Smooth
  386. b10 = Instance.new("BlockMesh", p10)
  387. b10.Name = "Mesh"
  388. b10.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  389. p11 = Instance.new("Part", m)
  390. p11.Name = "Part11"
  391. p11.BrickColor = BrickColor.new("Really black")
  392. p11.Material = "Fabric"
  393. p11.CFrame = CFrame.new(-5.58509636, 4.39552546, -12.2391958, 0.973001778, -0.230067,
  394. 0.0183526818, 0.229346812, 0.972725153, 0.034717977, -0.0258396715, -0.0295712873,
  395. 0.999228418)
  396. p11.CanCollide = false
  397. p11.FormFactor = Enum.FormFactor.Symmetric
  398. p11.Elasticity = 0
  399. p11.Size = Vector3.new(1, 2, 1)
  400. p11.BottomSurface = Enum.SurfaceType.Smooth
  401. p11.TopSurface = Enum.SurfaceType.Smooth
  402. b11 = Instance.new("BlockMesh", p11)
  403. b11.Name = "Mesh"
  404. b11.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  405. p12 = Instance.new("Part", m)
  406. p12.Name = "Part12"
  407. p12.BrickColor = BrickColor.new("Really black")
  408. p12.Material = "Fabric"
  409. p12.CFrame = CFrame.new(-7.20725632, 4.45023441, -13.1411486, 0.656056762, 3.7997961e-007,
  410. 0.75470835, -0.53365773, 0.707103908, 0.463900089, -0.533659458, -0.707104445, 0.463902116)
  411. p12.CanCollide = false
  412. p12.FormFactor = Enum.FormFactor.Symmetric
  413. p12.Elasticity = 0
  414. p12.Size = Vector3.new(1, 1, 1)
  415. p12.BottomSurface = Enum.SurfaceType.Smooth
  416. p12.TopSurface = Enum.SurfaceType.Smooth
  417. b12 = Instance.new("SpecialMesh", p12)
  418. b12.MeshType = Enum.MeshType.Wedge
  419. b12.Name = "Mesh"
  420. b12.Scale = Vector3.new(0.319999993, 0.299999923, 1)
  421. p13 = Instance.new("Part", m)
  422. p13.Name = "Part13"
  423. p13.BrickColor = BrickColor.new("Really black")
  424. p13.Material = "Fabric"
  425. p13.CFrame = CFrame.new(-1.16246319, 3.02499151, -10.4305, 0.685088575, 0.728258491,
  426. 0.0168257058, -0.696930826, 0.661988258, -0.27575165, -0.211958379, 0.177188307, 0.961075842)
  427. p13.CanCollide = false
  428. p13.FormFactor = Enum.FormFactor.Symmetric
  429. p13.Elasticity = 0
  430. p13.Size = Vector3.new(1, 1, 1)
  431. p13.BottomSurface = Enum.SurfaceType.Smooth
  432. p13.TopSurface = Enum.SurfaceType.Smooth
  433. b13 = Instance.new("BlockMesh", p13)
  434. b13.Name = "Mesh"
  435. b13.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  436. p14 = Instance.new("Part", m)
  437. p14.Name = "Part14"
  438. p14.BrickColor = BrickColor.new("Really black")
  439. p14.Material = "Fabric"
  440. p14.CFrame = CFrame.new(-1.06862891, 2.92015743, -10.4324627, 0.959295571, 0.281205207,
  441. 0.0257938076, -0.282206476, 0.95792222, 0.052197963, -0.0100304484, -0.0573545098,
  442. 0.998297691)
  443. p14.CanCollide = false
  444. p14.FormFactor = Enum.FormFactor.Symmetric
  445. p14.Elasticity = 0
  446. p14.Size = Vector3.new(1, 2, 1)
  447. p14.BottomSurface = Enum.SurfaceType.Smooth
  448. p14.TopSurface = Enum.SurfaceType.Smooth
  449. b14 = Instance.new("BlockMesh", p14)
  450. b14.Name = "Mesh"
  451. b14.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  452. p15 = Instance.new("Part", m)
  453. p15.Name = "Part15"
  454. p15.BrickColor = BrickColor.new("Really black")
  455. p15.Material = "Fabric"
  456. p15.CFrame = CFrame.new(-1.25248194, 3.46670246, -10.3202372, -0.768480301, 0.609402537,
  457. 0.195080221, -0.634339094, -0.765544653, -0.107403584, 0.0838928521, -0.206285655,
  458. 0.974882662)
  459. p15.CanCollide = false
  460. p15.FormFactor = Enum.FormFactor.Symmetric
  461. p15.Elasticity = 0
  462. p15.Size = Vector3.new(1, 1, 1)
  463. p15.BottomSurface = Enum.SurfaceType.Smooth
  464. p15.TopSurface = Enum.SurfaceType.Smooth
  465. b15 = Instance.new("BlockMesh", p15)
  466. b15.Name = "Mesh"
  467. b15.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  468. p16 = Instance.new("Part", m)
  469. p16.Name = "Part16"
  470. p16.BrickColor = BrickColor.new("Really black")
  471. p16.Material = "Fabric"
  472. p16.CFrame = CFrame.new(-1.96196043, 3.04476213, -10.4108219, 0.72825861, -0.685088336,
  473. 0.0168255717, 0.661988497, 0.696930647, -0.275751829, 0.177188098, 0.211958155, 0.961075366)
  474. p16.CanCollide = false
  475. p16.FormFactor = Enum.FormFactor.Symmetric
  476. p16.Elasticity = 0
  477. p16.Size = Vector3.new(1, 1, 1)
  478. p16.BottomSurface = Enum.SurfaceType.Smooth
  479. p16.TopSurface = Enum.SurfaceType.Smooth
  480. b16 = Instance.new("BlockMesh", p16)
  481. b16.Name = "Mesh"
  482. b16.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  483. p17 = Instance.new("Part", m)
  484. p17.Name = "Part17"
  485. p17.BrickColor = BrickColor.new("Really black")
  486. p17.Material = "Fabric"
  487. p17.CFrame = CFrame.new(-1.85207272, 3.48152924, -10.3054819, -0.739407778, -0.655866385, -
  488. 0.152003229, 0.671618342, -0.73426342, -0.0988226384, -0.0467970669, -0.175158352,
  489. 0.983420968)
  490. p17.CanCollide = false
  491. p17.FormFactor = Enum.FormFactor.Symmetric
  492. p17.Elasticity = 0
  493. p17.Size = Vector3.new(1, 1, 1)
  494. p17.BottomSurface = Enum.SurfaceType.Smooth
  495. p17.TopSurface = Enum.SurfaceType.Smooth
  496. b17 = Instance.new("BlockMesh", p17)
  497. b17.Name = "Mesh"
  498. b17.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  499. p18 = Instance.new("Part", m)
  500. p18.Name = "Part18"
  501. p18.BrickColor = BrickColor.new("Really black")
  502. p18.Material = "Fabric"
  503. p18.CFrame = CFrame.new(-2.06802177, 2.94484425, -10.4080706, 0.971376956, -0.236116573,
  504. 0.02579391, 0.234563246, 0.970688105, 0.0521978363, -0.0373639017, -0.0446553342, 0.998296857)
  505. p18.CanCollide = false
  506. p18.FormFactor = Enum.FormFactor.Symmetric
  507. p18.Elasticity = 0
  508. p18.Size = Vector3.new(1, 2, 1)
  509. p18.BottomSurface = Enum.SurfaceType.Smooth
  510. p18.TopSurface = Enum.SurfaceType.Smooth
  511. b18 = Instance.new("BlockMesh", p18)
  512. b18.Name = "Mesh"
  513. b18.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  514. p19 = Instance.new("Part", m)
  515. p19.Name = "Part19"
  516. p19.BrickColor = BrickColor.new("Really black")
  517. p19.Material = "Fabric"
  518. p19.CFrame = CFrame.new(3.49998665, 3.79997182, -12.6999207, 0.965920806, -0.258817494, -
  519. 2.4959445e-007, 0.249997482, 0.933003485, 0.258815616, -0.0669874251, -0.249999031,
  520. 0.965919077)
  521. p19.CanCollide = false
  522. p19.FormFactor = Enum.FormFactor.Symmetric
  523. p19.Elasticity = 0
  524. p19.Size = Vector3.new(1, 2, 1)
  525. p19.BottomSurface = Enum.SurfaceType.Smooth
  526. p19.TopSurface = Enum.SurfaceType.Smooth
  527. b19 = Instance.new("BlockMesh", p19)
  528. b19.Name = "Mesh"
  529. b19.Scale = Vector3.new(0.099999927, 1, 0.099999927)
  530. p20 = Instance.new("Part", m)
  531. p20.Name = "Part20"
  532. p20.BrickColor = BrickColor.new("Really black")
  533. p20.Material = "Fabric"
  534. p20.CFrame = CFrame.new(-6.79995918, 3.78997159, -12.7999163, 0.965920687, 0.258817792, -
  535. 3.04258691e-007, -0.256297678, 0.95651561, -0.139172524, -0.036020536, 0.134429038,
  536. 0.990261436)
  537. p20.CanCollide = false
  538. p20.FormFactor = Enum.FormFactor.Symmetric
  539. p20.Elasticity = 0
  540. p20.Size = Vector3.new(1, 3, 1)
  541. p20.BottomSurface = Enum.SurfaceType.Smooth
  542. p20.TopSurface = Enum.SurfaceType.Smooth
  543. b20 = Instance.new("BlockMesh", p20)
  544. b20.Name = "Mesh"
  545. b20.Scale = Vector3.new(0.099999927, 0.799999952, 0.099999927)
  546. w1 = Instance.new("Weld", p1)
  547. w1.Part0 = p1
  548. w1.C0 = CFrame.new(-1.79490757, -4.94951439, 12.4384165, -0.707106769, -0.499999911, -
  549. 0.49999994, 0.707106709, -0.49999997, -0.49999994, 0, -0.707106769, 0.707106709)
  550. w1.Part1 = p2
  551. w1.C1 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  552. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  553. w2 = Instance.new("Weld", p2)
  554. w2.Part0 = p2
  555. w2.C0 = CFrame.new(1.79489565, -12.4384251, 7.44950008, 0.707106769, 0.499999911, 0.49999994,
  556. 2.10734239e-008, 0.707106769, -0.707106709, -0.707106948, 0.49999994, 0.5)
  557. w2.Part1 = p3
  558. w2.C1 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  559. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  560. w3 = Instance.new("Weld", p3)
  561. w3.Part0 = p3
  562. w3.C0 = CFrame.new(-1.22722292, -4.75393152, 12.1752129, 0.959171653, -0.282448888, -
  563. 0.0145689286, 0.28168264, 0.958655119, -0.0404363424, 0.0253877491, 0.034681499, 0.99907577)
  564. w3.Part1 = p4
  565. w3.C1 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  566. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  567. w4 = Instance.new("Weld", p4)
  568. w4.Part0 = p4
  569. w4.C0 = CFrame.new(-2.0898788, -3.70108366, 11.8517132, 0.988936007, 0.148217395, -
  570. 0.00609338284, -0.146728054, 0.983390927, 0.10683234, 0.0218265653, -0.104756176, 0.994258285)
  571. w4.Part1 = p5
  572. w4.C1 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  573. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  574. w5 = Instance.new("Weld", p5)
  575. w5.Part0 = p5
  576. w5.C0 = CFrame.new(5.12321281, -2.5599122, 11.9520521, 0.958314359, -0.281183183, -
  577. 0.0506912991, 0.284877598, 0.953925133, 0.0941895097, 0.0218711942, -0.104703978, 0.994262934)
  578. w5.Part1 = p6
  579. w5.C1 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  580. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  581. w6 = Instance.new("Weld", p6)
  582. w6.Part0 = p6
  583. w6.C0 = CFrame.new(3.04055262, 0.575539827, 11.8951263, 0.990586221, -0.122137874, -
  584. 0.0618162453, 0.136166826, 0.925523877, 0.353361279, 0.014053612, -0.358452141, 0.933442295)
  585. w6.Part1 = p7
  586. w6.C1 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  587. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  588. w7 = Instance.new("Weld", p7)
  589. w7.Part0 = p7
  590. w7.C0 = CFrame.new(-0.090382576, -6.97118187, 12.4390469, -0.656058788, 0.533660412,
  591. 0.533660412, -0.75470984, -0.463903606, -0.463903606, 0, -0.707106769, 0.707106709)
  592. w7.Part1 = p8
  593. w7.C1 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  594. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  595. w8 = Instance.new("Weld", p8)
  596. w8.Part0 = p8
  597. w8.C0 = CFrame.new(3.43354273, -6.49350643, 9.12531471, 0.874170601, -0.475245059,
  598. 0.0998385474, 0.484676957, 0.841039658, -0.240292117, 0.0302294642, 0.258445889, 0.965552568)
  599. w8.Part1 = p9
  600. w8.C1 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  601. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  602. w9 = Instance.new("Weld", p9)
  603. w9.Part0 = p9
  604. w9.C0 = CFrame.new(-0.991033435, -7.7920723, 9.12556171, 0.890645742, 0.431499481, -
  605. 0.143382162, -0.453692019, 0.864299536, -0.217139587, 0.0302294642, 0.258445889, 0.965552568)
  606. w9.Part1 = p10
  607. w9.C1 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  608. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  609. 0.994273245)
  610. w10 = Instance.new("Weld", p10)
  611. w10.Part0 = p10
  612. w10.C0 = CFrame.new(-1.06960225, -3.15016913, 11.3501244, 0.993439615, 0.113935851, -
  613. 0.00981158204, -0.112256907, 0.987964511, 0.106416464, 0.0218181461, -0.104616918,
  614. 0.994273245)
  615. w10.Part1 = p11
  616. w10.C1 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  617. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  618. w11 = Instance.new("Weld", p11)
  619. w11.Part0 = p11
  620. w11.C0 = CFrame.new(4.10995293, -5.92251635, 12.1796551, 0.973001719, 0.229346842, -
  621. 0.0258396119, -0.23006703, 0.972725391, -0.0295714047, 0.0183527395, 0.034717869, 0.999228597)
  622. w11.Part1 = p12
  623. w11.C1 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  624. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  625. w12 = Instance.new("Weld", p12)
  626. w12.Part0 = p12
  627. w12.C0 = CFrame.new(0.0903778076, -12.4390163, 9.47116661, 0.656056702, -0.533657789, -
  628. 0.533659518, 3.16101307e-007, 0.707104087, -0.707104683, 0.75470835, 0.463900119, 0.463902295)
  629. w12.Part1 = p13
  630. w12.C1 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  631. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  632. w13 = Instance.new("Weld", p13)
  633. w13.Part0 = p13
  634. w13.C0 = CFrame.new(0.693788052, 0.692229629, 10.8783264, 0.685091734, -0.69693774, -
  635. 0.211959824, 0.728262305, 0.661995173, 0.177189946, 0.0168259665, -0.275753766, 0.961080968)
  636. w13.Part1 = p14
  637. w13.C1 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  638. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  639. 0.998303413)
  640. w14 = Instance.new("Weld", p14)
  641. w14.Part0 = p14
  642. w14.C0 = CFrame.new(1.74460375, -3.09517074, 10.2899532, 0.959300518, -0.282209098, -
  643. 0.0100303814, 0.281206846, 0.957931817, -0.0573540777, 0.0257942528, 0.0521991551,
  644. 0.998303413)
  645. w14.Part1 = p15
  646. w14.C1 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  647. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  648. w15 = Instance.new("Weld", p15)
  649. w15.Part0 = p15
  650. w15.C0 = CFrame.new(2.10237837, 1.28829288, 10.6778135, -0.768484235, -0.634345412,
  651. 0.0838926136, 0.609405577, -0.765552342, -0.206287205, 0.195081502, -0.107403934, 0.974888384)
  652. w15.Part1 = p16
  653. w15.C1 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  654. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  655. w16 = Instance.new("Weld", p16)
  656. w16.Part0 = p16
  657. w16.C0 = CFrame.new(1.25790477, -1.25946927, 10.8783226, 0.728262305, 0.661995173,
  658. 0.177190006, -0.685091794, 0.696937621, 0.211959764, 0.0168259665, -0.275753766, 0.961080968)
  659. w16.Part1 = p17
  660. w16.C1 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  661. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  662. 0.983426988)
  663. w17 = Instance.new("Weld", p17)
  664. w17.Part0 = p17
  665. w17.C0 = CFrame.new(-4.19002342, -0.463444591, 10.1972828, -0.739411771, 0.671625078, -
  666. 0.0467970371, -0.655869722, -0.73427093, -0.175160319, -0.152003735, -0.0988228023,
  667. 0.983426988)
  668. w17.Part1 = p18
  669. w17.C1 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  670. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  671. 0.998303413)
  672. w18 = Instance.new("Weld", p18)
  673. w18.Part0 = p18
  674. w18.C0 = CFrame.new(0.929204226, -3.81164908, 10.2901011, 0.971381962, 0.234565541, -
  675. 0.037363667, -0.236118004, 0.970697761, -0.0446549058, 0.0257942528, 0.0521991551,
  676. 0.998303413)
  677. w18.Part1 = p19
  678. w18.C1 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  679. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  680. w19 = Instance.new("Weld", p19)
  681. w19.Part0 = p19
  682. w19.C0 = CFrame.new(-5.18147898, -5.81458092, 11.2837429, 0.965925813, 0.25, -0.0669872984, -
  683. 0.258819044, 0.933012664, -0.25, 0, 0.258819044, 0.965925813)
  684. w19.Part1 = p20
  685. w19.C1 = CFrame.new(7.07860947, -0.14454639, 13.2028942, 0.965925813, -0.256300241, -
  686. 0.0360206552, 0.258819044, 0.956525445, 0.1344309, 3.7252903e-009, -0.139173105, 0.990268052)
  687. m.Parent = char
  688. m:MakeJoints()
  689. ----------------------------------------------------
  690. local cor = Instance.new("Part", char.Wings)
  691. cor.Name = "Thingy"
  692. cor.BottomSurface = 0
  693. cor.CanCollide = false
  694. cor.Size = Vector3.new(1, 6, 1)
  695. cor.Transparency = 1
  696. cor.TopSurface = 0
  697. corw = Instance.new("Weld", cor)
  698. corw.Part0 = torso
  699. corw.Part1 = cor
  700. corw.C0 = CFrame.new(-1.55, 3.4, .6) * CFrame.Angles(math.rad(145), math.rad(0), math.rad(48))
  701. corw.C1 = CFrame.new(0, 0, 0)
  702. weld1 = Instance.new("Weld", char.Wings)
  703. weld1.Part0 = cor
  704. weld1.Part1 = p1
  705. weld1.C0 = CFrame.new(0, 3, -1)
  706. ----------------------------------------------------
  707. --[[local m1 = Instance.new("Model")
  708. m1.Name = "Scythe"
  709. p1 = Instance.new("Part", m1)
  710. p1.BrickColor = BrickColor.new("Really black")
  711. p1.Material = "Fabric"
  712. p1.Name = "Part5"
  713. p1.CFrame = CFrame.new(-15.4790545, 13.1252527, -1.25573051, -0.148844868, -0.181690469, -0.972028434, -0.139209464, 0.977047265, -0.161312819, 0.979018033, 0.111305036, -0.170718044)
  714. p1.CanCollide = false
  715. p1.FormFactor = Enum.FormFactor.Custom
  716. p1.Size = Vector3.new(0.25, 2.25125027, 0.625)
  717. p1.BottomSurface = Enum.SurfaceType.Smooth
  718. p1.TopSurface = Enum.SurfaceType.Smooth
  719. b1 = Instance.new("CylinderMesh", p1)
  720. b1.Name = "Mesh"
  721. p2 = Instance.new("Part", m1)
  722. p2.BrickColor = BrickColor.new("Really black")
  723. p2.Material = "Fabric"
  724. p2.Name = "Part6"
  725. p2.CFrame = CFrame.new(-15.3824081, 10.952775, -1.24440408, -0.128349721, 0.0941501483, -0.987252772, 0.129729301, 0.988533914, 0.0774054229, 0.983212769, -0.118139267, -0.139088899)
  726. p2.CanCollide = false
  727. p2.FormFactor = Enum.FormFactor.Custom
  728. p2.Size = Vector3.new(0.25, 2.25125027, 0.625)
  729. p2.BottomSurface = Enum.SurfaceType.Smooth
  730. p2.TopSurface = Enum.SurfaceType.Smooth
  731. b2 = Instance.new("CylinderMesh", p2)
  732. b2.Name = "Mesh"
  733. p3 = Instance.new("Part", m1)
  734. p3.BrickColor = BrickColor.new("Really black")
  735. p3.Material = "Fabric"
  736. p3.Name = "Part7"
  737. p3.CFrame = CFrame.new(-15.4747982, 13.69979, -1.75563574, -0.972027183, -0.129069194, 0.196240276, -0.161315769, 0.97412771, -0.158338636, -0.170723677, -0.185564086, -0.967692614)
  738. p3.CanCollide = false
  739. p3.FormFactor = Enum.FormFactor.Custom
  740. p3.Size = Vector3.new(0.200000003, 0.625, 1.18875003)
  741. p3.BottomSurface = Enum.SurfaceType.Smooth
  742. p3.TopSurface = Enum.SurfaceType.Smooth
  743. b3 = Instance.new("BlockMesh", p3)
  744. b3.Name = "Mesh"
  745. b3.Scale = Vector3.new(0.618750155, 1, 1)
  746. p4 = Instance.new("Part", m1)
  747. p4.BrickColor = BrickColor.new("Crimson")
  748. p4.Material = "Fabric"
  749. p4.Name = "Part8"
  750. p4.CFrame = CFrame.new(-15.4781666, 13.7140617, -1.73542035, -0.972027183, -0.129069448, 0.196239948, -0.161315426, 0.974126935, -0.158338472, -0.170723975, -0.185564145, -0.967692196)
  751. p4.CanCollide = false
  752. p4.FormFactor = Enum.FormFactor.Custom
  753. p4.Size = Vector3.new(0.200000003, 0.396249801, 1.14375019)
  754. p4.BottomSurface = Enum.SurfaceType.Smooth
  755. p4.TopSurface = Enum.SurfaceType.Smooth
  756. b4 = Instance.new("BlockMesh", p4)
  757. b4.Name = "Mesh"
  758. b4.Scale = Vector3.new(0.656250358, 1, 1)
  759. p5 = Instance.new("Part", m1)
  760. p5.BrickColor = BrickColor.new("Really black")
  761. p5.Material = "Fabric"
  762. p5.Name = "Handle"
  763. p5.CFrame = CFrame.new(-15.4833899, 8.75200272, -1.18519592, -0.130095989, -0.0039267987, -0.991496682, -0.0667580366, 0.997765779, 0.00480742007, 0.989255846, 0.0668155551, -0.130066052)
  764. p5.CanCollide = false
  765. p5.FormFactor = Enum.FormFactor.Custom
  766. p5.Size = Vector3.new(0.25, 2.25125027, 0.625)
  767. p5.BottomSurface = Enum.SurfaceType.Smooth
  768. p5.TopSurface = Enum.SurfaceType.Smooth
  769. b5 = Instance.new("CylinderMesh", p5)
  770. b5.Name = "Mesh"
  771. p6 = Instance.new("Part", m1)
  772. p6.BrickColor = BrickColor.new("Crimson")
  773. p6.Material = "Fabric"
  774. p6.Name = "Part10"
  775. p6.CFrame = CFrame.new(-15.1728735, 13.1544628, -2.97264719, 0.972016573, -0.0361868851, -0.23210828, 0.161354825, 0.820950687, 0.547726691, 0.170728937, -0.569851279, 0.803816617)
  776. p6.CanCollide = false
  777. p6.Size = Vector3.new(1, 1.20000005, 2)
  778. p6.BottomSurface = Enum.SurfaceType.Smooth
  779. p6.TopSurface = Enum.SurfaceType.Smooth
  780. b6 = Instance.new("SpecialMesh", p6)
  781. b6.MeshType = Enum.MeshType.Wedge
  782. b6.Name = "Mesh"
  783. b6.Scale = Vector3.new(0.133749992, 0.308333486, 0.939375103)
  784. p7 = Instance.new("Part", m1)
  785. p7.BrickColor = BrickColor.new("Really black")
  786. p7.Material = "Fabric"
  787. p7.Name = "Part11"
  788. p7.CFrame = CFrame.new(-15.0457783, 12.8671103, -3.41416025, 0.972016871, -0.0361844748, -0.232107431, 0.161352873, 0.820949197, 0.547729552, 0.170729101, -0.569853604, 0.803814948)
  789. p7.CanCollide = false
  790. p7.Size = Vector3.new(1, 1.20000005, 3)
  791. p7.BottomSurface = Enum.SurfaceType.Smooth
  792. p7.TopSurface = Enum.SurfaceType.Smooth
  793. b7 = Instance.new("SpecialMesh", p7)
  794. b7.MeshType = Enum.MeshType.Wedge
  795. b7.Name = "Mesh"
  796. b7.Scale = Vector3.new(0.125, 0.459375113, 0.987083375)
  797. p8 = Instance.new("Part", m1)
  798. p8.BrickColor = BrickColor.new("Really black")
  799. p8.Material = "Fabric"
  800. p8.Name = "Part12"
  801. p8.CFrame = CFrame.new(-15.3929434, 7.00775528, -1.23400617, -0.00524972379, -0.125177592, -0.992123604, 0.0415780842, 0.991256952, -0.125288621, 0.999125719, -0.0419077873, 1.41561031e-006)
  802. p8.CanCollide = false
  803. p8.FormFactor = Enum.FormFactor.Custom
  804. p8.Size = Vector3.new(0.25, 1.35000002, 0.625)
  805. p8.BottomSurface = Enum.SurfaceType.Smooth
  806. p8.TopSurface = Enum.SurfaceType.Smooth
  807. b8 = Instance.new("CylinderMesh", p8)
  808. b8.Name = "Mesh"
  809. p9 = Instance.new("Part", m1)
  810. p9.BrickColor = BrickColor.new("Really black")
  811. p9.Material = "Fabric"
  812. p9.Name = "Part13"
  813. p9.CFrame = CFrame.new(-15.312561, 6.035923, -1.20007133, 1.88336219e-006, -6.5267086e-006, -1.0000031, -8.07169636e-006, 1.00000823, -6.91413879e-006, 1.00000405, 8.23063147e-006, 2.50528046e-006)
  814. p9.CanCollide = false
  815. p9.FormFactor = Enum.FormFactor.Symmetric
  816. p9.Size = Vector3.new(1, 1, 1)
  817. p9.BottomSurface = Enum.SurfaceType.Smooth
  818. p9.TopSurface = Enum.SurfaceType.Smooth
  819. b9 = Instance.new("CylinderMesh", p9)
  820. b9.Name = "Mesh"
  821. b9.Scale = Vector3.new(0.25, 0.625, 0.625)
  822. w1 = Instance.new("Weld", p1)
  823. w1.Part0 = p1
  824. w1.C0 = CFrame.new(7.02652264, -59.535614, -5.87252188, -0.148847401, -0.139196053, 0.979014158, -0.181681663, 0.977039695, 0.111292727, -0.972026587, -0.161303386, -0.170719117)
  825. w1.Part1 = p2
  826. w1.C1 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
  827. w2 = Instance.new("Weld", p2)
  828. w2.Part0 = p2
  829. w2.C0 = CFrame.new(-8.01976395, -54.082592, -19.6964264, -0.128350034, 0.129739836, 0.983205914, 0.0941585898, 0.988522112, -0.118149437, -0.987248957, 0.0774128884, -0.139092848)
  830. w2.Part1 = p3
  831. w2.C1 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  832. w3 = Instance.new("Weld", p3)
  833. w3.Part0 = p3
  834. w3.C0 = CFrame.new(-5.86081457, -59.57584, 10.6446886, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  835. w3.Part1 = p4
  836. w3.C1 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  837. w4 = Instance.new("Weld", p4)
  838. w4.Part0 = p4
  839. w4.C0 = CFrame.new(-5.85831547, -59.5864677, 10.6671867, -0.972025335, -0.161306813, -0.170724437, -0.129059821, 0.974118233, -0.185574532, 0.196240455, -0.158349574, -0.967685699)
  840. w4.Part1 = p5
  841. w4.C1 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
  842. w5 = Instance.new("Weld", p5)
  843. w5.Part0 = p5
  844. w5.C0 = CFrame.new(2.75071049, -53.6872444, -15.7648773, -0.130098701, -0.0667455271, 0.989251852, -0.00391793298, 0.997758389, 0.0668041781, -0.991493225, 0.00481529534, -0.13006863)
  845. w5.Part1 = p6
  846. w5.C1 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  847. w6 = Instance.new("Weld", p6)
  848. w6.Part0 = p6
  849. w6.C0 = CFrame.new(5.86050892, -50.0459213, -33.0266228, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  850. w6.Part1 = p7
  851. w6.C1 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  852. w7 = Instance.new("Weld", p7)
  853. w7.Part0 = p7
  854. w7.C0 = CFrame.new(5.85863304, -50.0578003, -32.4853668, 0.972020626, 0.161349237, 0.170730397, -0.0361775011, 0.820951402, -0.569862783, -0.232106388, 0.547742188, 0.803813636)
  855. w7.Part1 = p8
  856. w7.C1 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
  857. w8 = Instance.new("Weld", p8)
  858. w8.Part0 = p8
  859. w8.C0 = CFrame.new(-1.01389384, -53.6058121, -8.7465868, -0.00525131589, 0.0415858366, 0.999120951, -0.125170633, 0.991249442, -0.0419160873, -0.992121339, -0.125280768, -3.77783991e-008)
  860. w8.Part1 = p9
  861. w8.C1 = CFrame.new(1.20000041, -51.1112823, -15.3124981, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  862. m1.Parent = char
  863. m1:MakeJoints() ]]
  864. ----------------------------------------------------
  865. --[[HandleA = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "HandleA", Vector3.new(1.01999998, 0.410000026, 1.01999998))
  866. HandleAweld = weld(m, Character["Right Arm"], HandleA, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(6.86645508e-005, 0.00578308105, 0.000793457031, 1, 1.57159663e-009, 1.84536508e-009, -1.51411894e-009, 1.00000477, 9.46223736e-005, -1.81580617e-009, -9.4622359e-005, 1.00000489))
  867. FConnectorA1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA1", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  868. FConnectorA1weld = weld(m, HandleA, FConnectorA1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410087585, -1.11513186, -0.410018921, -1, 9.74741943e-006, -1.35193727e-006, -9.74743125e-006, -1.00000489, 2.3929897e-007, -1.35189885e-006, 2.39313522e-007, 1.00000489))
  869. FConnectorA2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA2", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  870. FConnectorA2weld = weld(m, HandleA, FConnectorA2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410102844, -1.10513186, -0.129695892, -1, 9.74805607e-006, -1.35614573e-006, -9.74806699e-006, -1.00000489, 5.55955921e-007, -1.35610435e-006, 5.55970473e-007, 1.00000489))
  871. FConnectorA3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA3", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  872. FConnectorA3weld = weld(m, HandleA, FConnectorA3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410087585, -1.11496186, 0.140254974, -1, 9.74844261e-006, -1.35647815e-006, -9.74845443e-006, -1.00000489, 5.93368895e-007, -1.35643631e-006, 5.93383447e-007, 1.00000489))
  873. FConnectorA4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA4", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  874. FConnectorA4weld = weld(m, HandleA, FConnectorA4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410064697, -1.11497116, 0.41003418, -1, 9.74773866e-006, -1.35528308e-006, -9.7477523e-006, -1.00000489, 5.13136911e-007, -1.35524226e-006, 5.13151463e-007, 1.00000489))
  875. FConnectorA5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorA5", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  876. FConnectorA5weld = weld(m, HandleA, FConnectorA5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.409896851, -1.11500096, 0.410381317, -1, 9.74811064e-006, -1.35720666e-006, -9.7481261e-006, -1.00000489, 6.21264917e-007, -1.35716482e-006, 6.21286745e-007, 1.00000489))
  877. HitboxA = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Crimson", "HitboxA", Vector3.new(1.22000003, 1.00999999, 1.01999998))
  878. HitboxAweld = weld(m, HandleA, HitboxA, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.10004425, 0.899994373, -7.2479248e-005, 1, 2.3913432e-011, 1.214151e-011, 3.87364897e-011, 1.00000501, 3.17668309e-008, 1.75869319e-011, -3.16504156e-008, 1.00000501))
  879. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  880. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.704981804, 0.600097656, -0.400291443, 1.07934993e-005, 1.00000513, 0.000307456852, -1, 1.07920496e-005, 4.67940163e-006, 4.67608925e-006, -0.000307456678, 1.00000513))
  881. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  882. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  883. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409942627, -0.0047621727, 0.404830933, 1, -3.37975814e-010, -8.95103991e-010, 4.05866091e-010, 1.00000513, 0.000272899517, 9.25026722e-010, -0.000272899284, 1.00000513))
  884. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  885. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409942627, -0.704754353, 0.404701233, 1, -6.41774189e-010, -1.14527055e-009, 7.09687087e-010, 1.00000513, 0.000235188927, 1.17513577e-009, -0.000235188694, 1.00000513))
  886. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  887. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000686645508, 0.694943428, 0.600120544, -4.16014518e-005, 9.45778302e-005, 1.00000513, -9.60050784e-007, 1.00000513, -9.45776337e-005, -1, -9.64058017e-007, -4.16016046e-005))
  888. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.646000028, 0.638000011, 1.35599995))
  889. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  890. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.704681396, 0.600074768, 0.399703979, 1.07932492e-005, 1.00000513, 0.000307390932, -1, 1.07918013e-005, 4.67938798e-006, 4.67607651e-006, -0.000307390757, 1.00000513))
  891. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  892. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.620000005, 0.200000003, 0.819999993))
  893. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05175781e-005, 0.92485714, 0.000484466553, 1, 3.87098353e-009, 7.2322619e-009, -3.79667275e-009, 1.00000513, -5.19547029e-007, -7.20235427e-009, 5.19794412e-007, 1.00000513))
  894. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  895. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  896. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950546265, -0.00472640991, 0.404769897, 1, -4.16721185e-010, -1.16062449e-009, 4.84667861e-010, 1.00000513, 0.000259734254, 1.19053056e-009, -0.000259734021, 1.00000513))
  897. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  898. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.214511871, 0.602371216, -0.525278091, 6.89506674e-009, 0.707192183, -0.707028747, -1, -4.38913787e-007, -4.48729907e-007, -6.27587383e-007, 0.707028747, 0.707192183))
  899. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  900. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  901. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.215366364, 0.602371216, -0.0753059387, 2.71407362e-006, 0.706899583, 0.707335591, -1, 2.16833246e-006, 1.66987672e-006, -3.53366175e-007, -0.707335591, 0.706899583))
  902. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  903. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  904. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409934998, -0.704768658, -0.000305175781, 1, -3.60254271e-010, -1.12575438e-009, 4.28148017e-010, 1.00000513, 0.000221444701, 1.15569176e-009, -0.000221444468, 1.00000513))
  905. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  906. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0953993797, 0.600135803, 0.399356842, 1.07937676e-005, 1.00000513, 0.000307317649, -1, 1.0792317e-005, 4.68049075e-006, 4.67718064e-006, -0.000307317474, 1.00000513))
  907. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  908. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  909. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0950679779, 0.600120544, -0.400672913, 1.07931874e-005, 1.00000513, 0.000307162001, -1, 1.07917376e-005, 4.68020016e-006, 4.67689188e-006, -0.000307161827, 1.00000513))
  910. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  911. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.399999917, 0.620000005))
  912. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409927368, -0.00472259521, -0.000297546387, 1, -3.09861775e-010, -1.16061794e-009, 3.77793824e-010, 1.00000513, 0.00024700354, 1.19055654e-009, -0.000247003307, 1.00000513))
  913. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  914. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950546265, 0.00469684601, 0.405296326, 1, -3.89069055e-010, -1.42533318e-009, -4.57056809e-010, -1.00000513, -0.000240535184, -1.45525392e-009, 0.000240534951, -1.00000513))
  915. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  916. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.214559555, 0.602371216, 0.0747890472, 6.91723301e-009, 0.707163751, -0.707071483, -1, -4.3898072e-007, -4.48717827e-007, -6.27488987e-007, 0.707071483, 0.707163751))
  917. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  918. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  919. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602371216, -0.215126038, 0.214544296, 1, -2.6962903e-008, 2.48683811e-008, 1.60773062e-009, 0.706893623, 0.707334518, -3.67035575e-008, -0.707334518, 0.706893623))
  920. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.600000024, 0.200000003, 1))
  921. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.695029736, 0.600158691, -0.000602722168, 1.07924507e-005, 1.00000513, 0.000307222479, -1, 1.07909991e-005, 4.68184771e-006, 4.67853852e-006, -0.000307222246, 1.00000513))
  922. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  923. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  924. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.215208054, 0.602371216, 0.524686813, 2.71457156e-006, 0.706890941, 0.707335711, -0.999997497, 2.1679848e-006, 1.67096596e-006, -3.5231912e-007, -0.707337737, 0.706888914))
  925. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  926. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  927. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409942627, 0.00470399857, 0.405349731, 1, -3.90714155e-010, -1.42410639e-009, -4.58702243e-010, -1.00000513, -0.000240880356, -1.45402668e-009, 0.000240880123, -1.00000513))
  928. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.610000014, 1.01999998))
  929. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-4.57763672e-005, 0.699993134, -8.39233398e-005, 1, 2.65332929e-011, 1.19964039e-011, 4.16229898e-011, 1.00000513, 3.18541424e-008, 1.80098159e-011, -3.16213118e-008, 1.00000513))
  930. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  931. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400688171, 0.694943428, 0.600135803, -4.16014518e-005, 9.45778302e-005, 1.00000513, -9.60050784e-007, 1.00000513, -9.45776337e-005, -1, -9.64058017e-007, -4.16016046e-005))
  932. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.19600004, 0.219999999, 1.35599995))
  933. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.819999993))
  934. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-4.57763672e-005, 0.914970875, 0.000156402588, 1, 3.83146959e-010, 1.04947406e-009, -3.0014724e-010, 1.00000513, -6.28933776e-008, -1.0198371e-009, 6.3162588e-008, 1.00000513))
  935. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  936. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  937. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602371216, -0.214633942, -0.215305328, 1, -2.69070721e-008, 2.46837875e-008, 3.65531747e-008, 0.707143307, -0.707091987, 1.77105497e-009, 0.707091987, 0.707143307))
  938. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  939. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.694721222, 0.600151062, -0.400558472, 1.0792096e-005, 1.00000513, 0.000307252514, -1, 1.07906444e-005, 4.68267717e-006, 4.67936752e-006, -0.00030725234, 1.00000513))
  940. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  941. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  942. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950546265, -0.704750061, 0.404693604, 1, -5.70188841e-010, -1.14858878e-009, 6.38102626e-010, 1.00000513, 0.000234975247, 1.1784711e-009, -0.000234975014, 1.00000513))
  943. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  944. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.695051193, 0.600151062, 0.399570465, 1.07923161e-005, 1.00000513, 0.000307249313, -1, 1.07908654e-005, 4.68239432e-006, 4.67908512e-006, -0.000307249138, 1.00000513))
  945. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  946. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  947. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409950256, 0.704789639, 0.405284882, 1, -5.29048194e-010, -1.16270571e-009, -5.96991845e-010, -1.00000513, -0.000257128122, -1.19258425e-009, 0.000257127889, -1.00000513))
  948. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  949. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0950469971, 0.70477581, 0.405281067, 1, -4.60379734e-010, -1.16449506e-009, -5.28324051e-010, -1.00000513, -0.000256976229, -1.19439125e-009, 0.000256975996, -1.00000513))
  950. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.99999994, 1.01999998))
  951. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.60005188, -0.304827213, -0.000297546387, 1, -6.62538246e-010, -1.16981935e-009, 7.30470628e-010, 1.00000513, 0.000246760814, 1.19967103e-009, -0.000246760581, 1.00000513))
  952. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 1.01999998))
  953. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.34057617e-005, 0.294992924, -0.000293731689, 1, -1.10349042e-010, -4.6138493e-010, 1.77988208e-010, 1.00000513, 7.43748387e-008, 4.9142046e-010, -7.41420081e-008, 1.00000513))
  954. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  955. Partweld = weld(m, HandleA, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.39931488, 0.694943428, 0.600097656, -4.16014518e-005, 9.45778302e-005, 1.00000513, -9.60050784e-007, 1.00000513, -9.45776337e-005, -1, -9.64058017e-007, -4.16016046e-005))
  956. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.202000037, 0.219999999, 1.35599995))
  957. FHandleA1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA1", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  958. FHandleA1weld = weld(m, FConnectorA1, FHandleA1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-2.28881836e-005, -0.0899443626, 0.000160217285, 1, 9.47310674e-010, -1.83126758e-009, -9.44816669e-010, 1, 1.51900167e-007, 1.83138127e-009, -1.51900167e-007, 1))
  959. FHandleA2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA2", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  960. FHandleA2weld = weld(m, FConnectorA2, FHandleA2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.0899934769, 0, 1, -2.30699793e-010, 1.00612851e-010, 2.9406716e-010, 1.00000572, 1.59925548e-008, -1.28238753e-010, -2.03581294e-008, 1.00000572))
  961. FHandleA3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA3", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  962. FHandleA3weld = weld(m, FConnectorA3, FHandleA3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.090004921, 3.81469727e-006, 1, 4.48693027e-010, -1.09935172e-010, -4.47141213e-010, 1, -2.09038262e-008, 1.10048859e-010, 2.09038262e-008, 1))
  963. FHandleA4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA4", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  964. FHandleA4weld = weld(m, FConnectorA4, FHandleA4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-7.62939453e-006, -0.0900015831, 2.67028809e-005, 1, 8.51593795e-010, -8.99262886e-011, -8.46407722e-010, 1, -2.47964635e-008, 9.02673492e-011, 2.47964635e-008, 1))
  965. FHandleA5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleA5", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  966. FHandleA5weld = weld(m, FConnectorA5, FHandleA5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.0900025368, 7.2479248e-005, 1, 1.59918379e-009, 4.29054126e-010, -1.58659819e-009, 1, -1.01346814e-007, -4.28713065e-010, 1.01324986e-007, 1)) ]]
  967.  
  968. HandleB = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "HandleB", Vector3.new(1.01999998, 0.410000026, 1.01999998))
  969. HandleBweld = weld(m, Character["Left Arm"], HandleB, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-5.34057617e-005, 0.00579214096, -0.000717163086, -0.99999702, 1.30612687e-009, 2.74129752e-006, 1.1281549e-009, 1.00000882, -9.4532792e-005, -2.29434954e-006, -9.45326028e-005, -1.00000536))
  970. FConnectorB1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB1", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  971. FConnectorB1weld = weld(m, HandleB, FConnectorB1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410011292, -1.09512377, -0.40996933, -0.999990344, 9.75173589e-006, -4.76017885e-006, -9.75114472e-006, -1.00001204, 2.27628334e-007, -4.34698632e-006, 2.29010766e-007, 1.00000203))
  972. FConnectorB2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB2", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  973. FConnectorB2weld = weld(m, HandleB, FConnectorB2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410003662, -1.09513116, -0.129657745, -0.999986649, 9.75185594e-006, -5.20708772e-006, -9.75106377e-006, -1.00000668, 5.36027073e-007, -3.48685307e-006, 5.38973836e-007, 0.999993324))
  974. FConnectorB3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB3", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  975. FConnectorB3weld = weld(m, HandleB, FConnectorB3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409965515, -1.08497524, 0.140300751, -0.999993324, 9.75177409e-006, -3.97838994e-006, -9.75137755e-006, -1.00000334, 5.61856723e-007, -3.11826261e-006, 5.63341018e-007, 0.999996662))
  976. FConnectorB4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB4", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  977. FConnectorB4weld = weld(m, HandleB, FConnectorB4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409957886, -1.08498001, 0.410175323, -0.999991894, 9.75470903e-006, -3.12404359e-006, -9.75422699e-006, -1.00000405, 5.46198862e-007, -2.07960943e-006, 5.47988748e-007, 0.999995947))
  978. FConnectorB5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "FConnectorB5", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  979. FConnectorB5weld = weld(m, HandleB, FConnectorB5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.409980774, -1.09494543, -0.409542084, -0.999974728, 9.75853163e-006, -6.0076236e-006, -9.75704006e-006, -1.00001264, 6.99823431e-007, -2.75148182e-006, 7.05331331e-007, 0.999987364))
  980. HitboxB = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Crimson", "HitboxB", Vector3.new(1.22000003, 1.00999999, 1.01999998))
  981. HitboxBweld = weld(m, HandleB, HitboxB, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.100006104, 0.889988422, -8.01086426e-005, 0.999965847, -7.24100557e-010, 3.32365107e-006, -7.63507535e-010, 1.00002456, 3.05735739e-008, 3.58721138e-007, -2.40979716e-008, 0.999989808))
  982. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  983. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410049438, 0.714781284, 0.405288696, 0.999982476, 1.32186387e-010, 7.77321588e-007, 5.98021299e-010, -1.00001609, -0.000257281994, -1.25018551e-006, 0.00025728374, -0.99999851))
  984. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 1.01999998))
  985. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(2.28881836e-005, 0.285013676, -0.000282287598, 0.999967337, -1.5549535e-009, 5.20209369e-006, 1.61488642e-010, 1.00001812, 7.64994184e-008, -1.3707679e-006, -6.97400537e-008, 0.999985218))
  986. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.399999917, 0.620000005))
  987. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.409980774, -0.0147089958, -0.000305175781, 0.999965847, -2.17003437e-009, 4.9788764e-006, 3.62124303e-010, 1.00002444, 0.000246998534, -1.29649527e-006, -0.000247000571, 0.999989808))
  988. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  989. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410041809, -0.714772701, -0.000305175781, 0.999984264, 5.30370525e-010, 7.77336254e-007, -9.50127754e-010, 1.00000787, 0.00022139927, 1.25007e-006, -0.000221399358, 0.999992192))
  990. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  991. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410003662, 0.0146970749, 0.40537262, 0.999965847, -2.17019336e-009, 4.97882229e-006, -3.70234204e-010, -1.00002444, -0.000240876077, 1.29644116e-006, 0.00024087794, -0.999989808))
  992. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.200000003, 0.819999993))
  993. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(3.05175781e-005, 0.904989719, 0.000244140625, 0.999978065, -7.79672504e-009, 3.02157605e-006, 6.82267665e-009, 1.00001097, -1.16917363e-007, -1.95484972e-007, 1.21617632e-007, 0.999989033))
  994. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  995. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.620000005, 0.200000003, 0.819999993))
  996. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.57763672e-005, 0.914862633, 0.000553131104, 0.999978065, -2.87229418e-009, 2.06913091e-006, 1.8980213e-009, 1.00001097, -5.95959136e-007, 7.56950044e-007, 6.00666681e-007, 0.999989033))
  997. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  998. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.600000024, 0.200000003, 1))
  999. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.685016155, 0.60004425, -0.000576019287, 1.07880278e-005, 1.0000155, 0.000307261536, -0.999969006, 1.0787875e-005, 2.61563605e-006, 6.60559135e-006, -0.000307264534, 0.999984682))
  1000. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1001. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  1002. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.684755325, 0.600059509, -0.400756836, 1.0788599e-005, 1.00000787, 0.000307488954, -0.999984264, 1.07877813e-005, 3.72219597e-006, 5.74624983e-006, -0.000307490496, 0.999992192))
  1003. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1004. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  1005. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.685072899, 0.600067139, 0.399261475, 1.07872711e-005, 1.0000155, 0.00030746602, -0.999969006, 1.07870783e-005, 2.73933233e-006, 6.729284e-006, -0.000307469018, 0.999984682))
  1006. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1007. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  1008. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.399326324, 0.684971809, 0.599990845, -4.03382401e-005, 9.44945641e-005, 0.999991834, -9.62037007e-007, 1.00000787, -9.44897838e-005, -0.999983966, -9.65175104e-007, -4.23658821e-005))
  1009. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.202000037, 0.219999999, 1.35599995))
  1010. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  1011. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949478149, -0.714713573, 0.404712677, 0.999982774, 2.57471877e-010, 7.7719352e-007, -7.87075238e-010, 1.00001347, 0.000235129759, 1.25028396e-006, -0.000235130938, 0.999996126))
  1012. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  1013. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949478149, -0.0146975517, 0.4047966, 0.999982774, 6.53486099e-010, 7.77193463e-007, -1.11419485e-009, 1.00001299, 0.000259818073, 1.25028328e-006, -0.000259819906, 0.99999553))
  1014. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  1015. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.400676727, 0.684971809, 0.600036621, -4.03382401e-005, 9.44945641e-005, 0.999991834, -9.62037007e-007, 1.00000787, -9.44897838e-005, -0.999983966, -9.65175104e-007, -4.23658821e-005))
  1016. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.19600004, 0.219999999, 1.35599995))
  1017. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  1018. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.000675201416, 0.684971809, 0.600013733, -4.03382401e-005, 9.44945641e-005, 0.999991834, -9.62037007e-007, 1.00000787, -9.44897838e-005, -0.999983966, -9.65175104e-007, -4.23658821e-005))
  1019. mesh("SpecialMesh", Part, Enum.MeshType.FileMesh, "http://www.roblox.com/asset/?id=3270017", Vector3.new(0, 0, 0), Vector3.new(0.646000028, 0.638000011, 1.35599995))
  1020. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1021. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.714962482, 0.599998474, -0.400279999, 1.07917776e-005, 1.00000787, 0.000307536626, -0.999984264, 1.07909609e-005, 3.72180239e-006, 5.74585465e-006, -0.000307538168, 0.999992192))
  1022. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1023. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1024. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0853996277, 0.600074768, 0.399375916, 1.07918922e-005, 1.00001574, 0.000307276874, -0.999968529, 1.07916239e-005, 3.00816009e-006, 7.05953335e-006, -0.000307279872, 0.999984324))
  1025. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1026. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  1027. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602294922, -0.221727371, -0.222377777, 0.999968529, -2.77844325e-008, 1.5804543e-006, -1.73086164e-006, 0.707148612, -0.707064986, 1.76833453e-006, 0.707087159, 0.707126319))
  1028. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1029. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.0850524902, 0.600036621, -0.400672913, 1.07914002e-005, 1.00001574, 0.0003071838, -0.999968529, 1.07914666e-005, 1.92046173e-006, 5.97185317e-006, -0.000307186769, 0.999984324))
  1030. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1031. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1032. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.221570969, 0.602279663, -0.532333374, -9.16450119e-007, 0.707201421, -0.707024872, -0.99998188, -4.39811004e-007, -1.23922871e-006, 3.05380581e-007, 0.707037866, 0.707188487))
  1033. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1034. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  1035. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.221664429, 0.602294922, 0.0677280426, -5.32410468e-007, 0.707169592, -0.707043946, -0.999968529, 4.26314045e-007, -2.87682087e-006, 1.1334331e-006, 0.707066119, 0.707147479))
  1036. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1037. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  1038. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.602279663, -0.222204208, 0.221616745, 0.999968529, -2.7891728e-008, 1.5804543e-006, 1.76886238e-006, 0.706902444, 0.707310975, 1.7303239e-006, -0.707333207, 0.706880331))
  1039. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  1040. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.71464777, 0.599990845, 0.399719238, 1.07905635e-005, 1.00000787, 0.000307468435, -0.999984264, 1.07897467e-005, 3.7218565e-006, 5.74590968e-006, -0.000307469978, 0.999992192))
  1041. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1042. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  1043. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.222238541, 0.602272034, 0.531747818, 3.61345883e-006, 0.706890404, 0.707323194, -0.999984264, 2.18690184e-006, 8.96424808e-007, 5.20473066e-007, -0.70733428, 0.706879318))
  1044. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1045. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  1046. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.222442627, 0.602287292, -0.0682048798, 2.74106606e-006, 0.706903875, 0.707309544, -0.999968529, 1.72691671e-006, -1.90388391e-006, 3.00002284e-007, -0.707331777, 0.706881762))
  1047. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  1048. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  1049. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949707031, 0.014693737, 0.405315399, 0.999965847, -2.00778438e-009, 5.06809101e-006, -1.86809165e-010, -1.00002444, -0.000240532332, 1.38570761e-006, 0.000240534195, -0.999989808))
  1050. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.99999994, 1.01999998))
  1051. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.599967957, -0.314879894, -0.000305175781, 0.999968529, -1.52550794e-009, 3.47273135e-006, 2.76023454e-010, 1.00001574, 0.000246752985, 5.82059499e-007, -0.000246754033, 0.999984324))
  1052. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  1053. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-0.0949478149, 0.71477747, 0.405269623, 0.999983668, 2.62990379e-010, 7.77281798e-007, 6.87050083e-010, -1.00001037, -0.00025712885, -1.25016015e-006, 0.000257130014, -0.99999398))
  1054. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(1.01999998, 0.610000014, 1.01999998))
  1055. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(4.57763672e-005, 0.690003395, 0, 0.999978065, -3.37791017e-009, 2.19185767e-006, 2.40435716e-009, 1.00001097, 5.20303729e-008, 6.34224364e-007, -4.73301043e-008, 0.999989033))
  1056. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  1057. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410049438, -0.714709282, 0.404720306, 0.999984264, 2.45380903e-011, 7.7730283e-007, -4.26871205e-010, 1.00000787, 0.000235340878, 1.25010342e-006, -0.000235341198, 0.999992192))
  1058. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Crimson", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  1059. Partweld = weld(m, HandleB, Part, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0.410041809, -0.0147390366, 0.404838562, 0.999983072, 5.45701151e-010, 7.77317439e-007, -1.05576647e-009, 1.0000155, 0.000272982696, 1.25019938e-006, -0.000272984529, 0.999998391))
  1060. FHandleB1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB1", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1061. FHandleB1weld = weld(m, FConnectorB1, FHandleB1, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05175781e-005, -0.100004435, 3.81469727e-006, 0.999987125, 9.48046641e-010, -8.29304327e-007, -1.90026062e-009, 1.00000644, -2.25118129e-008, -8.29517148e-007, 1.97178451e-008, 0.999993563))
  1062. FHandleB2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB2", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1063. FHandleB2weld = weld(m, FConnectorB2, FHandleB2, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(0, -0.0999953747, -1.90734863e-005, 0.999986887, 1.7767473e-009, -8.2923782e-007, -2.74682477e-009, 1.00000656, -3.37167876e-008, -8.60301839e-007, 3.08791641e-008, 0.999993443))
  1064. FHandleB3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB3", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1065. FHandleB3weld = weld(m, FConnectorB3, FHandleB3, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(1.52587891e-005, -0.110008478, -6.48498535e-005, 0.999993801, 1.65772562e-009, -1.46104639e-007, -2.11578732e-009, 1.0000031, -3.14466888e-008, -6.52590643e-007, 3.01006366e-008, 0.999996901))
  1066. FHandleB4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB4", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1067. FHandleB4weld = weld(m, FConnectorB4, FHandleB4, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(-3.05175781e-005, -0.110030413, -4.57763672e-005, 0.999992371, -3.29658301e-010, -1.30871194e-006, -2.33423003e-010, 1.00000381, -5.04951458e-009, 3.25705969e-007, 3.39059625e-009, 0.999996185))
  1068. FHandleB5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "FHandleB5", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  1069. FHandleB5weld = weld(m, FConnectorB5, FHandleB5, CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1), CFrame.new(7.62939453e-006, -0.0900087357, -0.000114440918, 0.999993801, 3.53735596e-009, -1.22842721e-006, -3.99611277e-009, 1.0000031, -1.37908501e-007, 4.29716692e-007, 1.36555173e-007, 0.999996901))
  1070. ----------------------------------------------------
  1071. local m = Instance.new("Model")
  1072. m.Name = "Hair"
  1073. p1 = Instance.new("Part", m)
  1074. p1.BrickColor = BrickColor.new("Really black")
  1075. p1.FormFactor = Enum.FormFactor.Symmetric
  1076. p1.Size = Vector3.new(1, 1, 1)
  1077. p1.CFrame = CFrame.new(-2.49043155, 8.24595642, -3.40113306, -5.48362732e-006, -0.978699088, 0.205299795, 3.27825546e-007, -0.205299854, -0.978699148, 1, -5.28991222e-006, 1.48639083e-006)
  1078. p1.CanCollide = false
  1079. p1.Locked = true
  1080. p1.BottomSurface = Enum.SurfaceType.Smooth
  1081. p1.TopSurface = Enum.SurfaceType.Smooth
  1082. b1 = Instance.new("SpecialMesh", p1)
  1083. b1.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1084. b1.TextureId = ""
  1085. b1.MeshType = Enum.MeshType.FileMesh
  1086. b1.Name = "Mesh"
  1087. b1.VertexColor = Vector3.new(0, 0, 0)
  1088. b1.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1089. p2 = Instance.new("Part", m)
  1090. p2.BrickColor = BrickColor.new("Pastel brown")
  1091. p2.Transparency = 1
  1092. p2.Name = "Head"
  1093. p2.FormFactor = Enum.FormFactor.Symmetric
  1094. p2.Size = Vector3.new(2, 1, 1)
  1095. p2.CFrame = CFrame.new(-1.70008016, 8.14794922, -3.40013027, 4.24603923e-006, 7.4505806e-008, -1, -1.50268988e-007, 1, 1.49011612e-008, 1.00000012, 6.79109462e-008, 4.23316806e-006)
  1096. p2.CanCollide = false
  1097. p2.Locked = true
  1098. p2.TopSurface = Enum.SurfaceType.Smooth
  1099. b2 = Instance.new("SpecialMesh", p2)
  1100. b2.MeshType = Enum.MeshType.Head
  1101. b2.Name = "Mesh"
  1102. b2.Scale = Vector3.new(1.25, 1.25, 1.25)
  1103. p3 = Instance.new("Part", m)
  1104. p3.BrickColor = BrickColor.new("Really black")
  1105. p3.FormFactor = Enum.FormFactor.Symmetric
  1106. p3.Size = Vector3.new(2, 2, 2)
  1107. p3.CFrame = CFrame.new(-1.70003617, 8.71796131, -3.4000442, 2.57710985e-006, 6.95607483e-008, -1.00000012, -1.20466638e-007, 1, 9.95640903e-009, 1.00000024, 3.81086345e-008, 2.56423846e-006)
  1108. p3.CanCollide = false
  1109. p3.Locked = true
  1110. p3.BottomSurface = Enum.SurfaceType.Smooth
  1111. p3.TopSurface = Enum.SurfaceType.Smooth
  1112. b3 = Instance.new("SpecialMesh", p3)
  1113. b3.MeshId = "http://www.roblox.com/asset/?id=16627529"
  1114. b3.TextureId = ""
  1115. b3.MeshType = Enum.MeshType.FileMesh
  1116. b3.Name = "Mesh"
  1117. b3.VertexColor = Vector3.new(0, 0, 0)
  1118. b3.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1119. p4 = Instance.new("Part", m)
  1120. p4.BrickColor = BrickColor.new("Really black")
  1121. p4.FormFactor = Enum.FormFactor.Symmetric
  1122. p4.Size = Vector3.new(1, 1, 1)
  1123. p4.CFrame = CFrame.new(-1.77981007, 8.84795475, -3.40016508, 5.79576135e-006, 7.9450956e-008, -1.00000012, -1.80071311e-007, 1, 1.98458743e-008, 1.00000024, 9.77132402e-008, 5.78289018e-006)
  1124. p4.CanCollide = false
  1125. p4.Locked = true
  1126. p4.BottomSurface = Enum.SurfaceType.Smooth
  1127. p4.TopSurface = Enum.SurfaceType.Smooth
  1128. b4 = Instance.new("SpecialMesh", p4)
  1129. b4.MeshId = "http://www.roblox.com/asset/?id=19326912"
  1130. b4.TextureId = ""
  1131. b4.MeshType = Enum.MeshType.FileMesh
  1132. b4.Name = "Mesh"
  1133. b4.VertexColor = Vector3.new(0, 0, 0)
  1134. p5 = Instance.new("Part", m)
  1135. p5.BrickColor = BrickColor.new("Really black")
  1136. p5.FormFactor = Enum.FormFactor.Symmetric
  1137. p5.Size = Vector3.new(1, 1, 1)
  1138. p5.CFrame = CFrame.new(-1.70003772, 8.46796131, -3.40004301, -3.43517968e-007, 2.98088111e-007, -1, -1.00421907e-007, 1, 2.38484063e-007, 1.00000012, 1.80640072e-008, -3.56389592e-007)
  1139. p5.CanCollide = false
  1140. p5.Locked = true
  1141. p5.BottomSurface = Enum.SurfaceType.Smooth
  1142. p5.TopSurface = Enum.SurfaceType.Smooth
  1143. b5 = Instance.new("SpecialMesh", p5)
  1144. b5.MeshId = "http://www.roblox.com/asset/?id=45916884"
  1145. b5.TextureId = ""
  1146. b5.MeshType = Enum.MeshType.FileMesh
  1147. b5.Name = "Mesh"
  1148. b5.VertexColor = Vector3.new(0, 0, 0)
  1149. b5.Scale = Vector3.new(1, 0.899999976, 1)
  1150. p6 = Instance.new("Part", m)
  1151. p6.BrickColor = BrickColor.new("Really black")
  1152. p6.FormFactor = Enum.FormFactor.Symmetric
  1153. p6.Size = Vector3.new(1, 1, 1)
  1154. p6.CFrame = CFrame.new(-1.89967656, 8.58795834, -3.44990659, -5.81936433e-007, 5.36502284e-007, -0.99999994, -1.3998249e-007, 1, 4.76898265e-007, 1, 5.76247672e-008, -5.94808171e-007)
  1155. p6.CanCollide = false
  1156. p6.Locked = true
  1157. p6.BottomSurface = Enum.SurfaceType.Smooth
  1158. p6.TopSurface = Enum.SurfaceType.Smooth
  1159. b6 = Instance.new("SpecialMesh", p6)
  1160. b6.MeshId = "http://www.roblox.com/asset/?id=62246019"
  1161. b6.TextureId = ""
  1162. b6.MeshType = Enum.MeshType.FileMesh
  1163. b6.Name = "Mesh"
  1164. b6.VertexColor = Vector3.new(0, 0, 0)
  1165. p7 = Instance.new("Part", m)
  1166. p7.BrickColor = BrickColor.new("Really black")
  1167. p7.FormFactor = Enum.FormFactor.Symmetric
  1168. p7.Size = Vector3.new(1, 1, 1)
  1169. p7.CFrame = CFrame.new(-1.89918542, 8.31796837, -3.50097537, -4.62727087e-007, 5.36502228e-007, -0.999999881, -1.39982518e-007, 1, 4.76898208e-007, 0.99999994, 5.76247459e-008, -4.75598938e-007)
  1170. p7.CanCollide = false
  1171. p7.Locked = true
  1172. p7.BottomSurface = Enum.SurfaceType.Smooth
  1173. p7.TopSurface = Enum.SurfaceType.Smooth
  1174. b7 = Instance.new("SpecialMesh", p7)
  1175. b7.MeshId = "http://www.roblox.com/asset/?id=76056263"
  1176. b7.TextureId = ""
  1177. b7.MeshType = Enum.MeshType.FileMesh
  1178. b7.Name = "Mesh"
  1179. b7.VertexColor = Vector3.new(0, 0, 0)
  1180. p8 = Instance.new("Part", m)
  1181. p8.BrickColor = BrickColor.new("Really black")
  1182. p8.FormFactor = Enum.FormFactor.Symmetric
  1183. p8.Size = Vector3.new(1, 1, 1)
  1184. p8.CFrame = CFrame.new(-2.62433338, 7.66397905, -3.4010179, -1.17798254e-006, -0.805111349, 0.593123376, -2.5008859e-007, -0.593123615, -0.805111527, 0.999999881, -9.58229293e-007, 4.4941558e-007)
  1185. p8.CanCollide = false
  1186. p8.Locked = true
  1187. p8.BottomSurface = Enum.SurfaceType.Smooth
  1188. p8.TopSurface = Enum.SurfaceType.Smooth
  1189. b8 = Instance.new("SpecialMesh", p8)
  1190. b8.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1191. b8.TextureId = ""
  1192. b8.MeshType = Enum.MeshType.FileMesh
  1193. b8.Name = "Mesh"
  1194. b8.VertexColor = Vector3.new(0, 0, 0)
  1195. b8.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1196. p9 = Instance.new("Part", m)
  1197. p9.BrickColor = BrickColor.new("Really black")
  1198. p9.FormFactor = Enum.FormFactor.Symmetric
  1199. p9.Size = Vector3.new(2, 1, 2)
  1200. p9.CFrame = CFrame.new(-1.76505995, 8.56096649, -3.40065479, -9.73168881e-007, -0.0995008349, -0.995037436, -1.70322267e-007, 0.995037675, -0.0995009243, 1, 1.13823972e-007, -6.80968242e-007)
  1201. p9.CanCollide = false
  1202. p9.Locked = true
  1203. p9.BottomSurface = Enum.SurfaceType.Smooth
  1204. p9.TopSurface = Enum.SurfaceType.Smooth
  1205. b9 = Instance.new("SpecialMesh", p9)
  1206. b9.MeshId = "http://www.roblox.com/asset/?id=12259089"
  1207. b9.TextureId = ""
  1208. b9.MeshType = Enum.MeshType.FileMesh
  1209. b9.Name = "Mesh"
  1210. b9.VertexColor = Vector3.new(0, 0, 0)
  1211. b9.Scale = Vector3.new(1.01999998, 1.04999995, 1.04999995)
  1212. p10 = Instance.new("Part", m)
  1213. p10.BrickColor = BrickColor.new("Really black")
  1214. p10.FormFactor = Enum.FormFactor.Symmetric
  1215. p10.Size = Vector3.new(1, 1, 1)
  1216. p10.CFrame = CFrame.new(-2.0207715, 9.06097031, -3.39961624, -1.10652763e-006, -0.683569431, -0.729885519, -2.85231891e-007, 0.729885638, -0.68356967, 1.00000012, -3.22293062e-007, -8.40051371e-007)
  1217. p10.CanCollide = false
  1218. p10.Locked = true
  1219. p10.BottomSurface = Enum.SurfaceType.Smooth
  1220. p10.TopSurface = Enum.SurfaceType.Smooth
  1221. b10 = Instance.new("SpecialMesh", p10)
  1222. b10.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1223. b10.TextureId = ""
  1224. b10.MeshType = Enum.MeshType.FileMesh
  1225. b10.Name = "Mesh"
  1226. b10.VertexColor = Vector3.new(0, 0, 0)
  1227. b10.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1228. p11 = Instance.new("Part", m)
  1229. p11.BrickColor = BrickColor.new("Really black")
  1230. p11.FormFactor = Enum.FormFactor.Symmetric
  1231. p11.Size = Vector3.new(1, 1, 1)
  1232. p11.CFrame = CFrame.new(-2.16468835, 8.78595829, -3.40089417, -1.41617738e-006, -0.989475727, -0.144699216, -4.36450762e-007, 0.144699067, -0.989476085, 1.00000024, -9.47996682e-007, -7.38401468e-007)
  1233. p11.CanCollide = false
  1234. p11.Locked = true
  1235. p11.BottomSurface = Enum.SurfaceType.Smooth
  1236. p11.TopSurface = Enum.SurfaceType.Smooth
  1237. b11 = Instance.new("SpecialMesh", p11)
  1238. b11.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1239. b11.TextureId = ""
  1240. b11.MeshType = Enum.MeshType.FileMesh
  1241. b11.Name = "Mesh"
  1242. b11.VertexColor = Vector3.new(0, 0, 0)
  1243. b11.Scale = Vector3.new(1, 1.60000002, 1.29999995)
  1244. p12 = Instance.new("Part", m)
  1245. p12.BrickColor = BrickColor.new("Really black")
  1246. p12.FormFactor = Enum.FormFactor.Custom
  1247. p12.Size = Vector3.new(1, 3.5, 1)
  1248. p12.CFrame = CFrame.new(-3.74216318, 6.74288082, -3.40101933, -1.20476273e-006, -0.553697288, 0.832718134, -3.31002866e-007, -0.832718611, -0.553697169, 1.00000036, -8.7345768e-007, 3.69213154e-007)
  1249. p12.CanCollide = false
  1250. p12.Locked = true
  1251. p12.BottomSurface = Enum.SurfaceType.Smooth
  1252. p12.TopSurface = Enum.SurfaceType.Smooth
  1253. b12 = Instance.new("SpecialMesh", p12)
  1254. b12.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1255. b12.TextureId = ""
  1256. b12.MeshType = Enum.MeshType.FileMesh
  1257. b12.Name = "Mesh"
  1258. b12.VertexColor = Vector3.new(0, 0, 0)
  1259. b12.Scale = Vector3.new(1, 3, 1.29999995)
  1260. p13 = Instance.new("Part", m)
  1261. p13.BrickColor = BrickColor.new("Really black")
  1262. p13.FormFactor = Enum.FormFactor.Custom
  1263. p13.Size = Vector3.new(1, 2, 1)
  1264. p13.CFrame = CFrame.new(-3.32689047, 6.86741829, -3.40101862, -9.81709945e-007, -0.319307148, 0.947651446, -5.6545997e-007, -0.947651923, -0.31930691, 1.00000048, -8.39551717e-007, 1.79318391e-007)
  1265. p13.CanCollide = false
  1266. p13.Locked = true
  1267. p13.BottomSurface = Enum.SurfaceType.Smooth
  1268. p13.TopSurface = Enum.SurfaceType.Smooth
  1269. b13 = Instance.new("SpecialMesh", p13)
  1270. b13.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1271. b13.TextureId = ""
  1272. b13.MeshType = Enum.MeshType.FileMesh
  1273. b13.Name = "Mesh"
  1274. b13.VertexColor = Vector3.new(0, 0, 0)
  1275. b13.Scale = Vector3.new(1, 3, 1.29999995)
  1276. p14 = Instance.new("Part", m)
  1277. p14.BrickColor = BrickColor.new("Really black")
  1278. p14.FormFactor = Enum.FormFactor.Custom
  1279. p14.Size = Vector3.new(1, 2, 1)
  1280. p14.CFrame = CFrame.new(-3.02689028, 7.96740961, -3.40101862, -1.33478545e-006, -0.750354111, 0.661036491, -5.20037702e-008, -0.661037207, -0.750354171, 1.0000006, -6.31296757e-007, 2.01137496e-007)
  1281. p14.CanCollide = false
  1282. p14.Locked = true
  1283. p14.BottomSurface = Enum.SurfaceType.Smooth
  1284. p14.TopSurface = Enum.SurfaceType.Smooth
  1285. b14 = Instance.new("SpecialMesh", p14)
  1286. b14.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1287. b14.TextureId = ""
  1288. b14.MeshType = Enum.MeshType.FileMesh
  1289. b14.Name = "Mesh"
  1290. b14.VertexColor = Vector3.new(0, 0, 0)
  1291. b14.Scale = Vector3.new(1, 3, 1.29999995)
  1292. p15 = Instance.new("Part", m)
  1293. p15.BrickColor = BrickColor.new("Really black")
  1294. p15.FormFactor = Enum.FormFactor.Custom
  1295. p15.Size = Vector3.new(1, 2.5, 1)
  1296. p15.CFrame = CFrame.new(-2.96531463, 7.75924349, -2.90101862, 0.342019022, -0.520305753, 0.782499552, -1.1920929e-007, -0.832718909, -0.553697407, 0.939693451, 0.189374983, -0.284806281)
  1297. p15.CanCollide = false
  1298. p15.Locked = true
  1299. p15.BottomSurface = Enum.SurfaceType.Smooth
  1300. p15.TopSurface = Enum.SurfaceType.Smooth
  1301. b15 = Instance.new("SpecialMesh", p15)
  1302. b15.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1303. b15.TextureId = ""
  1304. b15.MeshType = Enum.MeshType.FileMesh
  1305. b15.Name = "Mesh"
  1306. b15.VertexColor = Vector3.new(0, 0, 0)
  1307. b15.Scale = Vector3.new(1, 3, 1.29999995)
  1308. p16 = Instance.new("Part", m)
  1309. p16.BrickColor = BrickColor.new("Really black")
  1310. p16.FormFactor = Enum.FormFactor.Custom
  1311. p16.Size = Vector3.new(1, 2.5, 1)
  1312. p16.CFrame = CFrame.new(-2.96531439, 7.75924349, -3.80101967, -0.258820295, -0.534830391, 0.804343879, -1.78813934e-007, -0.832718968, -0.553697228, 0.96592629, -0.143308073, 0.215523779)
  1313. p16.CanCollide = false
  1314. p16.Locked = true
  1315. p16.BottomSurface = Enum.SurfaceType.Smooth
  1316. p16.TopSurface = Enum.SurfaceType.Smooth
  1317. b16 = Instance.new("SpecialMesh", p16)
  1318. b16.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1319. b16.TextureId = ""
  1320. b16.MeshType = Enum.MeshType.FileMesh
  1321. b16.Name = "Mesh"
  1322. b16.VertexColor = Vector3.new(0, 0, 0)
  1323. b16.Scale = Vector3.new(1, 3, 1.29999995)
  1324. p17 = Instance.new("Part", m)
  1325. p17.BrickColor = BrickColor.new("Really black")
  1326. p17.FormFactor = Enum.FormFactor.Custom
  1327. p17.Size = Vector3.new(1, 2.4000001, 1)
  1328. p17.CFrame = CFrame.new(-2.69075108, 7.07788849, -3.40101933, -1.13248825e-006, -0.319307148, 0.947651625, -1.1920929e-006, -0.947652161, -0.319306791, 1.0000006, -1.54972076e-006, 1.04308128e-007)
  1329. p17.CanCollide = false
  1330. p17.Locked = true
  1331. p17.BottomSurface = Enum.SurfaceType.Smooth
  1332. p17.TopSurface = Enum.SurfaceType.Smooth
  1333. b17 = Instance.new("SpecialMesh", p17)
  1334. b17.MeshId = "http://www.roblox.com/asset/?id=12212520"
  1335. b17.TextureId = ""
  1336. b17.MeshType = Enum.MeshType.FileMesh
  1337. b17.Name = "Mesh"
  1338. b17.VertexColor = Vector3.new(0, 0, 0)
  1339. b17.Scale = Vector3.new(1, 3, 1.29999995)
  1340. p18 = Instance.new("Part", m)
  1341. p18.BrickColor = BrickColor.new("Really black")
  1342. p18.FormFactor = Enum.FormFactor.Custom
  1343. p18.Size = Vector3.new(2, 2, 2)
  1344. p18.CFrame = CFrame.new(-1.70003319, 8.71796608, -3.40004444, -2.37434961e-006, 1.78813934e-007, 1.00000036, -2.35242567e-007, 1.00000072, 3.27825546e-007, -1.0000006, 7.95440158e-009, -2.91315405e-006)
  1345. p18.CanCollide = false
  1346. p18.Locked = true
  1347. p18.BottomSurface = Enum.SurfaceType.Smooth
  1348. p18.TopSurface = Enum.SurfaceType.Smooth
  1349. b18 = Instance.new("SpecialMesh", p18)
  1350. b18.MeshId = "http://www.roblox.com/asset/?id=16627529"
  1351. b18.TextureId = ""
  1352. b18.MeshType = Enum.MeshType.FileMesh
  1353. b18.Name = "Mesh"
  1354. b18.VertexColor = Vector3.new(0, 0, 0)
  1355. b18.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1356. w1 = Instance.new("Weld", p1)
  1357. w1.Name = "Head_Weld"
  1358. w1.Part0 = p1
  1359. w1.C0 = CFrame.new(3.40111661, -0.744508088, 8.58160019, -5.48362732e-006, 3.27825546e-007, 1, -0.978699088, -0.205299854, -5.30481339e-006, 0.205299824, -0.978699148, 1.49011612e-006)
  1360. w1.Part1 = p2
  1361. w1.C1 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  1362. w2 = Instance.new("Weld", p2)
  1363. w2.Name = "Part_Weld"
  1364. w2.Part0 = p2
  1365. w2.C0 = CFrame.new(3.40013766, -8.14794827, -1.70006609, 4.23192978e-006, -1.08796726e-007, 1.00000012, 2.9664772e-008, 1, 1.08796598e-007, -1.00000012, 2.96642924e-008, 4.23192978e-006)
  1366. w2.Part1 = p3
  1367. w2.C1 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  1368. w3 = Instance.new("Weld", p3)
  1369. w3.Name = "Part_Weld"
  1370. w3.Part0 = p3
  1371. w3.C0 = CFrame.new(3.40004802, -8.71796036, -1.70002759, 2.56299973e-006, -7.89943471e-008, 1, 2.47196947e-008, 1, 7.89942831e-008, -1, 2.47194887e-008, 2.56299973e-006)
  1372. w3.Part1 = p4
  1373. w3.C1 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  1374. w4 = Instance.new("Weld", p4)
  1375. w4.Name = "Part_Weld"
  1376. w4.Part0 = p4
  1377. w4.C0 = CFrame.new(3.40017533, -8.8479538, -1.77979064, 5.78165054e-006, -1.38599077e-007, 1, 3.46098972e-008, 1, 1.38598878e-007, -1, 3.46090907e-008, 5.78165054e-006)
  1378. w4.Part1 = p5
  1379. w4.C1 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  1380. w5 = Instance.new("Weld", p5)
  1381. w5.Name = "Part_Weld"
  1382. w5.Part0 = p5
  1383. w5.C0 = CFrame.new(3.40004182, -8.46796036, -1.70004117, -3.57627869e-007, -5.89495883e-008, 0.99999994, 2.53247009e-007, 1, 5.89496665e-008, -0.99999994, 2.53247009e-007, -3.57627869e-007)
  1384. w5.Part1 = p6
  1385. w5.C1 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  1386. w6 = Instance.new("Weld", p6)
  1387. w6.Name = "Part_Weld"
  1388. w6.Part0 = p6
  1389. w6.C0 = CFrame.new(3.44990563, -8.58795738, -1.89968324, -5.96046448e-007, -9.85101565e-008, 1, 4.91661183e-007, 1, 9.85104407e-008, -1, 4.9166124e-007, -5.96046448e-007)
  1390. w6.Part1 = p7
  1391. w6.C1 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  1392. w7 = Instance.new("Weld", p7)
  1393. w7.Name = "Part_Weld"
  1394. w7.Part0 = p7
  1395. w7.C0 = CFrame.new(3.50097466, -8.31796741, -1.89919162, -4.76837158e-007, -9.85101849e-008, 0.99999994, 4.91661126e-007, 1, 9.85104265e-008, -0.99999994, 4.91661183e-007, -4.76837158e-007)
  1396. w7.Part1 = p8
  1397. w7.C1 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  1398. w8 = Instance.new("Weld", p8)
  1399. w8.Name = "Part_Weld"
  1400. w8.Part0 = p8
  1401. w8.C0 = CFrame.new(3.40101647, 2.43280101, 7.72691393, -1.1920929e-006, -2.08616257e-007, 1, -0.805111527, -0.593123555, -9.83476639e-007, 0.593123496, -0.805111527, 4.17232513e-007)
  1402. w8.Part1 = p9
  1403. w8.C1 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  1404. w9 = Instance.new("Weld", p9)
  1405. w9.Name = "Part_Weld"
  1406. w9.Part0 = p9
  1407. w9.C0 = CFrame.new(3.40065455, -8.6941061, -0.904481649, -8.34465027e-007, -1.67638063e-007, 1.00000012, -0.0995008498, 0.995037496, 1.00582838e-007, -0.995037615, -0.0995008498, -8.34465027e-007)
  1408. w9.Part1 = p10
  1409. w9.C1 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  1410. w10 = Instance.new("Weld", p10)
  1411. w10.Name = "Part_Weld"
  1412. w10.Part0 = p10
  1413. w10.C0 = CFrame.new(3.39961672, -7.99480963, 4.71886492, -9.53674316e-007, -2.98023224e-007, 1, -0.683569372, 0.729885519, -4.47034836e-007, -0.729885459, -0.683569431, -9.53674316e-007)
  1414. w10.Part1 = p11
  1415. w10.C1 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  1416. w11 = Instance.new("Weld", p11)
  1417. w11.Name = "Part_Weld"
  1418. w11.Part0 = p11
  1419. w11.C0 = CFrame.new(3.40089583, -3.41323304, 8.38025856, -1.31130219e-006, -4.76837158e-007, 1.00000012, -0.989475787, 0.144699097, -1.07288361e-006, -0.144699246, -0.989475787, -7.15255737e-007)
  1420. w11.Part1 = p12
  1421. w11.C1 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  1422. w12 = Instance.new("Weld", p12)
  1423. w12.Name = "Part_Weld"
  1424. w12.Part0 = p12
  1425. w12.C0 = CFrame.new(3.40101814, 3.54288888, 6.84968376, -9.53674316e-007, -4.47034836e-007, 1, -0.553697109, -0.832718134, -9.23871994e-007, 0.832718134, -0.553697109, 6.55651093e-007)
  1426. w12.Part1 = p13
  1427. w12.C1 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  1428. w13 = Instance.new("Weld", p13)
  1429. w13.Name = "Part_Weld"
  1430. w13.Part0 = p13
  1431. w13.C0 = CFrame.new(3.40102005, 5.44561195, 5.34554911, -8.34465027e-007, -6.40749931e-007, 1.00000012, -0.319307029, -0.947651505, -8.19563866e-007, 0.947651386, -0.319307029, 3.57627869e-007)
  1432. w13.Part1 = p14
  1433. w13.C1 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  1434. w14 = Instance.new("Weld", p14)
  1435. w14.Name = "Part_Weld"
  1436. w14.Part0 = p14
  1437. w14.C0 = CFrame.new(3.40101624, 2.99550176, 7.97925997, -9.53674316e-007, -1.49011612e-007, 1, -0.750353813, -0.661036491, -8.64267349e-007, 0.661036491, -0.750353813, 5.36441803e-007)
  1438. w14.Part1 = p15
  1439. w14.C1 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  1440. w15 = Instance.new("Weld", p15)
  1441. w15.Name = "Part_Weld"
  1442. w15.Part0 = p15
  1443. w15.C0 = CFrame.new(3.74026394, 5.46776819, 5.79039907, 0.34201923, -3.27825546e-007, 0.939692974, -0.520305395, -0.832718134, 0.189374775, 0.782499313, -0.553697109, -0.284805775)
  1444. w15.Part1 = p16
  1445. w15.C1 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  1446. w16 = Instance.new("Weld", p16)
  1447. w16.Name = "Part_Weld"
  1448. w16.Part0 = p16
  1449. w16.C0 = CFrame.new(2.90401983, 4.33060169, 7.50061178, -0.258819938, -2.68220901e-007, 0.965925574, -0.534830093, -0.832718134, -0.143308043, 0.80434382, -0.55369705, 0.215523928)
  1450. w16.Part1 = p17
  1451. w16.C1 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  1452. w17 = Instance.new("Weld", p17)
  1453. w17.Name = "Part_Weld"
  1454. w17.Part0 = p17
  1455. w17.C0 = CFrame.new(3.4010253, 5.84818506, 4.80991411, -8.56413749e-007, -1.3483392e-006, 1, -0.31930685, -0.947651386, -1.55121427e-006, 0.947651386, -0.31930685, 3.81047698e-007)
  1456. w17.Part1 = p18
  1457. w17.C1 = CFrame.new(-3.40004683, -8.71796036, 1.70002675, -2.6504224e-006, -7.89943471e-008, -1, -2.47197018e-008, 1, -7.89942831e-008, 1, 2.47194887e-008, -2.6504224e-006)
  1458. m.Parent = char
  1459. m:MakeJoints()
  1460. ----------------------------------------------------
  1461. local cor = Instance.new("Part", char.Hair)
  1462. cor.Name = "Link"
  1463. cor.Locked = true
  1464. cor.BottomSurface = 0
  1465. cor.CanCollide = false
  1466. cor.Size = Vector3.new(1, 9, 1)
  1467. cor.Transparency = 1
  1468. cor.TopSurface = 0
  1469. corw = Instance.new("Weld", cor)
  1470. corw.Part0 = hed
  1471. corw.Part1 = cor
  1472. corw.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1473. corw.C1 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1474. weld1 = Instance.new("Weld", char.Hair)
  1475. weld1.Part0 = cor
  1476. weld1.Part1 = char.Hair.Head
  1477. weld1.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1478. print("Success")
  1479. --------------------------------------------------
  1480. local m = Instance.new("Model")
  1481. m.Name = "Claw"
  1482. p1 = Instance.new("Part", m)
  1483. p1.BrickColor = BrickColor.new("Really black")
  1484. p1.FormFactor = Enum.FormFactor.Custom
  1485. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  1486. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  1487. p1.CanCollide = false
  1488. p1.Locked = true
  1489. p1.BottomSurface = Enum.SurfaceType.Smooth
  1490. p1.TopSurface = Enum.SurfaceType.Smooth
  1491. b1 = Instance.new("BlockMesh", p1)
  1492. b1.Name = "Mesh"
  1493. p2 = Instance.new("WedgePart", m)
  1494. p2.BrickColor = BrickColor.new("Really black")
  1495. p2.Name = "Wedge"
  1496. p2.FormFactor = Enum.FormFactor.Custom
  1497. p2.Size = Vector3.new(3, 1, 0.5)
  1498. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  1499. p2.CanCollide = false
  1500. p2.Locked = true
  1501. p2.BottomSurface = Enum.SurfaceType.Smooth
  1502. p2.TopSurface = Enum.SurfaceType.Smooth
  1503. p3 = Instance.new("Part", m)
  1504. p3.BrickColor = BrickColor.new("Really black")
  1505. p3.FormFactor = Enum.FormFactor.Custom
  1506. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  1507. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  1508. p3.CanCollide = false
  1509. p3.Locked = true
  1510. p3.BottomSurface = Enum.SurfaceType.Smooth
  1511. p3.TopSurface = Enum.SurfaceType.Smooth
  1512. b2 = Instance.new("BlockMesh", p3)
  1513. b2.Name = "Mesh"
  1514. p4 = Instance.new("WedgePart", m)
  1515. p4.BrickColor = BrickColor.new("Really black")
  1516. p4.Name = "Wedge"
  1517. p4.FormFactor = Enum.FormFactor.Custom
  1518. p4.Size = Vector3.new(3, 1, 0.5)
  1519. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  1520. p4.CanCollide = false
  1521. p4.Locked = true
  1522. p4.BottomSurface = Enum.SurfaceType.Smooth
  1523. p4.TopSurface = Enum.SurfaceType.Smooth
  1524. p5 = Instance.new("Part", m)
  1525. p5.BrickColor = BrickColor.new("Really black")
  1526. p5.FormFactor = Enum.FormFactor.Custom
  1527. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  1528. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  1529. p5.CanCollide = false
  1530. p5.Locked = true
  1531. p5.BottomSurface = Enum.SurfaceType.Smooth
  1532. p5.TopSurface = Enum.SurfaceType.Smooth
  1533. b3 = Instance.new("BlockMesh", p5)
  1534. b3.Name = "Mesh"
  1535. p6 = Instance.new("Part", m)
  1536. p6.BrickColor = BrickColor.new("Really black")
  1537. p6.FormFactor = Enum.FormFactor.Custom
  1538. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  1539. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  1540. p6.CanCollide = false
  1541. p6.Locked = true
  1542. p6.BottomSurface = Enum.SurfaceType.Smooth
  1543. p6.TopSurface = Enum.SurfaceType.Smooth
  1544. b4 = Instance.new("BlockMesh", p6)
  1545. b4.Name = "Mesh"
  1546. p7 = Instance.new("Part", m)
  1547. p7.BrickColor = BrickColor.new("Really black")
  1548. p7.FormFactor = Enum.FormFactor.Custom
  1549. p7.Size = Vector3.new(3, 1, 1.20000005)
  1550. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  1551. p7.CanCollide = false
  1552. p7.Locked = true
  1553. p7.BottomSurface = Enum.SurfaceType.Smooth
  1554. p7.TopSurface = Enum.SurfaceType.Smooth
  1555. b5 = Instance.new("BlockMesh", p7)
  1556. b5.Name = "Mesh"
  1557. p8 = Instance.new("Part", m)
  1558. p8.BrickColor = BrickColor.new("Crimson") --("Bright blue")
  1559. p8.FormFactor = Enum.FormFactor.Symmetric
  1560. p8.Size = Vector3.new(1, 1, 1)
  1561. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  1562. p8.CanCollide = false
  1563. p8.Locked = true
  1564. b6 = Instance.new("SpecialMesh", p8)
  1565. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1566. b6.TextureId = ""
  1567. b6.MeshType = Enum.MeshType.FileMesh
  1568. b6.Name = "Mesh"
  1569. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1570. p9 = Instance.new("Part", m)
  1571. p9.BrickColor = BrickColor.new("Really black")
  1572. p9.FormFactor = Enum.FormFactor.Custom
  1573. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  1574. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  1575. p9.CanCollide = false
  1576. p9.Locked = true
  1577. p9.BottomSurface = Enum.SurfaceType.Smooth
  1578. p9.TopSurface = Enum.SurfaceType.Smooth
  1579. b7 = Instance.new("BlockMesh", p9)
  1580. b7.Name = "Mesh"
  1581. p10 = Instance.new("Part", m)
  1582. p10.BrickColor = BrickColor.new("Crimson") --("Bright blue")
  1583. p10.FormFactor = Enum.FormFactor.Symmetric
  1584. p10.Size = Vector3.new(1, 1, 1)
  1585. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  1586. p10.CanCollide = false
  1587. p10.Locked = true
  1588. b8 = Instance.new("SpecialMesh", p10)
  1589. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1590. b8.TextureId = ""
  1591. b8.MeshType = Enum.MeshType.FileMesh
  1592. b8.Name = "Mesh"
  1593. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1594. p11 = Instance.new("Part", m)
  1595. p11.BrickColor = BrickColor.new("Really black")
  1596. p11.FormFactor = Enum.FormFactor.Custom
  1597. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  1598. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  1599. p11.CanCollide = false
  1600. p11.Locked = true
  1601. p11.BottomSurface = Enum.SurfaceType.Smooth
  1602. p11.TopSurface = Enum.SurfaceType.Smooth
  1603. b9 = Instance.new("BlockMesh", p11)
  1604. b9.Name = "Mesh"
  1605. p12 = Instance.new("Part", m)
  1606. p12.BrickColor = BrickColor.new("Really black")
  1607. p12.FormFactor = Enum.FormFactor.Custom
  1608. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  1609. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  1610. p12.CanCollide = false
  1611. p12.Locked = true
  1612. p12.BottomSurface = Enum.SurfaceType.Smooth
  1613. p12.TopSurface = Enum.SurfaceType.Smooth
  1614. b10 = Instance.new("BlockMesh", p12)
  1615. b10.Name = "Mesh"
  1616. p13 = Instance.new("Part", m)
  1617. p13.BrickColor = BrickColor.new("Really black")
  1618. p13.FormFactor = Enum.FormFactor.Custom
  1619. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  1620. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  1621. p13.CanCollide = false
  1622. p13.Locked = true
  1623. p13.BottomSurface = Enum.SurfaceType.Smooth
  1624. p13.TopSurface = Enum.SurfaceType.Smooth
  1625. b11 = Instance.new("BlockMesh", p13)
  1626. b11.Name = "Mesh"
  1627. p14 = Instance.new("Part", m)
  1628. p14.BrickColor = BrickColor.new("Crimson") --("Bright blue")
  1629. p14.FormFactor = Enum.FormFactor.Symmetric
  1630. p14.Size = Vector3.new(1, 1, 1)
  1631. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  1632. p14.CanCollide = false
  1633. p14.Locked = true
  1634. b12 = Instance.new("SpecialMesh", p14)
  1635. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1636. b12.TextureId = ""
  1637. b12.MeshType = Enum.MeshType.FileMesh
  1638. b12.Name = "Mesh"
  1639. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1640. p15 = Instance.new("Part", m)
  1641. p15.BrickColor = BrickColor.new("Medium stone grey")
  1642. p15.Transparency = 1
  1643. p15.Name = "ArmPart"
  1644. p15.FormFactor = Enum.FormFactor.Custom
  1645. p15.Size = Vector3.new(2, 1, 1)
  1646. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  1647. p15.CanCollide = false
  1648. p15.Locked = true
  1649. p15.BottomSurface = Enum.SurfaceType.Smooth
  1650. p15.TopSurface = Enum.SurfaceType.Smooth
  1651. b13 = Instance.new("BlockMesh", p15)
  1652. b13.Name = "Mesh"
  1653. p16 = Instance.new("Part", m)
  1654. p16.BrickColor = BrickColor.new("Really black")
  1655. p16.FormFactor = Enum.FormFactor.Custom
  1656. p16.Size = Vector3.new(3, 1, 2.4000001)
  1657. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  1658. p16.CanCollide = false
  1659. p16.Locked = true
  1660. p16.BottomSurface = Enum.SurfaceType.Smooth
  1661. p16.TopSurface = Enum.SurfaceType.Smooth
  1662. b14 = Instance.new("BlockMesh", p16)
  1663. b14.Name = "Mesh"
  1664. p17 = Instance.new("Part", m)
  1665. p17.BrickColor = BrickColor.new("Really black")
  1666. p17.FormFactor = Enum.FormFactor.Custom
  1667. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  1668. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  1669. p17.CanCollide = false
  1670. p17.Locked = true
  1671. p17.BottomSurface = Enum.SurfaceType.Smooth
  1672. p17.TopSurface = Enum.SurfaceType.Smooth
  1673. b15 = Instance.new("BlockMesh", p17)
  1674. b15.Name = "Mesh"
  1675. p18 = Instance.new("Part", m)
  1676. p18.BrickColor = BrickColor.new("Crimson") --("Bright blue")
  1677. p18.FormFactor = Enum.FormFactor.Symmetric
  1678. p18.Size = Vector3.new(1, 1, 1)
  1679. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  1680. p18.CanCollide = false
  1681. p18.Locked = true
  1682. b16 = Instance.new("SpecialMesh", p18)
  1683. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1684. b16.TextureId = ""
  1685. b16.MeshType = Enum.MeshType.FileMesh
  1686. b16.Name = "Mesh"
  1687. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1688. p19 = Instance.new("Part", m)
  1689. p19.BrickColor = BrickColor.new("Crimson") --("Bright blue")
  1690. p19.FormFactor = Enum.FormFactor.Symmetric
  1691. p19.Size = Vector3.new(1, 1, 1)
  1692. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  1693. p19.CanCollide = false
  1694. p19.Locked = true
  1695. b17 = Instance.new("SpecialMesh", p19)
  1696. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1697. b17.TextureId = ""
  1698. b17.MeshType = Enum.MeshType.FileMesh
  1699. b17.Name = "Mesh"
  1700. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  1701. p20 = Instance.new("Part", m)
  1702. p20.BrickColor = BrickColor.new("Really black")
  1703. p20.FormFactor = Enum.FormFactor.Custom
  1704. p20.Size = Vector3.new(3, 1, 2.4000001)
  1705. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  1706. p20.CanCollide = false
  1707. p20.Locked = true
  1708. p20.BottomSurface = Enum.SurfaceType.Smooth
  1709. p20.TopSurface = Enum.SurfaceType.Smooth
  1710. b18 = Instance.new("BlockMesh", p20)
  1711. b18.Name = "Mesh"
  1712. p21 = Instance.new("Part", m)
  1713. p21.BrickColor = BrickColor.new("Really black")
  1714. p21.FormFactor = Enum.FormFactor.Custom
  1715. p21.Size = Vector3.new(3, 1, 1.19999993)
  1716. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  1717. p21.CanCollide = false
  1718. p21.Locked = true
  1719. p21.BottomSurface = Enum.SurfaceType.Smooth
  1720. p21.TopSurface = Enum.SurfaceType.Smooth
  1721. b19 = Instance.new("BlockMesh", p21)
  1722. b19.Name = "Mesh"
  1723. p22 = Instance.new("WedgePart", m)
  1724. p22.BrickColor = BrickColor.new("Really black")
  1725. p22.Name = "Wedge"
  1726. p22.FormFactor = Enum.FormFactor.Custom
  1727. p22.Size = Vector3.new(3, 1, 0.5)
  1728. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  1729. p22.CanCollide = false
  1730. p22.Locked = true
  1731. p22.BottomSurface = Enum.SurfaceType.Smooth
  1732. p22.TopSurface = Enum.SurfaceType.Smooth
  1733. p23 = Instance.new("Part", m)
  1734. p23.BrickColor = BrickColor.new("Really black")
  1735. p23.FormFactor = Enum.FormFactor.Custom
  1736. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  1737. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  1738. p23.CanCollide = false
  1739. p23.Locked = true
  1740. p23.BottomSurface = Enum.SurfaceType.Smooth
  1741. p23.TopSurface = Enum.SurfaceType.Smooth
  1742. b20 = Instance.new("BlockMesh", p23)
  1743. b20.Name = "Mesh"
  1744. p24 = Instance.new("WedgePart", m)
  1745. p24.BrickColor = BrickColor.new("Really black")
  1746. p24.Name = "Wedge"
  1747. p24.FormFactor = Enum.FormFactor.Custom
  1748. p24.Size = Vector3.new(3, 1, 0.5)
  1749. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  1750. p24.CanCollide = false
  1751. p24.Locked = true
  1752. p24.BottomSurface = Enum.SurfaceType.Smooth
  1753. p24.TopSurface = Enum.SurfaceType.Smooth
  1754. p25 = Instance.new("Part", m)
  1755. p25.BrickColor = BrickColor.new("Crimson") --("Bright blue")
  1756. p25.FormFactor = Enum.FormFactor.Symmetric
  1757. p25.Size = Vector3.new(1, 1, 1)
  1758. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  1759. p25.CanCollide = false
  1760. p25.Locked = true
  1761. p25.BottomSurface = Enum.SurfaceType.Smooth
  1762. p25.TopSurface = Enum.SurfaceType.Smooth
  1763. b21 = Instance.new("SpecialMesh", p25)
  1764. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1765. b21.TextureId = ""
  1766. b21.MeshType = Enum.MeshType.FileMesh
  1767. b21.Name = "Mesh"
  1768. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1769. p26 = Instance.new("Part", m)
  1770. p26.BrickColor = BrickColor.new("Really black")
  1771. p26.FormFactor = Enum.FormFactor.Symmetric
  1772. p26.Size = Vector3.new(1, 1, 1)
  1773. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  1774. p26.CanCollide = false
  1775. p26.Locked = true
  1776. p26.BottomSurface = Enum.SurfaceType.Smooth
  1777. p26.TopSurface = Enum.SurfaceType.Smooth
  1778. b22 = Instance.new("SpecialMesh", p26)
  1779. b22.MeshType = Enum.MeshType.Brick
  1780. b22.Name = "Mesh"
  1781. w1 = Instance.new("Weld", p1)
  1782. w1.Name = "Wedge_Weld"
  1783. w1.Part0 = p1
  1784. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  1785. w1.Part1 = p2
  1786. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  1787. w2 = Instance.new("Weld", p2)
  1788. w2.Name = "Part_Weld"
  1789. w2.Part0 = p2
  1790. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  1791. w2.Part1 = p3
  1792. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  1793. w3 = Instance.new("Weld", p3)
  1794. w3.Name = "Wedge_Weld"
  1795. w3.Part0 = p3
  1796. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  1797. w3.Part1 = p4
  1798. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  1799. w4 = Instance.new("Weld", p4)
  1800. w4.Name = "Part_Weld"
  1801. w4.Part0 = p4
  1802. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  1803. w4.Part1 = p5
  1804. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  1805. w5 = Instance.new("Weld", p5)
  1806. w5.Name = "Part_Weld"
  1807. w5.Part0 = p5
  1808. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  1809. w5.Part1 = p6
  1810. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  1811. w6 = Instance.new("Weld", p6)
  1812. w6.Name = "Part_Weld"
  1813. w6.Part0 = p6
  1814. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  1815. w6.Part1 = p7
  1816. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  1817. w7 = Instance.new("Weld", p7)
  1818. w7.Name = "Part_Weld"
  1819. w7.Part0 = p7
  1820. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  1821. w7.Part1 = p8
  1822. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  1823. w8 = Instance.new("Weld", p8)
  1824. w8.Name = "Part_Weld"
  1825. w8.Part0 = p8
  1826. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  1827. w8.Part1 = p9
  1828. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  1829. w9 = Instance.new("Weld", p9)
  1830. w9.Name = "Part_Weld"
  1831. w9.Part0 = p9
  1832. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  1833. w9.Part1 = p10
  1834. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  1835. w10 = Instance.new("Weld", p10)
  1836. w10.Name = "Part_Weld"
  1837. w10.Part0 = p10
  1838. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  1839. w10.Part1 = p11
  1840. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  1841. w11 = Instance.new("Weld", p11)
  1842. w11.Name = "Part_Weld"
  1843. w11.Part0 = p11
  1844. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  1845. w11.Part1 = p12
  1846. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  1847. w12 = Instance.new("Weld", p12)
  1848. w12.Name = "Part_Weld"
  1849. w12.Part0 = p12
  1850. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1851. w12.Part1 = p13
  1852. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1853. w13 = Instance.new("Weld", p13)
  1854. w13.Name = "Part_Weld"
  1855. w13.Part0 = p13
  1856. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1857. w13.Part1 = p14
  1858. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1859. w14 = Instance.new("Weld", p14)
  1860. w14.Name = "ArmPart_Weld"
  1861. w14.Part0 = p14
  1862. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1863. w14.Part1 = p15
  1864. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1865. w15 = Instance.new("Weld", p15)
  1866. w15.Name = "Part_Weld"
  1867. w15.Part0 = p15
  1868. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1869. w15.Part1 = p16
  1870. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1871. w16 = Instance.new("Weld", p16)
  1872. w16.Name = "Part_Weld"
  1873. w16.Part0 = p16
  1874. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1875. w16.Part1 = p17
  1876. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1877. w17 = Instance.new("Weld", p17)
  1878. w17.Name = "Part_Weld"
  1879. w17.Part0 = p17
  1880. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1881. w17.Part1 = p18
  1882. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1883. w18 = Instance.new("Weld", p18)
  1884. w18.Name = "Part_Weld"
  1885. w18.Part0 = p18
  1886. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1887. w18.Part1 = p19
  1888. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1889. w19 = Instance.new("Weld", p19)
  1890. w19.Name = "Part_Weld"
  1891. w19.Part0 = p19
  1892. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1893. w19.Part1 = p20
  1894. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1895. w20 = Instance.new("Weld", p20)
  1896. w20.Name = "Part_Weld"
  1897. w20.Part0 = p20
  1898. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1899. w20.Part1 = p21
  1900. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1901. w21 = Instance.new("Weld", p21)
  1902. w21.Name = "Wedge_Weld"
  1903. w21.Part0 = p21
  1904. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1905. w21.Part1 = p22
  1906. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1907. w22 = Instance.new("Weld", p22)
  1908. w22.Name = "Part_Weld"
  1909. w22.Part0 = p22
  1910. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1911. w22.Part1 = p23
  1912. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1913. w23 = Instance.new("Weld", p23)
  1914. w23.Name = "Wedge_Weld"
  1915. w23.Part0 = p23
  1916. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1917. w23.Part1 = p24
  1918. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1919. w24 = Instance.new("Weld", p24)
  1920. w24.Name = "Part_Weld"
  1921. w24.Part0 = p24
  1922. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1923. w24.Part1 = p25
  1924. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1925. w25 = Instance.new("Weld", p25)
  1926. w25.Name = "Part_Weld"
  1927. w25.Part0 = p25
  1928. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1929. w25.Part1 = p26
  1930. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1931. m.Parent = char
  1932. m:MakeJoints()
  1933. ----------------------------------------------------
  1934. local cor2 = Instance.new("Part", char.Claw)
  1935. cor2.Name = "Thingy"
  1936. cor2.Locked = true
  1937. cor2.BottomSurface = 0
  1938. cor2.CanCollide = false
  1939. cor2.Size = Vector3.new(2, 1, 1)
  1940. cor2.Transparency = 1
  1941. cor2.TopSurface = 0
  1942. corw2 = Instance.new("Weld", cor2)
  1943. corw2.Part0 = larm
  1944. corw2.Part1 = cor2
  1945. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1946. corw2.C1 = CFrame.new(0, 0, 0)
  1947. weld2 = Instance.new("Weld", char.Claw)
  1948. weld2.Part0 = cor2
  1949. weld2.Part1 = char.Claw.ArmPart
  1950. weld2.C0 = CFrame.new(0, 0, 0)
  1951. ----------------------------------------------------
  1952. for i,v in pairs (char.Claw:GetChildren()) do
  1953. if v:IsA("Part") then
  1954. v.Transparency=1
  1955. end
  1956. end
  1957. for i,v in pairs (char.Claw:GetChildren()) do
  1958. if v:IsA("WedgePart") then
  1959. v.Transparency=1
  1960. end
  1961. end
  1962. ----------------------------------------------------
  1963. Blast = function()
  1964. local Colors = {"Really red", "Really black"}
  1965. local wave = Instance.new("Part", torso)
  1966. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1967. wave.Anchored = true
  1968. wave.CanCollide = false
  1969. wave.Locked = true
  1970. wave.Size = Vector3.new(1, 1, 1)
  1971. wave.TopSurface = "Smooth"
  1972. wave.BottomSurface = "Smooth"
  1973. wave.Transparency = 0.35
  1974. wave.CFrame = rarm.CFrame
  1975. wm = Instance.new("SpecialMesh", wave)
  1976. wm.MeshType = "Sphere"
  1977. wm.Scale = Vector3.new(1,1,1)
  1978. z = Instance.new("Sound",wave)
  1979. z.SoundId = "rbxassetid://237035051"
  1980. z.Volume = 1
  1981. z.Pitch = .9
  1982. z:Play()
  1983. coroutine.wrap(function()
  1984. for i = 1, 30, 1 do
  1985. wave.Size = Vector3.new(1 + i*4, 1 + i*4, 1 + i*4)
  1986. --wave.Size = wm.Scale
  1987. wave.CFrame = rarm.CFrame
  1988. wave.Transparency = (1/14)
  1989. rs:wait()
  1990. end
  1991. rs:wait()
  1992. wave:Destroy()
  1993. z:Destroy()
  1994. end)()
  1995. end
  1996. ----------------------------------------------------
  1997. rarm.Touched:connect(function(ht)
  1998. hit = ht.Parent
  1999. if ht and hit:IsA("Model") then
  2000. if hit:FindFirstChild("Humanoid") then
  2001. if hit.Name ~= p.Name then
  2002. if Debounces.RPunch == true and Debounces.RPunched == false then
  2003. Debounces.RPunched = true
  2004. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2005. if Debounces.ks==true then
  2006. z = Instance.new("Sound",hed)
  2007. z.SoundId = "rbxassetid://169380525"
  2008. z.Pitch = ptz[math.random(1,#ptz)]
  2009. z.Volume = 1
  2010. z:Play()
  2011. end
  2012. wait(.2)
  2013. Debounces.RPunched = false
  2014. end
  2015. end
  2016. end
  2017. elseif ht and hit:IsA("Hat") then
  2018. if hit.Parent.Name ~= p.Name then
  2019. if hit.Parent:FindFirstChild("Humanoid") then
  2020. if Debounces.RPunch == true and Debounces.RPunched == false then
  2021. Debounces.RPunched = true
  2022. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2023. if Debounces.ks==true then
  2024. z = Instance.new("Sound",hed)
  2025. z.SoundId = "rbxassetid://169380525"
  2026. z.Pitch = ptz[math.random(1,#ptz)]
  2027. z.Volume = 1
  2028. z:Play()
  2029. end
  2030. wait(.2)
  2031. Debounces.RPunched = false
  2032. end
  2033. end
  2034. end
  2035. end
  2036. end)
  2037. larm.Touched:connect(function(ht)
  2038. hit = ht.Parent
  2039. if ht and hit:IsA("Model") then
  2040. if hit:FindFirstChild("Humanoid") then
  2041. if hit.Name ~= p.Name then
  2042. if Debounces.LPunch == true and Debounces.LPunched == false then
  2043. Debounces.LPunched = true
  2044. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2045. if Debounces.ks2==true then
  2046. z = Instance.new("Sound",hed)
  2047. z.SoundId = "rbxassetid://169380525"
  2048. z.Pitch = ptz[math.random(1,#ptz)]
  2049. z.Volume = 1
  2050. z:Play()
  2051. end
  2052. wait(.2)
  2053. Debounces.LPunched = false
  2054. end
  2055. end
  2056. end
  2057. elseif ht and hit:IsA("Hat") then
  2058. if hit.Parent.Name ~= p.Name then
  2059. if hit.Parent:FindFirstChild("Humanoid") then
  2060. if Debounces.LPunch == true and Debounces.LPunched == false then
  2061. Debounces.LPunched = true
  2062. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2063. if Debounces.ks2==true then
  2064. z = Instance.new("Sound",hed)
  2065. z.SoundId = "rbxassetid://169380525"
  2066. z.Pitch = ptz[math.random(1,#ptz)]
  2067. z.Volume = 1
  2068. z:Play()
  2069. end
  2070. wait(.2)
  2071. Debounces.LPunched = false
  2072. end
  2073. end
  2074. end
  2075. end
  2076. end)
  2077. ----------------------------------------------------
  2078. mod4 = Instance.new("Model",char)
  2079.  
  2080. ptez = {0.7, 0.8, 0.9, 1}
  2081.  
  2082. function FindNearestTorso(Position,Distance,SinglePlayer)
  2083. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2084. local List = {}
  2085. for i,v in pairs(workspace:GetChildren())do
  2086. if v:IsA("Model")then
  2087. if v:findFirstChild("Torso")then
  2088. if v ~= char then
  2089. if(v.Torso.Position -Position).magnitude <= Distance then
  2090. table.insert(List,v)
  2091. end
  2092. end
  2093. end
  2094. end
  2095. end
  2096. return List
  2097. end
  2098.  
  2099. function Punch()
  2100. part=Instance.new('Part',mod4)
  2101. part.Anchored=true
  2102. part.CanCollide=false
  2103. part.FormFactor='Custom'
  2104. part.Size=Vector3.new(.2,.2,.2)
  2105. part.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(0),0,0)
  2106. part.Transparency=.7
  2107. part.BrickColor=BrickColor.new('Really black')
  2108. mesh=Instance.new('SpecialMesh',part)
  2109. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  2110. mesh.Scale=Vector3.new(3,3,3)
  2111. part2=Instance.new('Part',mod4)
  2112. part2.Anchored=true
  2113. part2.CanCollide=false
  2114. part2.FormFactor='Custom'
  2115. part2.Size=Vector3.new(.2,.2,.2)
  2116. part2.CFrame=root.CFrame*CFrame.new(0,1.5,-2.4)*CFrame.Angles(math.rad(90),0,0)
  2117. part2.Transparency=.7
  2118. part2.BrickColor=BrickColor.new('Really red')
  2119. mesh2=Instance.new('SpecialMesh',part2)
  2120. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  2121. mesh2.Scale=Vector3.new(3,1.5,3)
  2122. for i,v in pairs(FindNearestTorso(torso.CFrame.p,4))do
  2123. if v:FindFirstChild('Humanoid') then
  2124. v.Humanoid:TakeDamage(math.random(2,6))
  2125. end
  2126. end
  2127. coroutine.resume(coroutine.create(function()
  2128. for i=0,0.62,0.4 do
  2129. wait()
  2130. part.CFrame=part.CFrame
  2131. part.Transparency=i
  2132. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  2133. part2.CFrame=part2.CFrame
  2134. part2.Transparency=i
  2135. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  2136. end
  2137. part.Parent=nil
  2138. part2.Parent=nil
  2139. end))
  2140. end
  2141. ----------------------------------------------------
  2142. rarm.Touched:connect(function(ht)
  2143. hit = ht.Parent
  2144. if ht and hit:IsA("Model") then
  2145. if hit:FindFirstChild("Humanoid") then
  2146. if hit.Name ~= p.Name then
  2147. if Debounces.RPunch == true and Debounces.RPunched == false then
  2148. Debounces.RPunched = true
  2149. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2150. if Debounces.ks==true then
  2151. z = Instance.new("Sound",hed)
  2152. z.SoundId = "rbxassetid://169380525"
  2153. z.Pitch = ptz[math.random(1,#ptz)]
  2154. z.Volume = 1
  2155. z:Play()
  2156. end
  2157. wait(.2)
  2158. Debounces.RPunched = false
  2159. end
  2160. end
  2161. end
  2162. elseif ht and hit:IsA("Hat") then
  2163. if hit.Parent.Name ~= p.Name then
  2164. if hit.Parent:FindFirstChild("Humanoid") then
  2165. if Debounces.RPunch == true and Debounces.RPunched == false then
  2166. Debounces.RPunched = true
  2167. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(5,8))
  2168. if Debounces.ks==true then
  2169. z = Instance.new("Sound",hed)
  2170. z.SoundId = "rbxassetid://169380525"
  2171. z.Pitch = ptz[math.random(1,#ptz)]
  2172. z.Volume = 1
  2173. z:Play()
  2174. end
  2175. wait(.2)
  2176. Debounces.RPunched = false
  2177. end
  2178. end
  2179. end
  2180. end
  2181. end)
  2182. larm.Touched:connect(function(ht)
  2183. hit = ht.Parent
  2184. if ht and hit:IsA("Model") then
  2185. if hit:FindFirstChild("Humanoid") then
  2186. if hit.Name ~= p.Name then
  2187. if Debounces.LPunch == true and Debounces.LPunched == false then
  2188. Debounces.LPunched = true
  2189. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2190. if Debounces.ks2==true then
  2191. z = Instance.new("Sound",hed)
  2192. z.SoundId = "rbxassetid://169380525"
  2193. z.Pitch = ptz[math.random(1,#ptz)]
  2194. z.Volume = 1
  2195. z:Play()
  2196. end
  2197. wait(.2)
  2198. Debounces.LPunched = false
  2199. end
  2200. end
  2201. end
  2202. elseif ht and hit:IsA("Hat") then
  2203. if hit.Parent.Name ~= p.Name then
  2204. if hit.Parent:FindFirstChild("Humanoid") then
  2205. if Debounces.LPunch == true and Debounces.LPunched == false then
  2206. Debounces.LPunched = true
  2207. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random(4,8))
  2208. if Debounces.ks2==true then
  2209. z = Instance.new("Sound",hed)
  2210. z.SoundId = "rbxassetid://169380525"
  2211. z.Pitch = ptz[math.random(1,#ptz)]
  2212. z.Volume = 1
  2213. z:Play()
  2214. end
  2215. wait(.2)
  2216. Debounces.LPunched = false
  2217. end
  2218. end
  2219. end
  2220. end
  2221. end)
  2222. ----------------------------------------------------
  2223. local player = game.Players.LocalPlayer
  2224. local pchar = player.Character
  2225. local mouse = player:GetMouse()
  2226. local cam = workspace.CurrentCamera
  2227.  
  2228. local rad = math.rad
  2229.  
  2230. local keysDown = {}
  2231. local flySpeed = 0
  2232. local MAX_FLY_SPEED = 150
  2233.  
  2234. local canFly = false
  2235. local flyToggled = false
  2236.  
  2237. local forward, side = 0, 0
  2238. local lastForward, lastSide = 0, 0
  2239.  
  2240. local floatBP = Instance.new("BodyPosition")
  2241. floatBP.maxForce = Vector3.new(0, math.huge, 0)
  2242. local flyBV = Instance.new("BodyVelocity")
  2243. flyBV.maxForce = Vector3.new(9e9, 9e9, 9e9)
  2244. local turnBG = Instance.new("BodyGyro")
  2245. turnBG.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2246.  
  2247. mouse.KeyDown:connect(function(key)
  2248. keysDown[key] = true
  2249.  
  2250. if key == "f" then
  2251. flyToggled = not flyToggled
  2252.  
  2253. if not flyToggled then
  2254. stanceToggle = "Normal"
  2255. floatBP.Parent = nil
  2256. flyBV.Parent = nil
  2257. turnBG.Parent = nil
  2258. root.Velocity = Vector3.new()
  2259. pchar.Humanoid.PlatformStand = false
  2260. end
  2261. end
  2262.  
  2263. end)
  2264. mouse.KeyUp:connect(function(key)
  2265. keysDown[key] = nil
  2266. end)
  2267.  
  2268. local function updateFly()
  2269.  
  2270. if not flyToggled then return end
  2271.  
  2272. lastForward = forward
  2273. lastSide = side
  2274.  
  2275. forward = 0
  2276. side = 0
  2277.  
  2278. if keysDown.w then
  2279. forward = forward + 1
  2280. end
  2281. if keysDown.s then
  2282. forward = forward - 1
  2283. end
  2284. if keysDown.a then
  2285. side = side - 1
  2286. end
  2287. if keysDown.d then
  2288. side = side + 1
  2289. end
  2290.  
  2291. canFly = (forward ~= 0 or side ~= 0)
  2292.  
  2293. if canFly then
  2294. stanceToggle = "Floating"
  2295. turnBG.Parent = root
  2296. floatBP.Parent = nil
  2297. flyBV.Parent = root
  2298.  
  2299. flySpeed = flySpeed + 1 + (flySpeed / MAX_FLY_SPEED)
  2300. if flySpeed > MAX_FLY_SPEED then flySpeed = MAX_FLY_SPEED end
  2301. else
  2302. floatBP.position = root.Position
  2303. floatBP.Parent = root
  2304.  
  2305. flySpeed = flySpeed - 1
  2306. if flySpeed < 0 then flySpeed = 0 end
  2307. end
  2308.  
  2309. local camCF = cam.CoordinateFrame
  2310. local in_forward = canFly and forward or lastForward
  2311. local in_side = canFly and side or lastSide
  2312.  
  2313. flyBV.velocity = ((camCF.lookVector * in_forward) + (camCF * CFrame.new(in_side,
  2314. in_forward * 0.2, 0).p) - camCF.p) * flySpeed
  2315.  
  2316. turnBG.cframe = camCF * CFrame.Angles(-rad(forward * (flySpeed / MAX_FLY_SPEED)), 0,
  2317. 0)
  2318. end
  2319.  
  2320. game:service'RunService'.RenderStepped:connect(function()
  2321. if flyToggled then
  2322. pchar.Humanoid.PlatformStand = true
  2323. end
  2324. updateFly()
  2325. end)
  2326. -------------------------------
  2327. mouse.KeyDown:connect(function(key)
  2328. if key == "q" then
  2329. if Debounces.CanAttack == true then
  2330. Debounces.CanAttack = false
  2331. Debounces.NoIdl = true
  2332. Debounces.on = true
  2333. function FindNearestTorso(Position,Distance,SinglePlayer)
  2334. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2335. local List = {}
  2336. for i,v in pairs(workspace:GetChildren())do
  2337. if v:IsA("Model")then
  2338. if v:findFirstChild("Torso")then
  2339. if v ~= char then
  2340. if(v.Torso.Position -Position).magnitude <= Distance then
  2341. table.insert(List,v)
  2342. end
  2343. end
  2344. end
  2345. end
  2346. end
  2347. return List
  2348. end
  2349. z = Instance.new("Sound",hed)
  2350. z.SoundId = "rbxassetid://232213955"
  2351. z.Pitch = 1
  2352. z.Volume = 1
  2353. wait(0.2)
  2354. z:Play()
  2355. sp = Instance.new("Part",rarm)
  2356. sp.Anchored = true
  2357. sp.CanCollide = false
  2358. sp.Locked = true
  2359. sp.Transparency = 0
  2360. sp.Material = "Neon"
  2361. sp.Size = Vector3.new(1,1,1)
  2362. sp.TopSurface = "SmoothNoOutlines"
  2363. sp.BottomSurface = "SmoothNoOutlines"
  2364. sp.BrickColor = BrickColor.new("Crimson")
  2365. spm = Instance.new("SpecialMesh",sp)
  2366. spm.MeshType = "Sphere"
  2367. spm.Scale = Vector3.new(21,21,21)
  2368. sp2 = Instance.new("Part", rarm)
  2369. sp2.Name = "Energy"
  2370. sp2.BrickColor = BrickColor.new("Crimson")
  2371. sp2.Size = Vector3.new(1, 1, 1)
  2372. sp2.Shape = "Ball"
  2373. sp2.CanCollide = false
  2374. sp2.Anchored = true
  2375. sp2.Locked = true
  2376. sp2.TopSurface = 0
  2377. sp2.BottomSurface = 0
  2378. sp2.Transparency = 1
  2379. spm2 = Instance.new("SpecialMesh",sp2)
  2380. spm2.MeshId = "rbxassetid://9982590"
  2381. spm2.Scale = Vector3.new(2,2,2)
  2382. for i = 1, 20 do
  2383. spm.Scale = spm.Scale - Vector3.new(1,1,1)
  2384. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  2385. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  2386. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  2387. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2388. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  2389. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  2390. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  2391. if Debounces.on == false then break end
  2392. rs:wait()
  2393. end
  2394. for i = 1, 100, 20 do rs:wait()
  2395. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  2396. end
  2397. for i = 1, 20 do
  2398. sp.CFrame = root.CFrame*CFrame.new(0,1,-2)
  2399. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  2400. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.4)
  2401. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(10),math.rad(-30),0), 0.4)
  2402. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(40), math.rad(0)), 0.4)
  2403. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  2404. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  2405. if Debounces.on == false then break end
  2406. rs:wait()
  2407. end
  2408. sp.Transparency = 1
  2409. for i = 1, 20 do
  2410. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  2411. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.62,-.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.4)
  2412. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.4)
  2413. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(-50), math.rad(0)), 0.4)
  2414. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  2415. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  2416. if Debounces.on == false then break end
  2417. rs:wait()
  2418. end
  2419. wait(1)
  2420. sp.Transparency = 0
  2421. sp2.Transparency = 0.84
  2422. for i = 1, 20 do
  2423. --spm.Scale = spm.Scale - Vector3.new(1,1,1)
  2424. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  2425. sp2.CFrame = sp.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  2426. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(110),math.rad(-6),math.rad(140)), 0.4)
  2427. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(80),math.rad(6),math.rad(-40)), 0.2)
  2428. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(30),0), 0.2)
  2429. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.3)
  2430. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(20), 0, math.rad(-14)), 0.2)
  2431. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-16), 0, math.rad(8)), 0.2)
  2432. if Debounces.on == false then break end
  2433. rs:wait()
  2434. end
  2435. for i = 1, 2880, 50 do
  2436. rs:wait()
  2437. sp.CFrame = rarm.CFrame*CFrame.new(0,-1,0)
  2438. sp2.CFrame = rarm.CFrame * CFrame.new(0,-1,0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  2439. rs:wait()
  2440. end
  2441. sp:Destroy()
  2442. sp2:Destroy()
  2443. --[[local X = Instance.new("Part",char)
  2444. local O = Instance.new("ObjectValue",X)
  2445. O.Name = "creator"
  2446. X.Locked = true
  2447. X.Name = "Shell"
  2448. X.Anchored = false
  2449. X.CanCollide = false
  2450. X.Transparency = 0
  2451. X.Reflectance = 0
  2452. X.BottomSurface = 0
  2453. X.TopSurface = 0
  2454. X.Shape = 0
  2455. local V = Instance.new("ObjectValue",X)
  2456. V.Value = char
  2457. V.Name = "creator"
  2458. X.BrickColor = BrickColor.new("Crimson")
  2459. X.Size = Vector3.new(2,2,2)
  2460. X.Material = "Neon"
  2461. local Z = Instance.new("SpecialMesh",X)
  2462. Z.MeshType = "Sphere"
  2463. Z.Scale = Vector3.new(0.5,0.5,1)
  2464. X.CFrame = rarm.CFrame*CFrame.new(-3,0,0)
  2465. local bv = Instance.new("BodyVelocity",X)
  2466. bv.maxForce = Vector3.new(99999,99999,99999)
  2467. X.CFrame = CFrame.new(X.Position,mouse.Hit.p)
  2468. bv.velocity = X.CFrame.lookVector*65
  2469.  
  2470. Explode = X.Touched:connect(function(hit)
  2471. if hit ~= char and hit.Name ~= "Shell" then
  2472. local cf = X.CFrame
  2473. bv:Destroy()
  2474. X.Anchored = true
  2475. Z:Remove()
  2476. Explode:disconnect()
  2477. X.Size = Vector3.new(3,3,3)
  2478. X.Touched:connect(function(hit) end)
  2479. X.CanCollide = false
  2480. local part3 = Instance.new("Part", rarm)
  2481. part3.Anchored=true
  2482. part3.CanCollide=false
  2483. part3.Locked = true
  2484. part3.TopSurface = "SmoothNoOutlines"
  2485. part3.BottomSurface = "SmoothNoOutlines"
  2486. part3.FormFactor='Custom'
  2487. part3.Size=Vector3.new(1,1, 1)
  2488. part3.CFrame=X.CFrame
  2489. part3.Transparency=0
  2490. part3.BrickColor=BrickColor.new("Crimson")
  2491. local mesh3 = Instance.new("SpecialMesh",part3)
  2492. mesh3.MeshType = "Sphere"
  2493. mesh3.Scale = Vector3.new(1,1,1)
  2494. --debris:AddItem(X,8)
  2495. local part4 = Instance.new("Part", rarm)
  2496. part4.Material = "Neon"
  2497. part4.Anchored=true
  2498. part4.CanCollide=false
  2499. part4.Locked = true
  2500. part4.TopSurface = "SmoothNoOutlines"
  2501. part4.BottomSurface = "SmoothNoOutlines"
  2502. part4.FormFactor='Custom'
  2503. part4.Size=Vector3.new(1,1, 1)
  2504. part4.CFrame=X.CFrame
  2505. part4.Transparency=0
  2506. part4.BrickColor=BrickColor.new("Hot pink")
  2507. local mesh4 = Instance.new("SpecialMesh",part4)
  2508. mesh4.MeshType = "Sphere"
  2509. mesh4.Scale = Vector3.new(.5,.5,.5)
  2510. local part7 = Instance.new("Part", rarm)
  2511. part7.Material = "Neon"
  2512. part7.Anchored=true
  2513. part7.CanCollide=false
  2514. part7.Locked = true
  2515. part7.TopSurface = "SmoothNoOutlines"
  2516. part7.BottomSurface = "SmoothNoOutlines"
  2517. part7.FormFactor='Custom'
  2518. part7.Size=Vector3.new(1,1, 1)
  2519. part7.CFrame=X.CFrame
  2520. part7.Transparency=0
  2521. part7.BrickColor=BrickColor.new("Really black")
  2522. local mesh7 = Instance.new("SpecialMesh",part7)
  2523. mesh7.MeshType = "Sphere"
  2524. mesh7.Scale = Vector3.new(0.1, 0.1, 0.1)
  2525. for i,v in pairs(FindNearestTorso(X.CFrame.p,140))do
  2526. if v:FindFirstChild('Humanoid') then
  2527. v.Humanoid:TakeDamage(math.random(60,90))
  2528. v.Humanoid.PlatformStand = true
  2529. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2530. end
  2531. end
  2532.  
  2533. local acos = math.acos
  2534. local sqrt = math.sqrt
  2535. local Vec3 = Vector3.new
  2536. local fromAxisAngle = CFrame.fromAxisAngle
  2537.  
  2538. local function toAxisAngle(CFr)
  2539. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  2540. local Angle = math.acos((R00+R11+R22-1)/2)
  2541. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  2542. A = A == 0 and 0.00001 or A
  2543. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  2544. B = B == 0 and 0.00001 or B
  2545. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  2546. C = C == 0 and 0.00001 or C
  2547. local x = (R21-R12)/sqrt(A)
  2548. local y = (R02-R20)/sqrt(B)
  2549. local z = (R10-R01)/sqrt(C)
  2550. return Vec3(x,y,z),Angle
  2551. end
  2552.  
  2553. function ApplyTrig(Num,Func)
  2554. local Min,Max = Func(0),Func(1)
  2555. local i = Func(Num)
  2556. return (i-Min)/(Max-Min)
  2557. end
  2558.  
  2559. function LerpCFrame(CFrame1,CFrame2,Num)
  2560. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  2561. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  2562. end
  2563.  
  2564. function Crater(Torso,Radius)
  2565. Spawn(function()
  2566. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  2567. local Ignore = {}
  2568. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  2569. if v.Character ~= nil then
  2570. Ignore[#Ignore+1] = v.Character
  2571. end
  2572. end
  2573. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  2574. if Hit == nil then return end
  2575. local Parts = {}
  2576. for i = 1,360,10 do
  2577. local P = Instance.new("Part",Torso.Parent)
  2578. P.Anchored = true
  2579. P.FormFactor = "Custom"
  2580. P.BrickColor = Hit.BrickColor
  2581. P.Material = Hit.Material
  2582. P.TopSurface = "Smooth"
  2583. P.BottomSurface = "Smooth"
  2584. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  2585. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,7,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  2586. Parts[#Parts+1] = {P,P.CFrame,((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,1,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius)*CFrame.Angles(math.rad(math.random(-50,-20)),math.rad(math.random(-15,15)),math.rad(math.random(-15,15))),P.Size}
  2587. if math.random(0,5) == 0 then -- rubble
  2588. local P = Instance.new("Part",Torso.Parent)
  2589. P.Anchored = true
  2590. P.FormFactor = "Custom"
  2591. P.BrickColor = Hit.BrickColor
  2592. P.Material = Hit.Material
  2593. P.TopSurface = "Smooth"
  2594. P.BottomSurface = "Smooth"
  2595. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  2596. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,2.5,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,50)))
  2597. Parts[#Parts+1] = {P,P.CFrame,(CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))*CFrame.Angles(0,math.rad(i),0)*CFrame.new(0,0,-Radius-8)*CFrame.Angles(math.rad(math.random(-90,90)),math.rad(math.random(-90,90)),math.rad(math.random(-90,90))),P.Size}
  2598. end
  2599. end
  2600. for i = 0,1,0.05 do
  2601. for i2,v in pairs(Parts) do
  2602. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  2603. end
  2604. wait(0.02)
  2605. end
  2606. for i,v in pairs(Parts) do
  2607. if v[1].Size.X > 2.1 then
  2608. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  2609. end
  2610. v[1].Anchored = false
  2611. end
  2612. for i = 0,1,0.05 do
  2613. for i2,v in pairs(Parts) do
  2614. v[1].Transparency = i
  2615. if i == 1 then
  2616. v[1]:Destroy()
  2617. elseif i >= 0.25 then
  2618. v[1].CanCollide = false
  2619. end
  2620. end
  2621. wait(0.02)
  2622. end
  2623. Parts = nil
  2624. end)
  2625. end
  2626.  
  2627. ROW = function(out, trans, s, wt, t, ang, plus)
  2628. for i = 1, 360, 360/t do
  2629. local c = Instance.new("Part", game.Workspace)
  2630. c.FormFactor = 3
  2631. c.TopSurface = 0
  2632. c.BottomSurface = 0
  2633. c.Size = s
  2634. c.Anchored = true
  2635. c.CanCollide = wt
  2636. c.Material=workspace.Base.Material
  2637. c.Transparency = trans
  2638. c.BrickColor = workspace.Base.BrickColor
  2639. c.CFrame = CFrame.new(X.CFrame.x,0,X.CFrame.z) * CFrame.Angles(0, math.rad(i + plus), 0) * CFrame.new(0, 0, out) * ang
  2640. c.Locked=true
  2641. game.Debris:AddItem(c,15)
  2642. end
  2643. end
  2644.  
  2645. Part = function(x,y,z,color,tr,cc,an,parent)
  2646. local p = Instance.new('Part',parent or Weapon)
  2647. p.formFactor = 'Custom'
  2648. p.Size = Vector3.new(x,y,z)
  2649. p.BrickColor = BrickColor.new(color)
  2650. p.CanCollide = cc
  2651. p.Transparency = tr
  2652. p.Anchored = an
  2653. p.TopSurface,p.BottomSurface = 0,0
  2654. p.Locked=true
  2655. p:BreakJoints()
  2656. return p end
  2657.  
  2658. Mesh = function(par,num,x,y,z)
  2659. local msh = _
  2660. if num == 1 then msh = Instance.new("CylinderMesh",par)
  2661. elseif num == 2 then msh = Instance.new("SpecialMesh",par) msh.MeshType = 3
  2662. elseif num == 3 then msh = Instance.new("BlockMesh",par)
  2663. elseif num == 4 then msh = Instance.new("SpecialMesh",par) msh.MeshType = "Torso"
  2664. elseif type(num) == 'string' then msh = Instance.new("SpecialMesh",par) msh.MeshId = num
  2665. end msh.Scale = Vector3.new(x,y,z)
  2666. return msh end
  2667.  
  2668. function explosion(col1,col2,cfr,sz,rng,dmg)
  2669. local a= Part(1,1,1,col1,.5,false,true,workspace)
  2670. local a2= Part(1,1,1,col2,.5,false,true,workspace)
  2671. local a3= Part(1,1,1,col2,.5,false,true,workspace)
  2672. v1,v2,v3=sz.x,sz.y,sz.z
  2673. local m= Mesh(a,'http://www.roblox.com/asset/?id=1185246',v1,v2,v3)
  2674. local m2= Mesh(a2,3,v1/3,v2/3,v3/3)
  2675. local m3= Mesh(a3,3,v1/3,v2/3,v3/3)
  2676. a.CFrame=cfr
  2677. a2.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  2678. a3.CFrame=cfr*CFrame.Angles(math.random(),math.random(),math.random())
  2679.  
  2680. Spawn(function()
  2681. while wait() do
  2682. if a.Transparency >= 1 then a:Destroy() a2:Destroy() a3:Destroy() break end
  2683. m.Scale=m.Scale+Vector3.new(.1,0.1,0.1)
  2684. m2.Scale=m2.Scale+Vector3.new(.1,0.1,0.1)
  2685. m3.Scale=m3.Scale+Vector3.new(.1,0.1,0.1)
  2686. a.Transparency=a.Transparency+0.05
  2687. a2.Transparency=a2.Transparency+0.05
  2688. a3.Transparency=a3.Transparency+0.05
  2689. end
  2690. end)
  2691. end
  2692.  
  2693. Crater(X,20)
  2694. ROW(12, 0, Vector3.new(34.5, 30, 3), true, 8, CFrame.Angles(math.rad(math.random (30,60)), 0, math.rad (math.random(-30,30))), 0)
  2695. z = Instance.new("Sound",X)
  2696. z.SoundId = "rbxassetid://231917744"
  2697. z.Pitch = .5
  2698. z.Volume = 10
  2699. z1 = Instance.new("Sound",X)
  2700. z1.SoundId = "rbxassetid://231917744"
  2701. z1.Pitch = .5
  2702. z1.Volume = 10
  2703. z2 = Instance.new("Sound",X)
  2704. z2.SoundId = "rbxassetid://231917744"
  2705. z2.Pitch = .5
  2706. z2.Volume = 10
  2707. z3 = Instance.new("Sound",X)
  2708. z3.SoundId = "rbxassetid://245537790"
  2709. z3.Pitch = .7
  2710. z3.Volume = 1
  2711. z4 = Instance.new("Sound",X)
  2712. z4.SoundId = "rbxassetid://245537790"
  2713. z4.Pitch = .7
  2714. z4.Volume = 1
  2715. wait(0.1)
  2716. z:Play()
  2717. z1:Play()
  2718. z2:Play()
  2719. z3:Play()
  2720. z4:Play()
  2721.  
  2722. local part=Instance.new('Part',rarm)
  2723. part.Anchored=true
  2724. part.CanCollide=false
  2725. part.Locked = true
  2726. part.FormFactor='Custom'
  2727. part.Size=Vector3.new(1,1,1)
  2728. part.CFrame=X.CFrame*CFrame.new(0,0,0)
  2729. part.Transparency=0
  2730. part.BrickColor=BrickColor.new('Really black')
  2731. local mesh=Instance.new('SpecialMesh',part)
  2732. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  2733. mesh.Scale=Vector3.new(2,2,2)
  2734. local part2=part:clone()
  2735. part2.Parent = rarm
  2736. part2.BrickColor=BrickColor.new("Crimson")
  2737. local part5=part:clone()
  2738. part5.Parent = rarm
  2739. part5.BrickColor=BrickColor.new("Magenta")
  2740. local part6=part:clone()
  2741. part6.Parent = rarm
  2742. part6.BrickColor=BrickColor.new("Black")
  2743. local mesh2=mesh:clone()
  2744. mesh2.Parent=part2
  2745. mesh2.Scale=Vector3.new(3, 3, 3)
  2746. local mesh5=mesh:clone()
  2747. mesh5.Parent=part5
  2748. mesh5.Scale=Vector3.new(3, 3, 3)
  2749. local mesh6=mesh:clone()
  2750. mesh6.Parent=part6
  2751. mesh6.Scale=Vector3.new(3, 3, 3)
  2752. local blast = Instance.new("Part", rarm)
  2753. blast.BrickColor = BrickColor.new("Really black")
  2754. blast.Anchored = true
  2755. blast.CanCollide = false
  2756. blast.Locked = true
  2757. blast.Size = Vector3.new(1, 1, 1)
  2758. blast.TopSurface = "Smooth"
  2759. blast.BottomSurface = "Smooth"
  2760. blast.Transparency = 0
  2761. blast.CFrame = HandCF
  2762. local bm = Instance.new("SpecialMesh", blast)
  2763. bm.Scale = Vector3.new(5,1,5)
  2764. bm.MeshId = "rbxassetid://3270017"
  2765. local blast2 = Instance.new("Part", rarm)
  2766. blast2.BrickColor = BrickColor.new("Really black")
  2767. blast2.Anchored = true
  2768. blast2.CanCollide = false
  2769. blast2.Locked = true
  2770. blast2.Size = Vector3.new(1, 1, 1)
  2771. blast2.TopSurface = "Smooth"
  2772. blast2.BottomSurface = "Smooth"
  2773. blast2.Transparency = 0
  2774. blast2.CFrame = HandCF
  2775. local bm2 = Instance.new("SpecialMesh", blast2)
  2776. bm2.Scale = Vector3.new(3,1,3)
  2777. bm2.MeshId = "rbxassetid://3270017"
  2778. local blast3 = Instance.new("Part", rarm)
  2779. blast3.BrickColor = BrickColor.new("Really black")
  2780. blast3.Anchored = true
  2781. blast3.CanCollide = false
  2782. blast3.Locked = true
  2783. blast3.Size = Vector3.new(1, 1, 1)
  2784. blast3.TopSurface = "Smooth"
  2785. blast3.BottomSurface = "Smooth"
  2786. blast3.Transparency = 0
  2787. blast3.CFrame = HandCF
  2788. local bm3 = Instance.new("SpecialMesh", blast3)
  2789. bm3.Scale = Vector3.new(3,1,3)
  2790. bm3.MeshId = "rbxassetid://3270017"
  2791. for i = 1,120 do rs:wait()
  2792. X.Transparency = X.Transparency + (1/120)
  2793. part.Transparency = part.Transparency + (1/120)
  2794. part2.Transparency = part2.Transparency + (1/120)
  2795. part3.Transparency = part3.Transparency + (1/120)
  2796. part4.Transparency = part4.Transparency + (1/120)
  2797. part5.Transparency = part5.Transparency + (1/120)
  2798. part6.Transparency = part6.Transparency + (1/120)
  2799. part7.Transparency = part7.Transparency + (1/120)
  2800. blast.Transparency = blast.Transparency + (1/120)
  2801. blast2.Transparency = blast2.Transparency + (1/120)
  2802. blast3.Transparency = blast3.Transparency + (1/120)
  2803. X.Size = X.Size + Vector3.new(.8,.8,.8)
  2804. --part3.Size = part3.Size + Vector3.new(3,3,3)
  2805. mesh.Scale = mesh.Scale + Vector3.new(1,.2,1)
  2806. mesh2.Scale = mesh2.Scale + Vector3.new(1.1,.2,1.1)
  2807. mesh3.Scale = mesh3.Scale + Vector3.new(3,3,3)
  2808. mesh4.Scale = mesh4.Scale + Vector3.new(1.7,1.7,1.7)
  2809. mesh5.Scale = mesh5.Scale + Vector3.new(1.6,.2,1.6)
  2810. mesh6.Scale = mesh6.Scale + Vector3.new(2,.2,2)
  2811. mesh7.Scale = mesh7.Scale + Vector3.new(4,4,4)
  2812. bm.Scale = bm.Scale + Vector3.new(6,6,.2)
  2813. bm2.Scale = bm2.Scale + Vector3.new(4,4,.2)
  2814. bm3.Scale = bm3.Scale + Vector3.new(4,4,.2)
  2815. X.CFrame = cf
  2816. part.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2),0)
  2817. part2.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2),0)
  2818. part3.CFrame=X.CFrame
  2819. part4.CFrame=X.CFrame
  2820. part7.CFrame=X.CFrame
  2821. part5.CFrame=X.CFrame * CFrame.Angles(0,math.rad(i*2.6),0)
  2822. part6.CFrame=X.CFrame * CFrame.Angles(0,math.rad(-i*2.4),0)
  2823. blast.CFrame=X.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2824. blast2.CFrame=X.CFrame * CFrame.Angles(math.rad(-i*4), math.rad(i*4), math.rad(0))
  2825. blast3.CFrame=X.CFrame * CFrame.Angles(math.rad(180+i*4), math.rad(90-i*4), math.rad(0))
  2826. rs:wait()
  2827. end
  2828. X:Destroy()
  2829. part:Destroy()
  2830. part2:Destroy()
  2831. part3:Destroy()
  2832. part4:Destroy()
  2833. part5:Destroy()
  2834. part6:Destroy()
  2835. blast:Destroy()
  2836. blast2:Destroy()
  2837. blast3:Destroy()
  2838. z:Destroy()
  2839. z1:Destroy()
  2840. z2:Destroy()
  2841. z3:Destroy()
  2842. z4:Destroy()
  2843. end
  2844. end) ]]
  2845. for i = 1, 20 do
  2846. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(70),math.rad(-6),math.rad(-20)), 0.2)
  2847. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.2)
  2848. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  2849. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)), 0.4)
  2850. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), 0, math.rad(-8)), 0.2)
  2851. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-6), 0, math.rad(8)), 0.2)
  2852. if Debounces.on == false then break end
  2853. rs:wait()
  2854. end
  2855. if Debounces.CanAttack == false then
  2856. Debounces.CanAttack = true
  2857. Debounces.NoIdl = false
  2858. Debounces.on = false
  2859. end
  2860. end
  2861. end
  2862. end)
  2863. ----------------------------------------------------
  2864. mouse.KeyDown:connect(function(key)
  2865. if key == "e" then
  2866. if Debounces.CanAttack == true then
  2867. Debounces.CanAttack = false
  2868. Debounces.on = true
  2869. Debounces.NoIdl = true
  2870. pt = {1, 1.1, 1.2, 1.3, 1.4, 1.5}
  2871. z = Instance.new("Sound", rarm)
  2872. z.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  2873. z.Volume = .6
  2874. z.Pitch = pt[math.random(1,#pt)]
  2875. z.Looped = false
  2876. z:Play()
  2877. Debounces.RPunch = true
  2878. Debounces.LPunch = true
  2879. Debounces.ks = true
  2880. Debounces.ks2 = true
  2881. for i = 1, 3 do
  2882. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  2883. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  2884. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2885. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2886. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2887. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2888. if Debounces.on == false then break end
  2889. wait()
  2890. end
  2891. z2 = Instance.new("Sound", larm)
  2892. z2.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2893. z2.Volume = .6
  2894. z2.Pitch = pt[math.random(1,#pt)]
  2895. z2.Looped = false
  2896. z2:Play()
  2897. for i = 1, 3 do
  2898. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2899. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2900. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2901. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2902. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2903. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2904. if Debounces.on == false then break end
  2905. wait()
  2906. end
  2907. z3 = Instance.new("Sound", rarm)
  2908. z3.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2909. z3.Volume = 0.6
  2910. z3.Pitch = pt[math.random(1,#pt)]
  2911. z3.Looped = false
  2912. z3:Play()
  2913. for i = 1, 3 do
  2914. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  2915. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  2916. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2917. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2918. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2919. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2920. if Debounces.on == false then break end
  2921. wait()
  2922. end
  2923. z4 = Instance.new("Sound", larm)
  2924. z4.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2925. z4.Volume = .6
  2926. z4.Pitch = pt[math.random(1,#pt)]
  2927. z4.Looped = false
  2928. z4:Play()
  2929. for i = 1, 3 do
  2930. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2931. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2932. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2933. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2934. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2935. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2936. if Debounces.on == false then break end
  2937. wait()
  2938. end
  2939. z5 = Instance.new("Sound", rarm)
  2940. z5.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2941. z5.Volume = .6
  2942. z5.Pitch = pt[math.random(1,#pt)]
  2943. z5.Looped = false
  2944. z5:Play()
  2945. for i = 1, 3 do
  2946. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  2947. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  2948. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  2949. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  2950. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  2951. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  2952. if Debounces.on == false then break end
  2953. wait()
  2954. end
  2955. z6 = Instance.new("Sound", larm)
  2956. z6.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2957. z6.Volume = .6
  2958. z6.Pitch = pt[math.random(1,#pt)]
  2959. z6.Looped = false
  2960. z6:Play()
  2961. for i = 1, 3 do
  2962. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2963. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  2964. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2965. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2966. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2967. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  2968. if Debounces.on == false then break end
  2969. wait()
  2970. end
  2971. z7 = Instance.new("Sound", rarm)
  2972. z7.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  2973. z7.Volume = .6
  2974. z7.Pitch = pt[math.random(1,#pt)]
  2975. z7.Looped = false
  2976. z7:Play()
  2977. for i = 1, 3 do
  2978. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  2979. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  2980. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  2981. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  2982. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  2983. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  2984. if Debounces.on == false then break end
  2985. wait()
  2986. end
  2987. z8 = Instance.new("Sound", larm)
  2988. z8.SoundId = "http://www.roblox.com/asset/?id=206083107"
  2989. z8.Volume = .6
  2990. z8.Pitch = pt[math.random(1,#pt)]
  2991. z8.Looped = false
  2992. z8:Play()
  2993. for i = 1, 3 do
  2994. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  2995. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  2996. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  2997. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  2998. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  2999. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3000. if Debounces.on == false then break end
  3001. wait()
  3002. end
  3003. z9 = Instance.new("Sound", rarm)
  3004. z9.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3005. z9.Volume = 0.6
  3006. z9.Pitch = pt[math.random(1,#pt)]
  3007. z9.Looped = false
  3008. z9:Play()
  3009. for i = 1, 3 do
  3010. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  3011. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  3012. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  3013. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  3014. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  3015. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  3016. if Debounces.on == false then break end
  3017. wait()
  3018. end
  3019. z10 = Instance.new("Sound", larm)
  3020. z10.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3021. z10.Volume = .6
  3022. z10.Pitch = pt[math.random(1,#pt)]
  3023. z10.Looped = false
  3024. z10:Play()
  3025. for i = 1, 3 do
  3026. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  3027. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  3028. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  3029. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  3030. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  3031. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3032. if Debounces.on == false then break end
  3033. wait()
  3034. end
  3035. z11 = Instance.new("Sound", rarm)
  3036. z11.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3037. z11.Volume = .6
  3038. z11.Pitch = pt[math.random(1,#pt)]
  3039. z11.Looped = false
  3040. z11:Play()
  3041. for i = 1, 3 do
  3042. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  3043. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  3044. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  3045. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  3046. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  3047. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  3048. if Debounces.on == false then break end
  3049. wait()
  3050. end
  3051. z12 = Instance.new("Sound", larm)
  3052. z12.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3053. z12.Volume = .6
  3054. z12.Pitch = pt[math.random(1,#pt)]
  3055. z12.Looped = false
  3056. z12:Play()
  3057. for i = 1, 3 do
  3058. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  3059. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  3060. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  3061. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  3062. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  3063. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3064. if Debounces.on == false then break end
  3065. wait()
  3066. end
  3067. z13 = Instance.new("Sound", rarm)
  3068. z13.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3069. z13.Volume = 0.6
  3070. z13.Pitch = pt[math.random(1,#pt)]
  3071. z13.Looped = false
  3072. z13:Play()
  3073. for i = 1, 3 do
  3074. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  3075. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  3076. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  3077. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  3078. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  3079. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  3080. if Debounces.on == false then break end
  3081. wait()
  3082. end
  3083. z14 = Instance.new("Sound", larm)
  3084. z14.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3085. z14.Volume = .6
  3086. z14.Pitch = pt[math.random(1,#pt)]
  3087. z14.Looped = false
  3088. z14:Play()
  3089. for i = 1, 3 do
  3090. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  3091. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  3092. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  3093. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  3094. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  3095. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3096. if Debounces.on == false then break end
  3097. wait()
  3098. end
  3099. z15 = Instance.new("Sound", rarm)
  3100. z15.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3101. z15.Volume = .6
  3102. z15.Pitch = pt[math.random(1,#pt)]
  3103. z15.Looped = false
  3104. z15:Play()
  3105. for i = 1, 3 do
  3106. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(110),math.rad(30),math.rad(20)), 0.9)
  3107. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.9)
  3108. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.9)
  3109. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.9)
  3110. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.9)
  3111. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.9)
  3112. if Debounces.on == false then break end
  3113. wait()
  3114. end
  3115. z16 = Instance.new("Sound", larm)
  3116. z16.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3117. z16.Volume = .6
  3118. z16.Pitch = pt[math.random(1,#pt)]
  3119. z16.Looped = false
  3120. z16:Play()
  3121. for i = 1, 3 do
  3122. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  3123. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  3124. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  3125. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  3126. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  3127. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3128. if Debounces.on == false then break end
  3129. wait()
  3130. end
  3131. z17 = Instance.new("Sound", rarm)
  3132. z17.SoundId = "http://www.roblox.com/asset/?id=206083107"--160867463, 161006212
  3133. z17.Volume = .6
  3134. z17.Pitch = pt[math.random(1,#pt)]
  3135. z17.Looped = false
  3136. z17:Play()
  3137. for i = 1, 3 do
  3138. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(20)), 0.92)
  3139. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.92)
  3140. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  3141. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  3142. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  3143. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  3144. if Debounces.on == false then break end
  3145. wait()
  3146. end
  3147. z18 = Instance.new("Sound", larm)
  3148. z18.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3149. z18.Volume = .6
  3150. z18.Pitch = pt[math.random(1,#pt)]
  3151. z18.Looped = false
  3152. z18:Play()
  3153. for i = 1, 3 do
  3154. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  3155. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(120),math.rad(20),math.rad(-20)), 0.92)
  3156. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  3157. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  3158. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  3159. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3160. if Debounces.on == false then break end
  3161. wait()
  3162. end
  3163. z19 = Instance.new("Sound", rarm)
  3164. z19.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3165. z19.Volume = 0.6
  3166. z19.Pitch = pt[math.random(1,#pt)]
  3167. z19.Looped = false
  3168. z19:Play()
  3169. for i = 1, 3 do
  3170. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(-20),math.rad(20)), 0.92)
  3171. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(0),math.rad(50)), 0.92)
  3172. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-50),0), 0.92)
  3173. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(50), 0), 0.92)
  3174. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-50), math.rad(-15)), 0.92)
  3175. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-50), math.rad(15)), 0.92)
  3176. if Debounces.on == false then break end
  3177. wait()
  3178. end
  3179. z20 = Instance.new("Sound", larm)
  3180. z20.SoundId = "http://www.roblox.com/asset/?id=206083107"
  3181. z20.Volume = .6
  3182. z20.Pitch = pt[math.random(1,#pt)]
  3183. z20.Looped = false
  3184. z20:Play()
  3185. for i = 1, 3 do
  3186. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.92)
  3187. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(60),math.rad(20),math.rad(-20)), 0.92)
  3188. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(50),0), 0.92)
  3189. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(-50), 0), 0.92)
  3190. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.6, -1, 0) * CFrame.Angles(math.rad(10), math.rad(50), math.rad(-15)), 0.92)
  3191. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.6, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(50), math.rad(15)), 0.92)
  3192. if Debounces.on == false then break end
  3193. wait()
  3194. end
  3195. z:Destroy()
  3196. z2:Destroy()
  3197. z3:Destroy()
  3198. z4:Destroy()
  3199. z5:Destroy()
  3200. z6:Destroy()
  3201. z7:Destroy()
  3202. z8:Destroy()
  3203. z9:Destroy()
  3204. z10:Destroy()
  3205. z11:Destroy()
  3206. z12:Destroy()
  3207. z13:Destroy()
  3208. z14:Destroy()
  3209. z15:Destroy()
  3210. z16:Destroy()
  3211. z17:Destroy()
  3212. z18:Destroy()
  3213. z19:Destroy()
  3214. z20:Destroy()
  3215. Debounces.LPunch = false
  3216. Debounces.RPunch = false
  3217. Debounces.ks = false
  3218. Debounces.ks2 = false
  3219. if Debounces.CanAttack == false then
  3220. Debounces.CanAttack = true
  3221. Debounces.on = false
  3222. Debounces.NoIdl = false
  3223. end
  3224. end
  3225. end
  3226. end)
  3227. -------------------------------
  3228. mouse.KeyDown:connect(function(key)
  3229. if key == "t" then
  3230. if Debounces.CanAttack == true then
  3231. Debounces.CanAttack = false
  3232. Debounces.NoIdl = true
  3233. Debounces.on = true
  3234. Debounces.ks = true
  3235. kik = rleg.Touched:connect(function(ht)
  3236. hit = ht.Parent
  3237. if ht and hit:IsA("Model") then
  3238. if hit:FindFirstChild("Humanoid") then
  3239. if hit.Name ~= p.Name then
  3240. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3241. Debounces.Slashed = true]]--
  3242. if Debounces.ks==true then
  3243. z = Instance.new("Sound",hed)
  3244. z.SoundId = "rbxassetid://169380525"
  3245. z.Volume = 1
  3246. z:Play()
  3247. Debounces.ks=false
  3248. end
  3249. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  3250. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  3251. --Debounces.Slashed = false
  3252. --end
  3253. end
  3254. end
  3255. elseif ht and hit:IsA("Hat") then
  3256. if hit.Parent.Name ~= p.Name then
  3257. if hit.Parent:FindFirstChild("Humanoid") then
  3258. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3259. Debounces.Slashed = true]]--
  3260. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  3261. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -300
  3262. --Debounces.Slashed = false
  3263. --end
  3264. end
  3265. end
  3266. end
  3267. end)
  3268. for i = 1,20 do
  3269. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(8)), 0.4)
  3270. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.4)
  3271. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3272. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(90), math.rad(90)), 0.4)
  3273. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-90)), 0.4)
  3274. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3275. if Debounces.on == false then break end
  3276. rs:wait()
  3277. end
  3278. kik:disconnect()
  3279. if Debounces.CanAttack == false then
  3280. Debounces.CanAttack = true
  3281. Debounces.NoIdl = false
  3282. Debounces.on = false
  3283. end
  3284. end
  3285. end
  3286. end)
  3287. ----------------------------------------------------
  3288. mouse.KeyDown:connect(function(key)
  3289. if key == "y" then
  3290. if Debounces.CanAttack == true then
  3291. Debounces.CanAttack = false
  3292. Debounces.on = true
  3293. Debounces.NoIdl = true
  3294. for i,v in pairs (char.Claw:GetChildren()) do
  3295. if v:IsA("Part") then
  3296. v.Transparency=0
  3297. end
  3298. end
  3299. for i,v in pairs (char.Claw:GetChildren()) do
  3300. if v:IsA("WedgePart") then
  3301. v.Transparency=0
  3302. end
  3303. end
  3304. for i = 1, 15 do
  3305. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  3306. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.6)
  3307. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3308. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.4)
  3309. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3310. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3311. if Debounces.on == false then break end
  3312. rs:wait(2.7)
  3313. end
  3314. x = Instance.new("Sound",char)
  3315. x.SoundId = "rbxassetid://228343271"
  3316. x.Pitch = 1
  3317. x.Volume = .8
  3318. wait(.1)
  3319. x:Play()
  3320. Debounces.on = false
  3321. Debounces.Here = false
  3322. shot = shot + 1
  3323. local rng = Instance.new("Part", larm)
  3324. rng.Anchored = true
  3325. rng.BrickColor = BrickColor.new("Crimson")
  3326. rng.CanCollide = false
  3327. rng.FormFactor = 3
  3328. rng.Name = "Ring"
  3329. rng.Size = Vector3.new(1, 1, 1)
  3330. rng.Transparency = 0.35
  3331. rng.TopSurface = 0
  3332. rng.BottomSurface = 0
  3333. rng2 = rng:clone()
  3334. rng3 = rng2:clone()
  3335. rng4 = rng2:clone()
  3336. local rngm = Instance.new("SpecialMesh", rng)
  3337. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3338. rngm.Scale = Vector3.new(10, 10, 1)
  3339. rngm2 = rngm:clone()
  3340. rngm2.Scale = Vector3.new(5, 5, 3)
  3341. rngm3=rngm2:clone()
  3342. rngm3.Parent = rng3
  3343. rngm3.Scale = Vector3.new(8, 8, 1)
  3344. rngm4 = rngm2:clone()
  3345. rngm4.Parent = rng4
  3346. rngm4.Scale = Vector3.new(6, 6, 1)
  3347. local bem = Instance.new("Part", larm)
  3348. bem.Anchored = true
  3349. bem.BrickColor = BrickColor.new("Really black")
  3350. bem.CanCollide = false
  3351. bem.FormFactor = 3
  3352. bem.Name = "Beam" .. shot
  3353. bem.Size = Vector3.new(1, 1, 1)
  3354. bem.Transparency = 0.35
  3355. bem.TopSurface = 0
  3356. bem.BottomSurface = 0
  3357. local bemm = Instance.new("SpecialMesh", bem)
  3358. bemm.MeshType = 4
  3359. bemm.Scale = Vector3.new(1, 4, 4)
  3360. local out = Instance.new("Part", larm)
  3361. out.Anchored = true
  3362. out.BrickColor = BrickColor.new("Really black")
  3363. out.CanCollide = false
  3364. out.FormFactor = 3
  3365. out.Name = "Out"
  3366. out.Size = Vector3.new(4, 4, 4)
  3367. out.Transparency = 0.35
  3368. out.TopSurface = 0
  3369. out.BottomSurface = 0
  3370. local outm = Instance.new("SpecialMesh", out)
  3371. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  3372. outm.Scale = Vector3.new(6, 4, 6)
  3373. local bnd = Instance.new("Part", larm)
  3374. bnd.Anchored = true
  3375. bnd.BrickColor = BrickColor.new("Really red")
  3376. bnd.CanCollide = false
  3377. bnd.FormFactor = 3
  3378. bnd.Name = "Bend"
  3379. bnd.Size = Vector3.new(1, 1, 1)
  3380. bnd.Transparency = 1
  3381. bnd.TopSurface = 0
  3382. bnd.BottomSurface = 0
  3383. local bndm = Instance.new("SpecialMesh", bnd)
  3384. bndm.MeshType = 3
  3385. bndm.Scale = Vector3.new(8, 8, 8)
  3386. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3387. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  3388. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  3389. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  3390. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  3391. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  3392. Debounces.Shewt = true
  3393. coroutine.wrap(function()
  3394. for i = 1, 20, 0.2 do
  3395. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  3396. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  3397. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  3398. rng.Transparency = i/20
  3399. rng3.Transparency = 1/24
  3400. rng4.Transparency = i/26
  3401. wait()
  3402. end
  3403. wait()
  3404. rng:Destroy()
  3405. end)()
  3406. if Debounces.Shewt == true then
  3407. larm:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  3408. hit = ht.Parent
  3409. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  3410. if HasntTouched(hit.Name) == true and deb == false then
  3411. deb = true
  3412. coroutine.wrap(function()
  3413. hit:FindFirstChild("Humanoid").PlatformStand = true
  3414. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  3415. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  3416. end)()
  3417. table.insert(Touche, hit.Name)
  3418. deb = false
  3419. end
  3420. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  3421. if HasntTouched(hit.Parent.Name) == true and deb == false then
  3422. deb = true
  3423. coroutine.wrap(function()
  3424. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  3425. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  3426. wait(1)
  3427. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  3428. end)()
  3429. table.insert(Touche, hit.Parent.Name)
  3430. deb = false
  3431. for i, v in pairs(Touche) do
  3432. print(v)
  3433. end
  3434. end
  3435. end
  3436. end)
  3437. end
  3438. for i = 0, 260, 8 do
  3439. bem.Size = Vector3.new(i, 3, 3)
  3440. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  3441. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  3442. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  3443. bnd.Size = Vector3.new(1,1,1)
  3444. bndm.Scale = Vector3.new(8,8,8)
  3445. if i % 10 == 0 then
  3446. local newRng = rng2:Clone()
  3447. newRng.Parent = larm
  3448. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  3449. local newRngm = rngm2:clone()
  3450. newRngm.Parent=newRng
  3451. coroutine.wrap(function()
  3452. for i = 1, 10, 0.2 do
  3453. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  3454. newRng.Transparency = i/10
  3455. wait()
  3456. end
  3457. wait()
  3458. newRng:Destroy()
  3459. end)()
  3460. end
  3461. wait()
  3462. end
  3463. wait()
  3464. Debounces.Shewt = false
  3465. bem:Destroy()
  3466. out:Destroy()
  3467. bnd:Destroy()
  3468. Debounces.Ready = false
  3469. for i, v in pairs(Touche) do
  3470. table.remove(Touche, i)
  3471. end
  3472. wait()
  3473. for i,v in pairs (char.Claw:GetChildren()) do
  3474. if v:IsA("Part") then
  3475. v.Transparency=1
  3476. end
  3477. end
  3478. for i,v in pairs (char.Claw:GetChildren()) do
  3479. if v:IsA("WedgePart") then
  3480. v.Transparency=1
  3481. end
  3482. end
  3483. table.insert(Touche, char.Name)
  3484. Debounces.NoIdl = false
  3485. if Debounces.CanAttack == false then
  3486. Debounces.CanAttack = true
  3487. end
  3488. end
  3489. end
  3490. end)
  3491. ----------------------------------------------------
  3492. --[[mouse.KeyDown:connect(function(key)
  3493. if key == "y" then
  3494. if Debounces.CanAttack == true then
  3495. Debounces.CanAttack = false
  3496. Debounces.NoIdl = true
  3497. Debounces.on = true
  3498. local shell = Instance.new("Part",torso)
  3499. shell.BrickColor = BrickColor.new("Crimson")
  3500. shell.Anchored = false
  3501. shell.CanCollide = false
  3502. shell.Locked = true
  3503. shell.TopSurface = "SmoothNoOutlines"
  3504. shell.BottomSurface = "SmoothNoOutlines"
  3505. shell.Size = Vector3.new(1.2,1.2,1.2)
  3506. shell.FormFactor = 3
  3507. local shellm = Instance.new("SpecialMesh",shell)
  3508. shellm.MeshType = "Sphere"
  3509. shellm.Scale = Vector3.new(1.2,1.2,1.2)
  3510. Omega = function()
  3511. local X = Instance.new("Part",char)
  3512. local O = Instance.new("ObjectValue",X)
  3513. O.Name = "creator"
  3514. X.Locked = true
  3515. X.Name = "Shell"
  3516. X.Anchored = false
  3517. X.CanCollide = false
  3518. X.Transparency = 0.5
  3519. X.Reflectance = 0
  3520. X.BottomSurface = 0
  3521. X.TopSurface = 0
  3522. X.Shape = 0
  3523. local V = Instance.new("ObjectValue",X)
  3524. V.Value = char
  3525. V.Name = "creator"
  3526. X.BrickColor = BrickColor.new("Crimson")
  3527. X.Size = Vector3.new(40,40,40)
  3528. --X.Material = "Neon"
  3529. local Z = Instance.new("SpecialMesh",X)
  3530. Z.MeshType = "Sphere"
  3531. Z.Scale = Vector3.new(0.2,0.2,0.2)
  3532. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  3533. local bv = Instance.new("BodyVelocity",X)
  3534. bv.maxForce = Vector3.new(99999,99999,99999)
  3535. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  3536. bv.velocity = root.CFrame.lookVector*10
  3537. Explode = X.Touched:connect(function(hit)
  3538. if hit ~= char and hit.Name ~= "Shell" and hit ~= X and hit:IsA("Part") or hit:IsA("BasePart}") then
  3539. local cf = X.CFrame
  3540. bv:Destroy()
  3541. X.Anchored = true
  3542. Z:Remove()
  3543. Explode:disconnect()
  3544. X.Size = Vector3.new(3,3,3)
  3545. X.Touched:connect(function(hit) end)
  3546. X.CanCollide = false
  3547. for i,v in pairs(FindNearestTorso(X.CFrame.p,200))do
  3548. if v:FindFirstChild('Humanoid') then
  3549. v.Humanoid:TakeDamage(math.random(80,120))
  3550. end
  3551. end
  3552. for i = 1, (40) do rs:wait()
  3553. X.Transparency = X.Transparency + (1/40)
  3554. X.Size = X.Size + Vector3.new(1,1,1)
  3555. X.CFrame = root.CFrame * CFrame.new(0,0,-10)
  3556. end
  3557. X:Destroy()
  3558. end
  3559. end)
  3560. end
  3561. for i = 1,200 do
  3562. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3563. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.03)
  3564. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4)
  3565. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3566. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3567. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3568. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3569. if Debounces.on == false then break end
  3570. rs:wait()
  3571. end
  3572. for i = 1,30 do
  3573. shell.CFrame = torso.CFrame * CFrame.new(0,8,0)
  3574. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(170)), 0.4)
  3575. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.62,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-170)), 0.4)
  3576. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3577. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3578. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3579. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3580. if Debounces.on == false then break end
  3581. rs:wait()
  3582. end
  3583. for i = 1,40 do
  3584. shell.CFrame = torso.CFrame * CFrame.new(0,20,0)
  3585. shell.Size = shell.Size + Vector3.new(1,1,1)
  3586. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(100)), 0.4)
  3587. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-100)), 0.4)
  3588. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3589. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3590. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3591. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3592. if Debounces.on == false then break end
  3593. rs:wait()
  3594. end
  3595. for i = 1,40 do
  3596. shell.CFrame = torso.CFrame * CFrame.new(0,0,-30)
  3597. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(20)), 0.4)
  3598. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.6,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.4)
  3599. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3600. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3601. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3602. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3603. if Debounces.on == false then break end
  3604. rs:wait()
  3605. end
  3606. for i = 1,60 do
  3607. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  3608. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-30)), 0.4)
  3609. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.4)
  3610. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3611. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3612. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3613. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3614. if Debounces.on == false then break end
  3615. rs:wait()
  3616. end
  3617. for i = 1,60 do
  3618. shell.CFrame = torso.CFrame * CFrame.new(0,0,-60)
  3619. shell.Size = shell.Size + Vector3.new(1,1,1)
  3620. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(120)), 0.4)
  3621. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.4,0.64,0)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-120)), 0.4)
  3622. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.4)
  3623. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  3624. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3625. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(0)), 0.4)
  3626. if Debounces.on == false then break end
  3627. rs:wait()
  3628. end
  3629. if Debounces.CanAttack == false then
  3630. Debounces.CanAttack = true
  3631. Debounces.NoIdl = false
  3632. Debounces.on = false
  3633. end
  3634. end
  3635. end
  3636. end)]]--
  3637. ----------------------------------------------------
  3638. Charging = false
  3639. mouse.KeyDown:connect(function(key)
  3640. if key == "r" then
  3641. if Charging == false then
  3642. Charging = true
  3643. if Debounces.CanAttack == true then
  3644. Debounces.CanAttack = false
  3645. Debounces.NoIdl = true
  3646. Debounces.on = true
  3647. for i = 1,20 do
  3648. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(-40)), 0.2)
  3649. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.65,-.4)*CFrame.Angles(math.rad(130),math.rad(0),math.rad(40)), 0.2)
  3650. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  3651. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  3652. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  3653. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, .4, -0.8) * CFrame.Angles(math.rad(-6), math.rad(0), math.rad(0)), 0.2)
  3654. if Debounces.on == false then break end
  3655. rs:wait()
  3656. end
  3657. --[[for i = 1,20 do
  3658. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(-20),math.rad(50)), 0.4)
  3659. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(-20),math.rad(20),math.rad(-50)), 0.4)
  3660. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(34),math.rad(0),0), 0.4)
  3661. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(15), math.rad(0), math.rad(0)), 0.4)
  3662. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(-10)), 0.4)
  3663. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(10)), 0.4)
  3664. if Debounces.on == false then break end
  3665. rs:wait()
  3666. end]]--
  3667. pt=Instance.new('Part',torso)
  3668. pt.Anchored=true
  3669. pt.CanCollide=false
  3670. pt.Locked = true
  3671. pt.FormFactor='Custom'
  3672. pt.Size=Vector3.new(1,1,1)
  3673. pt.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3674. pt.Transparency=.6
  3675. pt.BrickColor=BrickColor.new('Really black')
  3676. msh=Instance.new('SpecialMesh',pt)
  3677. msh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3678. msh.Scale=Vector3.new(8,4,8)
  3679. pt2=pt:clone()
  3680. pt2.Parent = torso
  3681. pt2.CFrame=root.CFrame*CFrame.new(0,-1,0)
  3682. pt2.BrickColor=BrickColor.new("Crimson")
  3683. msh2=msh:clone()
  3684. msh2.Parent=pt2
  3685. msh2.Scale=Vector3.new(10,5,10)
  3686.  
  3687. custommath={25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,-25,-26,-27,-28,-29,-30,-31,-32,-33,-34,-35,-36,-37,-38,-39,-40,-41,-42,-43,-44,-45,-46,-47,-48,-49,-50,-51,-52,-53,-54,-55,-56,-57,-58,-59,-60,-61,-62,-63,-64,-65,-66,-67,-68,-69,-70,-71,-72,-73,-74,-75,-76,-77,-78,-79,-80,-81,-82,-83,-84,-85,-86,-87,-88,-89,-90,-91,-92,-93,-94,-95,-96,-97,-98,-99,-100}
  3688.  
  3689. bl = Instance.new("Part", char)
  3690. bl.Locked = true
  3691. bl.Name = "Shell"
  3692. bl.BrickColor = BrickColor.new("Really black")
  3693. bl.Anchored = true
  3694. bl.CanCollide = false
  3695. bl.Transparency = 0
  3696. bl.Reflectance = 0
  3697. bl.BottomSurface = 0
  3698. bl.TopSurface = 0
  3699. bl.Shape = 0
  3700. blm = Instance.new("SpecialMesh",bl)
  3701. blm.MeshType = "Sphere"
  3702. blm.Scale = Vector3.new(1,1,1)
  3703. blm.MeshId = "rbxassetid://9982590"
  3704.  
  3705. coroutine.resume(coroutine.create(function()
  3706. for i=1, math.huge, 4 do
  3707. if Charging == true then
  3708. rs:wait()
  3709. bl.CFrame = root.CFrame * CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-i/10), math.rad(-i/10), math.rad(i/10))
  3710. blm.Scale = blm.Scale + Vector3.new(0.1, 0.1, 0.1)
  3711. bl.Transparency = bl.Transparency + 0.005
  3712. pt.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(i*2),0)
  3713. pt2.CFrame = root.CFrame*CFrame.new(0,-1,0) * CFrame.Angles(0,math.rad(-i*2),0)
  3714. msh.Scale = msh.Scale + Vector3.new(0.05,0,0.05)
  3715. msh2.Scale = msh2.Scale + Vector3.new(0.05,0,0.05)
  3716. elseif Charging == false then break
  3717. end
  3718. end
  3719. end))
  3720.  
  3721. repeat
  3722. local p = Instance.new('Part',torso)
  3723. p.formFactor = 'Custom'
  3724. p.Size = Vector3.new(1,1,1)
  3725. p.BrickColor = workspace.Base.BrickColor
  3726. p.CanCollide = false
  3727. p.Transparency = 0
  3728. p.Anchored = true
  3729. p.Locked=true
  3730. p.Material = workspace.Base.Material
  3731. s = math.random(1,40)/10
  3732. local m = Instance.new("BlockMesh",p)
  3733. m.Scale = Vector3.new(s,s,s)
  3734. p.CFrame = torso.CFrame*CFrame.new(custommath[math.random(1,#custommath)]/10,-math.random(5,7),custommath[math.random(1,#custommath)]/10)*CFrame.Angles(math.random(),math.random(),math.random())
  3735. --[[coroutine.wrap(function()
  3736. wait(2)
  3737. while Charging == true do
  3738. wait(2)
  3739. GroundWave1()
  3740. wait(2)
  3741. end
  3742. end)()]]--
  3743. Spawn(function()
  3744. while rs:wait() do
  3745. if Charging == true then
  3746. rarm.Weld.C0 = CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(-30,-20)),math.rad(math.random(30,50)))
  3747. larm.Weld.C0 = CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(math.random(-36,-20)),math.rad(math.random(20,30)),math.rad(math.random(-50,-30)))
  3748. hed.Weld.C0 = CFrame.new(0,1.5,.1)*CFrame.Angles(math.rad(math.random(26,34)),math.rad(math.random(-5,5)),math.rad(0))
  3749. torso.Weld.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(10), math.rad(math.random(-4,4)), math.rad(0))
  3750. lleg.Weld.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(10,20)), math.rad(math.random(-20,-10)))
  3751. rleg.Weld.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(math.random(-10,-6)), math.rad(math.random(-20,-10)), math.rad(math.random(10,20)))
  3752. elseif Charging == false then break
  3753. end
  3754. end
  3755. end)
  3756. Spawn(function()
  3757. while rs:wait() do
  3758. if p.Transparency >= 1 then p:Destroy() break end
  3759. p.CFrame = p.CFrame*CFrame.Angles(math.rad(2),math.rad(2),math.rad(2))+Vector3.new(0,0.2,0)
  3760. p.Transparency = p.Transparency+0.01
  3761. end
  3762. end)
  3763. wait(.3)
  3764. until Charging == false
  3765. end
  3766. end
  3767. end
  3768. end)
  3769. ----------------------------------------------------
  3770. mouse.KeyUp:connect(function(key)
  3771. if key == "r" then
  3772. if Charging == true then
  3773. Charging = false
  3774. pt:Destroy()
  3775. pt2:Destroy()
  3776. bl:Destroy()
  3777. if Debounces.CanAttack == false then
  3778. Debounces.CanAttack = true
  3779. Debounces.NoIdl = false
  3780. Debounces.on = false
  3781. end
  3782. end
  3783. end
  3784. end)
  3785. ----------------------------------------------------
  3786. mouse.KeyDown:connect(function(key)
  3787. if key == "g" then
  3788. if Debounces.CanAttack == true then
  3789. Debounces.CanAttack = false
  3790. Debounces.NoIdl = true
  3791. Debounces.on = true
  3792. local shell = Instance.new("Part",torso)
  3793. shell.BrickColor = BrickColor.new("Crimson")
  3794. shell.Anchored = true
  3795. shell.CanCollide = false
  3796. shell.Locked = true
  3797. shell.TopSurface = "SmoothNoOutlines"
  3798. shell.BottomSurface = "SmoothNoOutlines"
  3799. shell.Size = Vector3.new(1,1,1)
  3800. shellm = Instance.new("SpecialMesh",shell)
  3801. shellm.MeshType = "Sphere"
  3802. shellm.Scale = Vector3.new(1,1,1)
  3803. local shell2 = Instance.new("Part",torso)
  3804. shell2.BrickColor = BrickColor.new("Crimson")
  3805. shell2.Anchored = true
  3806. shell2.CanCollide = false
  3807. shell2.Locked = true
  3808. shell2.TopSurface = "SmoothNoOutlines"
  3809. shell2.BottomSurface = "SmoothNoOutlines"
  3810. shell2.Size = Vector3.new(1,1,1)
  3811. shellm2 = Instance.new("SpecialMesh",shell2)
  3812. shellm2.MeshType = "Sphere"
  3813. shellm2.Scale = Vector3.new(1,1,1)
  3814.  
  3815. function FindNearestTorso(Position,Distance,SinglePlayer)
  3816. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3817. local List = {}
  3818. for i,v in pairs(workspace:GetChildren())do
  3819. if v:IsA("Model")then
  3820. if v:findFirstChild("Torso")then
  3821. if v ~= char then
  3822. if(v.Torso.Position -Position).magnitude <= Distance then
  3823. table.insert(List,v)
  3824. end
  3825. end
  3826. end
  3827. end
  3828. end
  3829. return List
  3830. end
  3831.  
  3832. Shell = function()
  3833. local X = Instance.new("Part",char)
  3834. local O = Instance.new("ObjectValue",X)
  3835. O.Name = "creator"
  3836. X.Locked = true
  3837. X.Name = "Shell"
  3838. X.Anchored = false
  3839. X.CanCollide = false
  3840. X.Transparency = 0
  3841. X.Reflectance = 0
  3842. X.BottomSurface = 0
  3843. X.TopSurface = 0
  3844. X.Shape = 0
  3845. local V = Instance.new("ObjectValue",X)
  3846. V.Value = char
  3847. V.Name = "creator"
  3848. X.BrickColor = BrickColor.new("Crimson")
  3849. X.Size = Vector3.new(1,1,1)
  3850. --X.Material = "Neon"
  3851. local Z = Instance.new("SpecialMesh",X)
  3852. Z.MeshType = "Sphere"
  3853. Z.Scale = Vector3.new(1,1,1)
  3854. X.CFrame = rarm.CFrame*CFrame.new(0,-6,0)
  3855. local bv = Instance.new("BodyVelocity",X)
  3856. bv.maxForce = Vector3.new(99999,99999,99999)
  3857. X.CFrame = CFrame.new(X.Position,root.CFrame.lookVector*10)
  3858. bv.velocity = root.CFrame.lookVector*65
  3859. Explode = X.Touched:connect(function(hit)
  3860. if hit ~= char and hit.Name ~= "Shell" and hit:IsA("Part") or hit:IsA("BasePart}") then
  3861. local cf = X.CFrame
  3862. bv:Destroy()
  3863. X.Anchored = true
  3864. Z:Remove()
  3865. Explode:disconnect()
  3866. X.Size = Vector3.new(3,3,3)
  3867. X.Touched:connect(function(hit) end)
  3868. X.CanCollide = false
  3869. for i,v in pairs(FindNearestTorso(X.CFrame.p,40))do
  3870. if v:FindFirstChild('Humanoid') then
  3871. v.Humanoid:TakeDamage(math.random(6,12))
  3872. end
  3873. end
  3874. for i = 1, (40) do rs:wait()
  3875. X.Transparency = X.Transparency + (1/40)
  3876. X.Size = X.Size + Vector3.new(1,1,1)
  3877. X.CFrame = cf
  3878. end
  3879. X:Destroy()
  3880. end
  3881. end)
  3882. end
  3883. Shell()
  3884. for i = 1, 10 do
  3885. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3886. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3887. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3888. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3889. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.7)
  3890. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.7)
  3891. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-20)), 0.7)
  3892. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(20)), 0.7)
  3893. if Debounces.on == false then break end
  3894. rs:wait()
  3895. end
  3896. Shell()
  3897. shell.Transparency = 1
  3898. for i = 1, 10 do
  3899. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3900. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3901. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3902. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3903. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3904. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3905. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3906. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3907. if Debounces.on == false then break end
  3908. rs:wait()
  3909. end
  3910. Shell()
  3911. shell.Transparency = 0
  3912. shell2.Transparency = 1
  3913. for i = 1, 10 do
  3914. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3915. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3916. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3917. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3918. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3919. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3920. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3921. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3922. if Debounces.on == false then break end
  3923. rs:wait()
  3924. end
  3925. Shell()
  3926. shell2.Transparency = 0
  3927. shell.Transparency = 1
  3928. for i = 1, 10 do
  3929. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3930. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3931. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3932. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3933. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3934. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3935. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3936. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3937. if Debounces.on == false then break end
  3938. rs:wait()
  3939. end
  3940. Shell()
  3941. shell.Transparency = 0
  3942. shell2.Transparency = 1
  3943. for i = 1, 10 do
  3944. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3945. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3946. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3947. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3948. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  3949. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3950. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3951. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3952. if Debounces.on == false then break end
  3953. rs:wait()
  3954. end
  3955. Shell()
  3956. shell2.Transparency = 0
  3957. shell.Transparency = 1
  3958. for i = 1, 10 do
  3959. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3960. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3961. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3962. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3963. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3964. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3965. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3966. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3967. if Debounces.on == false then break end
  3968. rs:wait()
  3969. end
  3970. Shell()
  3971. shell.Transparency = 0
  3972. shell2.Transparency = 1
  3973. for i = 1, 10 do
  3974. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3975. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3976. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  3977. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.5)
  3978. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  3979. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  3980. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  3981. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  3982. if Debounces.on == false then break end
  3983. rs:wait()
  3984. end
  3985. Shell()
  3986. shell2.Transparency = 0
  3987. shell.Transparency = 1
  3988. for i = 1, 10 do
  3989. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  3990. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  3991. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  3992. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  3993. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  3994. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  3995. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  3996. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  3997. if Debounces.on == false then break end
  3998. rs:wait()
  3999. end
  4000. Shell()
  4001. shell.Transparency = 0
  4002. shell2.Transparency = 1
  4003. for i = 1, 10 do
  4004. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  4005. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  4006. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  4007. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  4008. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  4009. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  4010. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  4011. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  4012. if Debounces.on == false then break end
  4013. rs:wait()
  4014. end
  4015. Shell()
  4016. shell2.Transparency = 0
  4017. shell.Transparency = 1
  4018. for i = 1, 10 do
  4019. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  4020. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  4021. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  4022. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  4023. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  4024. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  4025. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  4026. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  4027. if Debounces.on == false then break end
  4028. rs:wait()
  4029. end
  4030. Shell()
  4031. shell.Transparency = 0
  4032. shell2.Transparency = 1
  4033. for i = 1, 10 do
  4034. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  4035. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  4036. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  4037. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  4038. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  4039. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  4040. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  4041. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  4042. if Debounces.on == false then break end
  4043. rs:wait()
  4044. end
  4045. Shell()
  4046. shell2.Transparency = 0
  4047. shell.Transparency = 1
  4048. for i = 1, 10 do
  4049. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  4050. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  4051. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.7)
  4052. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.7)
  4053. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(-50),0), 0.7)
  4054. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(50), 0), 0.7)
  4055. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(-20)), 0.7)
  4056. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(20)), 0.7)
  4057. if Debounces.on == false then break end
  4058. rs:wait()
  4059. end
  4060. Shell()
  4061. shell.Transparency = 0
  4062. shell2.Transparency = 1
  4063. for i = 1, 10 do
  4064. shell.CFrame = rarm.CFrame * CFrame.new(0,-1,0)
  4065. shell2.CFrame = larm.CFrame * CFrame.new(0,-1,0)
  4066. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.7)
  4067. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.6,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.7)
  4068. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(50),0), 0.7)
  4069. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-50), 0), 0.7)
  4070. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-20)), 0.7)
  4071. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(20)), 0.7)
  4072. if Debounces.on == false then break end
  4073. rs:wait()
  4074. end
  4075. shell.Transparency = 1
  4076. if Debounces.CanAttack == false then
  4077. Debounces.CanAttack = true
  4078. Debounces.NoIdl = false
  4079. Debounces.on = false
  4080. end
  4081. end
  4082. end
  4083. end)
  4084. ----------------------------------------------------
  4085. Search = false
  4086. mouse.KeyDown:connect(function(key)
  4087. if key == "n" then
  4088. if Search == false then
  4089. Search = true
  4090. for i,v in pairs(game.Players:getPlayers()) do
  4091. if v.Name~=char.Name then
  4092. for j,k in pairs(v.Character:GetChildren()) do
  4093. if k:IsA("BasePart") and k.Transparency >= 1 then
  4094. bawx=Instance.new("SelectionBox",cam)
  4095. bawx.Color = BrickColor.new("Bright red")
  4096. bawx.Transparency = .5
  4097. bawx.Adornee = k
  4098. end
  4099. end
  4100. end
  4101. end
  4102. elseif Search == true then
  4103. Search = false
  4104. for i, v in pairs(cam:GetChildren()) do
  4105. if v:IsA("SelectionBox") then
  4106. v:Destroy()
  4107. end
  4108. end
  4109. end
  4110. end
  4111. end)
  4112. ----------------------------------------------------
  4113. Grab = false
  4114. mouse.KeyDown:connect(function(key)
  4115. if key == "z" then
  4116. Debounces.on = true
  4117. Debounces.NoIdl = true
  4118. Debounces.ks = true
  4119. if Grab == false then
  4120. gp = nil
  4121. for i = 1, 20 do
  4122. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(110)), 0.2)
  4123. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-110)), 0.2)
  4124. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  4125. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  4126. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(30), math.rad(-20)), 0.2)
  4127. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(-15), math.rad(20)), 0.2)
  4128. if Debounces.on == false then break end
  4129. rs:wait()
  4130. end
  4131. con1=larm.Touched:connect(function(hit) -- this is grab
  4132. ht = hit.Parent
  4133. hum1=ht:FindFirstChild('Humanoid')
  4134. if hum1 ~= nil then
  4135. if Debounces.ks==true then
  4136. z = Instance.new("Sound",hed)
  4137. z.SoundId = "rbxassetid://169380525"
  4138. z.Volume = 1
  4139. z:Play()
  4140. Debounces.ks=false
  4141. end
  4142. hum1.PlatformStand=true
  4143. gp = ht
  4144. Grab = true
  4145. asd=weld5(root,ht:FindFirstChild("Torso"),CFrame.new(0,0,-2.4),CFrame.new(0,0,0))
  4146. asd.Parent = larm
  4147. asd.Name = "asd"
  4148. asd.C0=asd.C0*CFrame.Angles(math.rad(0),math.rad(180),0)
  4149. --[[elseif hum1 == nil then
  4150. con1:disconnect()
  4151. wait() return]]--
  4152. end
  4153. end)
  4154. for i = 1, 20 do
  4155. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-40)), 0.2)
  4156. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.3,0.65,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(40)), 0.2)
  4157. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-10),math.rad(0),0), 0.2)
  4158. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  4159. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(30), math.rad(-20)), 0.2)
  4160. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(-15), math.rad(20)), 0.2)
  4161. if Debounces.on == false then break end
  4162. rs:wait()
  4163. end
  4164. if hum1 == nil then
  4165. Debounces.on = false
  4166. Debounces.NoIdl = false
  4167. end
  4168. con1:disconnect()
  4169. elseif Grab == true then
  4170. Grab = false
  4171. Punch()
  4172. z = Instance.new("Sound",hed)
  4173. z.SoundId = "rbxassetid://169380525"
  4174. z.Pitch = ptz[math.random(1,#ptz)]
  4175. z.Volume = 1
  4176. z:Play()
  4177. for i = 1, 10 do
  4178. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  4179. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  4180. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  4181. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  4182. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4183. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4184. if Debounces.on == false then break end
  4185. rs:wait()
  4186. end
  4187. Punch()
  4188. z = Instance.new("Sound",hed)
  4189. z.SoundId = "rbxassetid://169380525"
  4190. z.Pitch = ptz[math.random(1,#ptz)]
  4191. z.Volume = 1
  4192. z:Play()
  4193. for i = 1, 10 do
  4194. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  4195. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  4196. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  4197. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  4198. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4199. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4200. if Debounces.on == false then break end
  4201. rs:wait()
  4202. end
  4203. Punch()
  4204. z = Instance.new("Sound",hed)
  4205. z.SoundId = "rbxassetid://169380525"
  4206. z.Pitch = ptz[math.random(1,#ptz)]
  4207. z.Volume = 1
  4208. z:Play()
  4209. for i = 1, 10 do
  4210. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  4211. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  4212. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  4213. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  4214. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4215. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4216. if Debounces.on == false then break end
  4217. rs:wait()
  4218. end
  4219. Punch()
  4220. z = Instance.new("Sound",hed)
  4221. z.SoundId = "rbxassetid://169380525"
  4222. z.Pitch = ptz[math.random(1,#ptz)]
  4223. z.Volume = 1
  4224. z:Play()
  4225. for i = 1, 10 do
  4226. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  4227. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  4228. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  4229. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  4230. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4231. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4232. if Debounces.on == false then break end
  4233. rs:wait()
  4234. end
  4235. Punch()
  4236. z = Instance.new("Sound",hed)
  4237. z.SoundId = "rbxassetid://169380525"
  4238. z.Pitch = ptz[math.random(1,#ptz)]
  4239. z.Volume = 1
  4240. z:Play()
  4241. for i = 1, 10 do
  4242. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  4243. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  4244. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  4245. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  4246. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4247. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4248. if Debounces.on == false then break end
  4249. rs:wait()
  4250. end
  4251. Punch()
  4252. z = Instance.new("Sound",hed)
  4253. z.SoundId = "rbxassetid://169380525"
  4254. z.Pitch = ptz[math.random(1,#ptz)]
  4255. z.Volume = 1
  4256. z:Play()
  4257. for i = 1, 10 do
  4258. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  4259. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  4260. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  4261. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  4262. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4263. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4264. if Debounces.on == false then break end
  4265. rs:wait()
  4266. end
  4267. Punch()
  4268. z = Instance.new("Sound",hed)
  4269. z.SoundId = "rbxassetid://169380525"
  4270. z.Pitch = ptz[math.random(1,#ptz)]
  4271. z.Volume = 1
  4272. z:Play()
  4273. for i = 1, 10 do
  4274. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  4275. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  4276. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  4277. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  4278. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4279. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4280. if Debounces.on == false then break end
  4281. rs:wait()
  4282. end
  4283. Punch()
  4284. z = Instance.new("Sound",hed)
  4285. z.SoundId = "rbxassetid://169380525"
  4286. z.Pitch = ptz[math.random(1,#ptz)]
  4287. z.Volume = 1
  4288. z:Play()
  4289. for i = 1, 10 do
  4290. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  4291. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  4292. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  4293. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  4294. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4295. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4296. if Debounces.on == false then break end
  4297. rs:wait()
  4298. end
  4299. Punch()
  4300. z = Instance.new("Sound",hed)
  4301. z.SoundId = "rbxassetid://169380525"
  4302. z.Pitch = ptz[math.random(1,#ptz)]
  4303. z.Volume = 1
  4304. z:Play()
  4305. for i = 1, 10 do
  4306. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  4307. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  4308. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  4309. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  4310. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4311. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4312. if Debounces.on == false then break end
  4313. rs:wait()
  4314. end
  4315. Punch()
  4316. z = Instance.new("Sound",hed)
  4317. z.SoundId = "rbxassetid://169380525"
  4318. z.Pitch = ptz[math.random(1,#ptz)]
  4319. z.Volume = 1
  4320. z:Play()
  4321. for i = 1, 10 do
  4322. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  4323. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  4324. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  4325. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  4326. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4327. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4328. if Debounces.on == false then break end
  4329. rs:wait()
  4330. end
  4331. Punch()
  4332. z = Instance.new("Sound",hed)
  4333. z.SoundId = "rbxassetid://169380525"
  4334. z.Pitch = ptz[math.random(1,#ptz)]
  4335. z.Volume = 1
  4336. z:Play()
  4337. for i = 1, 10 do
  4338. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.4,-.5)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(-50)), 0.7)
  4339. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-110)), 0.7)
  4340. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.4)
  4341. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.6)
  4342. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4343. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4344. if Debounces.on == false then break end
  4345. rs:wait()
  4346. end
  4347. Punch()
  4348. z = Instance.new("Sound",hed)
  4349. z.SoundId = "rbxassetid://169380525"
  4350. z.Pitch = ptz[math.random(1,#ptz)]
  4351. z.Volume = 1
  4352. z:Play()
  4353. for i = 1, 10 do
  4354. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.7,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(110)), 0.6)
  4355. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.7,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.7)
  4356. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(-90),0), 0.4)
  4357. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(90), 0), 0.65)
  4358. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  4359. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  4360. if Debounces.on == false then break end
  4361. rs:wait()
  4362. end
  4363. con1:disconnect()
  4364. Debounces.on = false
  4365. Debounces.NoIdl = false
  4366. if gp ~= nil then
  4367. gp:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 140
  4368. for i,v in pairs(larm:GetChildren()) do
  4369. if v.Name == "asd" and v:IsA("Weld") then
  4370. v:Remove()
  4371. end
  4372. end
  4373. --[[bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  4374. bv.maxForce = Vector3.new(400000, 400000, 400000)
  4375. bv.P = 125000
  4376. bv.velocity = char.Head.CFrame.lookVector * 200]]--
  4377. hum1=nil
  4378. ht=nil
  4379. Debounces.on = false
  4380. Debounces.NoIdl = false
  4381. elseif ht == nil then wait()
  4382. Grab = false
  4383. Debounces.on = false
  4384. Debounces.NoIdl = false
  4385. end
  4386. end
  4387. end
  4388. end)
  4389. ----------------------------------------------------
  4390. mouse.KeyDown:connect(function(key)
  4391. if string.byte(key) == 52 then
  4392. char.Humanoid.WalkSpeed = 60
  4393. end
  4394. end)
  4395. mouse.KeyUp:connect(function(key)
  4396. if string.byte(key) == 52 then
  4397. char.Humanoid.WalkSpeed = 16
  4398. end
  4399. end)
  4400. -------------------------------
  4401. local animpose = "Idle"
  4402. local lastanimpose = "Idle"
  4403. local sine = 0
  4404. local change = 1
  4405. local val = 0
  4406. local ffing = false
  4407. -------------------------------
  4408. game:GetService("RunService").RenderStepped:connect(function()
  4409. --[[if char.Humanoid.Jump == true then
  4410. jump = true
  4411. else
  4412. jump = false
  4413. end]]
  4414. char.Humanoid.FreeFalling:connect(function(f)
  4415. if f then
  4416. ffing = true
  4417. else
  4418. ffing = false
  4419. end
  4420. end)
  4421. sine = sine + change
  4422. if jumpn == true then
  4423. animpose = "Jumping"
  4424. elseif ffing == true then
  4425. animpose = "Freefalling"
  4426. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  4427. animpose = "Idle"
  4428. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  4429. animpose = "Walking"
  4430. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  4431. animpose = "Running"
  4432. end
  4433. if animpose ~= lastanimpose then
  4434. sine = 0
  4435. if Debounces.NoIdl == false then
  4436. if animpose == "Idle" then
  4437. for i = 1, 2 do
  4438. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8)), 0.4)
  4439. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62,0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8)), 0.4)
  4440. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  4441. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(0, math.rad(0), math.rad(0)), 0.4)
  4442. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8)), 0.4)
  4443. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8)), 0.4)
  4444. end
  4445. elseif animpose == "Walking" then
  4446. for i = 1, 2 do
  4447. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4448. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4449. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  4450. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4451. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4452. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  4453. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4454. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4455. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  4456. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4457. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4458. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4) ]]
  4459. end
  4460. elseif animpose == "Running" then
  4461. for i = 1, 2 do
  4462. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(-14),math.rad(8+2*math.cos(sine/14))), 0.2)
  4463. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-20),math.rad(14),math.rad(-8-2*math.cos(sine/14))), 0.2)
  4464. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-10),0,0), 0.4)
  4465. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(-20),0, math.rad(0)), 0.4)
  4466. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(-7)), 0.4)
  4467. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), 0, math.rad(7)), 0.4)
  4468. wait()
  4469. end
  4470. end
  4471. else
  4472. end
  4473. end
  4474. --[[local HP1 = Instance.new("Part",larm)
  4475. HP1.Size = Vector3.new(-0.25,0.5,0.25)
  4476. HP1.BrickColor = BrickColor.new("Crimson")
  4477. local HP1W = Instance.new("Weld", HP1)
  4478. HP1W.Part0 = larm
  4479. HP1W.Part1 = HP1
  4480. HP1W.C0 = CFrame.new(-1, .45, 0) ]]
  4481. lastanimpose = animpose
  4482. if Debounces.NoIdl == false then
  4483. if animpose == "Idle" then
  4484. change = 0.5
  4485. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(-6),math.rad(8+2*math.cos(sine/14))), 0.4)
  4486. --rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,.45,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(180),math.rad(20)), 0.2)
  4487. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,.45+0.05*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  4488. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.62+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-6),math.rad(6),math.rad(-8-2*math.cos(sine/14))), 0.4)
  4489. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  4490. --torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  4491. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(0),0), 0.2)
  4492. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(0, math.rad(-40), math.rad(0)), 0.05)
  4493. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(-8-2*math.cos(sine/14))), 0.4)
  4494. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(0, 0, math.rad(8+2*math.cos(sine/14))), 0.4)
  4495. elseif animpose == "Walking" then
  4496. change = 1
  4497. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  4498. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.55,0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  4499. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, -.2) * CFrame.Angles(math.rad(-14),0,0), 0.4)
  4500. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-10),0, math.rad(0)), 0.05)
  4501. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(-8)), 0.4)
  4502. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-8), 0, math.rad(8)), 0.4)
  4503. elseif animpose == "Running" then
  4504. change = 1
  4505. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1,0.35,.3)*CFrame.Angles(math.rad(-30),math.rad(-14),math.rad(-30+2*math.cos(sine/18))), 0.2)
  4506. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.35,.2)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(30+2*math.cos(sine/18))), 0.2)
  4507. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1,0.35,.2)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(30+2*math.cos(sine/18))), 0.2)
  4508.  
  4509. --larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  4510. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.53, -.1) * CFrame.Angles(math.rad(-5),0,0), 0.4)
  4511. --hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  4512. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/24), 0) * CFrame.Angles(math.rad(-10),math.rad(-0), math.rad(0)), 0.2)
  4513.  
  4514. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(-1)), 0.4)
  4515. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(1)), 0.4)
  4516.  
  4517. --[[lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.8, 0.1) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4)
  4518. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -0.8, 0.1) * CFrame.Angles(math.rad(-10), math.rad(10), math.rad(0)), 0.4) ]]
  4519. --rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4)
  4520.  
  4521. --[[rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.35,.4)*CFrame.Angles(math.rad(-30),math.rad(14),math.rad(-30+2*math.cos(sine/14))), 0.2)
  4522. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.2,0.55,-.4)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(40-2*math.cos(sine/14))), 0.2)
  4523. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, .2) * CFrame.Angles(math.rad(20),math.rad(10),0), 0.4)
  4524. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 0-0.1*math.cos(sine/14), 0) * CFrame.Angles(math.rad(-40),math.rad(-10), math.rad(0)), 0.2)
  4525. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, 0, -1.2) * CFrame.Angles(math.rad(-20), math.rad(10), math.rad(0)), 0.4)
  4526. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-12), math.rad(10), math.rad(0)), 0.4) ]]
  4527. end
  4528. end
  4529. end)
  4530.  
  4531. hum.MaxHealth = 9001
  4532. wait(3)
  4533. hum.Health = 9001
  4534.  
  4535. name = game.Players.LocalPlayer.Character
  4536. line = function(pos1, pos2)
  4537. local b = Instance.new("Part")
  4538. b.Parent = name.Torso
  4539. b.Name = "Blast"
  4540. b.Anchored = true
  4541. b.BrickColor = BrickColor.new("Really red")
  4542. b.CFrame = CFrame.new((pos1 + pos2) / 2, pos2) * CFrame.Angles(math.rad(90), 0, 0)
  4543. b.CanCollide = false
  4544. local y = Instance.new("BlockMesh")
  4545. y.Parent = b
  4546. y.Scale = Vector3.new(0.02, (pos2 - pos1).magnitude, 0.02)
  4547. game:GetService("Debris"):AddItem(b, 1)
  4548. end
  4549.  
  4550. random = function()
  4551. return Vector3.new(math.random(-1, 1), math.random(-1, 1), math.random(-1, 1))
  4552. end
  4553.  
  4554. while wait(1) do
  4555. for i = 1, 4 do
  4556. p1 = name.Torso.Position + random() * 2
  4557. p2 = p1 + random()
  4558. line(p1, p2)
  4559. p1 = p2
  4560. p2 = p1 + random()
  4561. line(p1, p2)
  4562. end
  4563. end
Add Comment
Please, Sign In to add comment