Advertisement
MarcAndrew

Untitled

Mar 26th, 2018
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 261.28 KB | None | 0 0
  1. -------Radioactive party boi by goodguyaiden-------
  2. local p = game.Players.LocalPlayer
  3. local char = p.Character
  4. local mouse = p:GetMouse()
  5. local larm = char["Left Arm"]
  6. local rarm = char["Right Arm"]
  7. local lleg = char["Left Leg"]
  8. local rleg = char["Right Leg"]
  9. local hed = char.Head
  10. local torso = char.Torso
  11. local hum = char.Humanoid
  12. local cam = game.Workspace.CurrentCamera
  13. local root = char.HumanoidRootPart
  14. local deb = false
  15. local shot = 0
  16. local l = game:GetService("Lighting")
  17. local rs = game:GetService("RunService").RenderStepped
  18. local stanceToggle = "Normal"
  19. local rad = math.rad
  20. local GroundShake = false
  21. local GroundShake2 = false
  22. math.randomseed(os.time())
  23. hum.WalkSpeed = 5
  24. char.Health:Destroy()
  25. hum.MaxHealth = math.huge
  26. wait(0.1)
  27. hum.Health = math.huge
  28. hum.MaxHealth = math.huge
  29. wait(0.1)
  30. hum.Health = math.huge
  31. ----------------------------------------------------
  32. Debounces = {
  33. on = false;
  34. ks = false;
  35. CanAttack = true;
  36. CanJoke = true;
  37. NoIdl = false;
  38. Slashing = false;
  39. Slashed = false;
  40. Grabbing = false;
  41. Grabbed = false;
  42. }
  43. local Touche = {char.Name, }
  44. ----------------------------------------------------
  45. function lerp(a, b, t) -- Linear interpolation
  46. return a + (b - a)*t
  47. end
  48.  
  49. function slerp(a, b, t) --Spherical interpolation
  50. dot = a:Dot(b)
  51. if dot > 0.99999 or dot < -0.99999 then
  52. return t <= 0.5 and a or b
  53. else
  54. r = math.acos(dot)
  55. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  56. end
  57. end
  58.  
  59. function matrixInterpolate(a, b, t)
  60. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  61. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  62. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  63. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  64. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  65. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  66. local t = v1:Dot(v2)
  67. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  68. return CFrame.new()
  69. end
  70. return CFrame.new(
  71. v0.x, v0.y, v0.z,
  72. v1.x, v1.y, v1.z,
  73. v2.x, v2.y, v2.z,
  74. v3.x, v3.y, v3.z)
  75. end
  76. ----------------------------------------------------
  77. function genWeld(a,b)
  78. local w = Instance.new("Weld",a)
  79. w.Part0 = a
  80. w.Part1 = b
  81. return w
  82. end
  83. function weld(a, b)
  84. local weld = Instance.new("Weld")
  85. weld.Name = "W"
  86. weld.Part0 = a
  87. weld.Part1 = b
  88. weld.C0 = a.CFrame:inverse() * b.CFrame
  89. weld.Parent = a
  90. return weld;
  91. end
  92. ----------------------------------------------------
  93. function Lerp(c1,c2,al)
  94. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  95. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  96. for i,v in pairs(com1) do
  97. com1[i] = v+(com2[i]-v)*al
  98. end
  99. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  100. end
  101. ----------------------------------------------------
  102. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  103. local wld = Instance.new("Weld", wp1)
  104. wld.Part0 = wp0
  105. wld.Part1 = wp1
  106. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  107. end
  108. ----------------------------------------------------
  109. for i,v in pairs(char:children()) do
  110. if v:IsA("Hat") then
  111. v:Destroy()
  112. end
  113. end
  114. for i,v in pairs(hed:children()) do
  115. if v:IsA("Sound") then
  116. v:Destroy()
  117. end
  118. end
  119. ----------------------------------------------------
  120. function HasntTouched(plrname)
  121. local ret = true
  122. for _, v in pairs(Touche) do
  123. if v == plrname then
  124. ret = false
  125. end
  126. end
  127. return ret
  128. end
  129. ----------------------------------------------------
  130. larm.Size = larm.Size * 2
  131. rarm.Size = rarm.Size * 2
  132. lleg.Size = lleg.Size * 2
  133. rleg.Size = rleg.Size * 2
  134. torso.Size = torso.Size * 2
  135. hed.Size = hed.Size * 2
  136. root.Size = root.Size * 2
  137. ----------------------------------------------------
  138. newWeld(torso, larm, -1.5, 0.5, 0)
  139. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  140. newWeld(torso, rarm, 1.5, 0.5, 0)
  141. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  142. newWeld(torso, hed, 0, 1.5, 0)
  143. newWeld(torso, lleg, -0.5, -1, 0)
  144. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  145. newWeld(torso, rleg, 0.5, -1, 0)
  146. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  147. newWeld(root, torso, 0, -1, 0)
  148. torso.Weld.C1 = CFrame.new(0, -1, 0)
  149. ----------------------------------------------------
  150. z = Instance.new("Sound", char)
  151. z.SoundId = "rbxassetid://1494747651"--1494747651
  152. z.Looped = true
  153. z.Pitch = 1
  154. z.Volume = 5
  155. wait(.01)
  156. z:Play()
  157. ----------------------------------------------------
  158.  
  159.  
  160. p:ClearCharacterAppearance()
  161. wait(0.1)
  162. p.Character.Head.BrickColor = BrickColor.new("Really black")
  163. p.Character.Torso.BrickColor = BrickColor.new("Really black")
  164. p.Character["Right Arm"].BrickColor = BrickColor.new("Really black")
  165. p.Character["Right Leg"].BrickColor = BrickColor.new("Really black")
  166. p.Character["Left Leg"].BrickColor = BrickColor.new("Really black")
  167. p.Character["Left Arm"].BrickColor = BrickColor.new("Really black")
  168.  
  169.  
  170. p.Character.Head.Material = "Ice"
  171. p.Character.Torso.Material = "Ice"
  172. p.Character["Right Arm"].Material = "Ice"
  173. p.Character["Right Leg"].Material = "Ice"
  174. p.Character["Left Leg"].Material = "Ice"
  175. p.Character["Left Arm"].Material = "Ice"
  176.  
  177.  
  178.  
  179.  
  180.  
  181. local m = Instance.new("Model")
  182. m.Name = "JackoAxe"
  183. p1 = Instance.new("Part", m)
  184. p1.BrickColor = BrickColor.new("Lime green")
  185. p1.Material = "Neon"
  186. p1.FormFactor = Enum.FormFactor.Custom
  187. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  188. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  189. p1.CanCollide = false
  190. p1.Locked = true
  191. p1.Elasticity = 0
  192. p1.BottomSurface = Enum.SurfaceType.Smooth
  193. p1.TopSurface = Enum.SurfaceType.Smooth
  194. b1 = Instance.new("SpecialMesh", p1)
  195. b1.MeshType = Enum.MeshType.Wedge
  196. b1.Name = "Mesh"
  197. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  198. p2 = Instance.new("Part", m)
  199. p2.BrickColor = BrickColor.new("Lime green")
  200. p2.FormFactor = Enum.FormFactor.Custom
  201. p2.Size = Vector3.new(1, 2.9000001, 1)
  202. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  203. p2.CanCollide = false
  204. p2.Locked = true
  205. p2.Elasticity = 0
  206. p2.BottomSurface = Enum.SurfaceType.Smooth
  207. p2.TopSurface = Enum.SurfaceType.Smooth
  208. b2 = Instance.new("BlockMesh", p2)
  209. b2.Name = "Mesh"
  210. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  211. p3 = Instance.new("Part", m)
  212. p3.BrickColor = BrickColor.new("Lime green")
  213. p3.Material = "Neon"
  214. p3.FormFactor = Enum.FormFactor.Custom
  215. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  216. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  217. p3.CanCollide = false
  218. p3.Locked = true
  219. p3.Elasticity = 0
  220. p3.BottomSurface = Enum.SurfaceType.Smooth
  221. p3.TopSurface = Enum.SurfaceType.Smooth
  222. b3 = Instance.new("SpecialMesh", p3)
  223. b3.MeshType = Enum.MeshType.Wedge
  224. b3.Name = "Mesh"
  225. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  226. p4 = Instance.new("Part", m)
  227. p4.BrickColor = BrickColor.new("Lime green")
  228. p4.Material = "Neon"
  229. p4.FormFactor = Enum.FormFactor.Custom
  230. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  231. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  232. p4.CanCollide = false
  233. p4.Locked = true
  234. p4.Elasticity = 0
  235. p4.BottomSurface = Enum.SurfaceType.Smooth
  236. p4.TopSurface = Enum.SurfaceType.Smooth
  237. b4 = Instance.new("SpecialMesh", p4)
  238. b4.MeshType = Enum.MeshType.Wedge
  239. b4.Name = "Mesh"
  240. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  241. p5 = Instance.new("Part", m)
  242. p5.BrickColor = BrickColor.new("Lime green")
  243. p5.Material = "Neon"
  244. p5.FormFactor = Enum.FormFactor.Custom
  245. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  246. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  247. p5.CanCollide = false
  248. p5.Locked = true
  249. p5.Elasticity = 0
  250. p5.BottomSurface = Enum.SurfaceType.Smooth
  251. p5.TopSurface = Enum.SurfaceType.Smooth
  252. b5 = Instance.new("SpecialMesh", p5)
  253. b5.MeshType = Enum.MeshType.Wedge
  254. b5.Name = "Mesh"
  255. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  256. p6 = Instance.new("Part", m)
  257. p6.Name = "Handle"
  258. p6.BrickColor = BrickColor.new("Lime green")
  259. p6.FormFactor = Enum.FormFactor.Custom
  260. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  261. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  262. p6.CanCollide = false
  263. p6.Locked = true
  264. p6.Elasticity = 0
  265. p6.BottomSurface = Enum.SurfaceType.Smooth
  266. p6.TopSurface = Enum.SurfaceType.Smooth
  267. b6 = Instance.new("BlockMesh", p6)
  268. b6.Name = "Mesh"
  269. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  270. p7 = Instance.new("Part", m)
  271. p7.BrickColor = BrickColor.new("Lime green")
  272. p7.Material = "Neon"
  273. p7.FormFactor = Enum.FormFactor.Custom
  274. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  275. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  276. p7.CanCollide = false
  277. p7.Locked = true
  278. p7.Elasticity = 0
  279. p7.BottomSurface = Enum.SurfaceType.Smooth
  280. p7.TopSurface = Enum.SurfaceType.Smooth
  281. b7 = Instance.new("SpecialMesh", p7)
  282. b7.MeshType = Enum.MeshType.Wedge
  283. b7.Name = "Mesh"
  284. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  285. p8 = Instance.new("Part", m)
  286. p8.BrickColor = BrickColor.new("Lime green")
  287. p8.Material = "Neon"
  288. p8.FormFactor = Enum.FormFactor.Custom
  289. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  290. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  291. p8.CanCollide = false
  292. p8.Locked = true
  293. p8.Elasticity = 0
  294. p8.BottomSurface = Enum.SurfaceType.Smooth
  295. p8.TopSurface = Enum.SurfaceType.Smooth
  296. b8 = Instance.new("SpecialMesh", p8)
  297. b8.MeshType = Enum.MeshType.Wedge
  298. b8.Name = "Mesh"
  299. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  300. p9 = Instance.new("Part", m)
  301. p9.BrickColor = BrickColor.new("Lime green")
  302. p9.FormFactor = Enum.FormFactor.Custom
  303. p9.Size = Vector3.new(1, 1.07999957, 1)
  304. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  305. p9.CanCollide = false
  306. p9.Locked = true
  307. p9.Elasticity = 0
  308. p9.BottomSurface = Enum.SurfaceType.Smooth
  309. p9.TopSurface = Enum.SurfaceType.Smooth
  310. b9 = Instance.new("BlockMesh", p9)
  311. b9.Name = "Mesh"
  312. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  313. p10 = Instance.new("Part", m)
  314. p10.BrickColor = BrickColor.new("Lime green")
  315. p10.FormFactor = Enum.FormFactor.Custom
  316. p10.Size = Vector3.new(1, 1.41999948, 1)
  317. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  318. p10.CanCollide = false
  319. p10.Locked = true
  320. p10.Elasticity = 0
  321. p10.BottomSurface = Enum.SurfaceType.Smooth
  322. p10.TopSurface = Enum.SurfaceType.Smooth
  323. b10 = Instance.new("BlockMesh", p10)
  324. b10.Name = "Mesh"
  325. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  326. p11 = Instance.new("Part", m)
  327. p11.BrickColor = BrickColor.new("Lime green")
  328. p11.FormFactor = Enum.FormFactor.Custom
  329. p11.Size = Vector3.new(1, 1.50999951, 1)
  330. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  331. p11.CanCollide = false
  332. p11.Locked = true
  333. p11.Elasticity = 0
  334. p11.BottomSurface = Enum.SurfaceType.Smooth
  335. p11.TopSurface = Enum.SurfaceType.Smooth
  336. b11 = Instance.new("BlockMesh", p11)
  337. b11.Name = "Mesh"
  338. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  339. p12 = Instance.new("Part", m)
  340. p12.Name = "BladeCenter"
  341. p12.BrickColor = BrickColor.new("Dark stone grey")
  342. p12.Material = Enum.Material.Concrete
  343. p12.FormFactor = Enum.FormFactor.Symmetric
  344. p12.Size = Vector3.new(1, 2, 2)
  345. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  346. p12.CanCollide = false
  347. p12.Locked = true
  348. p12.BottomSurface = Enum.SurfaceType.Smooth
  349. p12.TopSurface = Enum.SurfaceType.Smooth
  350. b12 = Instance.new("SpecialMesh", p12)
  351. b12.MeshType = Enum.MeshType.Brick
  352. b12.Name = "Mesh"
  353. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  354. p13 = Instance.new("Part", m)
  355. p13.BrickColor = BrickColor.new("Lime green")
  356. p13.FormFactor = Enum.FormFactor.Custom
  357. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  358. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  359. p13.CanCollide = false
  360. p13.Locked = true
  361. p13.Elasticity = 0
  362. p13.BottomSurface = Enum.SurfaceType.Smooth
  363. p13.TopSurface = Enum.SurfaceType.Smooth
  364. b13 = Instance.new("BlockMesh", p13)
  365. b13.Name = "Mesh"
  366. b13.Scale = Vector3.new(1, 1, 0.400000006)
  367. p14 = Instance.new("Part", m)
  368. p14.BrickColor = BrickColor.new("Lime green")
  369. p14.FormFactor = Enum.FormFactor.Custom
  370. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  371. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  372. p14.CanCollide = false
  373. p14.Locked = true
  374. p14.Elasticity = 0
  375. p14.BottomSurface = Enum.SurfaceType.Smooth
  376. p14.TopSurface = Enum.SurfaceType.Smooth
  377. b14 = Instance.new("BlockMesh", p14)
  378. b14.Name = "Mesh"
  379. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  380. p15 = Instance.new("Part", m)
  381. p15.BrickColor = BrickColor.new("Lime green")
  382. p15.FormFactor = Enum.FormFactor.Custom
  383. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  384. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  385. p15.CanCollide = false
  386. p15.Locked = true
  387. p15.Elasticity = 0
  388. p15.BottomSurface = Enum.SurfaceType.Smooth
  389. p15.TopSurface = Enum.SurfaceType.Smooth
  390. b15 = Instance.new("BlockMesh", p15)
  391. b15.Name = "Mesh"
  392. b15.Scale = Vector3.new(1, 1, 0.400000006)
  393. p16 = Instance.new("Part", m)
  394. p16.BrickColor = BrickColor.new("Lime green")
  395. p16.FormFactor = Enum.FormFactor.Custom
  396. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  397. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  398. p16.CanCollide = false
  399. p16.Locked = true
  400. p16.Elasticity = 0
  401. p16.BottomSurface = Enum.SurfaceType.Smooth
  402. p16.TopSurface = Enum.SurfaceType.Smooth
  403. b16 = Instance.new("BlockMesh", p16)
  404. b16.Name = "Mesh"
  405. b16.Scale = Vector3.new(1, 1, 0.400000006)
  406. p17 = Instance.new("Part", m)
  407. p17.BrickColor = BrickColor.new("Lime green")
  408. p17.FormFactor = Enum.FormFactor.Custom
  409. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  410. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  411. p17.CanCollide = false
  412. p17.Locked = true
  413. p17.Elasticity = 0
  414. p17.BottomSurface = Enum.SurfaceType.Smooth
  415. p17.TopSurface = Enum.SurfaceType.Smooth
  416. b17 = Instance.new("BlockMesh", p17)
  417. b17.Name = "Mesh"
  418. b17.Scale = Vector3.new(1, 1, 0.400000006)
  419. p18 = Instance.new("WedgePart", m)
  420. p18.BrickColor = BrickColor.new("Dark stone grey")
  421. p18.Name = "BladePart1"
  422. p18.Material = Enum.Material.Concrete
  423. p18.Name = "Wedge"
  424. p18.FormFactor = Enum.FormFactor.Symmetric
  425. p18.Size = Vector3.new(1, 4, 2)
  426. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  427. p18.CanCollide = false
  428. p18.Locked = true
  429. p18.BottomSurface = Enum.SurfaceType.Smooth
  430. p18.TopSurface = Enum.SurfaceType.Smooth
  431. b18 = Instance.new("SpecialMesh", p18)
  432. b18.MeshType = Enum.MeshType.Wedge
  433. b18.Name = "Mesh"
  434. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  435. p19 = Instance.new("WedgePart", m)
  436. p19.BrickColor = BrickColor.new("Dark stone grey")
  437. p19.Name = "BladePart2"
  438. p19.Material = Enum.Material.Concrete
  439. p19.Name = "Wedge"
  440. p19.FormFactor = Enum.FormFactor.Symmetric
  441. p19.Size = Vector3.new(1, 4, 2)
  442. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  443. p19.CanCollide = false
  444. p19.Locked = true
  445. p19.BottomSurface = Enum.SurfaceType.Smooth
  446. p19.TopSurface = Enum.SurfaceType.Smooth
  447. b19 = Instance.new("SpecialMesh", p19)
  448. b19.MeshType = Enum.MeshType.Wedge
  449. b19.Name = "Mesh"
  450. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  451. p20 = Instance.new("Part", m)
  452. p20.BrickColor = BrickColor.new("Lime green")
  453. p20.FormFactor = Enum.FormFactor.Custom
  454. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  455. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  456. p20.CanCollide = false
  457. p20.Locked = true
  458. p20.Elasticity = 0
  459. p20.BottomSurface = Enum.SurfaceType.Smooth
  460. p20.TopSurface = Enum.SurfaceType.Smooth
  461. b20 = Instance.new("BlockMesh", p20)
  462. b20.Name = "Mesh"
  463. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  464. p21 = Instance.new("Part", m)
  465. p21.BrickColor = BrickColor.new("Lime green")
  466. p21.Material = "Neon"
  467. p21.FormFactor = Enum.FormFactor.Custom
  468. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  469. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  470. p21.CanCollide = false
  471. p21.Locked = true
  472. p21.Elasticity = 0
  473. p21.BottomSurface = Enum.SurfaceType.Smooth
  474. p21.TopSurface = Enum.SurfaceType.Smooth
  475. b21 = Instance.new("SpecialMesh", p21)
  476. b21.MeshType = Enum.MeshType.Wedge
  477. b21.Name = "Mesh"
  478. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  479. w1 = Instance.new("Weld", p1)
  480. w1.Name = "Part_Weld"
  481. w1.Part0 = p1
  482. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  483. w1.Part1 = p2
  484. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  485. w2 = Instance.new("Weld", p2)
  486. w2.Name = "Part_Weld"
  487. w2.Part0 = p2
  488. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  489. w2.Part1 = p3
  490. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  491. w3 = Instance.new("Weld", p3)
  492. w3.Name = "Part_Weld"
  493. w3.Part0 = p3
  494. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  495. w3.Part1 = p4
  496. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  497. w4 = Instance.new("Weld", p4)
  498. w4.Name = "Part_Weld"
  499. w4.Part0 = p4
  500. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  501. w4.Part1 = p5
  502. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  503. w5 = Instance.new("Weld", p5)
  504. w5.Name = "Part_Weld"
  505. w5.Part0 = p5
  506. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  507. w5.Part1 = p6
  508. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  509. w6 = Instance.new("Weld", p6)
  510. w6.Name = "Part_Weld"
  511. w6.Part0 = p6
  512. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  513. w6.Part1 = p7
  514. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  515. w7 = Instance.new("Weld", p7)
  516. w7.Name = "Part_Weld"
  517. w7.Part0 = p7
  518. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  519. w7.Part1 = p8
  520. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  521. w8 = Instance.new("Weld", p8)
  522. w8.Name = "Part_Weld"
  523. w8.Part0 = p8
  524. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  525. w8.Part1 = p9
  526. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  527. w9 = Instance.new("Weld", p9)
  528. w9.Name = "Part_Weld"
  529. w9.Part0 = p9
  530. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  531. w9.Part1 = p10
  532. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  533. w10 = Instance.new("Weld", p10)
  534. w10.Name = "Part_Weld"
  535. w10.Part0 = p10
  536. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  537. w10.Part1 = p11
  538. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  539. w11 = Instance.new("Weld", p11)
  540. w11.Name = "Part_Weld"
  541. w11.Part0 = p11
  542. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  543. w11.Part1 = p12
  544. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  545. w12 = Instance.new("Weld", p12)
  546. w12.Name = "Part_Weld"
  547. w12.Part0 = p12
  548. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  549. w12.Part1 = p13
  550. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  551. w13 = Instance.new("Weld", p13)
  552. w13.Name = "Part_Weld"
  553. w13.Part0 = p13
  554. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  555. w13.Part1 = p14
  556. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  557. w14 = Instance.new("Weld", p14)
  558. w14.Name = "Part_Weld"
  559. w14.Part0 = p14
  560. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  561. w14.Part1 = p15
  562. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  563. w15 = Instance.new("Weld", p15)
  564. w15.Name = "Part_Weld"
  565. w15.Part0 = p15
  566. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  567. w15.Part1 = p16
  568. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  569. w16 = Instance.new("Weld", p16)
  570. w16.Name = "Part_Weld"
  571. w16.Part0 = p16
  572. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  573. w16.Part1 = p17
  574. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  575. w17 = Instance.new("Weld", p17)
  576. w17.Name = "Wedge_Weld"
  577. w17.Part0 = p17
  578. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  579. w17.Part1 = p18
  580. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  581. w18 = Instance.new("Weld", p18)
  582. w18.Name = "Wedge_Weld"
  583. w18.Part0 = p18
  584. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  585. w18.Part1 = p19
  586. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  587. w19 = Instance.new("Weld", p19)
  588. w19.Name = "Part_Weld"
  589. w19.Part0 = p19
  590. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  591. w19.Part1 = p20
  592. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  593. w20 = Instance.new("Weld", p20)
  594. w20.Name = "Part_Weld"
  595. w20.Part0 = p20
  596. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  597. w20.Part1 = p21
  598. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  599. m.Parent = char
  600. m:MakeJoints()
  601. ----------------------------------------------------
  602. local cor = Instance.new("Part", char.JackoAxe)
  603. cor.Name = "Thingy"
  604. cor.Locked = true
  605. cor.BottomSurface = 0
  606. cor.CanCollide = false
  607. cor.Size = Vector3.new(1, 13, 1)
  608. cor.Transparency = 1
  609. cor.TopSurface = 0
  610. corw = Instance.new("Weld", cor)
  611. corw.Part0 = rarm
  612. corw.Part1 = cor
  613. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  614. corw.C1 = CFrame.new(0, 0, 0)
  615. weld1 = Instance.new("Weld", char.JackoAxe)
  616. weld1.Part0 = cor
  617. weld1.Part1 = p6
  618. weld1.C0 = CFrame.new(0, 0, 0)
  619. ----------------------------------------------------
  620. hitb = Instance.new("Part", char.JackoAxe)
  621. hitb.Name = "Thingy2"
  622. hitb.Locked = true
  623. hitb.BottomSurface = 0
  624. hitb.CanCollide = false
  625. hitb.Size = Vector3.new(0, 8, 6)
  626. hitb.Transparency = 1
  627. hitb.TopSurface = 0
  628. weld2 = Instance.new("Weld", char.JackoAxe)
  629. weld2.Part0 = hitb
  630. weld2.Part1 = p12
  631. weld2.C0 = CFrame.new(0, .6, 1)
  632. -----------------------------------
  633. local m = Instance.new("Model")
  634. m.Name = "JackoAxe2"
  635. p1 = Instance.new("Part", m)
  636. p1.BrickColor = BrickColor.new("Lime green")
  637. p1.Material = "Neon"
  638. p1.FormFactor = Enum.FormFactor.Custom
  639. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  640. p1.CFrame = CFrame.new(67.4994888, 12.1560526, 73.0205841, 0.999972522, -3.59117985e-005, -8.00192356e-006, -1.39250187e-005, 0.358383715, -0.933530986, 5.28097153e-005, 0.933500648, 0.358406395)
  641. p1.CanCollide = false
  642. p1.Locked = true
  643. p1.Elasticity = 0
  644. p1.BottomSurface = Enum.SurfaceType.Smooth
  645. p1.TopSurface = Enum.SurfaceType.Smooth
  646. b1 = Instance.new("SpecialMesh", p1)
  647. b1.MeshType = Enum.MeshType.Wedge
  648. b1.Name = "Mesh"
  649. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  650. p2 = Instance.new("Part", m)
  651. p2.BrickColor = BrickColor.new("Lime green")
  652. p2.FormFactor = Enum.FormFactor.Custom
  653. p2.Size = Vector3.new(1, 2.9000001, 1)
  654. p2.CFrame = CFrame.new(67.4995728, 11.7633543, 74.2129135, -1.30959779e-005, 2.79811252e-006, 0.999972522, 0.961226642, 0.275612593, -7.50799518e-006, -0.275637805, 0.96119839, 1.01176247e-005)
  655. p2.CanCollide = false
  656. p2.Locked = true
  657. p2.Elasticity = 0
  658. p2.BottomSurface = Enum.SurfaceType.Smooth
  659. p2.TopSurface = Enum.SurfaceType.Smooth
  660. b2 = Instance.new("BlockMesh", p2)
  661. b2.Name = "Mesh"
  662. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  663. p3 = Instance.new("Part", m)
  664. p3.BrickColor = BrickColor.new("Lime green")
  665. p3.Material = "Neon"
  666. p3.FormFactor = Enum.FormFactor.Custom
  667. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  668. p3.CFrame = CFrame.new(67.4994965, 12.6401453, 73.9670334, 0.999972522, -3.52207899e-005, -8.10639358e-006, -1.61500211e-005, 0.309035271, -0.951007903, 5.24176576e-005, 0.950978875, 0.309059501)
  669. p3.CanCollide = false
  670. p3.Locked = true
  671. p3.Elasticity = 0
  672. p3.BottomSurface = Enum.SurfaceType.Smooth
  673. p3.TopSurface = Enum.SurfaceType.Smooth
  674. b3 = Instance.new("SpecialMesh", p3)
  675. b3.MeshType = Enum.MeshType.Wedge
  676. b3.Name = "Mesh"
  677. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  678. p4 = Instance.new("Part", m)
  679. p4.BrickColor = BrickColor.new("Lime green")
  680. p4.Material = "Neon"
  681. p4.FormFactor = Enum.FormFactor.Custom
  682. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  683. p4.CFrame = CFrame.new(67.4995575, 11.8683414, 76.1565704, 0.999972522, -2.5085672e-005, -1.53700166e-005, -4.86194367e-005, -0.800831437, -0.598821938, 1.9131101e-005, 0.598835468, -0.800796151)
  684. p4.CanCollide = false
  685. p4.Locked = true
  686. p4.Elasticity = 0
  687. p4.BottomSurface = Enum.SurfaceType.Smooth
  688. p4.TopSurface = Enum.SurfaceType.Smooth
  689. b4 = Instance.new("SpecialMesh", p4)
  690. b4.MeshType = Enum.MeshType.Wedge
  691. b4.Name = "Mesh"
  692. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  693. p5 = Instance.new("Part", m)
  694. p5.BrickColor = BrickColor.new("Lime green")
  695. p5.Material = "Neon"
  696. p5.FormFactor = Enum.FormFactor.Custom
  697. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  698. p5.CFrame = CFrame.new(67.4995193, 13.241991, 74.8357468, 0.999972522, -3.59118021e-005, -8.00191992e-006, -1.39250224e-005, 0.358383656, -0.933530807, 5.2809708e-005, 0.933500469, 0.358406246)
  699. p5.CanCollide = false
  700. p5.Locked = true
  701. p5.Elasticity = 0
  702. p5.BottomSurface = Enum.SurfaceType.Smooth
  703. p5.TopSurface = Enum.SurfaceType.Smooth
  704. b5 = Instance.new("SpecialMesh", p5)
  705. b5.MeshType = Enum.MeshType.Wedge
  706. b5.Name = "Mesh"
  707. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  708. p6 = Instance.new("Part", m)
  709. p6.Name = "Handle"
  710. p6.BrickColor = BrickColor.new("Lime green")
  711. p6.FormFactor = Enum.FormFactor.Custom
  712. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  713. p6.CFrame = CFrame.new(67.5017471, 11.2780685, 66.1421967, -1.18190947e-005, 6.28741009e-006, 0.999972522, 0.99995929, -1.39772892e-005, -7.50630716e-006, -1.79708004e-005, 0.999939024, 1.01296728e-005)
  714. p6.CanCollide = false
  715. p6.Locked = true
  716. p6.Elasticity = 0
  717. p6.BottomSurface = Enum.SurfaceType.Smooth
  718. p6.TopSurface = Enum.SurfaceType.Smooth
  719. b6 = Instance.new("BlockMesh", p6)
  720. b6.Name = "Mesh"
  721. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  722. p7 = Instance.new("Part", m)
  723. p7.BrickColor = BrickColor.new("Lime green")
  724. p7.Material = "Neon"
  725. p7.FormFactor = Enum.FormFactor.Custom
  726. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  727. p7.CFrame = CFrame.new(67.5174179, 10.5228004, 76.3114471, 0.999972522, -2.76626724e-005, -6.72184569e-006, -4.7347472e-005, -0.91489929, -0.403581172, 2.14323372e-005, 0.403602213, -0.914867818)
  728. p7.CanCollide = false
  729. p7.Locked = true
  730. p7.Elasticity = 0
  731. p7.BottomSurface = Enum.SurfaceType.Smooth
  732. p7.TopSurface = Enum.SurfaceType.Smooth
  733. b7 = Instance.new("SpecialMesh", p7)
  734. b7.MeshType = Enum.MeshType.Wedge
  735. b7.Name = "Mesh"
  736. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  737. p8 = Instance.new("Part", m)
  738. p8.BrickColor = BrickColor.new("Lime green")
  739. p8.Material = "Neon"
  740. p8.FormFactor = Enum.FormFactor.Custom
  741. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  742. p8.CFrame = CFrame.new(67.5074387, 8.51285458, 76.8714371, 0.999972522, -2.76626724e-005, -6.72184387e-006, -4.73474684e-005, -0.91489917, -0.403581113, 2.14323354e-005, 0.403602153, -0.914867699)
  743. p8.CanCollide = false
  744. p8.Locked = true
  745. p8.Elasticity = 0
  746. p8.BottomSurface = Enum.SurfaceType.Smooth
  747. p8.TopSurface = Enum.SurfaceType.Smooth
  748. b8 = Instance.new("SpecialMesh", p8)
  749. b8.MeshType = Enum.MeshType.Wedge
  750. b8.Name = "Mesh"
  751. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  752. p9 = Instance.new("Part", m)
  753. p9.BrickColor = BrickColor.new("Lime green")
  754. p9.FormFactor = Enum.FormFactor.Custom
  755. p9.Size = Vector3.new(1, 1.07999957, 1)
  756. p9.CFrame = CFrame.new(67.5095749, 7.1092, 74.5051422, -2.60536999e-005, -5.21559741e-006, 0.999972522, 0.35323599, -0.935490847, -1.50012565e-005, 0.935460567, 0.353258699, 4.2632455e-005)
  757. p9.CanCollide = false
  758. p9.Locked = true
  759. p9.Elasticity = 0
  760. p9.BottomSurface = Enum.SurfaceType.Smooth
  761. p9.TopSurface = Enum.SurfaceType.Smooth
  762. b9 = Instance.new("BlockMesh", p9)
  763. b9.Name = "Mesh"
  764. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  765. p10 = Instance.new("Part", m)
  766. p10.BrickColor = BrickColor.new("Really black")
  767. p10.FormFactor = Enum.FormFactor.Custom
  768. p10.Size = Vector3.new(1, 1.41999948, 1)
  769. p10.CFrame = CFrame.new(67.489624, 8.67401791, 72.7929764, -9.47785156e-006, -9.42233055e-006, 0.999972522, 0.292371064, 0.956263304, -7.54374832e-006, -0.956253231, 0.292334616, 1.01081387e-005)
  770. p10.CanCollide = false
  771. p10.Locked = true
  772. p10.Elasticity = 0
  773. p10.BottomSurface = Enum.SurfaceType.Smooth
  774. p10.TopSurface = Enum.SurfaceType.Smooth
  775. b10 = Instance.new("BlockMesh", p10)
  776. b10.Name = "Mesh"
  777. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  778. p11 = Instance.new("Part", m)
  779. p11.BrickColor = BrickColor.new("Lime green")
  780. p11.FormFactor = Enum.FormFactor.Custom
  781. p11.Size = Vector3.new(1, 1.50999951, 1)
  782. p11.CFrame = CFrame.new(67.509552, 7.11887455, 70.3475952, -1.87569385e-005, 1.80455972e-005, 0.999972522, -0.36222899, -0.932047009, -9.30004444e-006, 0.932039678, -0.362191886, 4.04359016e-005)
  783. p11.CanCollide = false
  784. p11.Locked = true
  785. p11.Elasticity = 0
  786. p11.BottomSurface = Enum.SurfaceType.Smooth
  787. p11.TopSurface = Enum.SurfaceType.Smooth
  788. b11 = Instance.new("BlockMesh", p11)
  789. b11.Name = "Mesh"
  790. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  791. p12 = Instance.new("Part", m)
  792. p12.Name = "BladeCenter"
  793. p12.BrickColor = BrickColor.new("Dark stone grey")
  794. p12.Material = Enum.Material.Concrete
  795. p12.FormFactor = Enum.FormFactor.Symmetric
  796. p12.Size = Vector3.new(1, 2, 2)
  797. p12.CFrame = CFrame.new(67.4995346, 6.83217764, 72.2514038, -0.999972522, 2.42275873e-005, 0.000103325896, -8.39982677e-005, 4.44650614e-005, -0.999960959, -4.06451727e-005, -0.999940753, -1.25430051e-005)
  798. p12.CanCollide = false
  799. p12.Locked = true
  800. p12.BottomSurface = Enum.SurfaceType.Smooth
  801. p12.TopSurface = Enum.SurfaceType.Smooth
  802. b12 = Instance.new("SpecialMesh", p12)
  803. b12.MeshType = Enum.MeshType.Brick
  804. b12.Name = "Mesh"
  805. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  806. p13 = Instance.new("Part", m)
  807. p13.BrickColor = BrickColor.new("Really black")
  808. p13.FormFactor = Enum.FormFactor.Custom
  809. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  810. p13.CFrame = CFrame.new(67.5096359, 9.31026554, 73.9751816, 7.60371313e-006, 1.0943455e-005, 0.999972522, -0.119072244, -0.99284631, -7.55448127e-006, 0.992830038, -0.119038157, 1.01703836e-005)
  811. p13.CanCollide = false
  812. p13.Locked = true
  813. p13.Elasticity = 0
  814. p13.BottomSurface = Enum.SurfaceType.Smooth
  815. p13.TopSurface = Enum.SurfaceType.Smooth
  816. b13 = Instance.new("BlockMesh", p13)
  817. b13.Name = "Mesh"
  818. b13.Scale = Vector3.new(1, 1, 0.400000006)
  819. p14 = Instance.new("Part", m)
  820. p14.BrickColor = BrickColor.new("Lime green")
  821. p14.FormFactor = Enum.FormFactor.Custom
  822. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  823. p14.CFrame = CFrame.new(67.4896011, 10.1621294, 72.6420059, -1.55498967e-007, -1.33476442e-005, 0.999972522, -0.462319613, 0.886669755, -7.56198779e-006, -0.886637092, -0.462338567, 1.01078904e-005)
  824. p14.CanCollide = false
  825. p14.Locked = true
  826. p14.Elasticity = 0
  827. p14.BottomSurface = Enum.SurfaceType.Smooth
  828. p14.TopSurface = Enum.SurfaceType.Smooth
  829. b14 = Instance.new("BlockMesh", p14)
  830. b14.Name = "Mesh"
  831. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  832. p15 = Instance.new("Part", m)
  833. p15.BrickColor = BrickColor.new("Really black")
  834. p15.FormFactor = Enum.FormFactor.Custom
  835. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  836. p15.CFrame = CFrame.new(67.5095901, 9.35303593, 70.6884613, -1.24399676e-005, -4.94209144e-006, 0.999972522, 0.645082474, 0.764063478, -7.52419282e-006, -0.764068604, 0.645045042, 1.0099785e-005)
  837. p15.CanCollide = false
  838. p15.Locked = true
  839. p15.Elasticity = 0
  840. p15.BottomSurface = Enum.SurfaceType.Smooth
  841. p15.TopSurface = Enum.SurfaceType.Smooth
  842. b15 = Instance.new("BlockMesh", p15)
  843. b15.Name = "Mesh"
  844. b15.Scale = Vector3.new(1, 1, 0.400000006)
  845. p16 = Instance.new("Part", m)
  846. p16.BrickColor = BrickColor.new("Really black")
  847. p16.FormFactor = Enum.FormFactor.Custom
  848. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  849. p16.CFrame = CFrame.new(67.4996033, 9.63990211, 75.3800278, 2.98175655e-006, 1.30014914e-005, 0.999972522, 0.258795738, -0.965893507, -7.53869244e-006, 0.965865672, 0.258821338, 1.01718706e-005)
  850. p16.CanCollide = false
  851. p16.Locked = true
  852. p16.Elasticity = 0
  853. p16.BottomSurface = Enum.SurfaceType.Smooth
  854. p16.TopSurface = Enum.SurfaceType.Smooth
  855. b16 = Instance.new("BlockMesh", p16)
  856. b16.Name = "Mesh"
  857. b16.Scale = Vector3.new(1, 1, 0.400000006)
  858. p17 = Instance.new("Part", m)
  859. p17.BrickColor = BrickColor.new("Really black")
  860. p17.FormFactor = Enum.FormFactor.Custom
  861. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  862. p17.CFrame = CFrame.new(67.499588, 9.28996372, 69.8789978, -9.50601952e-006, -9.41252802e-006, 0.999972522, 0.293352425, 0.955965877, -7.53842551e-006, -0.955955863, 0.293315947, 1.00904235e-005)
  863. p17.CanCollide = false
  864. p17.Locked = true
  865. p17.Elasticity = 0
  866. p17.BottomSurface = Enum.SurfaceType.Smooth
  867. p17.TopSurface = Enum.SurfaceType.Smooth
  868. b17 = Instance.new("BlockMesh", p17)
  869. b17.Name = "Mesh"
  870. b17.Scale = Vector3.new(1, 1, 0.400000006)
  871. p18 = Instance.new("WedgePart", m)
  872. p18.BrickColor = BrickColor.new("Dark stone grey")
  873. p18.Name = "BladePart1"
  874. p18.Material = Enum.Material.Concrete
  875. p18.Name = "Wedge"
  876. p18.FormFactor = Enum.FormFactor.Symmetric
  877. p18.Size = Vector3.new(1, 4, 2)
  878. p18.CFrame = CFrame.new(67.499321, 6.83199787, 69.4816895, 0.999972522, -3.68033288e-005, -4.22928351e-005, 2.29664256e-005, -1.65102574e-005, 0.999963701, -2.03872096e-005, -0.999943435, -4.84290831e-005)
  879. p18.CanCollide = false
  880. p18.Locked = true
  881. p18.BottomSurface = Enum.SurfaceType.Smooth
  882. p18.TopSurface = Enum.SurfaceType.Smooth
  883. b18 = Instance.new("SpecialMesh", p18)
  884. b18.MeshType = Enum.MeshType.Wedge
  885. b18.Name = "Mesh"
  886. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  887. p19 = Instance.new("WedgePart", m)
  888. p19.BrickColor = BrickColor.new("Dark stone grey")
  889. p19.Name = "BladePart2"
  890. p19.Material = Enum.Material.Concrete
  891. p19.Name = "Wedge"
  892. p19.FormFactor = Enum.FormFactor.Symmetric
  893. p19.Size = Vector3.new(1, 4, 2)
  894. p19.CFrame = CFrame.new(67.4994736, 6.83213568, 75.0314102, -0.999972522, 3.68059118e-005, -0.000103325001, -8.40002976e-005, -4.4521752e-005, 0.999963701, 2.03864402e-005, 0.999943435, 1.26029336e-005)
  895. p19.CanCollide = false
  896. p19.Locked = true
  897. p19.BottomSurface = Enum.SurfaceType.Smooth
  898. p19.TopSurface = Enum.SurfaceType.Smooth
  899. b19 = Instance.new("SpecialMesh", p19)
  900. b19.MeshType = Enum.MeshType.Wedge
  901. b19.Name = "Mesh"
  902. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  903. p20 = Instance.new("Part", m)
  904. p20.BrickColor = BrickColor.new("Really black")
  905. p20.FormFactor = Enum.FormFactor.Custom
  906. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  907. p20.CFrame = CFrame.new(67.4996414, 7.91898966, 71.4148178, -1.09432585e-005, 7.6432425e-006, 0.999972522, 0.992849231, -0.119072601, -7.55000656e-006, 0.119038492, 0.992832959, 1.01311334e-005)
  908. p20.CanCollide = false
  909. p20.Locked = true
  910. p20.Elasticity = 0
  911. p20.BottomSurface = Enum.SurfaceType.Smooth
  912. p20.TopSurface = Enum.SurfaceType.Smooth
  913. b20 = Instance.new("BlockMesh", p20)
  914. b20.Name = "Mesh"
  915. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  916. p21 = Instance.new("Part", m)
  917. p21.BrickColor = BrickColor.new("Royal purple")
  918. p21.Material = "Neon"
  919. p21.FormFactor = Enum.FormFactor.Custom
  920. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  921. p21.CFrame = CFrame.new(67.509613, 9.57073689, 76.6228256, 0.999972522, -2.50856156e-005, -1.53699839e-005, -4.86196222e-005, -0.800835371, -0.598824739, 1.91311228e-005, 0.59883821, -0.800800025)
  922. p21.CanCollide = false
  923. p21.Locked = true
  924. p21.Elasticity = 0
  925. p21.BottomSurface = Enum.SurfaceType.Smooth
  926. p21.TopSurface = Enum.SurfaceType.Smooth
  927. b21 = Instance.new("SpecialMesh", p21)
  928. b21.MeshType = Enum.MeshType.Wedge
  929. b21.Name = "Mesh"
  930. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  931. w1 = Instance.new("Weld", p1)
  932. w1.Name = "Part_Weld"
  933. w1.Part0 = p1
  934. w1.C0 = CFrame.new(-67.5030899, -72.5280457, -14.8209743, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  935. w1.Part1 = p2
  936. w1.C1 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  937. w2 = Instance.new("Weld", p2)
  938. w2.Name = "Part_Weld"
  939. w2.Part0 = p2
  940. w2.C0 = CFrame.new(9.14727688, -74.5847855, -67.5001221, -4.37113883e-008, 0.961261749, -0.27563718, 0, 0.27563718, 0.961261749, 1, 4.20180868e-008, -1.2048484e-008)
  941. w2.Part1 = p3
  942. w2.C1 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  943. w3 = Instance.new("Weld", p3)
  944. w3.Name = "Part_Weld"
  945. w3.Part0 = p3
  946. w3.C0 = CFrame.new(-67.5030823, -74.2541809, -10.8368053, 1, -8.59976626e-006, 4.22903977e-005, -3.75621021e-005, 0.30906105, 0.951042175, -2.12490559e-005, -0.951042175, 0.30906105)
  947. w3.Part1 = p4
  948. w3.C1 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  949. w4 = Instance.new("Weld", p4)
  950. w4.Name = "Part_Weld"
  951. w4.Part0 = p4
  952. w4.C0 = CFrame.new(-67.5002975, -36.1002579, 68.1035233, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  953. w4.Part1 = p5
  954. w4.C1 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  955. w5 = Instance.new("Weld", p5)
  956. w5.Name = "Part_Weld"
  957. w5.Part0 = p5
  958. w5.C0 = CFrame.new(-67.5031891, -74.611969, -14.457736, 1, -6.37466928e-006, 4.26825172e-005, -3.75621021e-005, 0.358411252, 0.933563769, -2.12490559e-005, -0.933563769, 0.358411252)
  959. w5.Part1 = p6
  960. w5.C1 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  961. w6 = Instance.new("Weld", p6)
  962. w6.Name = "Part_Weld"
  963. w6.Part0 = p6
  964. w6.C0 = CFrame.new(-11.2799978, -66.1456223, -67.5023346, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  965. w6.Part1 = p7
  966. w6.C1 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  967. w7 = Instance.new("Weld", p7)
  968. w7.Name = "Part_Weld"
  969. w7.Part0 = p7
  970. w7.C0 = CFrame.new(-67.5183792, -21.1694489, 74.0717163, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  971. w7.Part1 = p8
  972. w7.C1 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  973. w8 = Instance.new("Weld", p8)
  974. w8.Name = "Part_Weld"
  975. w8.Part0 = p8
  976. w8.C0 = CFrame.new(-67.508461, -23.234499, 73.7728119, 1, -3.97989206e-005, 1.13026372e-005, -4.09751265e-005, -0.91493088, 0.403610349, -5.72212457e-006, -0.403610349, -0.91493088)
  977. w8.Part1 = p9
  978. w8.C1 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  979. w9 = Instance.new("Weld", p9)
  980. w9.Name = "Part_Weld"
  981. w9.Part0 = p9
  982. w9.C0 = CFrame.new(-72.2151413, -19.6674671, -67.5124359, -2.77766703e-005, 0.353263557, 0.935524285, -1.84533783e-005, -0.935524285, 0.353263557, 1, -7.4510931e-006, 3.25046385e-005)
  983. w9.Part1 = p10
  984. w9.C1 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  985. w10 = Instance.new("Weld", p10)
  986. w10.Name = "Part_Weld"
  987. w10.Part0 = p10
  988. w10.C0 = CFrame.new(67.0792923, -29.5803547, -67.4901428, -2.24114753e-008, 0.292369425, -0.956305802, 3.04095332e-010, 0.956305802, 0.292369425, 1, 6.26159258e-009, -2.15211493e-008)
  989. w10.Part1 = p11
  990. w10.C1 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  991. w11 = Instance.new("Weld", p11)
  992. w11.Name = "Part_Weld"
  993. w11.Part0 = p11
  994. w11.C0 = CFrame.new(-62.9921722, 32.1197624, -67.5121918, -2.88835581e-005, -0.362230271, 0.932088912, 9.3476192e-006, -0.932088912, -0.362230271, 1, -1.74967965e-006, 3.03080251e-005)
  995. w11.Part1 = p12
  996. w11.C1 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  997. w12 = Instance.new("Weld", p12)
  998. w12.Name = "Part_Weld"
  999. w12.Part0 = p12
  1000. w12.C0 = CFrame.new(67.5028763, 72.2527161, 6.8300252, -1, -9.15522687e-005, -3.05189751e-005, 3.05161811e-005, 3.05189751e-005, -1, 9.15532e-005, -1, -3.05161811e-005)
  1001. w12.Part1 = p13
  1002. w12.C1 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  1003. w13 = Instance.new("Weld", p13)
  1004. w13.Name = "Part_Weld"
  1005. w13.Part0 = p13
  1006. w13.C0 = CFrame.new(-72.3439255, 18.054121, -67.5101624, -4.09776035e-008, -0.11906305, 0.992886722, 4.05430745e-010, -0.992886722, -0.11906305, 1, -4.47637571e-009, 4.0734399e-008)
  1007. w13.Part1 = p14
  1008. w13.C1 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1009. w14 = Instance.new("Weld", p14)
  1010. w14.Name = "Part_Weld"
  1011. w14.Part0 = p14
  1012. w14.C0 = CFrame.new(69.1140671, 24.5752277, -67.4901428, -2.4837334e-008, -0.462350011, -0.886697888, 5.64353009e-010, 0.886697888, -0.462350011, 1, -1.19839818e-008, -2.17623022e-008)
  1013. w14.Part1 = p15
  1014. w14.C1 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1015. w15 = Instance.new("Weld", p15)
  1016. w15.Name = "Part_Weld"
  1017. w15.Part0 = p15
  1018. w15.C0 = CFrame.new(47.9809418, -52.7511749, -67.5101318, -3.94735267e-008, 0.64509654, -0.764101744, -4.55740418e-010, 0.764101744, 0.64509654, 1, 2.58124242e-008, -2.98677882e-008)
  1019. w15.Part1 = p16
  1020. w15.C1 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1021. w16 = Instance.new("Weld", p16)
  1022. w16.Name = "Part_Weld"
  1023. w16.Part0 = p16
  1024. w16.C0 = CFrame.new(-75.3105469, -10.1974039, -67.5001221, -4.37113883e-008, 0.258818924, 0.965925872, 0, -0.965925872, 0.258818924, 1, 1.13133343e-008, 4.22219593e-008)
  1025. w16.Part1 = p17
  1026. w16.C1 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1027. w17 = Instance.new("Weld", p17)
  1028. w17.Name = "Wedge_Weld"
  1029. w17.Part0 = p17
  1030. w17.C0 = CFrame.new(64.0820847, -29.3829937, -67.5001373, -4.09009289e-008, 0.293349952, -0.956005633, 4.38312497e-010, 0.956005633, 0.293349952, 1, 1.15792238e-008, -3.92300876e-008)
  1031. w17.Part1 = p18
  1032. w17.C1 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1033. w18 = Instance.new("Weld", p18)
  1034. w18.Name = "Wedge_Weld"
  1035. w18.Part0 = p18
  1036. w18.C0 = CFrame.new(-67.4979324, 69.4871521, -6.82958078, 1, 3.05171125e-005, -3.05180438e-005, -3.05171125e-005, -3.05180438e-005, -1, -3.05180438e-005, 1, -3.05171125e-005)
  1037. w18.Part1 = p19
  1038. w18.C1 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1039. w19 = Instance.new("Weld", p19)
  1040. w19.Name = "Part_Weld"
  1041. w19.Part0 = p19
  1042. w19.C0 = CFrame.new(67.4982986, -75.0367737, -6.83008671, -1, -9.15532e-005, 3.05161811e-005, 3.05189751e-005, -3.05161811e-005, 1, -9.15522687e-005, 1, 3.05189751e-005)
  1043. w19.Part1 = p20
  1044. w19.C1 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1045. w20 = Instance.new("Weld", p20)
  1046. w20.Name = "Part_Weld"
  1047. w20.Part0 = p20
  1048. w20.C0 = CFrame.new(-16.3677292, -69.9670334, -67.5001678, -1.77821063e-010, 0.992886961, 0.119063012, -1.46926671e-009, -0.119063012, 0.992886961, 1, 1.59595731e-012, 1.47997492e-009)
  1049. w20.Part1 = p21
  1050. w20.C1 = CFrame.new(-67.5104218, -38.2193756, 67.100563, 1, -4.10709617e-005, 9.00123541e-006, -3.82823673e-005, -0.800855637, 0.598857403, -1.73869594e-005, -0.598857403, -0.800855637)
  1051. m.Parent = char
  1052. m:MakeJoints()
  1053. ----------------------------------------------------
  1054. local cor2 = Instance.new("Part", char.JackoAxe2)
  1055. cor2.Name = "Thingy"
  1056. cor2.Locked = true
  1057. cor2.BottomSurface = 0
  1058. cor2.CanCollide = false
  1059. cor2.Size = Vector3.new(1, 13, 1)
  1060. cor2.Transparency = 1
  1061. cor2.TopSurface = 0
  1062. corw2 = Instance.new("Weld", cor2)
  1063. corw2.Part0 = larm
  1064. corw2.Part1 = cor2
  1065. corw2.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1066. corw2.C1 = CFrame.new(0, 0, 0)
  1067. weld1 = Instance.new("Weld", char.JackoAxe2)
  1068. weld1.Part0 = cor2
  1069. weld1.Part1 = p6
  1070. weld1.C0 = CFrame.new(0, 0, 0)
  1071. ----------------------------------------------------
  1072. hitb = Instance.new("Part", char.JackoAxe2)
  1073. hitb.Name = "Thingy2"
  1074. hitb.Locked = true
  1075. hitb.BottomSurface = 0
  1076. hitb.CanCollide = false
  1077. hitb.Size = Vector3.new(0, 8, 6)
  1078. hitb.Transparency = 1
  1079. hitb.TopSurface = 0
  1080. weld2 = Instance.new("Weld", char.JackoAxe2)
  1081. weld2.Part0 = hitb
  1082. weld2.Part1 = p12
  1083. weld2.C0 = CFrame.new(0, .6, 1)
  1084.  
  1085.  
  1086. larm1 = Instance.new("Part",char)
  1087. larm1.Transparency = 0.5
  1088. larm1.BrickColor = BrickColor.new("Lime green")
  1089. larm1.Size = Vector3.new(2.1,4.1,2.1)
  1090. larm1.Position = Vector3.new(999,999,999)
  1091. larm1.Material = "SmoothPlastic"
  1092. larmhold = Instance.new("Weld",char)
  1093. larmhold.Part0 = larm
  1094. larmhold.Part1 = larm1
  1095. larmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1096. rarm1 = Instance.new("Part",char)
  1097. rarm1.Transparency = 0.5
  1098. rarm1.BrickColor = BrickColor.new("Lime green")
  1099. rarm1.Size = Vector3.new(2.1,4.1,2.1)
  1100. rarm1.Position = Vector3.new(999,999,999)
  1101. rarm1.Material = "SmoothPlastic"
  1102. rarmhold = Instance.new("Weld",char)
  1103. rarmhold.Part0 = rarm
  1104. rarmhold.Part1 = rarm1
  1105. rarmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1106. torso1 = Instance.new("Part",char)
  1107. torso1.Transparency = 0.5
  1108. torso1.BrickColor = BrickColor.new("Lime green")
  1109. torso1.Size = Vector3.new(4.1,4.1,2.1)
  1110. torso1.Position = Vector3.new(999,999,999)
  1111. torso1.Material = "SmoothPlastic"
  1112. torsohold = Instance.new("Weld",char)
  1113. torsohold.Part0 = torso
  1114. torsohold.Part1 = torso1
  1115. torsohold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1116. lleg1 = Instance.new("Part",char)
  1117. lleg1.Transparency = 0.5
  1118. lleg1.BrickColor = BrickColor.new("Lime green")
  1119. lleg1.Size = Vector3.new(2.1,4.1,2.1)
  1120. lleg1.Position = Vector3.new(999,999,999)
  1121. lleg1.Material = "SmoothPlastic"
  1122. lleghold = Instance.new("Weld",char)
  1123. lleghold.Part0 = lleg
  1124. lleghold.Part1 = lleg1
  1125. lleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1126. rleg1 = Instance.new("Part",char)
  1127. rleg1.Transparency = 0.5
  1128. rleg1.BrickColor = BrickColor.new("Lime green")
  1129. rleg1.Size = Vector3.new(2.1,4.1,2.1)
  1130. rleg1.Position = Vector3.new(999,999,999)
  1131. rleg1.Material = "SmoothPlastic"
  1132. rleghold = Instance.new("Weld",char)
  1133. rleghold.Part0 = rleg
  1134. rleghold.Part1 = rleg1
  1135. rleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1136. rhed1 = Instance.new("Part",char)
  1137. rhed1.Transparency = 0.5
  1138. rhed1.BrickColor = BrickColor.new("Lime green")
  1139. rhed1.Size = Vector3.new(4.3,2.6,2.6)
  1140. rhed1.Position = Vector3.new(999,999,999)
  1141. rhed1.Material = "SmoothPlastic"
  1142. rhedhold = Instance.new("Weld",char)
  1143. rhedhold.Part0 = hed
  1144. rhedhold.Part1 = rhed1
  1145. rhedhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  1146. rhedmesh1 = Instance.new("SpecialMesh",rhed1)
  1147. rhedmesh1.MeshType = "Head"
  1148. rhedmesh1.Scale = Vector3.new(1,1,1)
  1149.  
  1150.  
  1151.  
  1152.  
  1153. function BurningEff(part)
  1154. local eff1 = Instance.new("ParticleEmitter",part)
  1155. eff1.Size = NumberSequence.new(.1)
  1156. eff1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  1157. eff1.LightEmission = 1
  1158. eff1.Lifetime = NumberRange.new(1)
  1159. eff1.Speed = NumberRange.new(0)
  1160. eff1.Rate = 100
  1161. eff1.Texture = "rbxassetid://284205403"
  1162. eff1.Acceleration = Vector3.new(0,10,0)
  1163. eff1.Color = ColorSequence.new(Color3.new(0,255,0))
  1164. local eff2 = Instance.new("ParticleEmitter",part)
  1165. eff2.Size = NumberSequence.new(.1)
  1166. eff2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.2,0),NumberSequenceKeypoint.new(1,1)})
  1167. eff2.LightEmission = 1
  1168. eff2.Lifetime = NumberRange.new(1)
  1169. eff2.Speed = NumberRange.new(0)
  1170. eff2.Rate = 100
  1171. eff2.Texture = "rbxassetid://347504259"
  1172. eff2.Acceleration = Vector3.new(0,10,0)
  1173. eff2.Color = ColorSequence.new(Color3.new(0,255,0))
  1174. local eff3 = Instance.new("ParticleEmitter",part)
  1175. eff3.Size = NumberSequence.new(1)
  1176. eff3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(1,1)})
  1177. eff3.LightEmission = 1
  1178. eff3.Lifetime = NumberRange.new(1)
  1179. eff3.Speed = NumberRange.new(0)
  1180. eff3.Rate = 100
  1181. eff3.Texture = "rbxassetid://284205403"
  1182. eff3.Acceleration = Vector3.new(0,10,0)
  1183. eff3.Color = ColorSequence.new(Color3.new(0,255,0))
  1184. end
  1185.  
  1186. Face = 'rbxassetid://513836869'
  1187. local face=hed:FindFirstChild'face'
  1188. face.Texture = Face
  1189.  
  1190. face=Instance.new("Decal",hed)
  1191. face.Face="Front"
  1192. face.Texture="rbxassetid://513836869"
  1193.  
  1194. BurningEff(hed)
  1195. BurningEff(rarm)
  1196. BurningEff(larm)
  1197. BurningEff(torso)
  1198.  
  1199. LightOnBody = Instance.new("PointLight", hed)
  1200. LightOnBody.Brightness = 0.8
  1201. LightOnBody.Range = 20
  1202. LightOnBody.Color = Color3.new(0, 255, 0)
  1203.  
  1204.  
  1205. CV="Pastel blue"
  1206.  
  1207. local txt = Instance.new("BillboardGui", char)
  1208. txt.Adornee = hed
  1209. txt.Name = "_status"
  1210. txt.Size = UDim2.new(2, 0, 1.2, 0)
  1211. txt.StudsOffset = Vector3.new(-9, 8, 0)
  1212. local text = Instance.new("TextLabel", txt)
  1213. text.Size = UDim2.new(10, 0, 7, 0)
  1214. text.FontSize = "Size24"
  1215. text.TextScaled = true
  1216. text.TextTransparency = 0
  1217. text.BackgroundTransparency = 1
  1218. text.TextTransparency = 0
  1219. text.TextStrokeTransparency = 0
  1220. text.Font = "Antique"
  1221. text.TextStrokeColor3 = Color3.new(0,255,0)
  1222.  
  1223. v=Instance.new("Part")
  1224. v.Name = "ColorBrick"
  1225. v.Parent=p.Character
  1226. v.FormFactor="Symmetric"
  1227. v.Anchored=true
  1228. v.CanCollide=false
  1229. v.BottomSurface="Smooth"
  1230. v.TopSurface="Smooth"
  1231. v.Size=Vector3.new(10,5,3)
  1232. v.Transparency=1
  1233. v.CFrame=char.Torso.CFrame
  1234. v.BrickColor=BrickColor.new(CV)
  1235. v.Transparency=1
  1236. text.TextColor3 = Color3.new(0,0,0)
  1237. v.Shape="Block"
  1238. text.Text = "Critical Mass"
  1239.  
  1240.  
  1241.  
  1242.  
  1243. if GroundShake == true then
  1244. for i,v in pairs(workspace:GetChildren()) do
  1245. if v:IsA("Part") then
  1246. if v.Size.x > 150 then
  1247. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-1,1)),rad(math.random(-1,1)),rad(math.random(-1,1)))
  1248. end
  1249. end
  1250. end
  1251.  
  1252.  
  1253.  
  1254.  
  1255. end
  1256. if GroundShake2 == true then
  1257.  
  1258. for i,v in pairs(workspace:GetChildren()) do
  1259. if v:IsA("Part") then
  1260. if v.Size.x > 150 then
  1261. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-2,2)),rad(math.random(-2,2)),rad(math.random(-2,2)))
  1262. end
  1263. end
  1264. end
  1265.  
  1266. end
  1267.  
  1268.  
  1269.  
  1270. local num = 0
  1271.  
  1272.  
  1273.  
  1274. GroundWave2 = function()
  1275. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1276. Colors = {"White", "White"}
  1277. local wave3 = Instance.new("Part", char)
  1278. wave3.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1279. wave3.Anchored = true
  1280. wave3.Name = "Wave"
  1281. wave3.CanCollide = false
  1282. wave3.Locked = true
  1283. wave3.Size = Vector3.new(1, 1, 1)
  1284. wave3.TopSurface = "Smooth"
  1285. wave3.BottomSurface = "Smooth"
  1286. wave3.Transparency = 0.35
  1287. wave3.CFrame = HandCF
  1288. wm1 = Instance.new("SpecialMesh", wave3)
  1289. wm1.MeshId = "rbxassetid://3270017"
  1290. coroutine.wrap(function()
  1291. for i = 1, 30, 1 do
  1292. wm1.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1293. wave3.Size = wm1.Scale
  1294. wave3.CFrame = HandCF
  1295. wave3.Transparency = i/30
  1296. wait()
  1297. end
  1298. wait()
  1299. wave3:Destroy()
  1300. end)()
  1301. end
  1302. GroundWave3 = function()
  1303. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1304. Colors = {"White", "White"}
  1305. local wave2 = Instance.new("Part", char)
  1306. wave2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1307. wave2.Anchored = true
  1308. wave2.Name = "Wave"
  1309. wave2.CanCollide = false
  1310. wave2.Locked = true
  1311. wave2.Size = Vector3.new(1, 1, 1)
  1312. wave2.TopSurface = "Smooth"
  1313. wave2.BottomSurface = "Smooth"
  1314. wave2.Transparency = 0.35
  1315. wave2.CFrame = HandCF
  1316. wm2 = Instance.new("SpecialMesh", wave2)
  1317. wm2.MeshId = "rbxassetid://3270017"
  1318. coroutine.wrap(function()
  1319. for i = 1, 30, 1 do
  1320. wm2.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1321. wave2.Size = wm2.Scale
  1322. wave2.CFrame = HandCF
  1323. wave2.Transparency = i/30
  1324. wait()
  1325. end
  1326. wait()
  1327. wave2:Destroy()
  1328. end)()
  1329. end
  1330. GroundWave4 = function()
  1331. local HandCF = char["Beam"..num].CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1332. Colors = {"White", "White"}
  1333. local wave1 = Instance.new("Part", char)
  1334. wave1.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1335. wave1.Anchored = true
  1336. wave1.Name = "Wave"
  1337. wave1.CanCollide = false
  1338. wave1.Locked = true
  1339. wave1.Size = Vector3.new(1, 1, 1)
  1340. wave1.TopSurface = "Smooth"
  1341. wave1.BottomSurface = "Smooth"
  1342. wave1.Transparency = 0.35
  1343. wave1.CFrame = HandCF
  1344. wm3 = Instance.new("SpecialMesh", wave1)
  1345. wm3.MeshId = "rbxassetid://3270017"
  1346. coroutine.wrap(function()
  1347. for i = 1, 30, 1 do
  1348. wm3.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1349. wave1.Size = wm3.Scale
  1350. wave1.CFrame = HandCF
  1351. wave1.Transparency = i/30
  1352. wait()
  1353. end
  1354. wait()
  1355. wave1:Destroy()
  1356. end)()
  1357. end
  1358. --------------------------------------------------------------------------
  1359. --transform
  1360. GroundWave5 = function()
  1361. local HandCF = root.CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1362.  
  1363. Colors = {"Lime green", "Lime green"}
  1364.  
  1365.  
  1366. local wave11 = Instance.new("Part", char)
  1367. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1368. wave11.Anchored = true
  1369. wave11.Name = "Wave"
  1370. wave11.CanCollide = false
  1371. wave11.Locked = true
  1372. wave11.Size = Vector3.new(1, 1, 1)
  1373. wave11.TopSurface = "Smooth"
  1374. wave11.BottomSurface = "Smooth"
  1375. wave11.Transparency = 0.35
  1376. wave11.CFrame = HandCF
  1377. wm31 = Instance.new("SpecialMesh", wave11)
  1378. wm31.MeshId = "rbxassetid://3270017"
  1379. coroutine.wrap(function()
  1380. for i = 1, 30, 1 do
  1381. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1382. wave11.Size = wm31.Scale
  1383. wave11.CFrame = HandCF
  1384. wave11.Transparency = i/30
  1385. wait()
  1386. end
  1387. wait()
  1388. wave11:Destroy()
  1389. end)()
  1390. end
  1391. GroundWave6 = function()
  1392. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1393.  
  1394. Colors = {"Lime green", "Lime green"}
  1395.  
  1396. local wave111 = Instance.new("Part", char)
  1397. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1398. wave111.Anchored = true
  1399. wave111.Name = "Wave"
  1400. wave111.CanCollide = false
  1401. wave111.Locked = true
  1402. wave111.Size = Vector3.new(1, 1, 1)
  1403. wave111.TopSurface = "Smooth"
  1404. wave111.BottomSurface = "Smooth"
  1405. wave111.Transparency = 0.35
  1406. wave111.CFrame = HandCF
  1407. wm311 = Instance.new("SpecialMesh", wave111)
  1408. wm311.MeshId = "rbxassetid://3270017"
  1409. coroutine.wrap(function()
  1410. for i = 1, 30, 1 do
  1411. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1412. wave111.Size = wm311.Scale
  1413. wave111.CFrame = HandCF
  1414. wave111.Transparency = i/30
  1415. wait()
  1416. end
  1417. wait()
  1418. wave111:Destroy()
  1419. end)()
  1420. end
  1421. GroundWave7 = function()
  1422. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1423.  
  1424. Colors = {"Lime green", "Lime green"}
  1425. local wave1111 = Instance.new("Part", char)
  1426. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1427. wave1111.Anchored = true
  1428. wave1111.Name = "Wave"
  1429. wave1111.CanCollide = false
  1430. wave1111.Locked = true
  1431. wave1111.Size = Vector3.new(1, 1, 1)
  1432. wave1111.TopSurface = "Smooth"
  1433. wave1111.BottomSurface = "Smooth"
  1434. wave1111.Transparency = 0.35
  1435. wave1111.CFrame = HandCF
  1436. wm3111 = Instance.new("SpecialMesh", wave1111)
  1437. wm3111.MeshId = "rbxassetid://3270017"
  1438. coroutine.wrap(function()
  1439. for i = 1, 30, 1 do
  1440. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1441. wave1111.Size = wm3111.Scale
  1442. wave1111.CFrame = HandCF
  1443. wave1111.Transparency = i/30
  1444. wait()
  1445. end
  1446. wait()
  1447. wave1111:Destroy()
  1448. end)()
  1449. end
  1450. GroundWave8 = function()
  1451. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1452.  
  1453. Colors = {"Lime green", "Lime green"}
  1454. local wave11111 = Instance.new("Part", char)
  1455. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1456. wave11111.Anchored = true
  1457. wave11111.Name = "Wave"
  1458. wave11111.CanCollide = false
  1459. wave11111.Locked = true
  1460. wave11111.Size = Vector3.new(1, 1, 1)
  1461. wave11111.TopSurface = "Smooth"
  1462. wave11111.BottomSurface = "Smooth"
  1463. wave11111.Transparency = 0.35
  1464. wave11111.CFrame = HandCF
  1465. wm31111 = Instance.new("SpecialMesh", wave11111)
  1466. wm31111.MeshId = "rbxassetid://3270017"
  1467. coroutine.wrap(function()
  1468. for i = 1, 30, 1 do
  1469. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1470. wave11111.Size = wm31111.Scale
  1471. wave11111.CFrame = HandCF
  1472. wave11111.Transparency = i/30
  1473. wait()
  1474. end
  1475. wait()
  1476. wave11111:Destroy()
  1477. end)()
  1478. end
  1479. GroundWave9 = function()
  1480. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1481.  
  1482. Colors = {"Lime green", "Lime green"}
  1483. local wave111111 = Instance.new("Part", char)
  1484. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1485. wave111111.Anchored = true
  1486. wave111111.Name = "Wave"
  1487. wave111111.CanCollide = false
  1488. wave111111.Locked = true
  1489. wave111111.Size = Vector3.new(1, 1, 1)
  1490. wave111111.TopSurface = "Smooth"
  1491. wave111111.BottomSurface = "Smooth"
  1492. wave111111.Transparency = 0.35
  1493. wave111111.CFrame = HandCF
  1494. wm311111 = Instance.new("SpecialMesh", wave111111)
  1495. wm311111.MeshId = "rbxassetid://3270017"
  1496. coroutine.wrap(function()
  1497. for i = 1, 30, 1 do
  1498. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1499. wave111111.Size = wm311111.Scale
  1500. wave111111.CFrame = HandCF
  1501. wave111111.Transparency = i/30
  1502. wait()
  1503. end
  1504. wait()
  1505. wave111111:Destroy()
  1506. end)()
  1507. end
  1508. GroundWave10 = function()
  1509. local HandCF = root.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1510.  
  1511. Colors = {"Lime green", "Lime green"}
  1512. local wave1111111 = Instance.new("Part", char)
  1513. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1514. wave1111111.Anchored = true
  1515. wave1111111.Name = "Wave"
  1516. wave1111111.CanCollide = false
  1517. wave1111111.Locked = true
  1518. wave1111111.Size = Vector3.new(1, 1, 1)
  1519. wave1111111.TopSurface = "Smooth"
  1520. wave1111111.BottomSurface = "Smooth"
  1521. wave1111111.Transparency = 0.35
  1522. wave1111111.CFrame = HandCF
  1523. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  1524. wm3111111.MeshId = "rbxassetid://3270017"
  1525. coroutine.wrap(function()
  1526. for i = 1, 30, 1 do
  1527. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1528. wave1111111.Size = wm3111111.Scale
  1529. wave1111111.CFrame = HandCF
  1530. wave1111111.Transparency = i/30
  1531. wait()
  1532. end
  1533. wait()
  1534. wave1111111:Destroy()
  1535. end)()
  1536. end
  1537.  
  1538.  
  1539. local HandCF = CFrame.new(root.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1540.  
  1541. function nooutline(part)
  1542. part.TopSurface, part.BottomSurface, part.RightSurface, part.LeftSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  1543. end
  1544.  
  1545. function debris(cfremz, thepart, amt)
  1546. for j = 1, amt do
  1547. do
  1548. local pr = Instance.new("Part")
  1549. nooutline(pr)
  1550. pr.Name = "debrisobeb"
  1551. pr.Anchored = true
  1552. pr.BrickColor = thepart.BrickColor
  1553. pr.CanCollide = true
  1554. pr.Material = thepart.Material
  1555. pr.Transparency = thepart.Transparency
  1556. pr.Size = Vector3.new(math.random(16, 24), math.random(12, 16), math.random(16, 24))
  1557. pr.CFrame = cfremz * CFrame.Angles(0, math.rad(amt * j), 0) * CFrame.new(0, -5, math.random(18, 22)) * CFrame.Angles(math.rad(math.random(-30, -15)), math.rad(math.random(0, 1)), math.rad(math.random(0, 1)))
  1558. pr.Parent = workspace
  1559. game.Debris:AddItem(pr, 25)
  1560. delay(15, function()
  1561. if pr then
  1562. pr.CanCollide = false
  1563. pr.Anchored = false
  1564. end
  1565. end)
  1566. end
  1567. end
  1568. for c = 1, amt do
  1569. do
  1570. local pr2 = Instance.new("Part")
  1571. nooutline(pr2)
  1572. pr2.Name = "moredebr"
  1573. pr2.Anchored = false
  1574. pr2.BrickColor = thepart.BrickColor
  1575. pr2.CanCollide = false
  1576. pr2.Material = thepart.Material
  1577. pr2.Transparency = thepart.Transparency
  1578. pr2.Size = Vector3.new(math.random(8, 18), math.random(6, 18), math.random(8, 18))
  1579. pr2.CFrame = cfremz * CFrame.Angles(0, math.rad(30 * c), 0) * CFrame.new(0, -5, math.random(18, 22)) * CFrame.Angles(math.rad(math.random(-30, -15)), math.rad(math.random(0, 1)), math.rad(math.random(0, 1)))
  1580. pr2.Parent = workspace
  1581. pr2.Velocity = Vector3.new(math.random(-75, 75), math.random(120, 240), math.random(-75, 75))
  1582. pr2.RotVelocity = Vector3.new(math.random(-35, 35), math.random(-35, 35), math.random(-35, 35))
  1583. game.Debris:AddItem(pr2, 45)
  1584. delay(2, function()
  1585. pr2.CanCollide = true
  1586. wait(10)
  1587. if pr2 then
  1588. pr2.CanCollide = false
  1589. end
  1590. end)
  1591. end
  1592. end
  1593. end
  1594.  
  1595.  
  1596. function weld5(part0, part1, c0, c1)
  1597. weeld=Instance.new("Weld", part0)
  1598. weeld.Part0=part0
  1599. weeld.Part1=part1
  1600. weeld.C0=c0
  1601. weeld.C1=c1
  1602. return weeld
  1603. end
  1604.  
  1605.  
  1606. par,loc=workspace:FindPartOnRay(Ray.new(root.Position,(root.Position-(root.Position-Vector3.new(0,2,0))).unit*-500),root)
  1607.  
  1608.  
  1609. local acos = math.acos
  1610. local sqrt = math.sqrt
  1611. local Vec3 = Vector3.new
  1612. local fromAxisAngle = CFrame.fromAxisAngle
  1613.  
  1614. local function toAxisAngle(CFr)
  1615. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1616. local Angle = math.acos((R00+R11+R22-1)/2)
  1617. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1618. A = A == 0 and 0.00001 or A
  1619. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1620. B = B == 0 and 0.00001 or B
  1621. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1622. C = C == 0 and 0.00001 or C
  1623. local x = (R21-R12)/sqrt(A)
  1624. local y = (R02-R20)/sqrt(B)
  1625. local z = (R10-R01)/sqrt(C)
  1626. return Vec3(x,y,z),Angle
  1627. end
  1628.  
  1629. function ApplyTrig(Num,Func)
  1630. local Min,Max = Func(0),Func(1)
  1631. local i = Func(Num)
  1632. return (i-Min)/(Max-Min)
  1633. end
  1634.  
  1635. function LerpCFrame(CFrame1,CFrame2,Num)
  1636. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1637. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1638. end
  1639.  
  1640. function Crater(Torso,Radius)
  1641. Spawn(function()
  1642. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1643. local Ignore = {}
  1644. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1645. if v.Character ~= nil then
  1646. Ignore[#Ignore+1] = v.Character
  1647. end
  1648. end
  1649. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1650. if Hit == nil then return end
  1651. local Parts = {}
  1652. for i = 1,360,10 do
  1653. local P = Instance.new("Part",Torso.Parent)
  1654. P.Anchored = true
  1655. P.FormFactor = "Custom"
  1656. P.BrickColor = Hit.BrickColor
  1657. P.Material = Hit.Material
  1658. P.TopSurface = "Smooth"
  1659. P.BottomSurface = "Smooth"
  1660. P.CanCollide = false
  1661. P.Size = Vector3.new(10,20,20)*(math.random(80,100)/100)
  1662. 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)))
  1663. 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}
  1664. if math.random(0,5) == 0 then -- rubble
  1665. local P = Instance.new("Part",Torso.Parent)
  1666. P.Anchored = true
  1667. P.FormFactor = "Custom"
  1668. P.BrickColor = Hit.BrickColor
  1669. P.Material = Hit.Material
  1670. P.TopSurface = "Smooth"
  1671. P.CanCollide = false
  1672. P.BottomSurface = "Smooth"
  1673. P.Size = Vector3.new(4,4,4)*(math.random(80,100)/100)
  1674. 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)))
  1675. 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}
  1676. end
  1677. end
  1678. for i = 0,1,0.05 do
  1679. for i2,v in pairs(Parts) do
  1680. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1681. end
  1682. wait(0.02)
  1683. end
  1684. for i,v in pairs(Parts) do
  1685. if v[1].Size.X > 2.1 then
  1686. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1687. end
  1688. v[1].Anchored = false
  1689. end
  1690. for i = 0,1,0.05 do
  1691. for i2,v in pairs(Parts) do
  1692. v[1].Transparency = i
  1693. if i == 1 then
  1694. v[1]:Destroy()
  1695. elseif i >= 0.25 then
  1696. v[1].CanCollide = false
  1697. end
  1698. end
  1699. wait(0.02)
  1700. end
  1701. Parts = nil
  1702. end)
  1703. end
  1704.  
  1705.  
  1706.  
  1707.  
  1708.  
  1709. function FindNearestTorso(Position,Distance,SinglePlayer)
  1710. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1711. local List = {}
  1712. for i,v in pairs(workspace:GetChildren())do
  1713. if v:IsA("Model")then
  1714. if v:findFirstChild("Torso")then
  1715. if v ~= char then
  1716. if(v.Torso.Position -Position).magnitude <= Distance then
  1717. table.insert(List,v)
  1718. end
  1719. end
  1720. end
  1721. end
  1722. end
  1723. return List
  1724. end
  1725.  
  1726.  
  1727.  
  1728. function FindNearestHead(Position,Distance,SinglePlayer)
  1729. if SinglePlayer then return(SinglePlayer.Head.CFrame.p -Position).magnitude < Distance end
  1730. local List = {}
  1731. for i,v in pairs(workspace:GetChildren())do
  1732. if v:IsA("Model")then
  1733. if v:findFirstChild("Head")then
  1734. if v ~= char then
  1735. if(v.Head.Position -Position).magnitude <= Distance then
  1736. table.insert(List,v)
  1737. end
  1738. end
  1739. end
  1740. end
  1741. end
  1742. return List
  1743. end
  1744.  
  1745.  
  1746.  
  1747. function FindNearestRightArm(Position,Distance,SinglePlayer)
  1748. if SinglePlayer then return(SinglePlayer.RightArm.CFrame.p -Position).magnitude < Distance end
  1749. local List = {}
  1750. for i,v in pairs(workspace:GetChildren())do
  1751. if v:IsA("Model")then
  1752. if v:findFirstChild("Right Arm")then
  1753. if v ~= char then
  1754. if(v.RightArm.Position -Position).magnitude <= Distance then
  1755. table.insert(List,v)
  1756. end
  1757. end
  1758. end
  1759. end
  1760. end
  1761. return List
  1762. end
  1763.  
  1764.  
  1765. function FindNearestLeftArm(Position,Distance,SinglePlayer)
  1766. if SinglePlayer then return(SinglePlayer.LeftArm.CFrame.p -Position).magnitude < Distance end
  1767. local List = {}
  1768. for i,v in pairs(workspace:GetChildren())do
  1769. if v:IsA("Model")then
  1770. if v:findFirstChild("Left Arm")then
  1771. if v ~= char then
  1772. if(v.LeftArm.Position -Position).magnitude <= Distance then
  1773. table.insert(List,v)
  1774. end
  1775. end
  1776. end
  1777. end
  1778. end
  1779. return List
  1780. end
  1781.  
  1782.  
  1783.  
  1784. function FindNearestRightLeg(Position,Distance,SinglePlayer)
  1785. if SinglePlayer then return(SinglePlayer.RightLeg.CFrame.p -Position).magnitude < Distance end
  1786. local List = {}
  1787. for i,v in pairs(workspace:GetChildren())do
  1788. if v:IsA("Model")then
  1789. if v:findFirstChild("Right Leg")then
  1790. if v ~= char then
  1791. if(v.RightLeg.Position -Position).magnitude <= Distance then
  1792. table.insert(List,v)
  1793. end
  1794. end
  1795. end
  1796. end
  1797. end
  1798. return List
  1799. end
  1800.  
  1801.  
  1802. function FindNearestLeftLeg(Position,Distance,SinglePlayer)
  1803. if SinglePlayer then return(SinglePlayer.LeftLeg.CFrame.p -Position).magnitude < Distance end
  1804. local List = {}
  1805. for i,v in pairs(workspace:GetChildren())do
  1806. if v:IsA("Model")then
  1807. if v:findFirstChild("Left Leg")then
  1808. if v ~= char then
  1809. if(v.LeftLeg.Position -Position).magnitude <= Distance then
  1810. table.insert(List,v)
  1811. end
  1812. end
  1813. end
  1814. end
  1815. end
  1816. return List
  1817. end
  1818.  
  1819.  
  1820.  
  1821.  
  1822.  
  1823.  
  1824. mouse.KeyDown:connect(function(key)--------------------------------------------Roar
  1825. if key == "q" then
  1826. hum.WalkSpeed = 0
  1827. if Debounces.CanAttack == true then
  1828. Debounces.CanAttack = false
  1829. Debounces.NoIdl = true
  1830. Debounces.on = true
  1831. for i = 1, 30 do
  1832. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  1833. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  1834. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  1835. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  1836. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1837. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  1838. if Debounces.on == false then break end
  1839. rs:wait(6)
  1840. end
  1841. v = Instance.new("Sound")
  1842. v.SoundId = "rbxassetid://862467390"
  1843. v.Parent = char
  1844. v.Looped = false
  1845. v.Pitch = .94
  1846. v.Volume = 50
  1847. wait(.01)
  1848. v:Play()
  1849.  
  1850.  
  1851. local Shockwave = function()
  1852. local rng1 = Instance.new("Part", char)
  1853. rng1.Anchored = true
  1854. rng1.BrickColor = BrickColor.new("Lime green")
  1855. rng1.CanCollide = false
  1856. rng1.FormFactor = 3
  1857. rng1.Name = "Ring"
  1858. rng1.Size = Vector3.new(1, 1, 1)
  1859. rng1.Transparency = 0.35
  1860. rng1.TopSurface = 0
  1861. rng1.BottomSurface = 0
  1862. local rngm1 = Instance.new("SpecialMesh", rng1)
  1863. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1864. rngm1.Scale = Vector3.new(10, 10, 1)
  1865. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  1866. local Wave = Instance.new("Part", game.Workspace--[[?]])
  1867. Wave.Name = "Shockwave"
  1868. Wave.BrickColor = BrickColor.new("Lime green")
  1869. Wave.Size = Vector3.new(1, 1, 1)
  1870. Wave.Shape = "Ball"
  1871. Wave.CanCollide = false
  1872. Wave.Anchored = true
  1873. Wave.TopSurface = 0
  1874. Wave.BottomSurface = 0
  1875. Wave.Touched:connect(function(hit)
  1876. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  1877. local Occlude = true
  1878. local NotOccludes = {
  1879. char.Name;
  1880. "Wings";
  1881. "Scythe";
  1882. "Thingy";
  1883. "Thingy2"; -- put all of the names in a table pls
  1884. }
  1885. for i,v in pairs(NotOccludes) do
  1886. if hit.Parent.Name == v then
  1887. Occlude = false
  1888. end
  1889. end
  1890. --if hit.Parent.Name ~= char.Name and hit.Name ~= "Wings" and hit.Name ~= "Scythe" and hit.Name ~= "Thingy" and hit.Name ~= "Thingy2" and hit.Parent.Name ~= "Wings" and hit.Parent.Name ~= "Scythe" and hit.Parent.Name ~= "Thingy" and hit.Parent.Name ~= "Thingy2" then
  1891. if Occlude then
  1892. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  1893. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  1894. end
  1895. end
  1896. end)
  1897.  
  1898. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  1899.  
  1900. coroutine.wrap(function()
  1901. for i = 1, 20, 0.2 do
  1902. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  1903. rng1.Transparency = i/20
  1904. rng1.CFrame = Wave.CFrame
  1905. wait()
  1906. end
  1907. wait()
  1908. rng1:Destroy()
  1909. end)()
  1910.  
  1911. Delay(0, function()
  1912.  
  1913.  
  1914. for i = 1, 50, 1 do
  1915. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  1916. Wave.CFrame = char.Torso.CFrame
  1917. local t = i / 50
  1918. Wave.Transparency = t
  1919. wait()
  1920. end
  1921.  
  1922. Wave:Destroy()
  1923. end)
  1924. Delay(0, function()
  1925. while wait() do
  1926. if Wave ~= nil then
  1927. Wave.CFrame = char.Torso.CFrame
  1928. else
  1929. break
  1930. end
  1931. end
  1932. end)
  1933. end
  1934.  
  1935.  
  1936. new = Instance.new
  1937.  
  1938. v3 = Vector3.new
  1939.  
  1940.  
  1941. a21e = new("Part",char)
  1942. a21e.Name = "Beam"..num
  1943. a21e.Locked = true
  1944. a21e.Size = v3(1,1,1)
  1945. a21e.CanCollide = false
  1946. a21e.Position = v3(999,999,999)
  1947. a21e.BrickColor = BrickColor.new("Lime green")
  1948. a21e.Material = "Neon"
  1949. a21e.Transparency = 0
  1950. aa21e = new("SpecialMesh",a21e)
  1951. a21e.Anchored = true
  1952. a21e.Position = root.Position
  1953. aa21e.MeshType = "Sphere"
  1954. aa21e.Scale = v3(1,1,1)
  1955.  
  1956.  
  1957. coroutine.resume(coroutine.create(function()
  1958. BurningEff(FindNearestTorso(root.CFrame.p,35))
  1959. BurningEff(FindNearestHead(root.CFrame.p,35))
  1960. BurningEff(FindNearestRightArm(root.CFrame.p,35))
  1961. BurningEff(FindNearestLeftArm(root.CFrame.p,35))
  1962. BurningEff(FindNearestRightLeg(root.CFrame.p,35))
  1963. BurningEff(FindNearestLeftLeg(root.CFrame.p,35))
  1964.  
  1965. end))
  1966.  
  1967. for i,v in pairs(FindNearestTorso(root.CFrame.p,25))do
  1968. if v:FindFirstChild('Humanoid') then
  1969. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  1970. v.Humanoid.PlatformStand = true
  1971. v:FindFirstChild("Torso").Velocity = torso.CFrame.lookVector * 200
  1972. BurningEff(v:FindFirstChild('Torso'))
  1973.  
  1974. end
  1975. end
  1976.  
  1977.  
  1978. coroutine.resume(coroutine.create(function()
  1979.  
  1980. for i,v in pairs(workspace:children()) do
  1981. charr = v:FindFirstChild('Character')
  1982. for i = 1, 40 do
  1983. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1984. wait()
  1985. end
  1986.  
  1987. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  1988. end
  1989. end))
  1990.  
  1991.  
  1992.  
  1993.  
  1994. coroutine.resume(coroutine.create(function()
  1995. for i = 1, 40 do
  1996. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  1997. wait()
  1998. end
  1999. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2000. end))
  2001.  
  2002. coroutine.resume(coroutine.create(function()
  2003. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  2004. if par then
  2005. local cfremz = CFrame.new(loc)
  2006. debris(cfremz, par, 50)
  2007. end
  2008. end))
  2009.  
  2010.  
  2011. Crater(root,155)
  2012. GroundWave5()
  2013. GroundWave6()
  2014. GroundWave7()
  2015. GroundWave8()
  2016. GroundWave9()
  2017. GroundWave10()
  2018.  
  2019. coroutine.resume(coroutine.create(function()
  2020. for i = 1,25 do
  2021. wait()
  2022. aa21e.Scale = aa21e.Scale + v3(5,5,5)
  2023. a21e.Transparency = a21e.Transparency + 0.04
  2024. end
  2025. end))
  2026.  
  2027.  
  2028.  
  2029.  
  2030. for i = 1, 30 do
  2031. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  2032. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  2033. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  2034. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  2035. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2036. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  2037. if Debounces.on == false then break end
  2038. rs:wait()
  2039. end
  2040. wait(4.4)
  2041. Debounces.NoIdl = false
  2042. hum.WalkSpeed = 5
  2043. Debounces.on = false
  2044. wait()
  2045. if Debounces.CanAttack == false then
  2046. Debounces.CanAttack = true
  2047. v:Destroy()
  2048. end
  2049. end
  2050. end
  2051. end)
  2052.  
  2053.  
  2054.  
  2055.  
  2056.  
  2057.  
  2058.  
  2059. ----------------------------------------------------
  2060. function weld5(part0, part1, c0, c1)
  2061. weeld=Instance.new("Weld", part0)
  2062. weeld.Part0=part0
  2063. weeld.Part1=part1
  2064. weeld.C0=c0
  2065. weeld.C1=c1
  2066. return weeld
  2067. end
  2068.  
  2069.  
  2070.  
  2071.  
  2072.  
  2073. Grab = false
  2074. mouse.KeyDown:connect(function(key)-----------------------------------------Grab
  2075. if key == "z" then
  2076. Debounces.on = true
  2077. Debounces.NoIdl = true
  2078. if Grab == false then
  2079. gp = nil
  2080. con1=larm.Touched:connect(function(hit) -- this is grab
  2081. ht = hit.Parent
  2082. hum1=ht:FindFirstChild('Humanoid')
  2083. if hum1 ~= nil then
  2084. hum1.PlatformStand=true
  2085. gp = ht
  2086. Grab = true
  2087. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  2088. asd.Parent = larm
  2089. asd.Name = "asd"
  2090. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  2091. elseif hum1 == nil then
  2092. con1:disconnect()
  2093. wait() return
  2094. end
  2095. end)
  2096.  
  2097.  
  2098. for i = 1, 18 do
  2099. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(36)), 0.2)
  2100. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.65,.9,-.5)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(20)), 0.2)
  2101. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2102. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  2103. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  2104. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.6) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.2)
  2105. if Debounces.on == false then break end
  2106. wait()
  2107. end
  2108. con1:disconnect()
  2109. Debounces.on = false
  2110. Debounces.NoIdl = false
  2111. wait(0.1)
  2112. ht:FindFirstChild("Torso").CanCollide = true
  2113. ht:FindFirstChild("RightArm").CanCollide = true
  2114. ht:FindFirstChild("LeftArm").CanCollide = true
  2115. ht:FindFirstChild("RightLeg").CanCollide = true
  2116. ht:FindFirstChild("LeftLeg").CanCollide = true
  2117. ht:FindFirstChild("Head").CanCollide = true elseif Grab == true then
  2118. Grab = false
  2119. for i = 1, 20 do
  2120. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.2)
  2121. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-20)), 0.1)
  2122. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2123. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2124. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2125. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2126. if Debounces.on == false then end
  2127. wait()
  2128. end
  2129. if gp ~= nil then
  2130. for i,v in pairs(larm:GetChildren()) do
  2131. if v.Name == "asd" and v:IsA("Weld") then
  2132. v:Remove()
  2133. end
  2134. end
  2135. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  2136. bv.maxForce = Vector3.new(400000, 400000, 400000)
  2137. bv.P = 125000000000000
  2138. bv.velocity = char.Head.CFrame.lookVector * 1000
  2139. for i = 1, 12 do
  2140. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.75)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(20)), 0.5)
  2141. if Debounces.on == false then end
  2142. wait()
  2143. end
  2144. ht=nil
  2145. Spawn(function()
  2146. wait(0.5)
  2147. bv:Destroy()
  2148. end)
  2149. Debounces.on = false
  2150. Debounces.NoIdl = false
  2151. elseif ht == nil then wait()
  2152. Grab = false
  2153. Debounces.on = false
  2154. Debounces.NoIdl = false
  2155. end
  2156. end
  2157. end
  2158. end)
  2159.  
  2160.  
  2161.  
  2162.  
  2163. mouse.KeyDown:connect(function(key)
  2164. if key == "c" then
  2165. if Debounces.CanAttack == true then
  2166. Debounces.CanAttack = false
  2167. Debounces.NoIdl = true
  2168. Debounces.on = true
  2169.  
  2170.  
  2171.  
  2172.  
  2173. GroundWaves5 = function()
  2174. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  2175.  
  2176. Colors = {"Lime green", "Lime green"}
  2177.  
  2178.  
  2179. local wave11 = Instance.new("Part", char)
  2180. wave11.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2181. wave11.Anchored = true
  2182. wave11.Name = "Wave"
  2183. wave11.CanCollide = false
  2184. wave11.Locked = true
  2185. wave11.Size = Vector3.new(1, 1, 1)
  2186. wave11.TopSurface = "Smooth"
  2187. wave11.BottomSurface = "Smooth"
  2188. wave11.Transparency = 0.35
  2189. wave11.CFrame = HandCF
  2190. wm31 = Instance.new("SpecialMesh", wave11)
  2191. wm31.MeshId = "rbxassetid://3270017"
  2192. coroutine.wrap(function()
  2193. for i = 1, 30, 1 do
  2194. wm31.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2195. wave11.Size = wm31.Scale
  2196. wave11.CFrame = HandCF
  2197. wave11.Transparency = i/30
  2198. wait()
  2199. end
  2200. wait()
  2201. wave11:Destroy()
  2202. end)()
  2203. end
  2204. GroundWaves6 = function()
  2205. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2206.  
  2207. Colors = {"Lime green", "Lime green"}
  2208.  
  2209. local wave111 = Instance.new("Part", char)
  2210. wave111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2211. wave111.Anchored = true
  2212. wave111.Name = "Wave"
  2213. wave111.CanCollide = false
  2214. wave111.Locked = true
  2215. wave111.Size = Vector3.new(1, 1, 1)
  2216. wave111.TopSurface = "Smooth"
  2217. wave111.BottomSurface = "Smooth"
  2218. wave111.Transparency = 0.35
  2219. wave111.CFrame = HandCF
  2220. wm311 = Instance.new("SpecialMesh", wave111)
  2221. wm311.MeshId = "rbxassetid://3270017"
  2222. coroutine.wrap(function()
  2223. for i = 1, 30, 1 do
  2224. wm311.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2225. wave111.Size = wm311.Scale
  2226. wave111.CFrame = HandCF
  2227. wave111.Transparency = i/30
  2228. wait()
  2229. end
  2230. wait()
  2231. wave111:Destroy()
  2232. end)()
  2233. end
  2234. GroundWaves7 = function()
  2235. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2236.  
  2237. Colors = {"Lime green", "Lime green"}
  2238. local wave1111 = Instance.new("Part", char)
  2239. wave1111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2240. wave1111.Anchored = true
  2241. wave1111.Name = "Wave"
  2242. wave1111.CanCollide = false
  2243. wave1111.Locked = true
  2244. wave1111.Size = Vector3.new(1, 1, 1)
  2245. wave1111.TopSurface = "Smooth"
  2246. wave1111.BottomSurface = "Smooth"
  2247. wave1111.Transparency = 0.35
  2248. wave1111.CFrame = HandCF
  2249. wm3111 = Instance.new("SpecialMesh", wave1111)
  2250. wm3111.MeshId = "rbxassetid://3270017"
  2251. coroutine.wrap(function()
  2252. for i = 1, 30, 1 do
  2253. wm3111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2254. wave1111.Size = wm3111.Scale
  2255. wave1111.CFrame = HandCF
  2256. wave1111.Transparency = i/30
  2257. wait()
  2258. end
  2259. wait()
  2260. wave1111:Destroy()
  2261. end)()
  2262. end
  2263. GroundWaves8 = function()
  2264. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2265.  
  2266. Colors = {"Lime green", "Lime green"}
  2267. local wave11111 = Instance.new("Part", char)
  2268. wave11111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2269. wave11111.Anchored = true
  2270. wave11111.Name = "Wave"
  2271. wave11111.CanCollide = false
  2272. wave11111.Locked = true
  2273. wave11111.Size = Vector3.new(1, 1, 1)
  2274. wave11111.TopSurface = "Smooth"
  2275. wave11111.BottomSurface = "Smooth"
  2276. wave11111.Transparency = 0.35
  2277. wave11111.CFrame = HandCF
  2278. wm31111 = Instance.new("SpecialMesh", wave11111)
  2279. wm31111.MeshId = "rbxassetid://3270017"
  2280. coroutine.wrap(function()
  2281. for i = 1, 30, 1 do
  2282. wm31111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2283. wave11111.Size = wm31111.Scale
  2284. wave11111.CFrame = HandCF
  2285. wave11111.Transparency = i/30
  2286. wait()
  2287. end
  2288. wait()
  2289. wave11111:Destroy()
  2290. end)()
  2291. end
  2292. GroundWaves9 = function()
  2293. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2294.  
  2295. Colors = {"Lime green", "Lime green"}
  2296. local wave111111 = Instance.new("Part", char)
  2297. wave111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2298. wave111111.Anchored = true
  2299. wave111111.Name = "Wave"
  2300. wave111111.CanCollide = false
  2301. wave111111.Locked = true
  2302. wave111111.Size = Vector3.new(1, 1, 1)
  2303. wave111111.TopSurface = "Smooth"
  2304. wave111111.BottomSurface = "Smooth"
  2305. wave111111.Transparency = 0.35
  2306. wave111111.CFrame = HandCF
  2307. wm311111 = Instance.new("SpecialMesh", wave111111)
  2308. wm311111.MeshId = "rbxassetid://3270017"
  2309. coroutine.wrap(function()
  2310. for i = 1, 30, 1 do
  2311. wm311111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2312. wave111111.Size = wm311111.Scale
  2313. wave111111.CFrame = HandCF
  2314. wave111111.Transparency = i/30
  2315. wait()
  2316. end
  2317. wait()
  2318. wave111111:Destroy()
  2319. end)()
  2320. end
  2321. GroundWaves10 = function()
  2322. local HandCF = ht:FindFirstChild("Torso").CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2323.  
  2324. Colors = {"Lime green", "Lime green"}
  2325. local wave1111111 = Instance.new("Part", char)
  2326. wave1111111.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2327. wave1111111.Anchored = true
  2328. wave1111111.Name = "Wave"
  2329. wave1111111.CanCollide = false
  2330. wave1111111.Locked = true
  2331. wave1111111.Size = Vector3.new(1, 1, 1)
  2332. wave1111111.TopSurface = "Smooth"
  2333. wave1111111.BottomSurface = "Smooth"
  2334. wave1111111.Transparency = 0.35
  2335. wave1111111.CFrame = HandCF
  2336. wm3111111 = Instance.new("SpecialMesh", wave1111111)
  2337. wm3111111.MeshId = "rbxassetid://3270017"
  2338. coroutine.wrap(function()
  2339. for i = 1, 30, 1 do
  2340. wm3111111.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  2341. wave1111111.Size = wm3111111.Scale
  2342. wave1111111.CFrame = HandCF
  2343. wave1111111.Transparency = i/30
  2344. wait()
  2345. end
  2346. wait()
  2347. wave1111111:Destroy()
  2348. end)()
  2349. end
  2350.  
  2351.  
  2352.  
  2353. for i = 1, 40 do
  2354. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2355. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2356. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2357. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2358. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2359. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2360. if Debounces.on == false then break end
  2361. wait()
  2362. end
  2363.  
  2364.  
  2365.  
  2366.  
  2367. coroutine.resume(coroutine.create(function()
  2368. for i=1, 5 do
  2369. p=Instance.new("Part")
  2370. p.FrontSurface=par.TopSurface
  2371. p.Material=par.Material
  2372. p.BottomSurface=0
  2373. p.Anchored=true p.CanCollide=false
  2374. p.BrickColor=par.BrickColor
  2375. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  2376. p.CFrame=CFrame.new(ht.Position-Vector3.new(math.random(-i,i)/1,3,math.random(-i,i)/1),loc+Vector3.new(0,1000-i*20,0))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)
  2377. p.Parent=char
  2378. game:GetService("Debris"):AddItem(p,2+i*.1)
  2379. if math.random(1,5)==5 then
  2380. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=30 f.RiseVelocity=0 f.Opacity=.025 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2381. end
  2382. end
  2383. for i=1, 5 do
  2384. for i=1, 1 do
  2385. p=Instance.new("Part")
  2386. p.TopSurface=par.TopSurface
  2387. p.BottomSurface=par.BottomSurface
  2388. p.Material=par.Material
  2389. p.BottomSurface=0
  2390. p.Anchored=false p.CanCollide=true
  2391. p.BrickColor=par.BrickColor
  2392. p.formFactor="Custom"
  2393. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  2394. p.CFrame=CFrame.new(ht.Position-Vector3.new(math.random(-4,4),-2,math.random(-4,4)))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/20,math.random(-10,10)/5,math.random(-10,10)/20)
  2395. p.Parent=char
  2396. game:GetService("Debris"):AddItem(p,3+i*.1)
  2397. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  2398. p.RotVelocity=p.Velocity
  2399. if math.random(1,5)==5 then
  2400. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=15 f.RiseVelocity=10 f.Opacity=.1 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2401. end
  2402. end
  2403. end
  2404. end))
  2405.  
  2406.  
  2407.  
  2408.  
  2409. coroutine.resume(coroutine.create(function()
  2410. wait(0.2)
  2411. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2412. if v:FindFirstChild('Humanoid') then
  2413. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2414. v.Humanoid.PlatformStand = true
  2415. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2416. end
  2417. end
  2418.  
  2419. GroundWaves5()
  2420. GroundWaves6()
  2421. GroundWaves7()
  2422. GroundWaves8()
  2423. GroundWaves9()
  2424. GroundWaves10()
  2425. end))
  2426. for i = 1, 20 do
  2427. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.6)
  2428. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2429. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2430. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2431. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2432. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2433. if Debounces.on == false then break end
  2434. wait()
  2435. end
  2436.  
  2437.  
  2438.  
  2439.  
  2440. if Debounces.CanAttack == false then
  2441. Debounces.CanAttack = true
  2442. Debounces.on = false
  2443. Debounces.NoIdl = false
  2444.  
  2445. end
  2446. end
  2447. end
  2448. end)
  2449.  
  2450.  
  2451. function newRay(start,face,range,wat)
  2452. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  2453. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  2454. return rey,hit,pos
  2455. end
  2456.  
  2457.  
  2458.  
  2459. fat = Instance.new("BindableEvent",script)
  2460. fat.Name = "Heartbeat"
  2461.  
  2462. script:WaitForChild("Heartbeat")
  2463.  
  2464. frame = 1/30
  2465. tf = 0
  2466. allowframeloss = false --if set to true will fire every frame it possibly can. This will result in multiple events happening at the same time whenever delta returns frame*2 or greater.
  2467. tossremainder = false --if set to true t will be set to 0 after Fire()-ing.
  2468. lastframe = tick()
  2469. script.Heartbeat:Fire() --ayy lmao
  2470.  
  2471. game:GetService("RunService").Heartbeat:connect(function(s,p) --herp derp
  2472. tf = tf + s
  2473. if tf >= frame then
  2474. if allowframeloss then
  2475. script.Heartbeat:Fire()
  2476. lastframe=tick()
  2477. else
  2478. --print("FIRED "..math.floor(t/frame).." FRAME(S)","REMAINDER "..(t - frame*(math.floor(t/frame))))
  2479. for i=1, math.floor(tf/frame) do
  2480. script.Heartbeat:Fire()
  2481. end
  2482. lastframe=tick()
  2483. end
  2484. if tossremainder then
  2485. tf = 0
  2486. else
  2487. tf = tf - frame * math.floor(tf/frame)
  2488. end
  2489. end
  2490. end)
  2491.  
  2492. function Swait(NUMBER)
  2493. if NUMBER == 0 or NUMBER == nil then
  2494. fat.Event:wait()
  2495. else
  2496. for i = 1, NUMBER do
  2497. fat.Event:wait()
  2498. end
  2499. end
  2500. end
  2501.  
  2502. function Landing2()
  2503. local rng = Instance.new("Part", char)
  2504. rng.Anchored = true
  2505. rng.BrickColor = BrickColor.new("Lime green")
  2506. rng.CanCollide = false
  2507. rng.FormFactor = 3
  2508. rng.Name = "Ring"
  2509. rng.Size = Vector3.new(1, 1, 1)
  2510. rng.Transparency = 0
  2511. rng.TopSurface = 0
  2512. rng.BottomSurface = 0
  2513. rng.Position = root.Position
  2514. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2515. local rngm = Instance.new("SpecialMesh", rng)
  2516. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2517. local rng2 = rng:Clone()
  2518. rng2.Parent = char
  2519. local rng2m = rng2.Mesh
  2520. local rng3 = rng:Clone()
  2521. rng3.Parent = char
  2522. local rng3m = rng3.Mesh
  2523. local rng4 = rng:Clone()
  2524. rng4.Parent = char
  2525. local rng4m = rng4.Mesh
  2526. local rng5 = rng:Clone()
  2527. rng5.Parent = char
  2528. local rng5m = rng5.Mesh
  2529. for i,v in pairs(FindNearestTorso(torso.CFrame.p,905))do
  2530. if v:FindFirstChild('Humanoid') then
  2531. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2532. v.Humanoid.PlatformStand = true
  2533. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2534. end
  2535. end
  2536. --MagicBlock(BrickColor.new("Lime green"),root.CFrame,15,15,15,5,5,5,0.015)
  2537. -- CFuncs["Sound"].Create("rbxassetid://187137517", rng, 10, 1)
  2538. --CFuncs["Sound"].Create("rbxassetid://597291504", rng, 5, 0.85)
  2539. ---CFuncs["Sound"].Create("rbxassetid://144699494", rng, 10, 1)
  2540. wait()
  2541. local scaler = 10
  2542. local scaler2 = 10
  2543. for i = 0,10,0.1 do
  2544. Swait()
  2545. rng.Transparency = rng.Transparency + 0.01
  2546. rng2.Transparency = rng2.Transparency + 0.01
  2547. rng3.Transparency = rng3.Transparency + 0.01
  2548. rng4.Transparency = rng4.Transparency + 0.01
  2549. rng5.Transparency = rng5.Transparency + 0.01
  2550. scaler = scaler - 0.125
  2551. scaler2 = scaler2 - 0.1
  2552. rng2m.Scale = rng2m.Scale + Vector3.new(scaler2/1.75, scaler2/1.75, 4)
  2553. rng3m.Scale = rng3m.Scale + Vector3.new(scaler2/1.5, scaler2/1.5, 3)
  2554. rng4m.Scale = rng4m.Scale + Vector3.new(scaler2/1.25, scaler2/1.25, 2)
  2555. rng5m.Scale = rng5m.Scale + Vector3.new(scaler2, scaler2, 1)
  2556. rng5.Size = rng5m.Scale
  2557. rng5.CFrame = rng.CFrame
  2558. rngm.Scale = rngm.Scale + Vector3.new(scaler2/2, scaler2/2, 5)
  2559. end
  2560. end
  2561. function Landing()
  2562. Grabee = torso
  2563. par,loc=workspace:FindPartOnRay(Ray.new(char.Torso.Position,(char.Torso.Position-(char.Torso.Position-Vector3.new(0,2,0))).unit*-500),char)
  2564. if par then
  2565. local cfremz = CFrame.new(loc)
  2566. debris(cfremz, par, 50)
  2567. end
  2568. for i=1, 50 do
  2569. p=Instance.new("Part")
  2570. p.FrontSurface=par.TopSurface
  2571. p.Material=par.Material
  2572. p.BottomSurface=0
  2573. p.Anchored=true p.CanCollide=false
  2574. p.BrickColor=par.BrickColor
  2575. p.Size=Vector3.new(math.random(15,35)/5,math.random(15,35)/5,math.random(4,5))
  2576. p.CFrame=CFrame.new(Grabee.Position-Vector3.new(math.random(-i,i)/1,3,math.random(-i,i)/1),loc+Vector3.new(0,1000-i*20,0))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/30,math.random(-10,10)/30,math.random(-10,10)/30)
  2577. p.Parent=char
  2578. game:GetService("Debris"):AddItem(p,2+i*.1)
  2579. if math.random(1,5)==5 then
  2580. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=30 f.RiseVelocity=0 f.Opacity=.025 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2581. end
  2582. end
  2583. for i=1, 50 do
  2584. for i=1, 1 do
  2585. p=Instance.new("Part")
  2586. p.TopSurface=par.TopSurface
  2587. p.BottomSurface=par.BottomSurface
  2588. p.Material=par.Material
  2589. p.BottomSurface=0
  2590. p.Anchored=false p.CanCollide=true
  2591. p.BrickColor=par.BrickColor
  2592. p.formFactor="Custom"
  2593. p.Size=Vector3.new(math.random(15,35)/12,math.random(13,35)/12,math.random(15,35)/12)
  2594. p.CFrame=CFrame.new(Grabee.Position-Vector3.new(math.random(-4,4),-2,math.random(-4,4)))*CFrame.fromEulerAnglesXYZ(math.random(-10,10)/20,math.random(-10,10)/5,math.random(-10,10)/20)
  2595. p.Parent=char
  2596. game:GetService("Debris"):AddItem(p,3+i*.1)
  2597. p.Velocity=Vector3.new(math.random(-10,10)*4,math.random(40,80),math.random(-10,10)*4)
  2598. p.RotVelocity=p.Velocity
  2599. if math.random(1,5)==5 then
  2600. coroutine.resume(coroutine.create(function(p) f=Instance.new("Smoke") f.Parent=p f.Size=15 f.RiseVelocity=10 f.Opacity=.1 Swait(.1) f.Enabled=false Swait(1) f:Remove() end),p)
  2601. end
  2602. end
  2603. Swait(.025)
  2604. end
  2605. end
  2606.  
  2607.  
  2608.  
  2609.  
  2610.  
  2611.  
  2612.  
  2613.  
  2614.  
  2615.  
  2616. mouse.KeyDown:connect(function(key)
  2617. if key == "m" then
  2618. hum.WalkSpeed = 0
  2619. if Debounces.CanAttack == true then
  2620. Debounces.CanAttack = false
  2621. Debounces.on = true
  2622. Debounces.NoIdl = true
  2623.  
  2624. for i = 1, 20 do
  2625. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,0.6,-.2) *CFrame.Angles (math.rad (45),math.rad(0),math.rad(32)), 0.2)
  2626. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1,0)*CFrame.Angles(math.rad (0),math.rad(0),math.rad(-20)), 0.2)
  2627. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad (- 8),math.rad(-40), math.rad(-8)),0.2)
  2628. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3.2, 0) * CFrame.Angles (math.rad (-50), math.rad(40), math.rad(0)), 0.2)
  2629. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.8, .4, -1.6) * CFrame.Angles (math.rad (30), 0, math.rad(20)), 0.2)
  2630. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.6, -2, 0) * CFrame.Angles (math.rad(- 10), math.rad(-40), math.rad(0)), 0.2)
  2631. if Debounces.on == false then break end
  2632. wait()
  2633.  
  2634. end
  2635. wait(1)
  2636. local rng = Instance.new("Part", char)
  2637. rng.Anchored = true
  2638. rng.BrickColor = BrickColor.new("Lime green")
  2639. rng.CanCollide = false
  2640. rng.FormFactor = 3
  2641. rng.Name = "Ring"
  2642. rng.Size = Vector3.new(1, 1, 1)
  2643. rng.Transparency = 0.35
  2644. rng.TopSurface = 0
  2645. rng.BottomSurface = 0
  2646. rng.Position = torso.Position - Vector3.new(0,2,0)
  2647. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2648. local rngm = Instance.new("SpecialMesh", rng)
  2649. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2650. rngm.Scale = Vector3.new(1, 1, 2)
  2651. l = Instance.new("Sound",char)
  2652. l.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2653. l.Looped = false
  2654. l.Pitch = .7
  2655. l.Volume = 1
  2656. l:Play()
  2657. coroutine.wrap(function()
  2658. for i = 1, 60, 2 do
  2659. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2660. rng.Transparency = i/60
  2661. wait()
  2662. end
  2663. wait()
  2664. rng:Destroy()
  2665. end)()
  2666. hum.WalkSpeed = 50
  2667. BV = Instance.new("BodyVelocity", torso)
  2668. BV.maxForce = Vector3.new(0,100000,0)
  2669. BV.P = 100000
  2670. BV.velocity = Vector3.new(0,999999,0)
  2671. for i = 1, 145 do
  2672. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.7)
  2673. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2674. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2675. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), math.rad(20)), 0.7)
  2676. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2677. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2678. if Debounces.on == false then break end
  2679. wait()
  2680. end
  2681. l:Destroy()
  2682. BV:Destroy()
  2683. coroutine.resume(coroutine.create(function()
  2684. wait(0.01)
  2685. l = Instance.new("Sound",char)
  2686. l.SoundId = "http://www.roblox.com/asset/?id=849891594"
  2687. l.Looped = false
  2688. l.Pitch = 1
  2689. l.Volume = 80
  2690. l:Play()
  2691. end))
  2692. for i = 1, 60 do
  2693. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-10)), 0.4)
  2694. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(10)), 0.4)
  2695. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2696. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2697. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2698. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.4)
  2699. if Debounces.on == false then break end
  2700. wait()
  2701. end
  2702. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2703. for i = 1, 30 do
  2704. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(-10)), 0.6)
  2705. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 3.2, -.5)*CFrame.Angles(math.rad(160),math.rad(0),math.rad(10)), 0.6)
  2706. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2707. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2708. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2709. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.6)
  2710. if Debounces.on == false then break end
  2711. wait()
  2712. end
  2713. end
  2714. Debounces.on = false
  2715. Debounces.NoIdl = false
  2716. local ry,ht,ps=nil,nil,nil
  2717. while ht==nil do
  2718. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  2719. wait()
  2720. end
  2721.  
  2722.  
  2723. coroutine.resume(coroutine.create(function()
  2724.  
  2725. for i,v in pairs(workspace:children()) do
  2726. charr = v:FindFirstChild('Character')
  2727. for i = 1, 15 do
  2728. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2729. wait()
  2730. end
  2731.  
  2732. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2733. end
  2734. end))
  2735.  
  2736.  
  2737.  
  2738.  
  2739. coroutine.resume(coroutine.create(function()
  2740. for i = 1, 15 do
  2741. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2742. wait()
  2743. end
  2744. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2745. end))
  2746.  
  2747.  
  2748. coroutine.resume(coroutine.create(function()
  2749. Landing2()
  2750. end))
  2751. Landing()
  2752. game:GetService("Debris"):AddItem(rng, 1)
  2753. game:GetService("Debris"):AddItem(rng2, 1)
  2754. game:GetService("Debris"):AddItem(rng3, 1)
  2755. game:GetService("Debris"):AddItem(rng4, 1)
  2756. game:GetService("Debris"):AddItem(rng5, 1)
  2757. hum.WalkSpeed = 5
  2758. if Debounces.CanAttack == false then
  2759. Debounces.CanAttack = true
  2760. end
  2761. end
  2762. end
  2763. end)
  2764.  
  2765.  
  2766.  
  2767. ptez = {0.7, 0.8, 0.9, 1}
  2768.  
  2769. function GroundPound()
  2770. local rng = Instance.new("Part", char)
  2771. rng.Anchored = true
  2772. rng.BrickColor = BrickColor.new("Lime green")
  2773. rng.CanCollide = false
  2774. rng.FormFactor = 3
  2775. rng.Name = "Ring"
  2776. rng.Size = Vector3.new(1, 1, 1)
  2777. rng.Transparency = 0.35
  2778. rng.TopSurface = 0
  2779. rng.BottomSurface = 0
  2780. rng.Position = larm.Position - Vector3.new(0,4,0)
  2781. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2782. local rngm = Instance.new("SpecialMesh", rng)
  2783. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2784. rngm.Scale = Vector3.new(1, 1, 2)
  2785. coroutine.resume(coroutine.create(function()
  2786. t = Instance.new("Sound",char)
  2787. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2788. t.Pitch = ptez[math.random(1,#ptez)]
  2789. t.Volume = 1
  2790. wait(.1)
  2791. t:Play()
  2792. end))
  2793. coroutine.wrap(function()
  2794. for i = 1, 60, 2 do
  2795. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2796. rng.Transparency = i/60
  2797. wait()
  2798. end
  2799. wait()
  2800. rng:Destroy()
  2801. end)()
  2802.  
  2803. end
  2804.  
  2805.  
  2806. function GroundPound2()
  2807. local rng = Instance.new("Part", char)
  2808. rng.Anchored = true
  2809. rng.BrickColor = BrickColor.new("Lime green")
  2810. rng.CanCollide = false
  2811. rng.FormFactor = 3
  2812. rng.Name = "Ring"
  2813. rng.Size = Vector3.new(1, 1, 1)
  2814. rng.Transparency = 0.35
  2815. rng.TopSurface = 0
  2816. rng.BottomSurface = 0
  2817. rng.Position = rarm.Position - Vector3.new(0,4,0)
  2818. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2819. local rngm = Instance.new("SpecialMesh", rng)
  2820. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2821. rngm.Scale = Vector3.new(1, 1, 2)
  2822. coroutine.resume(coroutine.create(function()
  2823. t = Instance.new("Sound",char)
  2824. t.SoundId = "http://www.roblox.com/asset/?id=142070127"
  2825. t.Pitch = ptez[math.random(1,#ptez)]
  2826. t.Volume = 1
  2827. wait(.1)
  2828. t:Play()
  2829. end))
  2830. coroutine.wrap(function()
  2831. for i = 1, 60, 2 do
  2832. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2833. rng.Transparency = i/60
  2834. wait()
  2835. end
  2836. wait()
  2837. rng:Destroy()
  2838. end)()
  2839. end
  2840.  
  2841.  
  2842.  
  2843.  
  2844. mouse.KeyDown:connect(function(key)
  2845. if key == "h" then
  2846. if Debounces.CanAttack == true then
  2847. Debounces.CanAttack = false
  2848. Debounces.NoIdl = true
  2849. Debounces.on = true
  2850.  
  2851.  
  2852.  
  2853.  
  2854. coroutine.resume(coroutine.create(function()
  2855.  
  2856. for i,v in pairs(workspace:children()) do
  2857. charr = v:FindFirstChild('Character')
  2858. for i = 1, 48 do
  2859. charr.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2860. wait()
  2861. end
  2862.  
  2863. charr.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2864. end
  2865. end))
  2866.  
  2867.  
  2868.  
  2869.  
  2870. coroutine.resume(coroutine.create(function()
  2871. for i = 1, 78 do
  2872. char.Humanoid.CameraOffset = Vector3.new(math.random(-0.7,0.7),math.random(-0.7,0.7),math.random(-0.7,0.7))
  2873. wait()
  2874. end
  2875. char.Humanoid.CameraOffset = Vector3.new(0,0,0)
  2876. end))
  2877.  
  2878.  
  2879. coroutine.resume(coroutine.create(function()
  2880. wait(0.1)
  2881. for i = 1,78 do
  2882. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2883. if v:FindFirstChild('Humanoid') then
  2884. v.Humanoid:TakeDamage(math.random(10000020,10000030))
  2885. v.Humanoid.PlatformStand = true
  2886. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2887. end
  2888. end
  2889. end
  2890. end))
  2891.  
  2892. GroundPound()
  2893. for i = 1, 5 do
  2894. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2895. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2896. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2897. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2898. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2899. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2900. if Debounces.on == false then break end
  2901. wait()
  2902. end
  2903. GroundPound2()
  2904. for i = 1, 5 do
  2905. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2906. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2907. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2908. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2909. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2910. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2911. if Debounces.on == false then break end
  2912. wait()
  2913. end
  2914. GroundPound()
  2915. for i = 1, 5 do
  2916. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2917. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2918. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2919. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2920. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2921. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2922. if Debounces.on == false then break end
  2923. wait()
  2924. end
  2925. GroundPound2()
  2926. for i = 1, 5 do
  2927. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2928. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2929. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2930. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2931. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2932. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2933. if Debounces.on == false then break end
  2934. wait()
  2935. end
  2936. GroundPound()
  2937. for i = 1, 5 do
  2938. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2939. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2940. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2941. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2942. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2943. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2944. if Debounces.on == false then break end
  2945. wait()
  2946. end
  2947. GroundPound2()
  2948. for i = 1, 5 do
  2949. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2950. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2951. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2952. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2953. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2954. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2955. if Debounces.on == false then break end
  2956. wait()
  2957. end
  2958. GroundPound()
  2959. for i = 1, 5 do
  2960. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2961. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2962. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2963. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2964. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2965. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2966. if Debounces.on == false then break end
  2967. wait()
  2968. end
  2969. GroundPound2()
  2970. for i = 1, 5 do
  2971. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2972. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2973. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2974. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2975. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2976. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2977. if Debounces.on == false then break end
  2978. wait()
  2979. end
  2980. GroundPound()
  2981. for i = 1, 5 do
  2982. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  2983. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2984. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2985. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2986. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2987. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2988. if Debounces.on == false then break end
  2989. wait()
  2990. end
  2991. GroundPound2()
  2992. for i = 1, 5 do
  2993. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  2994. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  2995. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2996. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2997. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2998. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2999. if Debounces.on == false then break end
  3000. wait()
  3001. end
  3002. GroundPound()
  3003. for i = 1, 5 do
  3004. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  3005. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  3006. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3007. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3008. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3009. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3010. if Debounces.on == false then break end
  3011. wait()
  3012. end
  3013. GroundPound2()
  3014. for i = 1, 5 do
  3015. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  3016. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  3017. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3018. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3019. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3020. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3021. if Debounces.on == false then break end
  3022. wait()
  3023. end
  3024. GroundPound()
  3025. for i = 1, 5 do
  3026. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  3027. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  3028. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3029. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3030. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3031. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3032. if Debounces.on == false then break end
  3033. wait()
  3034. end
  3035. GroundPound2()
  3036. for i = 1, 5 do
  3037. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  3038. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  3039. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3040. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3041. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3042. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3043. if Debounces.on == false then break end
  3044. wait()
  3045. end
  3046. GroundPound()
  3047. for i = 1, 5 do
  3048. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.7)
  3049. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  3050. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  3051. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  3052. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  3053. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3054. if Debounces.on == false then break end
  3055. wait()
  3056. end
  3057. GroundPound2()
  3058. for i = 1, 5 do
  3059. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.2,.9,-2.2)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-20)), 0.7)
  3060. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.7)
  3061. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  3062. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  3063. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  3064. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  3065. if Debounces.on == false then break end
  3066. wait()
  3067. end
  3068.  
  3069.  
  3070.  
  3071. if Debounces.CanAttack == false then
  3072. Debounces.CanAttack = true
  3073. Debounces.on = false
  3074. Debounces.NoIdl = false
  3075.  
  3076. end
  3077. end
  3078. end
  3079. end)
  3080.  
  3081.  
  3082.  
  3083.  
  3084. local animpose = "Idle"
  3085. local lastanimpose = "Idle"
  3086. local sine = 0
  3087. local change = 1
  3088. local val = 0
  3089. local ffing = false
  3090. ----------------------------------------------------
  3091. x = Instance.new("Sound", char)
  3092. x.SoundId = "http://www.roblox.com/asset/?id=187922823"
  3093. x.Looped = true
  3094. x.Volume = 30
  3095. x.Pitch = 1
  3096. local footsteps = false
  3097. -------------------------------
  3098. game:GetService("RunService").RenderStepped:connect(function()
  3099. if char.Humanoid.Jump == true then
  3100. jump = true
  3101. else
  3102. jump = false
  3103. end
  3104. char.Humanoid.FreeFalling:connect(function(f)
  3105. if f then
  3106. ffing = true
  3107. else
  3108. ffing = false
  3109. end
  3110. end)
  3111. sine = sine + change
  3112. if jumpn == true then
  3113. animpose = "Jumping"
  3114. elseif ffing == true then
  3115. animpose = "Freefalling"
  3116. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3117. animpose = "Idle"
  3118. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3119. animpose = "Walking"
  3120. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3121. animpose = "Running"
  3122. end
  3123. if animpose ~= lastanimpose then
  3124. sine = 0
  3125. if Debounces.NoIdl == false then
  3126. if animpose == "Idle" then
  3127. for i = 1, 2 do
  3128. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  3129. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.2)
  3130. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3131. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3132. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3133. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3134. end
  3135. elseif animpose == "Walking" then
  3136. for i = 1, 2 do
  3137. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(0)), 0.2)
  3138. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  3139. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  3140. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  3141. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3142. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  3143. end
  3144. elseif animpose == "Running" then
  3145. for i = 1, 2 do
  3146. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-0), math.rad(-40), math.rad(0)), 0.2)
  3147. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.2, 0-1*math.cos(sine/4)/2)*CFrame.Angles(math.rad(50-80*math.cos(sine/8)/2), math.rad(0), math.rad(0-70*math.cos(sine/8)/2)), 0.2)
  3148. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+8*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3149. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+4*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3150. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3151. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3152. end
  3153. wait()
  3154. end
  3155. else
  3156. end
  3157. end
  3158. lastanimpose = animpose
  3159. if Debounces.NoIdl == false then
  3160. if animpose == "Idle" then
  3161. if stanceToggle == "Normal" then
  3162. change = 0.5
  3163. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(50),math.rad(0)), 0.2)
  3164. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  3165. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  3166. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3167. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.2)
  3168. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.2)
  3169. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3170. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3171. elseif stanceToggle == "Sitting" then
  3172. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(100-1*math.cos(sine/14)), math.rad(0), math.rad(20)), 0.2)
  3173. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2, .9, -1)*CFrame.Angles(math.rad(78+1*math.cos(sine/14)), math.rad(0), math.rad(50)), 0.2)
  3174. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.3) * CFrame.Angles(math.rad(-14+1*math.cos(sine/14)), math.rad(0), math.rad(0)),0.2)
  3175. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  3176. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10-1*math.cos(sine/14)), 0, 0), 0.2)
  3177. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-50-1*math.cos(sine/14)), 0, 0), 0.2)
  3178. end
  3179. elseif animpose == "Walking" then
  3180. if stanceToggle == "Normal" then
  3181. change = 1
  3182. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/-4, math.rad(1) + -math.sin(sine/14)/2, math.rad(30)), 0.1)
  3183. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.1)
  3184. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  3185. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  3186. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .1)
  3187. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .1)
  3188. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3189. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3190. end
  3191. elseif animpose == "Running" then
  3192. change = 1
  3193. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10-20*math.cos(sine/4)/2), math.rad(-40+10*math.cos(sine/4)/2), math.rad(50-10*math.cos(sine/4)/2)), 0.2)
  3194. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .5)*CFrame.Angles(math.rad(10+20*math.cos(sine/4)/2), math.rad(40-10*math.cos(sine/4)/2), math.rad(-50+10*math.cos(sine/4)/2)), 0.2)
  3195. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(6+6*math.cos(sine/4)/1.8), math.rad(0), math.rad(0)),0.2)
  3196. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2+0.2*math.cos(sine/4)/2, 0) * CFrame.Angles(math.rad(-14+10*math.cos(sine/4)/2), 0, math.rad(0)), 0.2)
  3197. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.44*math.cos(sine/8)/2.4, -.15 + math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + -math.sin(sine/8)/1.7, 0, 0), .4)
  3198. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.44*math.cos(sine/8)/2.4, -.15 + -math.sin(sine/8)/1.5) * CFrame.Angles(math.rad(-20) + math.sin(sine/8)/1.7, 0, 0), .4)
  3199. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3200. cor2.Weld.C0 = Lerp(cor2.Weld.C0, CFrame.new(0, -1.85, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  3201. end
  3202. end
  3203. if animpose == "Walking" then
  3204. if footsteps == false then
  3205. x:Play()
  3206. footsteps = true
  3207. end
  3208. x.Pitch = 0.9
  3209. elseif animpose == "Idle" then
  3210. x:Stop()
  3211. footsteps = false
  3212. elseif animpose == "Running" then
  3213. x.Pitch = 1.2
  3214. if footsteps == false then
  3215. x:Play()
  3216. footsteps = true
  3217. end
  3218. end
  3219. end)
  3220.  
  3221.  
  3222. -----------{{ Nemesis edited by crone }}--------------------
  3223. Player=game:GetService('Players').LocalPlayer
  3224. Character=Player.Character
  3225. Mouse=Player:GetMouse()
  3226. m=Instance.new('Model',Character)
  3227.  
  3228.  
  3229. local function weldBetween(a, b)
  3230. local weldd = Instance.new("ManualWeld")
  3231. weldd.Part0 = a
  3232. weldd.Part1 = b
  3233. weldd.C0 = CFrame.new()
  3234. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3235. weldd.Parent = a
  3236. return weldd
  3237. end
  3238.  
  3239. it=Instance.new
  3240.  
  3241. function nooutline(part)
  3242. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3243. end
  3244.  
  3245. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3246. local fp=it("Part")
  3247. fp.formFactor=formfactor
  3248. fp.Parent=parent
  3249. fp.Reflectance=reflectance
  3250. fp.Transparency=transparency
  3251. fp.CanCollide=false
  3252. fp.Locked=true
  3253. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3254. fp.Name=name
  3255. fp.Size=size
  3256. fp.Position=Character.Torso.Position
  3257. nooutline(fp)
  3258. fp.Material=material
  3259. fp:BreakJoints()
  3260. return fp
  3261. end
  3262.  
  3263. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3264. local mesh=it(Mesh)
  3265. mesh.Parent=part
  3266. if Mesh=="SpecialMesh" then
  3267. mesh.MeshType=meshtype
  3268. mesh.MeshId=meshid
  3269. end
  3270. mesh.Offset=offset
  3271. mesh.Scale=scale
  3272. return mesh
  3273. end
  3274.  
  3275. function weld(parent,part0,part1,c0,c1)
  3276. local weld=it("Weld")
  3277. weld.Parent=parent
  3278. weld.Part0=part0
  3279. weld.Part1=part1
  3280. weld.C0=c0
  3281. weld.C1=c1
  3282. return weld
  3283. end
  3284.  
  3285. Orb3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Lime green","Handle",Vector3.new(0.887265563, 0.887265563, 0.887265563))
  3286. Orb3weld=weld(m,Character["Right Arm"],Orb3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0678920746, -0.688210368, 1.24336052, -0.703631341, 0.00967200287, 0.710499585, -0.236187309, 0.939869761, -0.246698543, -0.670163155, -0.341395736, -0.659037471))
  3287. mesh("SpecialMesh",Orb3,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.890794039, 0.890788555, 0.890788138))
  3288. Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Lime green","Orb",Vector3.new(1.2214824, 1.2214824, 1.2214824))
  3289. Orbweld=weld(m,Orb3,Orb,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 0, 0, 1.00000012, 1.49011612e-008, 0, 1.49011612e-008, 1, 0, 0, 0, 1))
  3290. mesh("SpecialMesh",Orb,Enum.MeshType.Sphere,"",Vector3.new(0, 0, 0),Vector3.new(0.890794039, 0.890788555, 0.890788138))
  3291. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3292. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143494606, -1.25856304, 0.329597473, 1.00000012, 1.49011612e-008, 0, 0, 0.923942626, -0.382531196, 0, 0.382531166, 0.923942626))
  3293. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.615454078, 0.793611169))
  3294. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3295. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143055916, -0.777040958, -1.45310402, 1.00000012, 1.49011612e-008, 0, 0, 0.923905969, -0.382619679, 2.98023224e-008, 0.382619619, 0.923905969))
  3296. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.145765424, 0.372511417))
  3297. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 1.29332566))
  3298. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143642426, 1.01071525, 0.32174015, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923876107, -0.382691681, 0, 0.382691681, 0.923876166))
  3299. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 1))
  3300. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3301. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014380455, -0.705107212, -0.73434639, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923850656, -0.382753313, 0, 0.382753313, 0.923850656))
  3302. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.307727039, 0.3077268))
  3303. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3304. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144486427, -0.138548374, 1.73012638, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923772991, -0.38294062, 0, 0.38294059, 0.92377305))
  3305. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.453492314, 0.583061278))
  3306. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3307. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.01440382, -0.769747734, 0.573980331, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923933685, -0.382552862, -2.98023224e-008, 0.382552892, 0.923933744))
  3308. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.242942229))
  3309. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3310. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144219398, -0.733915329, 0.825391769, 1.00000012, 1.49011612e-008, 0, 0, 0.92392379, -0.382576406, 0, 0.382576406, 0.92392385))
  3311. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.242942333, 0.323922902))
  3312. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3313. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014424324, -1.38064384, -0.353040695, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923933685, -0.382552862, -2.98023224e-008, 0.382552892, 0.923933744))
  3314. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.890788734, 0.745022833))
  3315. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3316. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143566132, -1.12842798, -0.970887184, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, 0.923998177, -0.382396936, -2.98023224e-008, 0.382396907, 0.923998117))
  3317. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.3239232, 0.323922902))
  3318. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 1.25021493))
  3319. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144233704, 1.14006543, 2.09680176, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, 0.923719823, -0.383068979, 5.96046448e-008, 0.383068949, 0.923719764))
  3320. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.906984746, 1))
  3321. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3322. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144305229, -0.583024979, -1.07998466, 1.00000012, 1.49011612e-008, 0, 0, 0.923861682, -0.382726401, -2.98023224e-008, 0.382726401, 0.923861742))
  3323. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.583061755, 0.469688207))
  3324. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3325. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144481659, 0.825361252, 0.8253479, 1.00000012, 1.49011612e-008, 0, 0, 0.923942626, -0.382531196, 0, 0.382531166, 0.923942626))
  3326. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.259138525, 0.323922902))
  3327. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3328. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143418312, 0.86701417, 0.573102951, 1.00000012, 1.49011612e-008, 0, 3.7252903e-009, 0.923902094, -0.382628798, -2.98023224e-008, 0.382628769, 0.923902154))
  3329. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.242942229))
  3330. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3331. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144238472, 0.400093079, 1.79470062, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923721433, -0.383065045, 2.98023224e-008, 0.383065045, 0.923721433))
  3332. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.761219323, 0.728826642))
  3333. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 2.58665133))
  3334. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143995285, -0.913483143, -0.324422836, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923933685, -0.382552862, -2.98023224e-008, 0.382552892, 0.923933744))
  3335. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 1))
  3336. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3337. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143547058, -0.541141033, 1.62947273, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, 0.923827887, -0.382808328, -5.96046448e-008, 0.382808298, 0.923827887))
  3338. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.453492463, 0.356315255))
  3339. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 2.06932139, 0.887265563))
  3340. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144166946, 0.0481677055, 1.21985817, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, 0.923881888, -0.382678002, 0, 0.382677972, 0.923881888))
  3341. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 1, 0.566865087))
  3342. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3343. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143070221, -1.2364192, -0.755374908, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923951864, -0.382508934, 2.98023224e-008, 0.382508904, 0.923951805))
  3344. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.566865504, 0.161961451))
  3345. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3346. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143699646, -0.769845009, -0.475525856, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923891902, -0.382653743, -2.98023224e-008, 0.382653683, 0.923891902))
  3347. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.275334477))
  3348. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 1.33643687, 0.887265563))
  3349. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143666267, 0.0422482491, 0.896986008, 1.00000012, 1.49011612e-008, 0, 0, 0.923899233, -0.38263604, 0, 0.382636011, 0.923899233))
  3350. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 1, 0.161961451))
  3351. Part=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3352. Partweld=weld(m,Orb3,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143237114, 1.7868042, 2.95180702, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, 0.923719823, -0.383068979, 5.96046448e-008, 0.383068949, 0.923719764))
  3353. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.550669432, 0.842199624))
  3354. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3355. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143613815, -0.970600128, 1.38010454, 1.00000012, 1.49011612e-008, 0, 0, 0.382407755, 0.923993766, 1.86264515e-009, -0.923993766, 0.382407755))
  3356. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.3239232, 0.242942229))
  3357. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3358. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0143671036, 0.867209196, -0.314229965, -1.00000012, -1.49011612e-008, 0, 0, 0.923979223, -0.382442802, 0, -0.382442772, -0.923979282))
  3359. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196163, 0.340119064))
  3360. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3361. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143041611, 0.76987648, -0.315297127, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, -0.923951864, 0.382508934, -2.98023224e-008, -0.382508904, -0.923951805))
  3362. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.340119064))
  3363. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3364. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0141844749, -0.540944099, 1.8880825, 1.00000012, 1.49011612e-008, 0, 0, 0.923842251, -0.382773578, 0, 0.382773548, 0.923842311))
  3365. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.453492463, 0.226746053))
  3366. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3367. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0142354965, 0.769865513, -0.0939617157, -1.00000012, -1.49011612e-008, 0, 1.86264515e-009, -0.923998177, 0.382396936, -2.98023224e-008, 0.382396907, 0.923998117))
  3368. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.583061278))
  3369. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3370. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143609047, -1.25842857, 1.07650948, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923933685, -0.382552862, -2.98023224e-008, 0.382552892, 0.923933744))
  3371. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.615454078, 0.890788138))
  3372. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3373. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143790245, -1.65408182, 0.329648972, 1, -9.68575478e-007, -2.71201134e-006, -1.24797225e-007, 0.923948586, -0.382516891, 2.86102295e-006, 0.382516801, 0.923948526))
  3374. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.275334716, 0.793611169))
  3375. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3376. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0144429207, 0.633457184, -0.475393295, -1.00000012, -1.49011612e-008, 0, 0, -0.923926353, 0.382570535, 0, 0.382570565, 0.923926353))
  3377. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.145765424, 0.275334477))
  3378. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3379. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0142507553, 0.446650028, -0.734584808, -1.00000012, -1.49011612e-008, 0, 0, -0.923942626, 0.382531196, 0, 0.382531166, 0.923942626))
  3380. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.275334716, 0.3077268))
  3381. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 1.79628587, 0.887265563))
  3382. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0143270493, 0.57338047, 1.31251836, -1.00000012, -1.49011612e-008, 0, 2.98023224e-008, 0.383064389, 0.92372179, 0, 0.923721671, -0.383064389))
  3383. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 1, 0.518276632))
  3384. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3385. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146727562, -1.36502552, 1.12885427, 1.00000012, 1.49011612e-008, 0, 0, 0.382083118, 0.924128056, 0, -0.924127996, 0.382083118))
  3386. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.566865504, 0.323922902))
  3387. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3388. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0144696236, 0.467594624, -0.753448486, 1.00000012, 1.49011612e-008, 0, 0, -0.923969984, 0.382465094, -2.98023224e-008, -0.382465065, -0.923969984))
  3389. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.356315494, 0.161961451))
  3390. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3391. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014354229, -2.0562439, -0.353294373, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, 0.923947215, -0.38252008, 0, 0.38252008, 0.923947275))
  3392. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.631650209, 0.745022833))
  3393. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3394. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0143246651, 0.552667618, -0.753526688, -1.00000012, -1.49011612e-008, 0, 0, 0.923969984, -0.382465094, -2.98023224e-008, -0.382465065, -0.923969984))
  3395. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.356315523, 0.161961451))
  3396. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3397. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0142321587, 0.399935246, 2.41992378, 1.00000012, 1.49011612e-008, 0, 0, 0.923712194, -0.383087337, 0, 0.383087307, 0.923712134))
  3398. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.761219621, 0.680238068))
  3399. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3400. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0143885612, -0.93530941, -2.05617285, -1.00000012, -1.49011612e-008, 0, 0, 0.382489145, 0.92395997, 0, 0.92396009, -0.382489204))
  3401. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.566865504, 0.631649613))
  3402. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3403. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0142798424, -0.755475998, 1.63162708, 1.00000012, 1.49011612e-008, 0, -5.96046448e-008, 0.382526159, 0.923944771, 0, -0.923944652, 0.382526159))
  3404. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.323922902))
  3405. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3406. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0143070221, 0.573734283, -0.66204977, -1.00000012, -1.49011612e-008, 0, 2.98023224e-008, 0.382705569, 0.923870444, 3.7252903e-009, 0.923870444, -0.382705599))
  3407. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.242942333, 0.0809807107))
  3408. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 2.14117265))
  3409. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0142812729, 2.95166302, 3.10169697, -1.00000012, -1.49011612e-008, 0, 2.98023224e-008, 0.383064389, 0.92372179, 0, 0.923721671, -0.383064389))
  3410. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.842200279, 1))
  3411. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3412. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.014421463, 0.752266407, -0.573197365, -1.00000012, -1.49011612e-008, 0, -1.86264515e-009, 0.923974633, -0.382453978, 2.98023224e-008, -0.382453948, -0.923974633))
  3413. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.0971769989, 0.242942229))
  3414. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3415. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143566132, -0.864401817, 1.62925529, 1.00000012, 1.49011612e-008, 0, 0, 0.923869073, -0.382708788, 0, 0.382708758, 0.923869133))
  3416. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.275334716, 0.356315255))
  3417. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3418. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0142197609, -1.01076412, 0.396925926, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, -0.923881888, 0.382678002, 0, -0.382677972, -0.923881888))
  3419. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.16196157, 0.161961451))
  3420. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3421. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0142817497, -0.139033318, 2.05354595, 1.00000012, 1.49011612e-008, 0, -1.86264515e-009, 0.923675716, -0.383175105, 0, 0.383175135, 0.923675776))
  3422. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.453492463, 0.145765319))
  3423. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3424. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0144047737, 0.0443925858, -1.07949638, -1.00000012, -1.49011612e-008, 0, -3.7252903e-009, -0.923928738, 0.382564604, 0, 0.382564604, 0.923928857))
  3425. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.631650209, 0.469688356))
  3426. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 1.10651183))
  3427. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0143818855, -1.78685999, -2.02521324, 1.00000012, 1.49011612e-008, 0, 1.86264515e-009, -0.923719823, 0.383068979, -5.96046448e-008, -0.383068949, -0.923719764))
  3428. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962584, 0.550669432, 1))
  3429. Wedge=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Lime green","Wedge",Vector3.new(0.887265563, 0.887265265, 0.887265563))
  3430. Wedgeweld=weld(m,Orb3,Wedge,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0142259598, 1.14000654, 3.02338028, 1.00000012, 1.49011612e-008, 0, 0, 0.923712194, -0.383087337, 0, 0.383087307, 0.923712134))
  3431. mesh("SpecialMesh",Wedge,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.161962539, 0.906985044, 0.680238068))
  3432.  
  3433. Player=game:GetService('Players').LocalPlayer
  3434. Character=Player.Character
  3435. Mouse=Player:GetMouse()
  3436. m=Instance.new('Model',Character)
  3437.  
  3438.  
  3439. local function weldBetween(a, b)
  3440. local weldd = Instance.new("ManualWeld")
  3441. weldd.Part0 = a
  3442. weldd.Part1 = b
  3443. weldd.C0 = CFrame.new()
  3444. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3445. weldd.Parent = a
  3446. return weldd
  3447. end
  3448.  
  3449. it=Instance.new
  3450.  
  3451. function nooutline(part)
  3452. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3453. end
  3454.  
  3455. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3456. local fp=it("Part")
  3457. fp.formFactor=formfactor
  3458. fp.Parent=parent
  3459. fp.Reflectance=reflectance
  3460. fp.Transparency=transparency
  3461. fp.CanCollide=false
  3462. fp.Locked=true
  3463. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3464. fp.Name=name
  3465. fp.Size=size
  3466. fp.Position=Character.Torso.Position
  3467. nooutline(fp)
  3468. fp.Material=material
  3469. fp:BreakJoints()
  3470. return fp
  3471. end
  3472.  
  3473. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3474. local mesh=it(Mesh)
  3475. mesh.Parent=part
  3476. if Mesh=="SpecialMesh" then
  3477. mesh.MeshType=meshtype
  3478. mesh.MeshId=meshid
  3479. end
  3480. mesh.Offset=offset
  3481. mesh.Scale=scale
  3482. return mesh
  3483. end
  3484.  
  3485. function weld(parent,part0,part1,c0,c1)
  3486. local weld=it("Weld")
  3487. weld.Parent=parent
  3488. weld.Part0=part0
  3489. weld.Part1=part1
  3490. weld.C0=c0
  3491. weld.C1=c1
  3492. return weld
  3493. end
  3494.  
  3495. WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Maroon","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3496. WIngsweld=weld(m,Character["Torso"],WIngs,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.0159111, -1.20853615, -6.0207634, 0.866024971, 0.250001013, -0.433012992, -0.326577812, 0.938599944, -0.111252062, 0.378612816, 0.237759501, 0.894495845))
  3497. mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3498. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3499. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0145301819, -1.5309906, 1.12540245, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3500. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3501. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3502. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012840271, -2.20268631, 1.11525655, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3503. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3504. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3505. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.69621086, 2.74610329, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3506. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3507. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3508. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128326416, 3.14628506, 2.63505173, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.757224739, -0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3509. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3510. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3511. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 1.01108551, 2.51173878, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.0735907629, -0.997288585, 0, -0.997288525, 0.0735907704))
  3512. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3513. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3514. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, 0.396331787, 2.11554885, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.187033802, -0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  3515. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3516. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3517. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128250122, -0.0868225098, 1.57054901, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.434913546, -0.900472343, 0, -0.900472283, -0.434913576))
  3518. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3519. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3520. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, 2.42856979, 2.78783226, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  3521. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3522. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3523. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0128173828, -0.416015625, 0.917181015, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3524. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3525. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3526. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, 0.159194946, -1.12555099, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3527. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3528. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3529. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140304565, -3.38129997, -2.7243309, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3530. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3531. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3532. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, 1.33783531, 2.71401596, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3533. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3534. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lime green","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3535. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.78812122, 1.92715263, -2.28927612, 0.49999845, -0.565649092, 0.655776381, 0.565651298, 0.786692977, 0.24729073, -0.655774534, 0.247295752, 0.713305533))
  3536. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3537. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3538. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, 2.86511993, 0.140659332, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3539. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3540. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3541. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80046654, -4.2369194, -0.140804291, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3542. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3543. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3544. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80215645, -4.90860367, -0.150947571, -0.49999845, 0.565649092, -0.655776381, -0.433012724, 0.492487878, 0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3545. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3546. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3547. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80265999, -4.14035034, -0.33956337, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3548. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3549. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3550. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.22347641, 0.17275238, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3551. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3552. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3553. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, -4.81201553, -0.349707603, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3554. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3555. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3556. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.76852798, 0.339404106, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3557. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3558. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3559. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095482, 3.18227959, -0.357192993, -0.49999845, 0.565649092, -0.655776381, -2.98023224e-007, -0.757224619, -0.653154492, -0.866026402, -0.326576054, 0.378611445))
  3560. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3561. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3562. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094719, 3.23778915, -0.0931434631, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  3563. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3564. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3565. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80093193, 3.15235138, 0.421354294, -0.49999845, 0.565649092, -0.655776381, 0.612372398, -0.304515153, -0.729568839, -0.61237365, -0.766362667, -0.194130719))
  3566. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3567. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3568. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80095387, 3.00566101, 0.650568962, -0.49999845, 0.565649092, -0.655776381, 0.749999642, -0.0957909003, -0.654465079, -0.433014959, -0.819063544, -0.376341343))
  3569. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3570. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3571. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094147, 2.81278229, 0.830840111, -0.49999845, 0.565649092, -0.655776381, 0.836516857, 0.119463086, -0.534760058, -0.224145442, -0.815947115, -0.532906353))
  3572. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3573. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3574. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80094433, 2.57622147, 0.953166008, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  3575. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3576. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3577. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.963986397, 2.83012009, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3578. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3579. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3580. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -3.00747108, -2.84039688, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3581. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3582. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3583. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128250122, 3.25563431, 2.63391113, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.757224739, 0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3584. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3585. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3586. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128440857, 2.53445959, 2.8150177, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.900472701, 0.434912592, 0, -0.434912592, 0.90047276))
  3587. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3588. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3589. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 1.79145408, 2.79978943, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
  3590. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3591. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3592. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, -0.414859772, 1.02649212, 1, -1.86264515e-008, -5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
  3593. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3594. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3595. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128326416, 0.451953888, 2.2096405, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.94426012, -0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  3596. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3597. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3598. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128364563, 1.08917046, 2.58826447, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3599. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3600. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3601. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0128173828, -0.057434082, 1.67582893, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.826882601, -0.562374711, 0, 0.562374711, 0.82688272))
  3602. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3603. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3604. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140419006, -1.82085991, 1.02886391, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3605. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3606. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3607. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.014541626, -2.33579445, -2.83024597, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3608. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3609. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3610. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123214722, -1.149189, 1.03900719, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3611. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3612. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3613. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.01404953, -0.222623825, -1.03916359, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  3614. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3615. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3616. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80045509, -4.03017044, 0.229810715, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3617. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3618. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3619. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094051, 3.2564106, 0.190433502, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  3620. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3621. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3622. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.05438042, 0.688827515, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3623. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3624. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3625. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093765, 3.21963882, -0.358337402, 0.49999845, -0.565649092, 0.655776381, 2.98023224e-007, 0.757224619, 0.653154492, -0.866026402, -0.326576054, 0.378611445))
  3626. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3627. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3628. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80095196, 3.27416515, -0.0845680237, 0.49999845, -0.565649092, 0.655776381, 0.224145487, 0.815947115, 0.532906294, -0.836516857, -0.119463041, 0.534760058))
  3629. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3630. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3631. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094719, 2.57737732, 0.990515709, 0.49999845, -0.565649092, 0.655776381, 0.866026282, 0.326575905, -0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
  3632. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3633. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3634. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 3.0253334, 0.682353973, 0.49999845, -0.565649092, 0.655776381, 0.75000155, 0.66143465, -0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  3635. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3636. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3637. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.8026638, -4.42617226, -0.68901062, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3638. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3639. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3640. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80093575, -5.09785843, -0.699146271, 0.49999845, -0.565649092, 0.655776381, -0.612375081, -0.766361952, -0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3641. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3642. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3643. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80094624, 2.8235321, 0.866632462, 0.49999845, -0.565649092, 0.655776381, 0.836517394, 0.511432052, -0.196662098, -0.224143416, 0.646898985, 0.728890657))
  3644. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3645. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3646. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217552, -4.70182419, 0.219669342, -0.49999845, 0.565649092, -0.655776381, -0.836517692, -0.511431158, 0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3647. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3648. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3649. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80096149, 3.17957115, 0.446971893, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3650. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3651. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3652. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, 2.65835953, -0.229951859, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
  3653. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3654. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3655. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0123329163, -2.7096405, -2.71417046, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3656. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3657. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Bright red","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3658. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000423431396, 0.000568389893, 0.0205516815, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3659. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3660. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3661. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.397033691, 0.00685501099, 0.361976624, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3662. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3663. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  3664. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000408172607, 0.000564575195, 0.0234174728, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3665. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3666. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  3667. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000427246094, 0.00227355957, 0.0205459595, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3668. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3669. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  3670. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, 0.00173950195, 0.0229845047, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3671. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3672. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3673. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -3.40140152, -1.11369061, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3674. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3675. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3676. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 1.63386917, 1.11945939, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, -3.7252903e-009, -0.982352912, -0.187036932))
  3677. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3678. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3679. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122375488, -6.76598835, 0.57843399, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.608101726, 0.793859124, 0, -0.793859184, 0.608101785))
  3680. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3681. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3682. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.385643005, 0.0125732422, -0.371212006, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3683. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3684. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  3685. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115966797, -0.543251038, 1.7864542, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.434913546, 0.900472343, 0, -0.900472283, -0.434913576))
  3686. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3687. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  3688. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116043091, -1.59219742, 2.67541885, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
  3689. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  3690. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  3691. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0115814209, -2.22006989, 2.7550087, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3692. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  3693. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  3694. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.011592865, -1.02312088, 2.25215411, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.187033802, 0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  3695. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3696. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  3697. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0116004944, -0.851036072, 0.823085785, 1, -1.86264515e-008, -5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3698. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3699. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Lime green","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  3700. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0116004944, -4.12805939, 3.14675999, -1, 1.86264515e-008, 5.96046448e-008, -5.96046448e-008, 0.653154254, -0.757224917, 1.49011612e-008, -0.757224798, -0.653154254))
  3701. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3702. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3703. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, -1.75381827, 0.0856170654, 1, -1.86264515e-008, -5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, -0.187033504, 0.982353628))
  3704. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3705. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3706. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146331787, -1.7653625, 1.58002472, -1, 1.86264515e-008, 5.96046448e-008, 5.58793545e-009, 0.982353508, 0.187033504, 0, 0.187033504, -0.982353628))
  3707. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3708. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3709. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146217346, 1.84269714, 2.61419201, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.484992713, -0.874518216, 0, -0.874518156, -0.484992743))
  3710. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3711. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3712. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -1.39143753, -1.12134099, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, -0.187036917, 0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3713. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3714. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3715. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, -4.44521141, -2.69960213, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.484992713, 0.874518216, 0, 0.874518156, 0.484992743))
  3716. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3717. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3718. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146102905, -1.24437332, -1.12705016, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.187036917, -0.982352853, 3.7252903e-009, 0.982352912, 0.187036932))
  3719. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3720. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3721. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, 2.08576965, -1.09300995, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  3722. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3723. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3724. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.07419205, 2.7586441, 1, -1.86264515e-008, -5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, -2.98023224e-008, -0.329200208, -0.94426012))
  3725. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3726. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3727. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, 2.81254005, -2.72010994, 1, -1.86264515e-008, -5.96046448e-008, 0, -0.329198927, -0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3728. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3729. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3730. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122528076, -0.0657215118, 2.71253204, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3731. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3732. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3733. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.58002281, 2.72588158, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3734. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3735. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Lime green","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3736. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, -2.57005119, 2.71822929, 1, -1.86264515e-008, -5.96046448e-008, 0, 0.329198927, 0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3737. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3738. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3739. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, 4.16341972, -0.663871765, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.608101726, -0.793859124, 0, 0.793859184, -0.608101785))
  3740. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3741. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  3742. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0115814209, -4.30217743, 3.24400997, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.627695382, -0.778459072, -1.49011612e-008, -0.778458953, -0.627695441))
  3743. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3744. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Bright red","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3745. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99267197, 4.78870678, -0.0154352188, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3746. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3747. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3748. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.59518433, 4.79498959, 0.32599926, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3749. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3750. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  3751. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99268341, 4.7886982, -0.0125761032, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3752. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3753. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  3754. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99270248, 4.79042339, -0.0154447556, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3755. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3756. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Bright red","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  3757. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.99266815, 4.78983879, -0.0129785538, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3758. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3759. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3760. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80036545, 4.80890846, 2.25815582, 0.49999845, -0.565649092, 0.655776381, 0.176621437, -0.674706042, -0.716642678, 0.847824514, 0.474144399, -0.237446278))
  3761. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3762. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3763. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037117, -4.09732819, 0.144859314, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3764. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3765. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3766. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -6.10728073, 0.152519226, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3767. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3768. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3769. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037498, -0.499183655, 4.28593826, 0.49999845, -0.565649092, 0.655776381, -0.75000155, -0.66143465, 0.00131103396, 0.433011711, -0.492488772, -0.7549541))
  3770. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3771. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3772. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.802742, 1.36500931, 0.337909698, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3773. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3774. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3775. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80034828, 1.46158218, 0.139152527, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3776. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3777. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3778. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037212, -0.487609863, -2.62030792, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  3779. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3780. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3781. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80035973, 4.33980179, -0.146759033, 0.49999845, -0.565649092, 0.655776381, 0.433012724, -0.492487878, -0.754954159, 0.750001132, 0.661435425, -0.00130999088))
  3782. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3783. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3784. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -7.41146851, -2.34357452, 0.49999845, -0.565649092, 0.655776381, -0.176621437, 0.674706042, 0.716642678, -0.847824514, -0.474144399, 0.237446278))
  3785. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3786. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3787. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027401, 4.77935791, 2.0391655, -0.49999845, 0.565649092, -0.655776381, 0.847824097, 0.16527845, -0.50386256, -0.176623657, -0.807913423, -0.562209845))
  3788. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3789. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3790. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, -0.288840294, -2.52373123, 0.49999845, -0.565649092, 0.655776381, 0.433015227, 0.819063604, 0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  3791. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3792. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3793. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-2.60663605, 4.80071163, -0.407197952, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3794. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3795. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3796. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274963, -0.300402641, 4.18932724, -0.49999845, 0.565649092, -0.655776381, 0.433015227, 0.819063604, 0.376341105, 0.749999583, -0.0957911685, -0.654465318))
  3797. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3798. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3799. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80271721, -4.00077438, 0.34360981, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3800. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3801. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3802. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, 4.24324417, -0.345514297, -0.49999845, 0.565649092, -0.655776381, 0.750000596, -0.0957893208, -0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3803. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3804. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3805. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274391, -7.38192749, -2.1245718, -0.49999845, 0.565649092, -0.655776381, -0.847824097, -0.16527845, 0.50386256, 0.176623657, 0.807913423, 0.562209845))
  3806. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3807. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  3808. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971504, -3.44285583, 1.04676247, 0.49999845, -0.565649092, 0.655776381, -0.836516857, -0.119463086, 0.534760058, -0.224145442, -0.815947115, -0.532906353))
  3809. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3810. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  3811. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971695, -3.73348618, 0.58502388, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
  3812. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  3813. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3814. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.802742, -6.01073456, 0.351270676, -0.49999845, 0.565649092, -0.655776381, -0.750000596, 0.0957893208, 0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3815. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3816. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  3817. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79972649, -3.63246918, 0.787195206, 0.49999845, -0.565649092, 0.655776381, -0.749999642, 0.0957909003, 0.654465079, -0.433014959, -0.819063544, -0.376341343))
  3818. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3819. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  3820. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79971886, -1.31037903, 3.18079185, -0.49999845, 0.565649092, -0.655776381, 0.865550399, 0.301296592, -0.400053799, -0.0287068337, -0.767633677, -0.640245616))
  3821. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3822. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  3823. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.79972172, -1.1358223, 3.18273926, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  3824. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3825. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  3826. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.7997303, -3.74736404, 0.181629181, 0.49999845, -0.565649092, 0.655776381, -0.433012724, 0.492487878, 0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3827. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  3828. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  3829. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.79971409, -3.84326553, 0.859061241, 0.49999845, -0.565649092, 0.655776381, -0.866026282, -0.326575905, 0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  3830. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3831. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3832. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146179199, -0.439552307, 2.82862473, 1, -1.86264515e-008, -5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3833. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3834. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3835. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146255493, 2.43866539, -2.83621216, -1, 1.86264515e-008, 5.96046448e-008, 1.49011612e-008, 0.997288585, -0.073588416, -2.98023224e-008, -0.0735884532, -0.997288704))
  3836. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3837. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3838. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 2.19028473, 2.38479328, -1, 1.86264515e-008, 5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, 0.997288525, -0.0735907704))
  3839. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3840. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3841. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0146331787, 2.20183945, -0.719162941, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, 0.0735907629, 0.997288585, 0, -0.997288525, 0.0735907704))
  3842. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3843. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  3844. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140457153, -2.31531954, 2.80868149, -1, 1.86264515e-008, 5.96046448e-008, -5.58793545e-009, -0.982353508, -0.187033504, 0, -0.187033504, 0.982353628))
  3845. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  3846. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  3847. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.67030334, 2.75189209, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3848. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  3849. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3850. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0145950317, -6.44722939, 0.805679321, -1, 1.86264515e-008, 5.96046448e-008, 1.11758709e-008, -0.970244586, -0.242127106, 0, -0.242127106, 0.970244527))
  3851. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3852. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  3853. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140609741, -0.572654724, 1.89173317, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.826882601, 0.562374711, 0, 0.562374711, 0.82688272))
  3854. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3855. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  3856. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -1.07876587, 2.34624863, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.94426012, 0.329200208, 2.98023224e-008, 0.329200208, 0.94426012))
  3857. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3858. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3859. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -4.20618105, 2.84195328, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3860. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3861. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3862. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, -2.19620895, 2.83431244, -1, 1.86264515e-008, 5.96046448e-008, -1.49011612e-008, -0.997288585, 0.073588416, 2.98023224e-008, 0.0735884532, 0.997288704))
  3863. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3864. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3865. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0146179199, 3.84465933, -0.891094208, -1, 1.86264515e-008, 5.96046448e-008, -1.11758709e-008, 0.970244586, 0.242127106, 0, 0.242127106, -0.970244527))
  3866. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3867. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3868. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, 1.25204659, 1.03306961, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, 5.96046448e-008, 0.562375724, 0.826881766))
  3869. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3870. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3871. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122413635, -3.0195713, -1.02729225, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  3872. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3873. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3874. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0122451782, -1.66742134, 0.467433929, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  3875. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3876. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3877. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122451782, -1.67897987, 1.19819832, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, 0.826882541, -0.562374532))
  3878. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3879. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3880. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122489929, 1.50705338, 2.41267586, 1, -1.86264515e-008, -5.96046448e-008, 2.98023224e-008, 0.609420419, -0.792847335, 0, 0.792847276, 0.609420419))
  3881. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3882. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3883. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.012260437, -1.00959778, -1.03495979, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.826881826, 0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  3884. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3885. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3886. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0122528076, -4.10961151, -2.49808693, 1, -1.86264515e-008, -5.96046448e-008, -2.98023224e-008, -0.609420419, 0.792847335, 0, -0.792847276, -0.609420419))
  3887. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3888. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3889. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.012260437, -1.6261673, -1.04066467, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.826881826, -0.562375784, -5.96046448e-008, -0.562375724, -0.826881766))
  3890. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3891. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  3892. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0140533447, -0.852184296, 0.906645775, -1, 1.86264515e-008, 5.96046448e-008, 5.96046448e-008, -0.653154254, 0.757224917, -1.49011612e-008, 0.757224798, 0.653154254))
  3893. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3894. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3895. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80034447, -0.86977005, 4.07917023, 0.49999845, -0.565649092, 0.655776381, 0.224142939, -0.646899283, -0.728890419, 0.836517453, 0.511431754, -0.196662545))
  3896. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3897. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3898. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -7.09912872, -2.63088512, 0.49999845, -0.565649092, 0.655776381, -0.864648581, -0.283361614, 0.414836287, -0.0488298535, -0.774433494, -0.630768061))
  3899. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3900. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3901. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037403, -3.89056778, -0.225765228, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
  3902. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3903. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3904. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038261, -5.9005394, -0.218101501, 0.49999845, -0.565649092, 0.655776381, -0.836517692, -0.511431158, 0.196663141, 0.224142194, -0.6468997, -0.7288903))
  3905. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3906. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3907. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037498, -0.858222961, -2.41352463, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  3908. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3909. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3910. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80037594, 4.49656296, 2.54547501, 0.49999845, -0.565649092, 0.655776381, 0.864648581, 0.283361614, -0.414836287, 0.0488298535, 0.774433494, 0.630768061))
  3911. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3912. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3913. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.8027277, 0.0490112305, 4.47517967, -0.49999845, 0.565649092, -0.655776381, -0.612372398, 0.304515153, 0.729568839, 0.61237365, 0.766362667, 0.194130719))
  3914. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3915. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3916. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274391, 0.0605697632, -2.80956078, 0.49999845, -0.565649092, 0.655776381, -0.612372398, 0.304515153, 0.729568839, -0.61237365, -0.766362667, -0.194130719))
  3917. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3918. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3919. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80274677, 4.52905464, -0.69493866, -0.49999845, 0.565649092, -0.655776381, 0.612375081, 0.766361952, 0.194129199, 0.612371087, -0.304516733, -0.729569316))
  3920. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3921. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3922. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80274773, 1.65083885, 0.687343597, 0.49999845, -0.565649092, 0.655776381, 0.612375081, 0.766361952, 0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3923. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3924. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3925. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273438, 5.16016769, 1.79669189, -0.49999845, 0.565649092, -0.655776381, 0.390038431, 0.823161662, 0.412643731, 0.773221493, -0.0494567379, -0.632204533))
  3926. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3927. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3928. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(4.80038166, 4.13302612, 0.223876953, 0.49999845, -0.565649092, 0.655776381, 0.836517692, 0.511431158, -0.196663141, -0.224142194, 0.6468997, 0.7288903))
  3929. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3930. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3931. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80273819, -4.28659248, 0.693054199, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3932. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3933. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3934. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80276012, -6.29656792, 0.700717926, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3935. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3936. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  3937. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.78028393, 0.199310303, -0.49999845, 0.565649092, -0.655776381, -0.433015227, -0.819063604, -0.376341105, -0.749999583, 0.0957911685, 0.654465318))
  3938. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  3939. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  3940. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216694, -3.76069069, 0.610641479, -0.49999845, 0.565649092, -0.655776381, -0.612375081, -0.766361952, -0.194129199, -0.612371087, 0.304516733, 0.729569316))
  3941. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  3942. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3943. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80275726, -7.76274252, -1.88209915, -0.49999845, 0.565649092, -0.655776381, -0.390038431, -0.823161662, -0.412643731, -0.773221493, 0.0494567379, 0.632204533))
  3944. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3945. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  3946. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216217, -3.84443283, 0.870663643, -0.49999845, 0.565649092, -0.655776381, -0.866026282, -0.326575905, 0.378611505, 4.32133675e-007, 0.757224679, 0.653154492))
  3947. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3948. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  3949. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80217838, -3.45362091, 1.0825386, -0.49999845, 0.565649092, -0.655776381, -0.836517394, -0.511432052, 0.196662098, -0.224143416, 0.646898985, 0.728890657))
  3950. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3951. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  3952. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80216312, -3.65211487, 0.818996429, -0.49999845, 0.565649092, -0.655776381, -0.75000155, -0.66143465, 0.00131103396, -0.433011711, 0.492488772, 0.7549541))
  3953. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3954. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3955. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-4.80037689, 1.2548027, -0.231477737, -0.49999845, 0.565649092, -0.655776381, 0.836517692, 0.511431158, -0.196663141, 0.224142194, -0.6468997, -0.7288903))
  3956. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3957. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  3958. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.37387466, 0.0131607056, 3.24288177, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3959. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  3960. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  3961. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108032, -0.324279785, 3.24173164, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3962. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  3963. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  3964. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45108795, 0.0165786743, 3.23201942, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3965. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3966. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  3967. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(3.45106888, 0.370029449, 3.24633598, 3.87430191e-007, -0.653154194, 0.757224858, 1, -8.00937414e-007, -1.25169754e-006, 1.37090683e-006, 0.757224798, 0.653154254))
  3968. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  3969. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  3970. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458839417, 5.15813541, 3.2103529, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3971. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  3972. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  3973. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458843231, 4.46384811, 3.20575047, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3974. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  3975. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  3976. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.458824158, 4.80470562, 3.19602489, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3977. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3978. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  3979. Partweld=weld(m,WIngs,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.381649017, 4.80128193, 3.20690632, -0.866025805, -0.326576054, 0.378612459, 0.499999344, -0.565649092, 0.655775666, 1.11758709e-006, 0.757224619, 0.653154552))
  3980. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  3981.  
  3982. local ArtificiaLeftHipB = Instance.new("BindableEvent", script)
  3983. ArtificiaLeftHipB.Name = "Heartbeat"
  3984. script:WaitForChild("Heartbeat")
  3985.  
  3986. HandleB = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really red", "HandleB", Vector3.new(1.01999998, 0.410000026, 1.01999998))
  3987. 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))
  3988. FConnectorB1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really red", "FConnectorB1", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3989. 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))
  3990. FConnectorB2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really red", "FConnectorB2", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3991. 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))
  3992. FConnectorB3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really red", "FConnectorB3", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3993. 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))
  3994. FConnectorB4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really red", "FConnectorB4", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3995. 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))
  3996. FConnectorB5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really red", "FConnectorB5", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  3997. 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))
  3998. HitboxB = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 1, "Really black", "HitboxB", Vector3.new(1.22000003, 1.00999999, 1.01999998))
  3999. 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))
  4000. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  4001. 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))
  4002. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(1.01999998, 0.200000003, 1.01999998))
  4003. 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))
  4004. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.399999917, 0.620000005))
  4005. 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))
  4006. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  4007. 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))
  4008. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  4009. 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))
  4010. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(1.01999998, 0.200000003, 0.819999993))
  4011. 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))
  4012. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4013. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.620000005, 0.200000003, 0.819999993))
  4014. 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))
  4015. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4016. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.600000024, 0.200000003, 1))
  4017. 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))
  4018. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4019. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  4020. 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))
  4021. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4022. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.600000024, 0.200000003, 0.200000003))
  4023. 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))
  4024. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4025. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  4026. 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))
  4027. 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))
  4028. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  4029. 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))
  4030. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  4031. 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))
  4032. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  4033. 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))
  4034. 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))
  4035. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.600000024, 0.200000003))
  4036. 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))
  4037. 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))
  4038. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4039. 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))
  4040. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4041. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4042. 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))
  4043. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4044. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  4045. 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))
  4046. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4047. 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))
  4048. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4049. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  4050. 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))
  4051. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4052. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  4053. 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))
  4054. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4055. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.620000005))
  4056. 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))
  4057. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.200000003, 0.200000003))
  4058. 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))
  4059. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4060. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000036))
  4061. 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))
  4062. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4063. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.400000006))
  4064. 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))
  4065. mesh("CylinderMesh", Part, "", "", Vector3.new(0, 0, 0), Vector3.new(1, 1, 1))
  4066. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.810000002, 0.399999917, 0.210000008))
  4067. 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))
  4068. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.200000003, 0.99999994, 1.01999998))
  4069. 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))
  4070. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(0.810000002, 0.200000003, 0.210000008))
  4071. 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))
  4072. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "Part", Vector3.new(1.01999998, 0.610000014, 1.01999998))
  4073. 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))
  4074. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.200000003, 0.210000008))
  4075. 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))
  4076. Part = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really black", "Part", Vector3.new(0.200000003, 0.399999917, 0.210000008))
  4077. 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))
  4078. FHandleB1 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "FHandleB1", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  4079. 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))
  4080. FHandleB2 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "FHandleB2", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  4081. 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))
  4082. FHandleB3 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "FHandleB3", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  4083. 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))
  4084. FHandleB4 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "FHandleB4", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  4085. 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))
  4086. FHandleB5 = part(Enum.FormFactor.Custom, m, Enum.Material.Neon, 0, 0, "Really red", "FHandleB5", Vector3.new(0.200000003, 0.400000006, 0.200000003))
  4087. 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))
  4088.  
  4089. -------Radioactive party boi by goodguyaiden-------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement