Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 309.79 KB | None | 0 0
  1. local p = game.Players.SuperPRO199
  2. local char = p.Character
  3. local mouse = p:GetMouse()
  4. local larm = char["Left Arm"]
  5. local rarm = char["Right Arm"]
  6. local lleg = char["Left Leg"]
  7. local rleg = char["Right Leg"]
  8. local hed = char.Head
  9. local torso = char.Torso
  10. local hum = char.Humanoid
  11. local cam = game.Workspace.CurrentCamera
  12. local root = char.HumanoidRootPart
  13. local deb = false
  14. local shot = 0
  15. local l = game:GetService("Lighting")
  16. local rs = game:GetService("RunService").RenderStepped
  17. local stanceToggle = "Normal"
  18. math.randomseed(os.time())
  19. hum.WalkSpeed = 7
  20. char.Health:Destroy()
  21. hum.MaxHealth = 50000
  22. wait(0.01)
  23. hum.Health = 50000
  24. ----------------------------------------------------
  25. ----------------------------------------------------
  26. shirt = Instance.new("Shirt", char)
  27. shirt.Name = "Shirt"
  28. pants = Instance.new("Pants", char)
  29. pants.Name = "Pants"
  30. char.Shirt.ShirtTemplate = "rbxassetid://237906462"
  31. char.Pants.PantsTemplate = "rbxassetid://237906462"
  32. ----------------------------------------------------
  33. ----------------------------------------------------
  34. Debounces = {
  35. on = false;
  36. ks = false;
  37. CanAttack = true;
  38. CanJoke = true;
  39. NoIdl = false;
  40. Slashing = false;
  41. Slashed = false;
  42. Grabbing = false;
  43. Grabbed = false;
  44. }
  45. local Touche = {char.Name, }
  46. ----------------------------------------------------
  47. function lerp(a, b, t) -- Linear interpolation
  48. return a + (b - a)*t
  49. end
  50.  
  51. function slerp(a, b, t) --Spherical interpolation
  52. dot = a:Dot(b)
  53. if dot > 0.99999 or dot < -0.99999 then
  54. return t <= 0.5 and a or b
  55. else
  56. r = math.acos(dot)
  57. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  58. end
  59. end
  60.  
  61. function matrixInterpolate(a, b, t)
  62. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  63. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  64. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  65. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  66. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  67. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  68. local t = v1:Dot(v2)
  69. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  70. return CFrame.new()
  71. end
  72. return CFrame.new(
  73. v0.x, v0.y, v0.z,
  74. v1.x, v1.y, v1.z,
  75. v2.x, v2.y, v2.z,
  76. v3.x, v3.y, v3.z)
  77. end
  78. ----------------------------------------------------
  79. function genWeld(a,b)
  80. local w = Instance.new("Weld",a)
  81. w.Part0 = a
  82. w.Part1 = b
  83. return w
  84. end
  85. function weld(a, b)
  86. local weld = Instance.new("Weld")
  87. weld.Name = "W"
  88. weld.Part0 = a
  89. weld.Part1 = b
  90. weld.C0 = a.CFrame:inverse() * b.CFrame
  91. weld.Parent = a
  92. return weld;
  93. end
  94. ----------------------------------------------------
  95. function Lerp(c1,c2,al)
  96. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  97. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  98. for i,v in pairs(com1) do
  99. com1[i] = v+(com2[i]-v)*al
  100. end
  101. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  102. end
  103. ----------------------------------------------------
  104. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  105. local wld = Instance.new("Weld", wp1)
  106. wld.Part0 = wp0
  107. wld.Part1 = wp1
  108. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  109. end
  110. ----------------------------------------------------
  111. for i,v in pairs(char:children()) do
  112. if v:IsA("Hat") then
  113. v:Destroy()
  114. end
  115. end
  116. for i,v in pairs(hed:children()) do
  117. if v:IsA("Sound") then
  118. v:Destroy()
  119. end
  120. end
  121. ----------------------------------------------------
  122. function HasntTouched(plrname)
  123. local ret = true
  124. for _, v in pairs(Touche) do
  125. if v == plrname then
  126. ret = false
  127. end
  128. end
  129. return ret
  130. end
  131. ----------------------------------------------------
  132. larm.Size = larm.Size * 2
  133. rarm.Size = rarm.Size * 2
  134. lleg.Size = lleg.Size * 2
  135. rleg.Size = rleg.Size * 2
  136. torso.Size = torso.Size * 2
  137. hed.Size = hed.Size * 2
  138. root.Size = root.Size * 2
  139. ----------------------------------------------------
  140. newWeld(torso, larm, -1.5, 0.5, 0)
  141. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  142. newWeld(torso, rarm, 1.5, 0.5, 0)
  143. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  144. newWeld(torso, hed, 0, 1.5, 0)
  145. newWeld(torso, lleg, -0.5, -1, 0)
  146. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  147. newWeld(torso, rleg, 0.5, -1, 0)
  148. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  149. newWeld(root, torso, 0, -1, 0)
  150. torso.Weld.C1 = CFrame.new(0, -1, 0)
  151. hed.Transparency = 1
  152. ----------------------------------------------------
  153. lite = Instance.new("PointLight", torso)
  154. lite.Brightness = 100
  155. lite.Range = 15
  156. lite.Color = Color3.new(2, 2, 2)
  157. --[[local hed2 = hed:Clone()
  158. hed2.CanCollide = false
  159. hed2.Parent = char
  160. hed2:ClearAllChildren()
  161. hed2.Transparency = 1
  162. hed2.Name = "DARP"
  163. local w = Instance.new("Weld",hed2)
  164. w.Part0 = hed
  165. w.Part1 = hed2
  166. w.C0 = CFrame.new(0,0,-0.175)
  167. z=Instance.new("SurfaceGui",hed2)
  168. z.Enabled = true
  169. z.Face = "Front"
  170. z.Adornee = hed2
  171. z.CanvasSize = Vector2.new(100,100)
  172. local face = Instance.new("ImageLabel",z)
  173. face.Size = UDim2.new(1,-30,1,0)
  174. face.Position = UDim2.new(0,15,0,0)
  175. face.BackgroundTransparency = 1
  176. face.Image='rbxassetid://46282671']]--
  177. ----------------------------------------------------
  178. z = Instance.new("Sound", char)
  179. z.SoundId = "rbxassetid://242463565"--504618717
  180. z.Looped = true
  181. z.Pitch = 1
  182. z.Volume = 3
  183. wait(.001)
  184. z:Play()
  185. ----------------------------------------------------
  186.  
  187. local m = Instance.new("Model")
  188. m.Name = "Absolution"
  189. p1 = Instance.new("Part", m)
  190. p1.BrickColor = BrickColor.new("Bright blue")
  191. p1.FormFactor = Enum.FormFactor.Custom
  192. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  193. 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)
  194. p1.CanCollide = false
  195. p1.Locked = true
  196. p1.Elasticity = 0
  197. p1.BottomSurface = Enum.SurfaceType.Smooth
  198. p1.TopSurface = Enum.SurfaceType.Smooth
  199. b1 = Instance.new("SpecialMesh", p1)
  200. b1.MeshType = Enum.MeshType.Wedge
  201. b1.Name = "Mesh"
  202. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  203. p2 = Instance.new("Part", m)
  204. p2.BrickColor = BrickColor.new("Really black")
  205. p2.FormFactor = Enum.FormFactor.Custom
  206. p2.Size = Vector3.new(1, 2.9000001, 1)
  207. 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)
  208. p2.CanCollide = false
  209. p2.Locked = true
  210. p2.Elasticity = 0
  211. p2.BottomSurface = Enum.SurfaceType.Smooth
  212. p2.TopSurface = Enum.SurfaceType.Smooth
  213. b2 = Instance.new("BlockMesh", p2)
  214. b2.Name = "Mesh"
  215. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  216. p3 = Instance.new("Part", m)
  217. p3.BrickColor = BrickColor.new("Bright blue")
  218. p3.FormFactor = Enum.FormFactor.Custom
  219. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  220. 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)
  221. p3.CanCollide = false
  222. p3.Locked = true
  223. p3.Elasticity = 0
  224. p3.BottomSurface = Enum.SurfaceType.Smooth
  225. p3.TopSurface = Enum.SurfaceType.Smooth
  226. b3 = Instance.new("SpecialMesh", p3)
  227. b3.MeshType = Enum.MeshType.Wedge
  228. b3.Name = "Mesh"
  229. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  230. p4 = Instance.new("Part", m)
  231. p4.BrickColor = BrickColor.new("Bright blue")
  232. p4.FormFactor = Enum.FormFactor.Custom
  233. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  234. 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)
  235. p4.CanCollide = false
  236. p4.Locked = true
  237. p4.Elasticity = 0
  238. p4.BottomSurface = Enum.SurfaceType.Smooth
  239. p4.TopSurface = Enum.SurfaceType.Smooth
  240. b4 = Instance.new("SpecialMesh", p4)
  241. b4.MeshType = Enum.MeshType.Wedge
  242. b4.Name = "Mesh"
  243. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  244. p5 = Instance.new("Part", m)
  245. p5.BrickColor = BrickColor.new("Bright blue")
  246. p5.FormFactor = Enum.FormFactor.Custom
  247. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  248. 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)
  249. p5.CanCollide = false
  250. p5.Locked = true
  251. p5.Elasticity = 0
  252. p5.BottomSurface = Enum.SurfaceType.Smooth
  253. p5.TopSurface = Enum.SurfaceType.Smooth
  254. b5 = Instance.new("SpecialMesh", p5)
  255. b5.MeshType = Enum.MeshType.Wedge
  256. b5.Name = "Mesh"
  257. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  258. p6 = Instance.new("Part", m)
  259. p6.Name = "Handle"
  260. p6.BrickColor = BrickColor.new("Really black")
  261. p6.FormFactor = Enum.FormFactor.Custom
  262. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  263. 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)
  264. p6.CanCollide = false
  265. p6.Locked = true
  266. p6.Elasticity = 0
  267. p6.BottomSurface = Enum.SurfaceType.Smooth
  268. p6.TopSurface = Enum.SurfaceType.Smooth
  269. b6 = Instance.new("BlockMesh", p6)
  270. b6.Name = "Mesh"
  271. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  272. p7 = Instance.new("Part", m)
  273. p7.BrickColor = BrickColor.new("Bright blue")
  274. p7.FormFactor = Enum.FormFactor.Custom
  275. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  276. 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)
  277. p7.CanCollide = false
  278. p7.Locked = true
  279. p7.Elasticity = 0
  280. p7.BottomSurface = Enum.SurfaceType.Smooth
  281. p7.TopSurface = Enum.SurfaceType.Smooth
  282. b7 = Instance.new("SpecialMesh", p7)
  283. b7.MeshType = Enum.MeshType.Wedge
  284. b7.Name = "Mesh"
  285. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  286. p8 = Instance.new("Part", m)
  287. p8.BrickColor = BrickColor.new("Bright blue")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Really black")
  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("Bright blue")
  466. p21.FormFactor = Enum.FormFactor.Custom
  467. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  468. 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)
  469. p21.CanCollide = false
  470. p21.Locked = true
  471. p21.Elasticity = 0
  472. p21.BottomSurface = Enum.SurfaceType.Smooth
  473. p21.TopSurface = Enum.SurfaceType.Smooth
  474. b21 = Instance.new("SpecialMesh", p21)
  475. b21.MeshType = Enum.MeshType.Wedge
  476. b21.Name = "Mesh"
  477. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  478. w1 = Instance.new("Weld", p1)
  479. w1.Name = "Part_Weld"
  480. w1.Part0 = p1
  481. 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)
  482. w1.Part1 = p2
  483. 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)
  484. w2 = Instance.new("Weld", p2)
  485. w2.Name = "Part_Weld"
  486. w2.Part0 = p2
  487. 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)
  488. w2.Part1 = p3
  489. 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)
  490. w3 = Instance.new("Weld", p3)
  491. w3.Name = "Part_Weld"
  492. w3.Part0 = p3
  493. 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)
  494. w3.Part1 = p4
  495. 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)
  496. w4 = Instance.new("Weld", p4)
  497. w4.Name = "Part_Weld"
  498. w4.Part0 = p4
  499. 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)
  500. w4.Part1 = p5
  501. 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)
  502. w5 = Instance.new("Weld", p5)
  503. w5.Name = "Part_Weld"
  504. w5.Part0 = p5
  505. 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)
  506. w5.Part1 = p6
  507. 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)
  508. w6 = Instance.new("Weld", p6)
  509. w6.Name = "Part_Weld"
  510. w6.Part0 = p6
  511. 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)
  512. w6.Part1 = p7
  513. 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)
  514. w7 = Instance.new("Weld", p7)
  515. w7.Name = "Part_Weld"
  516. w7.Part0 = p7
  517. 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)
  518. w7.Part1 = p8
  519. 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)
  520. w8 = Instance.new("Weld", p8)
  521. w8.Name = "Part_Weld"
  522. w8.Part0 = p8
  523. 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)
  524. w8.Part1 = p9
  525. 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)
  526. w9 = Instance.new("Weld", p9)
  527. w9.Name = "Part_Weld"
  528. w9.Part0 = p9
  529. 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)
  530. w9.Part1 = p10
  531. 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)
  532. w10 = Instance.new("Weld", p10)
  533. w10.Name = "Part_Weld"
  534. w10.Part0 = p10
  535. 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)
  536. w10.Part1 = p11
  537. 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)
  538. w11 = Instance.new("Weld", p11)
  539. w11.Name = "Part_Weld"
  540. w11.Part0 = p11
  541. 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)
  542. w11.Part1 = p12
  543. 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)
  544. w12 = Instance.new("Weld", p12)
  545. w12.Name = "Part_Weld"
  546. w12.Part0 = p12
  547. 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)
  548. w12.Part1 = p13
  549. 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)
  550. w13 = Instance.new("Weld", p13)
  551. w13.Name = "Part_Weld"
  552. w13.Part0 = p13
  553. 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)
  554. w13.Part1 = p14
  555. 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)
  556. w14 = Instance.new("Weld", p14)
  557. w14.Name = "Part_Weld"
  558. w14.Part0 = p14
  559. 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)
  560. w14.Part1 = p15
  561. 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)
  562. w15 = Instance.new("Weld", p15)
  563. w15.Name = "Part_Weld"
  564. w15.Part0 = p15
  565. 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)
  566. w15.Part1 = p16
  567. 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)
  568. w16 = Instance.new("Weld", p16)
  569. w16.Name = "Part_Weld"
  570. w16.Part0 = p16
  571. 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)
  572. w16.Part1 = p17
  573. 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)
  574. w17 = Instance.new("Weld", p17)
  575. w17.Name = "Wedge_Weld"
  576. w17.Part0 = p17
  577. 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)
  578. w17.Part1 = p18
  579. 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)
  580. w18 = Instance.new("Weld", p18)
  581. w18.Name = "Wedge_Weld"
  582. w18.Part0 = p18
  583. 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)
  584. w18.Part1 = p19
  585. 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)
  586. w19 = Instance.new("Weld", p19)
  587. w19.Name = "Part_Weld"
  588. w19.Part0 = p19
  589. 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)
  590. w19.Part1 = p20
  591. 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)
  592. w20 = Instance.new("Weld", p20)
  593. w20.Name = "Part_Weld"
  594. w20.Part0 = p20
  595. 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)
  596. w20.Part1 = p21
  597. 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)
  598. m.Parent = char
  599. m:MakeJoints()
  600. ----------------------------------------------------
  601. local cor = Instance.new("Part", char.Absolution)
  602. cor.Name = "Thingy"
  603. cor.Locked = true
  604. cor.BottomSurface = 0
  605. cor.CanCollide = false
  606. cor.Size = Vector3.new(1, 13, 1)
  607. cor.Transparency = 1
  608. cor.TopSurface = 0
  609. corw = Instance.new("Weld", cor)
  610. corw.Part0 = rarm
  611. corw.Part1 = cor
  612. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  613. corw.C1 = CFrame.new(0, 0, 0)
  614. weld1 = Instance.new("Weld", char.Absolution)
  615. weld1.Part0 = cor
  616. weld1.Part1 = p6
  617. weld1.C0 = CFrame.new(0, 0, 0)
  618. ----------------------------------------------------
  619. hitb = Instance.new("Part", char.Absolution)
  620. hitb.Name = "Thingy2"
  621. hitb.Locked = true
  622. hitb.BottomSurface = 0
  623. hitb.CanCollide = false
  624. hitb.Size = Vector3.new(0, 8, 6)
  625. hitb.Transparency = 1
  626. hitb.TopSurface = 0
  627. weld2 = Instance.new("Weld", char.Absolution)
  628. weld2.Part0 = hitb
  629. weld2.Part1 = p12
  630. weld2.C0 = CFrame.new(0, .6, 1)
  631. ----------------------------------------------------
  632. local m = Instance.new("Model")
  633. m.Name = "Claw"
  634. p1 = Instance.new("Part", m)
  635. p1.BrickColor = BrickColor.new("Really black")
  636. p1.FormFactor = Enum.FormFactor.Custom
  637. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  638. p1.CFrame = CFrame.new(2.91120553, 6.79703379, -19.5339718, -0.205515206, -0.209888965, 0.955883741, 0.52527827, -0.847774804, -0.0732159689, 0.825741529, 0.487057745, 0.284480691)
  639. p1.CanCollide = false
  640. p1.Locked = true
  641. p1.BottomSurface = Enum.SurfaceType.Smooth
  642. p1.TopSurface = Enum.SurfaceType.Smooth
  643. b1 = Instance.new("BlockMesh", p1)
  644. b1.Name = "Mesh"
  645. p2 = Instance.new("WedgePart", m)
  646. p2.BrickColor = BrickColor.new("Really black")
  647. p2.Name = "Wedge"
  648. p2.FormFactor = Enum.FormFactor.Custom
  649. p2.Size = Vector3.new(3, 1, 0.5)
  650. p2.CFrame = CFrame.new(2.94872427, 6.13246727, -16.5004997, -5.96046448e-008, -4.47034836e-008, -1.00000358, -1.3615936e-005, 0.99999994, 4.47034836e-008, 1.00000358, 1.41002238e-005, 0)
  651. p2.CanCollide = false
  652. p2.Locked = true
  653. p2.BottomSurface = Enum.SurfaceType.Smooth
  654. p2.TopSurface = Enum.SurfaceType.Smooth
  655. p3 = Instance.new("Part", m)
  656. p3.BrickColor = BrickColor.new("Really black")
  657. p3.FormFactor = Enum.FormFactor.Custom
  658. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  659. p3.CFrame = CFrame.new(1.84869456, 6.79700661, -18.5422173, -5.06400113e-008, 1.07230136e-007, 1.00000715, -0.499905825, -0.866079628, -1.1125789e-007, 0.86608547, -0.499910295, -2.17476881e-008)
  660. p3.CanCollide = false
  661. p3.Locked = true
  662. p3.BottomSurface = Enum.SurfaceType.Smooth
  663. p3.TopSurface = Enum.SurfaceType.Smooth
  664. b2 = Instance.new("BlockMesh", p3)
  665. b2.Name = "Mesh"
  666. p4 = Instance.new("WedgePart", m)
  667. p4.BrickColor = BrickColor.new("Really black")
  668. p4.Name = "Wedge"
  669. p4.FormFactor = Enum.FormFactor.Custom
  670. p4.Size = Vector3.new(3, 1, 0.5)
  671. p4.CFrame = CFrame.new(0.0487272739, 4.13279819, -16.5004959, -1.62921424e-007, 1.78814929e-007, 1.00001431, -1.2755394e-005, -0.999999762, -1.78813849e-007, 1.00001431, -1.46627426e-005, -7.54998553e-008)
  672. p4.CanCollide = false
  673. p4.Locked = true
  674. p4.BottomSurface = Enum.SurfaceType.Smooth
  675. p4.TopSurface = Enum.SurfaceType.Smooth
  676. p5 = Instance.new("Part", m)
  677. p5.BrickColor = BrickColor.new("Really black")
  678. p5.FormFactor = Enum.FormFactor.Custom
  679. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  680. p5.CFrame = CFrame.new(1.84874606, 6.79701567, -19.6422844, -4.29027068e-007, 1.9046513e-007, 1.00001431, 0.500089467, -0.865973532, 2.18601315e-008, 0.865987122, 0.50009501, 3.78533827e-008)
  681. p5.CanCollide = false
  682. p5.Locked = true
  683. p5.BottomSurface = Enum.SurfaceType.Smooth
  684. p5.TopSurface = Enum.SurfaceType.Smooth
  685. b3 = Instance.new("BlockMesh", p5)
  686. b3.Name = "Mesh"
  687. p6 = Instance.new("Part", m)
  688. p6.BrickColor = BrickColor.new("Really black")
  689. p6.FormFactor = Enum.FormFactor.Custom
  690. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  691. p6.CFrame = CFrame.new(2.61122823, 6.79701757, -18.433939, -0.250001401, 0.0669622123, 0.965941966, -0.491382152, -0.868364573, -0.0669801831, 0.834303975, -0.491393685, 0.249996051)
  692. p6.CanCollide = false
  693. p6.Locked = true
  694. p6.BottomSurface = Enum.SurfaceType.Smooth
  695. p6.TopSurface = Enum.SurfaceType.Smooth
  696. b4 = Instance.new("BlockMesh", p6)
  697. b4.Name = "Mesh"
  698. p7 = Instance.new("Part", m)
  699. p7.BrickColor = BrickColor.new("Really black")
  700. p7.FormFactor = Enum.FormFactor.Custom
  701. p7.Size = Vector3.new(3, 1, 1.20000005)
  702. p7.CFrame = CFrame.new(2.59874034, 5.13276958, -16.5005379, -3.27825546e-007, -3.57627869e-007, -1.00001431, -0.000133868307, 0.99999994, 1.49011612e-008, 1.00001442, 0.000135900453, -5.96046448e-008)
  703. p7.CanCollide = false
  704. p7.Locked = true
  705. p7.BottomSurface = Enum.SurfaceType.Smooth
  706. p7.TopSurface = Enum.SurfaceType.Smooth
  707. b5 = Instance.new("BlockMesh", p7)
  708. b5.Name = "Mesh"
  709. p8 = Instance.new("Part", m)
  710. p8.BrickColor = BrickColor.new("Bright blue")
  711. p8.FormFactor = Enum.FormFactor.Symmetric
  712. p8.Size = Vector3.new(1, 1, 1)
  713. p8.CFrame = CFrame.new(1.84841466, 6.25537968, -20.3997307, -1.42129729e-005, 0.00428489037, -1.00000513, 0.965967655, 0.258660465, 0.00109496934, 0.258668512, -0.965972245, -0.00414247159)
  714. p8.CanCollide = false
  715. p8.Locked = true
  716. b6 = Instance.new("SpecialMesh", p8)
  717. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  718. b6.TextureId = ""
  719. b6.MeshType = Enum.MeshType.FileMesh
  720. b6.Name = "Mesh"
  721. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  722. p9 = Instance.new("Part", m)
  723. p9.BrickColor = BrickColor.new("Really black")
  724. p9.FormFactor = Enum.FormFactor.Custom
  725. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  726. p9.CFrame = CFrame.new(2.79691935, 3.68131566, -18.264101, -0.277095288, -0.561500967, -0.779720128, 0.631033003, 0.505603611, -0.58835566, 0.724593103, -0.655058563, 0.214224264)
  727. p9.CanCollide = false
  728. p9.Locked = true
  729. p9.BottomSurface = Enum.SurfaceType.Smooth
  730. p9.TopSurface = Enum.SurfaceType.Smooth
  731. b7 = Instance.new("BlockMesh", p9)
  732. b7.Name = "Mesh"
  733. p10 = Instance.new("Part", m)
  734. p10.BrickColor = BrickColor.new("Bright blue")
  735. p10.FormFactor = Enum.FormFactor.Symmetric
  736. p10.Size = Vector3.new(1, 1, 1)
  737. p10.CFrame = CFrame.new(3.09846497, 6.25236273, -20.2996788, -0.0669716895, 0.254178405, -0.964850724, 0.96595335, 0.258713901, 0.00110733509, 0.249903828, -0.93192625, -0.262850702)
  738. p10.CanCollide = false
  739. p10.Locked = true
  740. b8 = Instance.new("SpecialMesh", p10)
  741. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  742. b8.TextureId = ""
  743. b8.MeshType = Enum.MeshType.FileMesh
  744. b8.Name = "Mesh"
  745. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  746. p11 = Instance.new("Part", m)
  747. p11.BrickColor = BrickColor.new("Really black")
  748. p11.FormFactor = Enum.FormFactor.Custom
  749. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  750. p11.CFrame = CFrame.new(0.386122227, 6.79699421, -18.533905, 0.250022948, -0.0669473261, 0.965937555, -0.491377324, -0.868365645, 0.0670026764, 0.834300399, -0.491393894, -0.250007868)
  751. p11.CanCollide = false
  752. p11.Locked = true
  753. p11.BottomSurface = Enum.SurfaceType.Smooth
  754. p11.TopSurface = Enum.SurfaceType.Smooth
  755. b9 = Instance.new("BlockMesh", p11)
  756. b9.Name = "Mesh"
  757. p12 = Instance.new("Part", m)
  758. p12.BrickColor = BrickColor.new("Really black")
  759. p12.FormFactor = Enum.FormFactor.Custom
  760. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  761. p12.CFrame = CFrame.new(1.14871967, 6.79700947, -19.6422291, -4.76837158e-007, 2.83122063e-007, 1.00001442, 0.500089884, -0.865973473, 4.47034836e-008, 0.865987122, 0.500095367, 1.49011612e-008)
  762. p12.CanCollide = false
  763. p12.Locked = true
  764. p12.BottomSurface = Enum.SurfaceType.Smooth
  765. p12.TopSurface = Enum.SurfaceType.Smooth
  766. b10 = Instance.new("BlockMesh", p12)
  767. b10.Name = "Mesh"
  768. p13 = Instance.new("Part", m)
  769. p13.BrickColor = BrickColor.new("Really black")
  770. p13.FormFactor = Enum.FormFactor.Custom
  771. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  772. p13.CFrame = CFrame.new(1.14870512, 6.79699612, -18.5421638, -4.63888163e-008, 5.08347114e-007, 1.00001442, -0.499899268, -0.866083562, -2.18518963e-008, 0.866095126, -0.499908328, 3.78581007e-008)
  773. p13.CanCollide = false
  774. p13.Locked = true
  775. p13.BottomSurface = Enum.SurfaceType.Smooth
  776. p13.TopSurface = Enum.SurfaceType.Smooth
  777. b11 = Instance.new("BlockMesh", p13)
  778. b11.Name = "Mesh"
  779. p14 = Instance.new("Part", m)
  780. p14.BrickColor = BrickColor.new("Bright blue")
  781. p14.FormFactor = Enum.FormFactor.Symmetric
  782. p14.Size = Vector3.new(1, 1, 1)
  783. p14.CFrame = CFrame.new(1.14845455, 6.25537348, -20.3996773, -1.42545232e-005, 0.00425684778, -1.00000536, 0.965958476, 0.258694947, 0.00108788908, 0.258703023, -0.965963125, -0.00411536777)
  784. p14.CanCollide = false
  785. p14.Locked = true
  786. b12 = Instance.new("SpecialMesh", p14)
  787. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  788. b12.TextureId = ""
  789. b12.MeshType = Enum.MeshType.FileMesh
  790. b12.Name = "Mesh"
  791. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  792. p15 = Instance.new("Part", m)
  793. p15.BrickColor = BrickColor.new("Medium stone grey")
  794. p15.Transparency = 1
  795. p15.Name = "ArmPart"
  796. p15.FormFactor = Enum.FormFactor.Custom
  797. p15.Size = Vector3.new(2, 1, 1)
  798. p15.CFrame = CFrame.new(1.49875152, 5.13257265, -16.0004654, -2.99420208e-007, 4.39002179e-007, 1.00001442, 0.00011029192, -1, 0, 1.00001454, 0.000108176115, 4.42378223e-008)
  799. p15.CanCollide = false
  800. p15.Locked = true
  801. p15.BottomSurface = Enum.SurfaceType.Smooth
  802. p15.TopSurface = Enum.SurfaceType.Smooth
  803. b13 = Instance.new("BlockMesh", p15)
  804. b13.Name = "Mesh"
  805. p16 = Instance.new("Part", m)
  806. p16.BrickColor = BrickColor.new("Really black")
  807. p16.FormFactor = Enum.FormFactor.Custom
  808. p16.Size = Vector3.new(3, 1, 2.4000001)
  809. p16.CFrame = CFrame.new(1.49872661, 6.13250732, -16.5007095, -2.98894406e-007, 4.39006953e-007, 1.00001442, 0.000110270419, -1, 4.71678729e-012, 1.00001454, 0.000108154614, 4.37120207e-008)
  810. p16.CanCollide = false
  811. p16.Locked = true
  812. p16.BottomSurface = Enum.SurfaceType.Smooth
  813. p16.TopSurface = Enum.SurfaceType.Smooth
  814. b14 = Instance.new("BlockMesh", p16)
  815. b14.Name = "Mesh"
  816. p17 = Instance.new("Part", m)
  817. p17.BrickColor = BrickColor.new("Really black")
  818. p17.FormFactor = Enum.FormFactor.Custom
  819. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  820. p17.CFrame = CFrame.new(2.77308726, 3.37837577, -19.2558823, 0.396035522, -0.497440547, -0.771840453, -0.207958207, 0.770127177, -0.603040278, 0.894391596, 0.399337679, 0.201549783)
  821. p17.CanCollide = false
  822. p17.Locked = true
  823. p17.BottomSurface = Enum.SurfaceType.Smooth
  824. p17.TopSurface = Enum.SurfaceType.Smooth
  825. b15 = Instance.new("BlockMesh", p17)
  826. b15.Name = "Mesh"
  827. p18 = Instance.new("Part", m)
  828. p18.BrickColor = BrickColor.new("Bright blue")
  829. p18.FormFactor = Enum.FormFactor.Symmetric
  830. p18.Size = Vector3.new(1, 1, 1)
  831. p18.CFrame = CFrame.new(-0.0516102314, 6.25535488, -20.1996384, 0.066943109, -0.245838761, -0.967011333, 0.965954781, 0.258709013, 0.00110003352, 0.249906152, -0.934162259, 0.254788101)
  832. p18.CanCollide = false
  833. p18.Locked = true
  834. b16 = Instance.new("SpecialMesh", p18)
  835. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  836. b16.TextureId = ""
  837. b16.MeshType = Enum.MeshType.FileMesh
  838. b16.Name = "Mesh"
  839. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  840. p19 = Instance.new("Part", m)
  841. p19.BrickColor = BrickColor.new("Bright blue")
  842. p19.FormFactor = Enum.FormFactor.Symmetric
  843. p19.Size = Vector3.new(1, 1, 1)
  844. p19.CFrame = CFrame.new(2.43177533, 3.59484506, -20.0301056, 0.559401393, 0.116905749, 0.820629179, -0.685213447, -0.491872638, 0.537163019, 0.466440916, -0.862796843, -0.195047855)
  845. p19.CanCollide = false
  846. p19.Locked = true
  847. b17 = Instance.new("SpecialMesh", p19)
  848. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  849. b17.TextureId = ""
  850. b17.MeshType = Enum.MeshType.FileMesh
  851. b17.Name = "Mesh"
  852. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  853. p20 = Instance.new("Part", m)
  854. p20.BrickColor = BrickColor.new("Really black")
  855. p20.FormFactor = Enum.FormFactor.Custom
  856. p20.Size = Vector3.new(3, 1, 2.4000001)
  857. p20.CFrame = CFrame.new(1.49873698, 4.13275099, -16.500618, -2.38418579e-007, -4.47034836e-007, -1.00001454, -0.000133797526, 1.00000024, -2.98023224e-008, 1.00001466, 0.000135831535, -5.96046448e-008)
  858. p20.CanCollide = false
  859. p20.Locked = true
  860. p20.BottomSurface = Enum.SurfaceType.Smooth
  861. p20.TopSurface = Enum.SurfaceType.Smooth
  862. b18 = Instance.new("BlockMesh", p20)
  863. b18.Name = "Mesh"
  864. p21 = Instance.new("Part", m)
  865. p21.BrickColor = BrickColor.new("Really black")
  866. p21.FormFactor = Enum.FormFactor.Custom
  867. p21.Size = Vector3.new(3, 1, 1.19999993)
  868. p21.CFrame = CFrame.new(0.398718834, 5.13273239, -16.5005798, -2.22529991e-007, -4.17224015e-007, -1.00001454, -0.000133820766, 1.00000024, 5.9472427e-012, 1.00001466, 0.000135854774, -4.37120207e-008)
  869. p21.CanCollide = false
  870. p21.Locked = true
  871. p21.BottomSurface = Enum.SurfaceType.Smooth
  872. p21.TopSurface = Enum.SurfaceType.Smooth
  873. b19 = Instance.new("BlockMesh", p21)
  874. b19.Name = "Mesh"
  875. p22 = Instance.new("WedgePart", m)
  876. p22.BrickColor = BrickColor.new("Really black")
  877. p22.Name = "Wedge"
  878. p22.FormFactor = Enum.FormFactor.Custom
  879. p22.Size = Vector3.new(3, 1, 0.5)
  880. p22.CFrame = CFrame.new(2.94884443, 4.13282013, -16.5005474, 1.35156796e-007, 4.17202415e-007, -1.00001454, 1.19470278e-005, -1.00000024, -6.07483681e-013, -1.00001466, -1.39792755e-005, 4.37120278e-008)
  881. p22.CanCollide = false
  882. p22.Locked = true
  883. p22.BottomSurface = Enum.SurfaceType.Smooth
  884. p22.TopSurface = Enum.SurfaceType.Smooth
  885. p23 = Instance.new("Part", m)
  886. p23.BrickColor = BrickColor.new("Really black")
  887. p23.FormFactor = Enum.FormFactor.Custom
  888. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  889. p23.CFrame = CFrame.new(0.111123323, 6.79699326, -19.53405, 0.167916089, 0.220654398, 0.960804224, 0.593452632, -0.800862908, 0.0802069977, 0.787171543, 0.556722164, -0.265425682)
  890. p23.CanCollide = false
  891. p23.Locked = true
  892. p23.BottomSurface = Enum.SurfaceType.Smooth
  893. p23.TopSurface = Enum.SurfaceType.Smooth
  894. b20 = Instance.new("BlockMesh", p23)
  895. b20.Name = "Mesh"
  896. p24 = Instance.new("WedgePart", m)
  897. p24.BrickColor = BrickColor.new("Really black")
  898. p24.Name = "Wedge"
  899. p24.FormFactor = Enum.FormFactor.Custom
  900. p24.Size = Vector3.new(3, 1, 0.5)
  901. p24.CFrame = CFrame.new(0.0487362742, 6.13243389, -16.5004158, -0.000165194273, -0.00030361861, 1.00001442, 0.00304524973, 0.999995589, 0.000303655863, -1.00001013, 0.00304720178, -0.000164449215)
  902. p24.CanCollide = false
  903. p24.Locked = true
  904. p24.BottomSurface = Enum.SurfaceType.Smooth
  905. p24.TopSurface = Enum.SurfaceType.Smooth
  906. p25 = Instance.new("Part", m)
  907. p25.BrickColor = BrickColor.new("Bright blue")
  908. p25.FormFactor = Enum.FormFactor.Symmetric
  909. p25.Size = Vector3.new(1, 1, 1)
  910. p25.CFrame = CFrame.new(1.49870086, 5.13261318, -18.0007782, 1.20991026e-005, -1.00001454, -4.94604174e-005, -1.00000024, -1.16155716e-005, -0.000471511274, 0.000469659513, 4.96469293e-005, -1.00001466)
  911. p25.CanCollide = false
  912. p25.Locked = true
  913. p25.BottomSurface = Enum.SurfaceType.Smooth
  914. p25.TopSurface = Enum.SurfaceType.Smooth
  915. b21 = Instance.new("SpecialMesh", p25)
  916. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  917. b21.TextureId = ""
  918. b21.MeshType = Enum.MeshType.FileMesh
  919. b21.Name = "Mesh"
  920. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  921. p26 = Instance.new("Part", m)
  922. p26.BrickColor = BrickColor.new("Really black")
  923. p26.FormFactor = Enum.FormFactor.Symmetric
  924. p26.Size = Vector3.new(1, 1, 1)
  925. p26.CFrame = CFrame.new(1.49868095, 5.13287783, -17.5005093, 0.00030383491, 0.000164763711, -1.00001454, -0.999995768, -0.00302907336, -0.000303868263, -0.00303102471, 1.00001025, 0.000164022902)
  926. p26.CanCollide = false
  927. p26.Locked = true
  928. p26.BottomSurface = Enum.SurfaceType.Smooth
  929. p26.TopSurface = Enum.SurfaceType.Smooth
  930. b22 = Instance.new("SpecialMesh", p26)
  931. b22.MeshType = Enum.MeshType.Brick
  932. b22.Name = "Mesh"
  933. w1 = Instance.new("Weld", p1)
  934. w1.Name = "Wedge_Weld"
  935. w1.Part0 = p1
  936. w1.C0 = CFrame.new(13.1579618, 15.8875484, 3.27191186, -0.205515206, 0.52527827, 0.825741529, -0.209888965, -0.847774804, 0.487057745, 0.955883741, -0.0732159689, 0.284480691)
  937. w1.Part1 = p2
  938. w1.C1 = CFrame.new(16.5005817, -6.13223743, 2.94872212, -4.37113883e-008, -1.38580826e-005, 1, 0, 1, 1.38580826e-005, -1, 6.05756005e-013, -4.37113883e-008)
  939. w2 = Instance.new("Weld", p2)
  940. w2.Name = "Part_Weld"
  941. w2.Part0 = p2
  942. w2.C0 = CFrame.new(16.5006275, -6.13223362, 2.94873357, -5.96046448e-008, -1.3615936e-005, 1.00000358, -4.47034836e-008, 0.99999994, 1.41002238e-005, -1.00000358, 4.47034836e-008, 0)
  943. w2.Part1 = p3
  944. w2.C1 = CFrame.new(19.4568748, -3.38260746, -1.84870064, -4.37113883e-008, -0.499906301, 0.866079509, 0, -0.866079509, -0.499906301, 1, -2.18515979e-008, 3.78575393e-008)
  945. w3 = Instance.new("Weld", p3)
  946. w3.Name = "Wedge_Weld"
  947. w3.Part0 = p3
  948. w3.C0 = CFrame.new(19.456995, -3.38268948, -1.84870648, -5.06400113e-008, -0.499905825, 0.86608547, 1.07230136e-007, -0.866079628, -0.499910295, 1.00000715, -1.1125789e-007, -2.17476881e-008)
  949. w3.Part1 = p4
  950. w3.C1 = CFrame.new(16.5005646, 4.13256884, -0.0487511083, -4.37113883e-008, -1.37408551e-005, 1, 0, -1, -1.37408551e-005, 1, -6.00631849e-013, 4.37113883e-008)
  951. w4 = Instance.new("Weld", p4)
  952. w4.Name = "Part_Weld"
  953. w4.Part0 = p4
  954. w4.C0 = CFrame.new(16.5007706, 4.13255453, -0.0487275235, -1.62921424e-007, -1.2755394e-005, 1.00001431, 1.78814929e-007, -0.999999762, -1.46627426e-005, 1.00001431, -1.78813849e-007, -7.54998553e-008)
  955. w4.Part1 = p5
  956. w4.C1 = CFrame.new(13.6104183, 15.7089605, -1.84869325, -4.37113883e-008, 0.500093758, 0.865971267, 0, -0.865971267, 0.500093758, 1, 2.18597922e-008, 3.78528071e-008)
  957. w5 = Instance.new("Weld", p5)
  958. w5.Name = "Part_Weld"
  959. w5.Part0 = p5
  960. w5.C0 = CFrame.new(13.6108379, 15.7090359, -1.84877098, -4.29027068e-007, 0.500089467, 0.865987122, 1.9046513e-007, -0.865973532, 0.50009501, 1.00001431, 2.18601315e-008, 3.78533827e-008)
  961. w5.Part1 = p6
  962. w5.C1 = CFrame.new(19.3720245, -3.33087778, 2.54137325, -0.249996737, -0.491388977, 0.834289134, 0.0669635162, -0.868360817, -0.491391122, 0.965928316, -0.0669792444, 0.24999252)
  963. w6 = Instance.new("Weld", p6)
  964. w6.Name = "Part_Weld"
  965. w6.Part0 = p6
  966. w6.C0 = CFrame.new(19.3722382, -3.33087826, 2.54137945, -0.250001401, -0.491382152, 0.834303975, 0.0669622123, -0.868364573, -0.491393685, 0.965941966, -0.0669801831, 0.249996051)
  967. w6.Part1 = p7
  968. w6.C1 = CFrame.new(16.5012703, -5.1305232, 2.59873891, -4.37113883e-008, -0.000135861075, 1, 0, 1, 0.000135861075, -1, 5.9386762e-012, -4.37113883e-008)
  969. w7 = Instance.new("Weld", p7)
  970. w7.Name = "Part_Weld"
  971. w7.Part0 = p7
  972. w7.C0 = CFrame.new(16.5014496, -5.13052464, 2.59877563, -3.27825546e-007, -0.000133868307, 1.00001442, -3.57627869e-007, 0.99999994, 0.000135900453, -1.00001431, 1.49011612e-008, -5.96046448e-008)
  973. w7.Part1 = p8
  974. w7.C1 = CFrame.new(-0.765930653, -21.3311157, 1.75706458, -1.37833995e-005, 0.965968609, 0.258659452, 0.00428466033, 0.258657128, -0.965959728, -0.999990821, 0.00109495374, -0.00414241292)
  975. w8 = Instance.new("Weld", p8)
  976. w8.Name = "Part_Weld"
  977. w8.Part0 = p8
  978. w8.C0 = CFrame.new(-0.765703201, -21.3314991, 1.75706851, -1.42129729e-005, 0.965967655, 0.258668512, 0.00428489037, 0.258660465, -0.965972245, -1.00000513, 0.00109496934, -0.00414247159)
  979. w8.Part1 = p9
  980. w8.C1 = CFrame.new(11.6857395, -12.2548676, 8.25926208, -0.277089596, 0.631037474, 0.724577785, -0.561487973, 0.505604029, -0.655054033, -0.779713154, -0.588350415, 0.214222342)
  981. w9 = Instance.new("Weld", p9)
  982. w9.Name = "Part_Weld"
  983. w9.Part0 = p9
  984. w9.C0 = CFrame.new(11.6860123, -12.254859, 8.25934601, -0.277095288, 0.631033003, 0.724593103, -0.561500967, 0.505603611, -0.655058563, -0.779720128, -0.58835566, 0.214224264)
  985. w9.Part1 = p10
  986. w9.C1 = CFrame.new(-0.759226322, -21.3225994, -2.35311079, -0.0669693872, 0.965954244, 0.249894977, 0.254174918, 0.258710593, -0.931914091, -0.964836895, 0.00110732042, -0.262847036)
  987. w10 = Instance.new("Weld", p10)
  988. w10.Name = "Part_Weld"
  989. w10.Part0 = p10
  990. w10.C0 = CFrame.new(-0.759016514, -21.3229256, -2.3531487, -0.0669716895, 0.96595335, 0.249903828, 0.254178405, 0.258713901, -0.93192625, -0.964850724, 0.00110733509, -0.262850702)
  991. w10.Part1 = p11
  992. w10.C1 = CFrame.new(18.7059784, -3.17931223, -5.46201515, 0.250018269, -0.49138394, 0.834285676, -0.0669495314, -0.86836195, -0.491391063, 0.965923727, 0.0670017004, -0.250004292)
  993. w11 = Instance.new("Weld", p11)
  994. w11.Name = "Part_Weld"
  995. w11.Part0 = p11
  996. w11.C0 = CFrame.new(18.7061806, -3.17931461, -5.46200418, 0.250022948, -0.491377324, 0.834300399, -0.0669473261, -0.868365645, -0.491393894, 0.965937555, 0.0670026764, -0.250007868)
  997. w11.Part1 = p12
  998. w11.C1 = CFrame.new(13.6104174, 15.708952, -1.1486963, -4.37113883e-008, 0.500093997, 0.865971148, 0, -0.865971148, 0.500093997, 1, 2.18598029e-008, 3.78528e-008)
  999. w12 = Instance.new("Weld", p12)
  1000. w12.Name = "Part_Weld"
  1001. w12.Part0 = p12
  1002. w12.C0 = CFrame.new(13.6107903, 15.7090092, -1.1487354, -4.76837158e-007, 0.500089884, 0.865987122, 2.83122063e-007, -0.865973473, 0.500095367, 1.00001442, 4.47034836e-008, 1.49011612e-008)
  1003. w12.Part1 = p13
  1004. w12.C1 = CFrame.new(19.4568653, -3.38261366, -1.14870369, -4.37113883e-008, -0.499906093, 0.866079628, 0, -0.866079628, -0.499906093, 1, -2.1851589e-008, 3.78575429e-008)
  1005. w13 = Instance.new("Weld", p13)
  1006. w13.Name = "Part_Weld"
  1007. w13.Part0 = p13
  1008. w13.C0 = CFrame.new(19.457077, -3.38260937, -1.14871991, -4.63888163e-008, -0.499899268, 0.866095126, 5.08347114e-007, -0.866083562, -0.499908328, 1.00001442, -2.18518963e-008, 3.78581007e-008)
  1009. w13.Part1 = p14
  1010. w13.C1 = CFrame.new(-0.765169621, -21.3281136, 1.05768669, -1.37638153e-005, 0.96595937, 0.258693874, 0.00425664661, 0.258691579, -0.965950608, -0.99999094, 0.00108787336, -0.00411530817)
  1011. w14 = Instance.new("Weld", p14)
  1012. w14.Name = "ArmPart_Weld"
  1013. w14.Part0 = p14
  1014. w14.C0 = CFrame.new(-0.764959335, -21.3284416, 1.05770254, -1.42545232e-005, 0.965958476, 0.258703023, 0.00425684778, 0.258694947, -0.965963125, -1.00000536, 0.00108788908, -0.00411536777)
  1015. w14.Part1 = p15
  1016. w14.C1 = CFrame.new(16.0000172, 5.13429213, -1.49874043, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1017. w15 = Instance.new("Weld", p15)
  1018. w15.Name = "Part_Weld"
  1019. w15.Part0 = p15
  1020. w15.C0 = CFrame.new(16.0001163, 5.13430214, -1.49877143, -2.99420208e-007, 0.00011029192, 1.00001454, 4.39002179e-007, -1, 0.000108176115, 1.00001442, 0, 4.42378223e-008)
  1021. w15.Part1 = p16
  1022. w15.C1 = CFrame.new(16.5000153, 6.13429213, -1.49872518, -4.37113883e-008, 0.000108154614, 1, 0, -1, 0.000108154614, 1, 4.72758855e-012, 4.37113883e-008)
  1023. w16 = Instance.new("Weld", p16)
  1024. w16.Name = "Part_Weld"
  1025. w16.Part0 = p16
  1026. w16.C0 = CFrame.new(16.5002594, 6.1342907, -1.49874651, -2.98894406e-007, 0.000110270419, 1.00001454, 4.39006953e-007, -1, 0.000108154614, 1.00001442, 4.71678729e-012, 4.37120207e-008)
  1027. w16.Part1 = p17
  1028. w16.C1 = CFrame.new(16.8263168, 6.46704865, 8.05857849, 0.396029502, -0.207962677, 0.894378066, -0.497426808, 0.770130157, 0.399332225, -0.771833658, -0.603034973, 0.201548025)
  1029. w17 = Instance.new("Weld", p17)
  1030. w17.Name = "Part_Weld"
  1031. w17.Part0 = p17
  1032. w17.C0 = CFrame.new(16.8266068, 6.46726036, 8.05869198, 0.396035522, -0.207958207, 0.894391596, -0.497440547, 0.770127177, 0.399337679, -0.771840453, -0.603040278, 0.201549783)
  1033. w17.Part1 = p18
  1034. w17.C1 = CFrame.new(-0.991122723, -20.5004215, 5.08983374, 0.0669417754, 0.965955615, 0.249897182, -0.245835528, 0.258705586, -0.9341501, -0.966997266, 0.00110005983, 0.254784435)
  1035. w18 = Instance.new("Weld", p18)
  1036. w18.Name = "Part_Weld"
  1037. w18.Part0 = p18
  1038. w18.C0 = CFrame.new(-0.990923882, -20.5007305, 5.08983374, 0.066943109, 0.965954781, 0.249906152, -0.245838761, 0.258709013, -0.934162259, -0.967011333, 0.00110003352, 0.254788101)
  1039. w18.Part1 = p19
  1040. w18.C1 = CFrame.new(10.4456682, -15.7977238, -7.8332901, 0.559388936, -0.68521893, 0.466432214, 0.116898462, -0.491870552, -0.862785101, 0.820620954, 0.537157655, -0.195045918)
  1041. w19 = Instance.new("Weld", p19)
  1042. w19.Name = "Part_Weld"
  1043. w19.Part0 = p19
  1044. w19.C0 = CFrame.new(10.4457512, -15.7979813, -7.83342838, 0.559401393, -0.685213447, 0.466440916, 0.116905749, -0.491872638, -0.862796843, 0.820629179, 0.537163019, -0.195047855)
  1045. w19.Part1 = p20
  1046. w19.C1 = CFrame.new(16.5012665, -4.13050127, 1.49876332, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1047. w20 = Instance.new("Weld", p20)
  1048. w20.Name = "Part_Weld"
  1049. w20.Part0 = p20
  1050. w20.C0 = CFrame.new(16.5013981, -4.13050938, 1.498757, -2.38418579e-007, -0.000133797526, 1.00001466, -4.47034836e-007, 1.00000024, 0.000135831535, -1.00001454, -2.98023224e-008, -5.96046448e-008)
  1051. w20.Part1 = p21
  1052. w20.C1 = CFrame.new(16.5012627, -5.13048887, 0.39874959, -4.37113883e-008, -0.000135854745, 1, 0, 1, 0.000135854745, -1, 5.93839951e-012, -4.37113883e-008)
  1053. w21 = Instance.new("Weld", p21)
  1054. w21.Name = "Wedge_Weld"
  1055. w21.Part0 = p21
  1056. w21.C0 = CFrame.new(16.5014935, -5.13049126, 0.398722976, -2.22529991e-007, -0.000133820766, 1.00001466, -4.17224015e-007, 1.00000024, 0.000135854774, -1.00001454, 5.9472427e-012, -4.37120207e-008)
  1057. w21.Part1 = p22
  1058. w21.C1 = CFrame.new(-16.5005875, 4.13259029, 2.94876933, -4.37113883e-008, 1.39792737e-005, -1, 0, -1, -1.39792737e-005, -1, -6.11053471e-013, 4.37113883e-008)
  1059. w22 = Instance.new("Weld", p22)
  1060. w22.Name = "Part_Weld"
  1061. w22.Part0 = p22
  1062. w22.C0 = CFrame.new(-16.500824, 4.13258791, 2.94888711, 1.35156796e-007, 1.19470278e-005, -1.00001466, 4.17202415e-007, -1.00000024, -1.39792755e-005, -1.00001454, -6.07483681e-013, 4.37120278e-008)
  1063. w22.Part1 = p23
  1064. w22.C1 = CFrame.new(11.3238592, 16.2938461, -5.83674097, 0.167913347, 0.593457043, 0.787155509, 0.220650926, -0.800859332, 0.556720257, 0.960790455, 0.0802058354, -0.265421808)
  1065. w23 = Instance.new("Weld", p23)
  1066. w23.Name = "Wedge_Weld"
  1067. w23.Part0 = p23
  1068. w23.C0 = CFrame.new(11.3242846, 16.2939701, -5.83676767, 0.167916089, 0.593452632, 0.787171543, 0.220654398, -0.800862908, 0.556722164, 0.960804224, 0.0802069977, -0.265425682)
  1069. w23.Part1 = p24
  1070. w23.C1 = CFrame.new(-16.5190907, -6.08210278, -0.053311754, -0.000165350299, 0.00304719806, -0.999995351, -0.000303142268, 0.999995351, 0.00304725766, 0.99999994, 0.000303644716, -0.000164425801)
  1071. w24 = Instance.new("Weld", p24)
  1072. w24.Name = "Part_Weld"
  1073. w24.Part0 = p24
  1074. w24.C0 = CFrame.new(-16.5192356, -6.08211088, -0.0533116534, -0.000165194273, 0.00304524973, -1.00001013, -0.00030361861, 0.999995589, 0.00304720178, 1.00001442, 0.000303655863, -0.000164449215)
  1075. w24.Part1 = p25
  1076. w24.C1 = CFrame.new(5.14108515, 1.49960721, -17.9982204, 1.16387992e-005, -0.999999881, 0.000471503939, -1, -1.1615477e-005, 4.94651576e-005, -4.94596788e-005, -0.000471504522, -0.999999881)
  1077. w25 = Instance.new("Weld", p25)
  1078. w25.Name = "Part_Weld"
  1079. w25.Part0 = p25
  1080. w25.C0 = CFrame.new(5.14104986, 1.49967504, -17.9985313, 1.20991026e-005, -1.00000024, 0.000469659513, -1.00001454, -1.16155716e-005, 4.96469293e-005, -4.94604174e-005, -0.000471511274, -1.00001466)
  1081. w25.Part1 = p26
  1082. w25.C1 = CFrame.new(5.07938719, 17.5157299, 1.50311017, 0.00030336561, -0.99999541, -0.00302907825, 0.000164940167, -0.00302901864, 0.999995351, -0.99999994, -0.000303863839, 0.000164020501)
  1083. m.Parent = char
  1084. m:MakeJoints()
  1085. ----------------------------------------------------
  1086. local cor2 = Instance.new("Part", char.Claw)
  1087. cor2.Name = "Thingy"
  1088. cor2.Locked = true
  1089. cor2.BottomSurface = 0
  1090. cor2.CanCollide = false
  1091. cor2.Size = Vector3.new(2, 1, 1)
  1092. cor2.Transparency = 1
  1093. cor2.TopSurface = 0
  1094. corw2 = Instance.new("Weld", cor2)
  1095. corw2.Part0 = larm
  1096. corw2.Part1 = cor2
  1097. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1098. corw2.C1 = CFrame.new(0, 0, 0)
  1099. weld2 = Instance.new("Weld", char.Claw)
  1100. weld2.Part0 = cor2
  1101. weld2.Part1 = char.Claw.ArmPart
  1102. weld2.C0 = CFrame.new(0, 0, 0)
  1103. ----------------------------------------------------
  1104. function weld5(part0, part1, c0, c1)
  1105. weeld=Instance.new("Weld", part0)
  1106. weeld.Part0=part0
  1107. weeld.Part1=part1
  1108. weeld.C0=c0
  1109. weeld.C1=c1
  1110. return weeld
  1111. end
  1112. ----------------------------------------------------
  1113. ----------------------------------------------------
  1114. a = game.Players.LocalPlayer.Character.Absolution:GetChildren()
  1115. for i = 1,#a do
  1116. if a[i]:IsA("UnionOperation") or a[i]:IsA("Part") or a[i]:IsA("WedgePart") then
  1117. a[i].Transparency = 1
  1118. end
  1119. end
  1120. ----------------------------------------------------
  1121. ACE = game.Players.LocalPlayer.Character.Claw:GetChildren()
  1122. for i = 1,#a do
  1123. if ACE[i]:IsA("UnionOperation") or ACE[i]:IsA("Part") or ACE[i]:IsA("WedgePart") then
  1124. ACE[i].Transparency = 1
  1125. end
  1126. end
  1127. ----------------------------------------------------
  1128. function newRay(start,face,range,wat)
  1129. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1130. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1131. return rey,hit,pos
  1132. end
  1133. ----------------------------------------------------
  1134. mod5 = Instance.new("Model",char)
  1135.  
  1136. function FindNearestTorso(Position,Distance,SinglePlayer)
  1137. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1138. local List = {}
  1139. for i,v in pairs(workspace:GetChildren())do
  1140. if v:IsA("Model")then
  1141. if v:findFirstChild("Torso")then
  1142. if v ~= char then
  1143. if(v.Torso.Position -Position).magnitude <= Distance then
  1144. table.insert(List,v)
  1145. end
  1146. end
  1147. end
  1148. end
  1149. end
  1150. return List
  1151. end
  1152.  
  1153. function Landing()
  1154. part=Instance.new('Part',mod5)
  1155. part.Anchored=true
  1156. part.CanCollide=false
  1157. part.FormFactor='Custom'
  1158. part.Size=Vector3.new(.2,.2,.2)
  1159. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1160. part.Transparency=.7
  1161. part.BrickColor=BrickColor.new('Really black')
  1162. mesh=Instance.new('SpecialMesh',part)
  1163. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1164. mesh.Scale=Vector3.new(10,5,10)
  1165.  
  1166. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1167. if v:FindFirstChild('Humanoid') then
  1168. v.Humanoid:TakeDamage(math.random(20,30))
  1169. v.Humanoid.PlatformStand = true
  1170. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1171. end
  1172. end
  1173.  
  1174. coroutine.resume(coroutine.create(function()
  1175. for i=0,3.8,0.05 do
  1176. wait()
  1177. part.CFrame=part.CFrame
  1178. part.Transparency=i
  1179. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1180. end
  1181. part.Parent = nil
  1182. end))
  1183. end
  1184. ----------------------------------------------------
  1185. mod4 = Instance.new("Model",char)
  1186.  
  1187. ptez = {0.7, 0.8, 0.9, 1}
  1188.  
  1189. function FindNearestTorso(Position,Distance,SinglePlayer)
  1190. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1191. local List = {}
  1192. for i,v in pairs(workspace:GetChildren())do
  1193. if v:IsA("Model")then
  1194. if v:findFirstChild("Torso")then
  1195. if v ~= char then
  1196. if(v.Torso.Position -Position).magnitude <= Distance then
  1197. table.insert(List,v)
  1198. end
  1199. end
  1200. end
  1201. end
  1202. end
  1203. return List
  1204. end
  1205.  
  1206. function GroundPound()
  1207. part=Instance.new('Part',mod4)
  1208. part.Anchored=true
  1209. part.CanCollide=false
  1210. part.FormFactor='Custom'
  1211. part.Size=Vector3.new(.2,.2,.2)
  1212. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1213. part.Transparency=.7
  1214. part.BrickColor=BrickColor.new('Really black')
  1215. mesh=Instance.new('SpecialMesh',part)
  1216. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1217. mesh.Scale=Vector3.new(3,3,3)
  1218. part2=Instance.new('Part',mod4)
  1219. part2.Anchored=true
  1220. part2.CanCollide=false
  1221. part2.FormFactor='Custom'
  1222. part2.Size=Vector3.new(.2,.2,.2)
  1223. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1224. part2.Transparency=.7
  1225. part2.BrickColor=BrickColor.new('Really red')
  1226. mesh2=Instance.new('SpecialMesh',part2)
  1227. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  1228. mesh2.Scale=Vector3.new(3,1.5,3)
  1229. x = Instance.new("Sound",char)
  1230. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  1231. x.Pitch = ptez[math.random(1,#ptez)]
  1232. x.Volume = 1
  1233. wait(0.001)
  1234. x:Play()
  1235. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1236. if v:FindFirstChild('Humanoid') then
  1237. v.Humanoid:TakeDamage(math.random(8,15))
  1238. end
  1239. end
  1240. coroutine.resume(coroutine.create(function()
  1241. for i=0,0.62,0.13 do
  1242. wait()
  1243. part.CFrame=part.CFrame
  1244. part.Transparency=i
  1245. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1246. part2.CFrame=part2.CFrame
  1247. part2.Transparency=i
  1248. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1249. end
  1250. part.Parent=nil
  1251. part2.Parent=nil
  1252. x:Destroy()
  1253. end))
  1254. end
  1255. ----------------------------------------------------
  1256. mod=Instance.new('Model',char)
  1257.  
  1258. function charge()
  1259. hed.Velocity=hed.CFrame.lookVector*200
  1260. part=Instance.new('Part',mod)
  1261. part.Anchored=true
  1262. part.CanCollide=false
  1263. part.FormFactor='Custom'
  1264. part.Size=Vector3.new(.2,.2,.2)
  1265. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1266. part.Transparency=.7
  1267. part.BrickColor=BrickColor.new('Black')
  1268. mesh=Instance.new('SpecialMesh',part)
  1269. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1270. mesh.Scale=Vector3.new(10,5,10)
  1271. part2=part:clone()
  1272. part2.Parent=mod
  1273. part2.BrickColor=BrickColor.new('Bright red')
  1274. mesh2=mesh:clone()
  1275. mesh2.Parent=part2
  1276. mesh2.Scale=Vector3.new(20,10,20)
  1277. part3=part2:clone()
  1278. part3.Parent = mod
  1279. part3.BrickColor=BrickColor.new('Really black')
  1280. mesh3=mesh2:clone()
  1281. mesh2.Parent=part3
  1282. mesh3.Scale=Vector3.new(30,15,30)
  1283. coroutine.resume(coroutine.create(function()
  1284. for i=0,1,0.1 do
  1285. wait()
  1286. part.CFrame=part.CFrame
  1287. part.Transparency=i
  1288. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1289. part2.CFrame=part2.CFrame
  1290. part2.Transparency=i
  1291. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1292. part3.CFrame=part3.CFrame
  1293. part3.Transparency=i
  1294. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1295. end
  1296. part.Parent=nil
  1297. part2.Parent=nil
  1298. part3.Parent = nil
  1299. end))
  1300. end
  1301. ----------------------------------------------------
  1302. function FindNearestTorso(Position,Distance,SinglePlayer)
  1303. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1304. local List = {}
  1305. for i,v in pairs(workspace:GetChildren())do
  1306. if v:IsA("Model")then
  1307. if v:findFirstChild("Torso")then
  1308. if v ~= char then
  1309. if(v.Torso.Position -Position).magnitude <= Distance then
  1310. table.insert(List,v)
  1311. end
  1312. end
  1313. end
  1314. end
  1315. end
  1316. return List
  1317. end
  1318.  
  1319. mod3 = Instance.new("Model",rleg)
  1320.  
  1321. function Stomp()
  1322. part=Instance.new('Part',mod3)
  1323. part.Anchored=true
  1324. part.CanCollide=false
  1325. part.FormFactor='Custom'
  1326. part.Size=Vector3.new(.2,.2,.2)
  1327. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1328. part.Transparency=.7
  1329. part.BrickColor=BrickColor.new('Bright green')
  1330. mesh=Instance.new('SpecialMesh',part)
  1331. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1332. mesh.Scale=Vector3.new(25,25,25)
  1333. part2=part:clone()
  1334. part2.Parent=mod3
  1335. part2.BrickColor=BrickColor.new('Bright green')
  1336. mesh2=mesh:clone()
  1337. mesh2.Parent=part2
  1338. mesh2.Scale=Vector3.new(15,15,15)
  1339. part3=part:clone()
  1340. part3.Parent=mod3
  1341. part3.TopSurface=0
  1342. part3.BottomSurface=0
  1343. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1344. mesh3=Instance.new('SpecialMesh',part3)
  1345. mesh3.MeshType = 3
  1346. mesh3.Scale=Vector3.new(12,12,12)
  1347. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1348. if v:FindFirstChild('Humanoid') then
  1349. v.Humanoid:TakeDamage(math.random(20,60))
  1350. v.Humanoid.PlatformStand = true
  1351. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1352. end
  1353. end
  1354. coroutine.resume(coroutine.create(function()
  1355. for i=0,3.8,0.05 do
  1356. wait()
  1357. part.CFrame=part.CFrame
  1358. part.Transparency=i
  1359. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1360. part2.CFrame=part2.CFrame
  1361. part2.Transparency=i
  1362. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1363. part3.CFrame=part3.CFrame
  1364. part3.Transparency=i
  1365. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1366. end
  1367. end))
  1368. end
  1369. ----------------------------------------------------
  1370.  
  1371. local acos = math.acos
  1372. local sqrt = math.sqrt
  1373. local Vec3 = Vector3.new
  1374. local fromAxisAngle = CFrame.fromAxisAngle
  1375.  
  1376. local function toAxisAngle(CFr)
  1377. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1378. local Angle = math.acos((R00+R11+R22-1)/2)
  1379. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1380. A = A == 0 and 0.00001 or A
  1381. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1382. B = B == 0 and 0.00001 or B
  1383. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1384. C = C == 0 and 0.00001 or C
  1385. local x = (R21-R12)/sqrt(A)
  1386. local y = (R02-R20)/sqrt(B)
  1387. local z = (R10-R01)/sqrt(C)
  1388. return Vec3(x,y,z),Angle
  1389. end
  1390.  
  1391. function ApplyTrig(Num,Func)
  1392. local Min,Max = Func(0),Func(1)
  1393. local i = Func(Num)
  1394. return (i-Min)/(Max-Min)
  1395. --[[if Func == "sin" then
  1396. return (math.sin((1-Num)*math.pi)+1)/2
  1397. elseif Func == "cos" then
  1398. return (math.cos((1-Num)*math.pi)+1)/2
  1399. end]]
  1400. end
  1401.  
  1402. function LerpCFrame(CFrame1,CFrame2,Num)
  1403. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1404. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1405. end
  1406.  
  1407. function Crater(Torso,Radius)
  1408. Spawn(function()
  1409. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1410. local Ignore = {}
  1411. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1412. if v.Character ~= nil then
  1413. Ignore[#Ignore+1] = v.Character
  1414. end
  1415. end
  1416. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1417. if Hit == nil then return end
  1418. local Parts = {}
  1419. for i = 1,360,10 do
  1420. local P = Instance.new("Part",Torso.Parent)
  1421. P.Anchored = true
  1422. P.FormFactor = "Custom"
  1423. P.BrickColor = Hit.BrickColor
  1424. P.Material = Hit.Material
  1425. P.TopSurface = "Smooth"
  1426. P.BottomSurface = "Smooth"
  1427. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1428. 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)))
  1429. 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}
  1430. if math.random(0,5) == 0 then -- rubble
  1431. local P = Instance.new("Part",Torso.Parent)
  1432. P.Anchored = true
  1433. P.FormFactor = "Custom"
  1434. P.BrickColor = Hit.BrickColor
  1435. P.Material = Hit.Material
  1436. P.TopSurface = "Smooth"
  1437. P.BottomSurface = "Smooth"
  1438. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1439. 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)))
  1440. 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}
  1441. end
  1442. end
  1443. for i = 0,1,0.05 do
  1444. for i2,v in pairs(Parts) do
  1445. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1446. end
  1447. wait(0.02)
  1448. end
  1449. for i,v in pairs(Parts) do
  1450. if v[1].Size.X > 2.1 then
  1451. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1452. end
  1453. v[1].Anchored = false
  1454. end
  1455. for i = 0,1,0.05 do
  1456. for i2,v in pairs(Parts) do
  1457. v[1].Transparency = i
  1458. if i == 1 then
  1459. v[1]:Destroy()
  1460. elseif i >= 0.25 then
  1461. v[1].CanCollide = false
  1462. end
  1463. end
  1464. wait(0.02)
  1465. end
  1466. Parts = nil
  1467. end)
  1468. end
  1469.  
  1470. ----------------------------------------------------
  1471. mouse.KeyDown:connect(function(key)
  1472. if key == "r" then
  1473. larm.BrickColor = BrickColor.new("Bright red")
  1474. rarm.BrickColor = BrickColor.new("Bright red")
  1475. if Debounces.CanAttack == true then
  1476. Debounces.CanAttack = false
  1477. Debounces.on = true
  1478. Debounces.NoIdl = true
  1479. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1480. hit = ht.Parent
  1481. if ht and hit:IsA("Model") then
  1482. if hit:FindFirstChild("Humanoid") then
  1483. if hit.Name ~= p.Name then
  1484. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1485. Debounces.Slashed = true]]--
  1486. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1487. wait(1)
  1488. --Debounces.Slashed = false
  1489. --end
  1490. end
  1491. end
  1492. elseif ht and hit:IsA("Hat") then
  1493. if hit.Parent.Name ~= p.Name then
  1494. if hit.Parent:FindFirstChild("Humanoid") then
  1495. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1496. Debounces.Slashed = true]]--
  1497. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1498. wait(1)
  1499. --Debounces.Slashed = false
  1500. end
  1501. end
  1502. end
  1503. end)
  1504. q = Instance.new("Sound",hed)
  1505. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1506. q.Pitch = 0.85
  1507. q.Looped = false
  1508. q1 = Instance.new("Sound",hed)
  1509. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  1510. q1.Pitch = 0.85
  1511. q1.Looped = false
  1512. q:Play()
  1513. q1:Play()
  1514. for i = 1,20 do
  1515. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1516. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1517. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1518. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1519. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1520. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1521. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.2, -3) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(0)), 0.5)
  1522. if Debounces.on == false then break end
  1523. wait()
  1524. end
  1525. n = Instance.new("Sound",hed)
  1526. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1527. n.Pitch = 0.94
  1528. n.Looped = false
  1529. n1 = Instance.new("Sound",hed)
  1530. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  1531. n1.Pitch = 0.94
  1532. n1.Looped = false
  1533. n:Play()
  1534. n1:Play()
  1535. b = Instance.new("Sound",hed)
  1536. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1537. b.Pitch = 0.94
  1538. b.Looped = false
  1539. b1 = Instance.new("Sound",hed)
  1540. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  1541. b1.Pitch = 0.94
  1542. b1.Looped = false
  1543. b:Play()
  1544. b1:Play()
  1545. for i = 1,26 do
  1546. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.5)
  1547. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.5)
  1548. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.5)
  1549. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1550. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1551. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1552. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 0.5)
  1553. if Debounces.on == false then break end
  1554. wait()
  1555. end
  1556. wait(.5)
  1557. to:disconnect()
  1558. q:Destroy()
  1559. q1:Destroy()
  1560. n:Destroy()
  1561. n1:Destroy()
  1562. larm.BrickColor = BrickColor.new("Really black")
  1563. rarm.BrickColor = BrickColor.new("Really black")
  1564. if Debounces.CanAttack == false then
  1565. Debounces.CanAttack = true
  1566. Debounces.on = false
  1567. Debounces.NoIdl = false
  1568. end
  1569. end
  1570. end
  1571. end)
  1572. ----------------------------------------------------
  1573. mouse.KeyDown:connect(function(key)
  1574. if key == "q" then
  1575. larm.BrickColor = BrickColor.new("Bright red")
  1576. rarm.BrickColor = BrickColor.new("Bright red")
  1577. if Debounces.CanAttack == true then
  1578. Debounces.CanAttack = false
  1579. Debounces.on = true
  1580. Debounces.NoIdl = true
  1581. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1582. hit = ht.Parent
  1583. if ht and hit:IsA("Model") then
  1584. if hit:FindFirstChild("Humanoid") then
  1585. if hit.Name ~= p.Name then
  1586. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1587. Debounces.Slashed = true]]--
  1588. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1589. wait(1)
  1590. --Debounces.Slashed = false
  1591. --end
  1592. end
  1593. end
  1594. elseif ht and hit:IsA("Hat") then
  1595. if hit.Parent.Name ~= p.Name then
  1596. if hit.Parent:FindFirstChild("Humanoid") then
  1597. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1598. Debounces.Slashed = true]]--
  1599. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1600. wait(1)
  1601. --Debounces.Slashed = false
  1602. end
  1603. end
  1604. end
  1605. end)
  1606. for i = 1, 20 do
  1607. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(21), math.rad(75), math.rad(50)), 0.2)
  1608. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-30), math.rad(0), math.rad(-18)), 0.2)
  1609. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1610. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1611. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1612. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1613. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1614. if Debounces.on == false then break end
  1615. wait()
  1616. end
  1617. z = Instance.new("Sound",hed)
  1618. z.SoundId = "rbxassetid://160069154"
  1619. z.Looped = false
  1620. z.Pitch = .9
  1621. z1 = Instance.new("Sound",hed)
  1622. z1.SoundId = "rbxassetid://160069154"
  1623. z1.Looped = false
  1624. z1.Pitch = .9
  1625. wait(0.01)
  1626. z:Play()
  1627. z1:Play()
  1628. for i = 1, 12 do
  1629. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(50)), 0.2)
  1630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.9,-1) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(20)), 0.5)
  1631. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1632. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -3, 0) * CFrame.Angles(math.rad(0), math.rad(-30), math.rad(0)), 0.5)
  1633. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1634. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1635. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1636. if Debounces.on == false then break end
  1637. wait()
  1638. end
  1639. for i = 1, 12 do
  1640. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(140), math.rad(0), math.rad(50)), 0.4)
  1641. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-18)), 0.4)
  1642. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1643. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1644. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1645. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1646. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.7, -1.4) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1647. if Debounces.on == false then break end
  1648. wait()
  1649. end
  1650. z = Instance.new("Sound",hed)
  1651. z.SoundId = "rbxassetid://168586621"
  1652. z.Looped = false
  1653. z.Pitch = 1
  1654. z1 = Instance.new("Sound",hed)
  1655. z1.SoundId = "rbxassetid://168586621"
  1656. z1.Looped = false
  1657. z1.Pitch = 1
  1658. wait(0.01)
  1659. z:Play()
  1660. z1:Play()
  1661. for i = 1, 12 do
  1662. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0) * CFrame.Angles(math.rad(40), math.rad(-20), math.rad(10)), 0.5)
  1663. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-18)), 0.4)
  1664. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1665. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1666. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1667. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1668. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -2.8, -1.4) * CFrame.Angles(math.rad(-110), math.rad(-90), math.rad(20)), 1)
  1669. if Debounces.on == false then break end
  1670. wait()
  1671. end
  1672. to:disconnect()
  1673. larm.BrickColor = BrickColor.new("Really black")
  1674. rarm.BrickColor = BrickColor.new("Really black")
  1675. if Debounces.CanAttack == false then
  1676. Debounces.CanAttack = true
  1677. Debounces.on = false
  1678. Debounces.NoIdl = false
  1679. end
  1680. end
  1681. end
  1682. end)
  1683. ----------------------------------------------------
  1684. Sit = false
  1685. mouse.KeyDown:connect(function(key)
  1686. if key == "v" then
  1687. if Sit == false then
  1688. Sit = true
  1689. hum.WalkSpeed = 0.001
  1690. stanceToggle = "Sitting"
  1691. elseif Sit == true then
  1692. Sit = false
  1693. hum.WalkSpeed = 7
  1694. stanceToggle = "Normal"
  1695. end
  1696. end
  1697. end)
  1698. ----------------------------------------------------
  1699. mouse.KeyDown:connect(function(key)
  1700. if key == "t" then
  1701. if Debounces.CanAttack == true then
  1702. Debounces.CanAttack = false
  1703. Debounces.on = true
  1704. Debounces.NoIdl = true
  1705. for i = 1, 20 do
  1706. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(-55)), 0.4)
  1707. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,1.1,-1) * CFrame.Angles(math.rad(115), math.rad(0), math.rad(55)), 0.4)
  1708. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.4)
  1709. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1710. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1711. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1712. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1713. if Debounces.on == false then break end
  1714. wait()
  1715. end
  1716. Spawn(function()
  1717. local Parts = {}
  1718. for Y = -5,5 do
  1719. local P = Instance.new("Part",char)
  1720. P.Anchored = true
  1721. P.FormFactor = "Custom"
  1722. P.CanCollide = false
  1723. P.Size = Vector3.new(1,2,1)
  1724. P.TopSurface = "SmoothNoOutlines"
  1725. P.BottomSurface = "SmoothNoOutlines"
  1726. P.BrickColor = BrickColor.new("Really black")
  1727. P.Name = tostring(Y)
  1728. local i = (Y+5)/(10)
  1729. i = 1-math.cos(math.pi*i-(math.pi/2))
  1730. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1731. --[[P.Touched:connect(function(ht)
  1732. local hit = ht.Parent
  1733. if hit:FindFirstChild("Humanoid") then
  1734. hit.Humanoid:TakeDamage(math.random(20,50))
  1735. end
  1736. end)]]--
  1737. s = Instance.new("Sound",P)
  1738. s.SoundId = "rbxassetid://228343271"
  1739. s.Volume = .7
  1740. s.Pitch = 0.9
  1741. s:Play()
  1742. P.Touched:connect(function(ht)
  1743. hit = ht.Parent
  1744. if ht and hit:IsA("Model") then
  1745. if hit:FindFirstChild("Humanoid") then
  1746. if hit.Name ~= p.Name then
  1747. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1748. Debounces.Slashed = true]]--
  1749. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  1750. hit:FindFirstChild("Humanoid").PlatformStand = true
  1751. wait(1)
  1752. --Debounces.Slashed = false
  1753. --end
  1754. end
  1755. end
  1756. elseif ht and hit:IsA("Hat") then
  1757. if hit.Parent.Name ~= p.Name then
  1758. if hit.Parent:FindFirstChild("Humanoid") then
  1759. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1760. Debounces.Slashed = true]]--
  1761. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  1762. hit:FindFirstChild("Humanoid").PlatformStand = true
  1763. wait(1)
  1764. --Debounces.Slashed = false
  1765. --end
  1766. end
  1767. end
  1768. end
  1769. end)
  1770. Parts[#Parts+1] = P
  1771. end
  1772. local BREAKIT = false
  1773. local CParts = {}
  1774. local Rocks = {}
  1775. local LastPos = nil
  1776. for i = 1,70 do
  1777. for i2,v in pairs(Parts) do
  1778. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1779. local cf = v.CFrame
  1780. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1781. v.CFrame = cf
  1782. v.Transparency = v.Transparency+0.02
  1783. if v.Transparency >= 0.975 then BREAKIT = true end
  1784. if v.Name == "0" then
  1785. local Ignore = {}
  1786. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1787. if v.Character ~= nil then
  1788. Ignore[#Ignore+1] = v.Character
  1789. end
  1790. end
  1791. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1792. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1793. if Hit ~= nil then
  1794. if #Rocks == 0 then
  1795. for i = 1,5 do
  1796. local P = Instance.new("Part",char)
  1797. Rocks[#Rocks+1] = P
  1798. P.Anchored = true
  1799. P.FormFactor = "Custom"
  1800. P.BrickColor = Hit.BrickColor
  1801. P.Material = Hit.Material
  1802. P.TopSurface = "Smooth"
  1803. P.BottomSurface = "Smooth"
  1804. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1805. end
  1806. end
  1807. for i,P in pairs(Rocks) do
  1808. P.CFrame = ((CFrame.new(Pos)*(v.CFrame-v.Position))*CFrame.new(math.random(-math.ceil(v.Size.X/2),math.ceil(v.Size.X/2)),0,-math.random(5,8))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1809. end
  1810. local P = Instance.new("Part",char)
  1811. CParts[#CParts+1] = {P,tick()}
  1812. P.Anchored = true
  1813. P.FormFactor = "Custom"
  1814. P.BrickColor = Hit.BrickColor
  1815. P.Material = Hit.Material
  1816. P.TopSurface = "Smooth"
  1817. P.BottomSurface = "Smooth"
  1818. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1819. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1820. Pos = Pos.p
  1821. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(20,50)))
  1822. local P = P:Clone()
  1823. CParts[#CParts+1] = {P,tick()}
  1824. P.Parent = char
  1825. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1826. Pos = Pos.p
  1827. P.CFrame = ((CFrame.new(Pos,Pos+SurfaceNorm)*CFrame.Angles(math.rad(90),0,0))-Vector3.new(0,0.25,0))*CFrame.Angles(math.rad(math.random(-50,50)),math.rad(math.random(-50,50)),math.rad(math.random(-50,-20)))
  1828. if LastPos ~= nil then
  1829. local P = P:Clone()
  1830. CParts[#CParts+1] = {P,tick()}
  1831. P.Parent = char
  1832. P.BrickColor = BrickColor.new("Really black")
  1833. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1834. Pos = Pos.p
  1835. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1836. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1837. --P.Velocity = Vector3.new(0,-1000,0)
  1838. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1839. end
  1840. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1841. end
  1842. end
  1843. end
  1844. if BREAKIT then break end
  1845. wait(0.002)
  1846. end
  1847. for i,v in pairs(Rocks) do
  1848. CParts[#CParts+1] = {v,tick()}
  1849. end
  1850. for i,v in pairs(Parts) do
  1851. v:Destroy()
  1852. end
  1853. Parts = nil
  1854. while true do
  1855. local t = tick()
  1856. local p = nil
  1857. for i,v in pairs(CParts) do
  1858. if t-v[2] > 4 then
  1859. v[1].Transparency = v[1].Transparency+0.05
  1860. if v[1].Transparency >= 1 then
  1861. v[1]:Destroy()
  1862. CParts[i] = nil
  1863. end
  1864. end
  1865. p = v
  1866. end
  1867. if p == nil then break end
  1868. wait(0.002)
  1869. end
  1870. for i,v in pairs(CParts) do
  1871. v:Destroy()
  1872. end
  1873. CParts = {}
  1874. end)
  1875. for i = 1, 20 do
  1876. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(-55)), 0.4)
  1877. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.3,.8,-1) * CFrame.Angles(math.rad(50), math.rad(0), math.rad(55)), 0.4)
  1878. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)),0.4)
  1879. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1880. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1881. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1882. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(1.4, -3.5, -7) * CFrame.Angles(math.rad(-90), math.rad(-142), math.rad(20)), 1)
  1883. if Debounces.on == false then break end
  1884. wait()
  1885. end
  1886. if Debounces.CanAttack == false then
  1887. Debounces.CanAttack = true
  1888. Debounces.on = false
  1889. Debounces.NoIdl = false
  1890. end
  1891. end
  1892. end
  1893. end)
  1894. ----------------------------------------------------
  1895. mouse.KeyDown:connect(function(key)
  1896. if key == "e" then
  1897. larm.BrickColor = BrickColor.new("Bright red")
  1898. rarm.BrickColor = BrickColor.new("Bright red")
  1899. if Debounces.CanAttack == true then
  1900. Debounces.CanAttack = false
  1901. Debounces.on = true
  1902. Debounces.NoIdl = true
  1903. for i = 1, 18 do
  1904. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.7, 0) * CFrame.Angles(math.rad(90),math.rad(50),math.rad(90)), 0.4)
  1905. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  1906. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1907. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1908. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1909. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1910. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1911. if Debounces.on == false then break end
  1912. wait()
  1913. end
  1914. local HandCF = CFrame.new(char.Absolution.Handle.Position - Vector3.new(0,8.8,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1915. local rng = Instance.new("Part", char.Absolution.Handle)
  1916. rng.Anchored = true
  1917. rng.BrickColor = BrickColor.new("Really black")
  1918. rng.CanCollide = true
  1919. rng.FormFactor = 3
  1920. rng.Name = "Ring"
  1921. rng.Size = Vector3.new(1, 1, 1)
  1922. rng.CanCollide = false
  1923. rng.Transparency = 0.35
  1924. rng.TopSurface = 0
  1925. rng.BottomSurface = 0
  1926. rng.CFrame = HandCF
  1927. local rngm = Instance.new("SpecialMesh", rng)
  1928. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1929. rngm.Scale = Vector3.new(1, 1, 2)
  1930. x = Instance.new("Sound", hed)
  1931. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1932. x.Looped = false
  1933. x.Pitch = .7
  1934. x.Volume = 1
  1935. x1 = Instance.new("Sound", hed)
  1936. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  1937. x1.Looped = false
  1938. x1.Pitch = .7
  1939. x1.Volume = 1
  1940. x:Play()
  1941. x1:Play()
  1942. rngto = rng.Touched:connect(function(ht)
  1943. hit = ht.Parent
  1944. if ht and hit:IsA("Model") then
  1945. if hit:FindFirstChild("Humanoid") then
  1946. if hit.Name ~= p.Name then
  1947. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1948. Debounces.Slashed = true]]--
  1949. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1950. hit:FindFirstChild("Humanoid").PlatformStand = true
  1951. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  1952. --Debounces.Slashed = false
  1953. --end
  1954. end
  1955. end
  1956. elseif ht and hit:IsA("Hat") then
  1957. if hit.Parent.Name ~= p.Name then
  1958. if hit.Parent:FindFirstChild("Humanoid") then
  1959. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1960. Debounces.Slashed = true]]--
  1961. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1962. hit:FindFirstChild("Humanoid").PlatformStand = true
  1963. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  1964. --Debounces.Slashed = false
  1965. end
  1966. end
  1967. end
  1968. end)
  1969. coroutine.wrap(function()
  1970. for i = 1, 60, 2 do
  1971. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  1972. rng.Size = rngm.Scale
  1973. rng.CFrame = HandCF
  1974. rng.Transparency = i/60
  1975. wait()
  1976. end
  1977. wait()
  1978. rng:Destroy()
  1979. end)()
  1980. for i = 1, 18 do
  1981. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, 0) * CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.4)
  1982. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.4)
  1983. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1984. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1985. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1986. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1987. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, 0.2) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  1988. if Debounces.on == false then break end
  1989. wait()
  1990. end
  1991. larm.BrickColor = BrickColor.new("Really black")
  1992. rarm.BrickColor = BrickColor.new("Really black")
  1993. x:Destroy()
  1994. x1:Destroy()
  1995. if Debounces.CanAttack == false then
  1996. Debounces.CanAttack = true
  1997. Debounces.on = false
  1998. Debounces.NoIdl = false
  1999. end
  2000. end
  2001. end
  2002. end)
  2003. ----------------------------------------------------
  2004. mouse.KeyDown:connect(function(key)
  2005. if key == "y" then
  2006. if Debounces.CanAttack == true then
  2007. Debounces.CanAttack = false
  2008. Debounces.on = true
  2009. Debounces.NoIdl = true
  2010. for i = 1, 15 do
  2011. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(30)), 0.2)
  2012. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-90)), 0.2)
  2013. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2014. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2015. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2016. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2017. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2018. if Debounces.on == false then break end
  2019. wait()
  2020. end
  2021. x = Instance.new("Sound",char)
  2022. x.SoundId = "rbxassetid://228343271"
  2023. x.Pitch = 1
  2024. x.Volume = .8
  2025. wait(.1)
  2026. x:Play()
  2027. Debounces.on = false
  2028. Debounces.Here = false
  2029. shot = shot + 1
  2030. local rng = Instance.new("Part", char)
  2031. rng.Anchored = true
  2032. rng.BrickColor = BrickColor.new("Really black")
  2033. rng.CanCollide = false
  2034. rng.FormFactor = 3
  2035. rng.Name = "Ring"
  2036. rng.Size = Vector3.new(1, 1, 1)
  2037. rng.Transparency = 0.35
  2038. rng.TopSurface = 0
  2039. rng.BottomSurface = 0
  2040. rng2 = rng:clone()
  2041. rng3 = rng2:clone()
  2042. rng4 = rng2:clone()
  2043. local rngm = Instance.new("SpecialMesh", rng)
  2044. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2045. rngm.Scale = Vector3.new(10, 10, 1)
  2046. rngm2 = rngm:clone()
  2047. rngm2.Scale = Vector3.new(5, 5, 1)
  2048. rngm3=rngm2:clone()
  2049. rngm3.Parent = rng3
  2050. rngm3.Scale = Vector3.new(8, 8, 1)
  2051. rngm4 = rngm2:clone()
  2052. rngm4.Parent = rng4
  2053. rngm4.Scale = Vector3.new(6, 6, 1)
  2054. local bem = Instance.new("Part", char)
  2055. bem.Anchored = true
  2056. bem.BrickColor = BrickColor.new("Really black")
  2057. bem.CanCollide = false
  2058. bem.FormFactor = 3
  2059. bem.Name = "Beam" .. shot
  2060. bem.Size = Vector3.new(1, 1, 1)
  2061. bem.Transparency = 0.35
  2062. bem.TopSurface = 0
  2063. bem.BottomSurface = 0
  2064. local bemm = Instance.new("SpecialMesh", bem)
  2065. bemm.MeshType = 4
  2066. bemm.Scale = Vector3.new(1, 4, 4)
  2067. local out = Instance.new("Part", char)
  2068. out.Anchored = true
  2069. out.BrickColor = BrickColor.new("Really black")
  2070. out.CanCollide = false
  2071. out.FormFactor = 3
  2072. out.Name = "Out"
  2073. out.Size = Vector3.new(4, 4, 4)
  2074. out.Transparency = 0.35
  2075. out.TopSurface = 0
  2076. out.BottomSurface = 0
  2077. local outm = Instance.new("SpecialMesh", out)
  2078. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2079. outm.Scale = Vector3.new(4, 4, 4)
  2080. local bnd = Instance.new("Part", char)
  2081. bnd.Anchored = true
  2082. bnd.BrickColor = BrickColor.new("Really black")
  2083. bnd.CanCollide = false
  2084. bnd.FormFactor = 3
  2085. bnd.Name = "Bend"
  2086. bnd.Size = Vector3.new(1, 1, 1)
  2087. bnd.Transparency = 1
  2088. bnd.TopSurface = 0
  2089. bnd.BottomSurface = 0
  2090. local bndm = Instance.new("SpecialMesh", bnd)
  2091. bndm.MeshType = 3
  2092. bndm.Scale = Vector3.new(8, 8, 8)
  2093. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2094. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2095. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2096. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2097. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2098. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2099. Debounces.Shewt = true
  2100. coroutine.wrap(function()
  2101. for i = 1, 20, 0.2 do
  2102. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2103. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2104. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2105. rng.Transparency = i/20
  2106. rng3.Transparency = 1/16
  2107. rng4.Transparency = i/12
  2108. wait()
  2109. end
  2110. wait()
  2111. rng:Destroy()
  2112. end)()
  2113. if Debounces.Shewt == true then
  2114. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2115. hit = ht.Parent
  2116. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2117. if HasntTouched(hit.Name) == true and deb == false then
  2118. deb = true
  2119. coroutine.wrap(function()
  2120. hit:FindFirstChild("Humanoid").PlatformStand = true
  2121. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2122. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2123. end)()
  2124. table.insert(Touche, hit.Name)
  2125. deb = false
  2126. end
  2127. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2128. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2129. deb = true
  2130. coroutine.wrap(function()
  2131. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2132. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2133. wait(1)
  2134. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2135. end)()
  2136. table.insert(Touche, hit.Parent.Name)
  2137. deb = false
  2138. for i, v in pairs(Touche) do
  2139. print(v)
  2140. end
  2141. end
  2142. end
  2143. end)
  2144. end
  2145. for i = 0, 260, 8 do
  2146. bem.Size = Vector3.new(i, 2, 2)
  2147. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2148. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2149. bnd.Size = Vector3.new(1,1,1)
  2150. bndm.Scale = Vector3.new(8,8,8)
  2151. if i % 10 == 0 then
  2152. local newRng = rng2:Clone()
  2153. newRng.Parent = char
  2154. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2155. local newRngm = rngm2:clone()
  2156. newRngm.Parent=newRng
  2157. coroutine.wrap(function()
  2158. for i = 1, 10, 0.2 do
  2159. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2160. newRng.Transparency = i/10
  2161. wait()
  2162. end
  2163. wait()
  2164. newRng:Destroy()
  2165. end)()
  2166. end
  2167. wait()
  2168. end
  2169. wait()
  2170. Debounces.Shewt = false
  2171. bem:Destroy()
  2172. out:Destroy()
  2173. bnd:Destroy()
  2174. Debounces.Ready = false
  2175. for i, v in pairs(Touche) do
  2176. table.remove(Touche, i)
  2177. end
  2178. wait()
  2179. table.insert(Touche, char.Name)
  2180. Debounces.NoIdl = false
  2181. if Debounces.CanAttack == false then
  2182. Debounces.CanAttack = true
  2183. end
  2184. end
  2185. end
  2186. end)
  2187. ----------------------------------------------------
  2188. sidz = {"231917888", "231917845", "231917806"}
  2189. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2190. mouse.KeyDown:connect(function(key)
  2191. if key == "f" then
  2192. larm.BrickColor = BrickColor.new("Bright red")
  2193. rarm.BrickColor = BrickColor.new("Bright red")
  2194. if Debounces.CanAttack == true then
  2195. Debounces.CanAttack = false
  2196. Debounces.on = true
  2197. Debounces.NoIdl = true
  2198. for i = 1, 10 do
  2199. 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.4)
  2200. 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.4)
  2201. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2202. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2203. 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)
  2204. 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)
  2205. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2206. if Debounces.on == false then break end
  2207. wait()
  2208. end
  2209. z = Instance.new("Sound",char)
  2210. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2211. z.Pitch = ptz[math.random(1,#ptz)]
  2212. z.Volume = 1
  2213. z1 = Instance.new("Sound",char)
  2214. z1.SoundId = z.SoundId
  2215. z1.Pitch = z.Pitch
  2216. z1.Volume = 1
  2217. wait(1)
  2218. z:Play()
  2219. z1:Play()
  2220. Stomp()
  2221. for i = 1, 20 do
  2222. 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.6)
  2223. 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.6)
  2224. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2225. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2226. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2227. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2228. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2229. if Debounces.on == false then break end
  2230. wait()
  2231. end
  2232. if Debounces.CanAttack == false then
  2233. Debounces.CanAttack = true
  2234. Debounces.on = false
  2235. Debounces.NoIdl = false
  2236. larm.BrickColor = BrickColor.new("Really black")
  2237. rarm.BrickColor = BrickColor.new("Really black")
  2238. end
  2239. end
  2240. end
  2241. end)
  2242. ----------------------------------------------------
  2243. mouse.KeyDown:connect(function(key)
  2244. if key == "g" then
  2245. larm.BrickColor = BrickColor.new("Bright red")
  2246. rarm.BrickColor = BrickColor.new("Bright red")
  2247. if Debounces.CanAttack == true then
  2248. Debounces.CanAttack = false
  2249. Debounces.on = true
  2250. Debounces.NoIdl = true
  2251. chrg = lleg.Touched:connect(function(ht)
  2252. hit = ht.Parent
  2253. if ht and hit:IsA("Model") then
  2254. if hit:FindFirstChild("Humanoid") then
  2255. if hit.Name ~= p.Name then
  2256. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2257. Debounces.Slashed = true]]--
  2258. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2259. hit:FindFirstChild("Humanoid").PlatformStand = true
  2260. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2261. --Debounces.Slashed = false
  2262. --end
  2263. end
  2264. end
  2265. elseif ht and hit:IsA("Hat") then
  2266. if hit.Parent.Name ~= p.Name then
  2267. if hit.Parent:FindFirstChild("Humanoid") then
  2268. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2269. Debounces.Slashed = true]]--
  2270. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2271. hit:FindFirstChild("Humanoid").PlatformStand = true
  2272. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2273. --Debounces.Slashed = false
  2274. end
  2275. end
  2276. end
  2277. end)
  2278. for i = 1, 14 do
  2279. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.5)
  2280. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.6, .9, -.4)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.5)
  2281. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.5)
  2282. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(0), math.rad(-90), math.rad(0)), 0.5)
  2283. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2284. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.5)
  2285. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2286. if Debounces.on == false then break end
  2287. wait()
  2288. end
  2289. charge()
  2290. z = Instance.new("Sound",char)
  2291. z.SoundId = "rbxassetid://200632875"
  2292. z.Volume = 1
  2293. z.Pitch = .8
  2294. z1 = Instance.new("Sound",char)
  2295. z1.SoundId = "rbxassetid://200632875"
  2296. z1.Volume = 1
  2297. z1.Pitch = .9
  2298. z:Play()
  2299. z1:Play()
  2300. wait(1)
  2301. z:Destroy()
  2302. z1:Destroy()
  2303. chrg:disconnect()
  2304. if Debounces.CanAttack == false then
  2305. Debounces.CanAttack = true
  2306. Debounces.on = false
  2307. Debounces.NoIdl = false
  2308. larm.BrickColor = BrickColor.new("Really black")
  2309. rarm.BrickColor = BrickColor.new("Really black")
  2310. end
  2311. end
  2312. end
  2313. end)
  2314. ----------------------------------------------------
  2315. pt = {0.7, 0.8, 0.9}
  2316. mouse.KeyDown:connect(function(key)
  2317. if key == "h" then
  2318. if Debounces.CanJoke == true then
  2319. Debounces.CanJoke = false
  2320. u = Instance.new("Sound")
  2321. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2322. u.Parent = char
  2323. u.Looped = false
  2324. u.Pitch = pt[math.random(1,#pt)]
  2325. u.Volume = 1
  2326. u2 = Instance.new("Sound")
  2327. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  2328. u2.Parent = char
  2329. u2.Looped = false
  2330. u2.Pitch = u.Pitch
  2331. u2.Volume = 1
  2332. wait(.01)
  2333. u:Play()
  2334. u2:Play()
  2335. wait(6)
  2336. u:Destroy()
  2337. u2:Destroy()
  2338. if Debounces.CanJoke == false then
  2339. Debounces.CanJoke = true
  2340. end
  2341. end
  2342. end
  2343. end)
  2344. ----------------------------------------------------
  2345. mouse.KeyDown:connect(function(key)
  2346. if key == "j" then
  2347. if Debounces.CanJoke == true then
  2348. Debounces.CanJoke = false
  2349. z = Instance.new("Sound",char)
  2350. z.SoundId = "rbxassetid://135017755"
  2351. z.Pitch = .76
  2352. z.Volume = 1
  2353. wait()
  2354. z:Play()
  2355. wait(6)
  2356. z:Destroy()
  2357. if Debounces.CanJoke == false then
  2358. Debounces.CanJoke = true
  2359. end
  2360. end
  2361. end
  2362. end)
  2363. ----------------------------------------------------
  2364. mouse.KeyDown:connect(function(key)
  2365. if key == "k" then
  2366. if Debounces.CanJoke == true then
  2367. Debounces.CanJoke = false
  2368. z = Instance.new("Sound",char)
  2369. z.SoundId = "rbxassetid://135017578"
  2370. z.Pitch = .76
  2371. z.Volume = 1
  2372. wait()
  2373. z:Play()
  2374. wait(4)
  2375. z:Destroy()
  2376. if Debounces.CanJoke == false then
  2377. Debounces.CanJoke = true
  2378. end
  2379. end
  2380. end
  2381. end)
  2382. ----------------------------------------------------
  2383. mouse.KeyDown:connect(function(key)
  2384. if key == "x" then
  2385. if Debounces.CanAttack == true then
  2386. Debounces.CanAttack = false
  2387. Debounces.NoIdl = true
  2388. Debounces.on = true
  2389. Debounces.ks = true
  2390. for i = 1, 10 do
  2391. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.6)
  2392. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.7,.9,-.5)*CFrame.Angles(math.rad(40),math.rad(0),math.rad(20)), 0.6)
  2393. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2394. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2395. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.6)
  2396. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.7, .6) * CFrame.Angles(math.rad(-70), math.rad(0), math.rad(0)), 0.6)
  2397. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2398. if Debounces.on == false then break end
  2399. wait()
  2400. end
  2401. z = Instance.new("Sound",hed)
  2402. z.SoundId = "rbxassetid://169445092"
  2403. z.Volume = 1
  2404. wait(0.1)
  2405. z:Play()
  2406. kik = rleg.Touched:connect(function(ht)
  2407. hit = ht.Parent
  2408. if ht and hit:IsA("Model") then
  2409. if hit:FindFirstChild("Humanoid") then
  2410. if hit.Name ~= p.Name then
  2411. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2412. Debounces.Slashed = true]]--
  2413. if Debounces.ks==true then
  2414. z = Instance.new("Sound",hed)
  2415. z.SoundId = "rbxassetid://169380525"
  2416. z.Volume = 1
  2417. z:Play()
  2418. Debounces.ks=false
  2419. end
  2420. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2421. hit:FindFirstChild("Humanoid").PlatformStand = true
  2422. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2423. --Debounces.Slashed = false
  2424. --end
  2425. end
  2426. end
  2427. elseif ht and hit:IsA("Hat") then
  2428. if hit.Parent.Name ~= p.Name then
  2429. if hit.Parent:FindFirstChild("Humanoid") then
  2430. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2431. Debounces.Slashed = true]]--
  2432. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2433. hit:FindFirstChild("Humanoid").PlatformStand = true
  2434. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2435. --Debounces.Slashed = false
  2436. --end
  2437. end
  2438. end
  2439. end
  2440. end)
  2441. for i = 1, 8 do
  2442. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.7)
  2443. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.7)
  2444. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2445. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2446. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.7)
  2447. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.6, -1.4) * CFrame.Angles(math.rad(60), math.rad(0), math.rad(0)), 0.7)
  2448. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2449. if Debounces.on == false then break end
  2450. wait()
  2451. end
  2452. kik:disconnect()
  2453. if Debounces.CanAttack == false then
  2454. Debounces.CanAttack = true
  2455. Debounces.on = false
  2456. Debounces.NoIdl = false
  2457. end
  2458. end
  2459. end
  2460. end)
  2461. ----------------------------------------------------
  2462. mouse.KeyDown:connect(function(key)
  2463. if key == "c" then
  2464. if Debounces.CanAttack == true then
  2465. Debounces.CanAttack = false
  2466. Debounces.NoIdl = true
  2467. Debounces.on = true
  2468. SIDZ = {"231917744", "231917742"}
  2469. PTZ = {0.7, 0.8, 0.9, 1}
  2470. for i = 1, 20 do
  2471. wait()
  2472. for i,v in pairs(char.Absolution:children()) do
  2473. if v:IsA("Part") or v:IsA("WedgePart") then
  2474. v.Transparency = v.Transparency + 0.05
  2475. end
  2476. end
  2477. end
  2478. function FindNearestTorso(Position,Distance,SinglePlayer)
  2479. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2480. local List = {}
  2481. for i,v in pairs(workspace:GetChildren())do
  2482. if v:IsA("Model")then
  2483. if v:findFirstChild("Torso")then
  2484. if v ~= char then
  2485. if(v.Torso.Position -Position).magnitude <= Distance then
  2486. table.insert(List,v)
  2487. end
  2488. end
  2489. end
  2490. end
  2491. end
  2492. return List
  2493. end
  2494. GroundPound()
  2495. for i = 1, 5 do
  2496. 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)
  2497. 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)
  2498. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2499. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2500. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2501. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2502. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2503. if Debounces.on == false then break end
  2504. wait()
  2505. end
  2506. GroundPound()
  2507. for i = 1, 5 do
  2508. 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)
  2509. 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)
  2510. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2511. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2512. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2513. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2514. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2515. if Debounces.on == false then break end
  2516. wait()
  2517. end
  2518. GroundPound()
  2519. for i = 1, 5 do
  2520. 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)
  2521. 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)
  2522. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2523. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2524. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2525. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2526. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2527. if Debounces.on == false then break end
  2528. wait()
  2529. end
  2530. GroundPound()
  2531. for i = 1, 5 do
  2532. 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)
  2533. 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)
  2534. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2535. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2536. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2537. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2538. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2539. if Debounces.on == false then break end
  2540. wait()
  2541. end
  2542. GroundPound()
  2543. for i = 1, 5 do
  2544. 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)
  2545. 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)
  2546. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2547. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2548. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2549. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2550. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2551. if Debounces.on == false then break end
  2552. wait()
  2553. end
  2554. GroundPound()
  2555. for i = 1, 5 do
  2556. 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)
  2557. 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)
  2558. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2559. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2560. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2561. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2562. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2563. if Debounces.on == false then break end
  2564. wait()
  2565. end
  2566. for i = 1, 18 do
  2567. 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)
  2568. 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)
  2569. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2570. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2571. 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)
  2572. 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)
  2573. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2574. if Debounces.on == false then break end
  2575. wait()
  2576. end
  2577. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2578. if v:FindFirstChild('Humanoid') then
  2579. v.Humanoid:TakeDamage(math.random(20,60))
  2580. v.Humanoid.PlatformStand = true
  2581. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2582. end
  2583. end
  2584. x = Instance.new("Sound",char)
  2585. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2586. x.Pitch = PTZ[math.random(1,#PTZ)]
  2587. x.Volume = 1
  2588. wait(0.1)
  2589. x:Play()
  2590. Crater(hed,20)
  2591. for i = 1, 14 do
  2592. 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)
  2593. 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)
  2594. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2595. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2596. 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)
  2597. 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)
  2598. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.5, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  2599. if Debounces.on == false then break end
  2600. wait()
  2601. end
  2602. if Debounces.CanAttack == false then
  2603. Debounces.CanAttack = true
  2604. Debounces.on = false
  2605. Debounces.NoIdl = false
  2606. for i = 1, 20 do
  2607. wait()
  2608. for i,v in pairs(char.Absolution:children()) do
  2609. if v:IsA("Part") or v:IsA("WedgePart") then
  2610. v.Transparency = v.Transparency - 0.05
  2611. end
  2612. end
  2613. end
  2614. end
  2615. end
  2616. end
  2617. end)
  2618. ----------------------------------------------------176349813
  2619. mouse.KeyDown:connect(function(key)
  2620. if key == "b" then
  2621. hum.WalkSpeed = 0.01
  2622. if Debounces.CanAttack == true then
  2623. Debounces.CanAttack = false
  2624. Debounces.NoIdl = true
  2625. Debounces.on = true
  2626. for i = 1,20 do
  2627. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2628. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2629. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2630. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2631. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2632. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2633. 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)
  2634. if Debounces.on == false then break end
  2635. wait()
  2636. end
  2637. wait(1)
  2638. v = Instance.new("Sound")
  2639. v.SoundId = "rbxassetid://181384451"
  2640. v.Parent = char
  2641. v.Looped = false
  2642. v.Pitch = 1.04
  2643. v.Volume = 1
  2644. wait(.01)
  2645. v:Play()
  2646.  
  2647. if Daytime == true then
  2648. Daytime = false
  2649. l.TimeOfDay = 24
  2650. else
  2651. Daytime = true
  2652. l.TimeOfDay = 12
  2653. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2654. end
  2655.  
  2656. local Shockwave = function()
  2657. local rng1 = Instance.new("Part", char)
  2658. rng1.Anchored = true
  2659. rng1.BrickColor = BrickColor.new("Really black")
  2660. rng1.CanCollide = false
  2661. rng1.FormFactor = 3
  2662. rng1.Name = "Ring"
  2663. rng1.Size = Vector3.new(1, 1, 1)
  2664. rng1.Transparency = 0.35
  2665. rng1.TopSurface = 0
  2666. rng1.BottomSurface = 0
  2667. local rngm1 = Instance.new("SpecialMesh", rng)
  2668. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2669. rngm1.Scale = Vector3.new(10, 10, 1)
  2670. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2671. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2672. Wave.Name = "Shockwave"
  2673. Wave.BrickColor = BrickColor.new("Really black")
  2674. Wave.Size = Vector3.new(1, 1, 1)
  2675. Wave.Shape = "Ball"
  2676. Wave.CanCollide = false
  2677. Wave.Anchored = true
  2678. Wave.TopSurface = 0
  2679. Wave.BottomSurface = 0
  2680. Wave.Touched:connect(function(hit)
  2681. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2682. local Occlude = true
  2683. local NotOccludes = {
  2684. char.Name;
  2685. "Wings";
  2686. "Scythe";
  2687. "Thingy";
  2688. "Thingy2"; -- put all of the names in a table pls
  2689. }
  2690. for i,v in pairs(NotOccludes) do
  2691. if hit.Parent.Name == v then
  2692. Occlude = false
  2693. end
  2694. end
  2695. --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
  2696. if Occlude then
  2697. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2698. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2699. end
  2700. end
  2701. end)
  2702.  
  2703. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2704.  
  2705. coroutine.wrap(function()
  2706. for i = 1, 20, 0.2 do
  2707. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2708. rng1.Transparency = i/20
  2709. wait()
  2710. end
  2711. wait()
  2712. rng1:Destroy()
  2713. end)()
  2714.  
  2715. Delay(0, function()
  2716.  
  2717. if Daytime == false then
  2718. for i = 1, 50, 1 do
  2719. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2720. Wave.CFrame = char.Torso.CFrame
  2721. local t = i / 50
  2722. Wave.Transparency = t
  2723. wait()
  2724. end
  2725. else
  2726. for i = 1, 50, 1 do
  2727. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2728. Wave.CFrame = char.Torso.CFrame
  2729. local t = i / 50
  2730. Wave.Transparency = t
  2731. wait()
  2732. end
  2733. end
  2734. Wave:Destroy()
  2735. end)
  2736. Delay(0, function()
  2737. while wait() do
  2738. if Wave ~= nil then
  2739. Wave.CFrame = char.Torso.CFrame
  2740. else
  2741. break
  2742. end
  2743. end
  2744. end)
  2745. end
  2746. Shockwave()
  2747. for i = 1, 15 do
  2748. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2749. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2750. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2751. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2752. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2753. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2754. if Debounces.on == false then break end
  2755. wait()
  2756. end
  2757. for i = 1, 15 do
  2758. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2759. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2760. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2761. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2762. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2763. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2764. if Debounces.on == false then break end
  2765. wait()
  2766. end
  2767. for i = 1, 15 do
  2768. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2769. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2770. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2771. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2772. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2773. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2774. if Debounces.on == false then break end
  2775. wait()
  2776. end
  2777. for i = 1, 15 do
  2778. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2779. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2780. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2781. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2782. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2783. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2784. if Debounces.on == false then break end
  2785. wait()
  2786. end
  2787. for i = 1, 15 do
  2788. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-130)), 0.2)
  2789. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3.2, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(70)), 0.2)
  2790. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2791. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(20), math.rad(0)), 0.2)
  2792. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2793. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2794. if Debounces.on == false then break end
  2795. wait()
  2796. end
  2797. for i = 1, 15 do
  2798. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(-70)), 0.2)
  2799. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0) * CFrame.Angles(math.rad(120), math.rad(0), math.rad(130)), 0.2)
  2800. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2801. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(30), math.rad(-20), math.rad(0)), 0.2)
  2802. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2803. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2804. if Debounces.on == false then break end
  2805. wait()
  2806. end
  2807. wait(1.4)
  2808. Debounces.NoIdl = false
  2809. hum.WalkSpeed = 5
  2810. Debounces.on = false
  2811. wait()
  2812. if Debounces.CanAttack == false then
  2813. Debounces.CanAttack = true
  2814. v:Destroy()
  2815. end
  2816. end
  2817. end
  2818. end)
  2819. ----------------------------------------------------
  2820. mouse.KeyDown:connect(function(key)
  2821. if key == "m" then
  2822. hum.WalkSpeed = 0
  2823. if Debounces.CanAttack == true then
  2824. Debounces.CanAttack = false
  2825. Debounces.on = true
  2826. Debounces.NoIdl = true
  2827. --[[x = Instance.new("Sound",char)
  2828. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  2829. x.Looped = false
  2830. x.Pitch = 1.1
  2831. x.Volume = 1
  2832. x:Play()
  2833. x2 = Instance.new("Sound",char)
  2834. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  2835. x2.Looped = false
  2836. x2.Pitch = .7
  2837. x2.Volume = 1
  2838. wait(.1)
  2839. x:Play()
  2840. x2:Play()
  2841. for i = 1, 20 do
  2842. 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)
  2843. 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)
  2844. 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)
  2845. 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)
  2846. 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)
  2847. 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)
  2848. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.4)
  2849. if Debounces.on == false then break end
  2850. wait()
  2851. x:Destroy()
  2852. x2:Destroy()
  2853. end
  2854. wait(1)]]--
  2855. local rng = Instance.new("Part", char)
  2856. rng.Anchored = true
  2857. rng.BrickColor = BrickColor.new("Really black")
  2858. rng.CanCollide = false
  2859. rng.FormFactor = 3
  2860. rng.Name = "Ring"
  2861. rng.Size = Vector3.new(1, 1, 1)
  2862. rng.Transparency = 0.35
  2863. rng.TopSurface = 0
  2864. rng.BottomSurface = 0
  2865. rng.Position = torso.Position - Vector3.new(0,2,0)
  2866. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2867. local rngm = Instance.new("SpecialMesh", rng)
  2868. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2869. rngm.Scale = Vector3.new(1, 1, 2)
  2870. x = Instance.new("Sound",char)
  2871. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  2872. x.Looped = false
  2873. x.Pitch = .7
  2874. x.Volume = 1
  2875. x:Play()
  2876. coroutine.wrap(function()
  2877. for i = 1, 60, 2 do
  2878. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2879. rng.Transparency = i/60
  2880. wait()
  2881. end
  2882. wait()
  2883. rng:Destroy()
  2884. end)()
  2885. hum.WalkSpeed = 50
  2886. BV = Instance.new("BodyVelocity", torso)
  2887. BV.maxForce = Vector3.new(0,200000,0)
  2888. BV.P = 100000
  2889. BV.velocity = Vector3.new(0,800,0)
  2890. for i = 1, 20 do
  2891. 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)
  2892. 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)
  2893. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2894. 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)
  2895. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2896. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2897. 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)
  2898. if Debounces.on == false then break end
  2899. wait()
  2900. end
  2901. x:Destroy()
  2902. BV:Destroy()
  2903. --[[for i = 1, 30 do
  2904. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 1.5, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2905. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-16), math.rad (0), math.rad(0)), 0.3)
  2906. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-10)), 0.3)
  2907. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5, 0.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)), 0.3)
  2908. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2909. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2910. if Debounces.on == false then break end
  2911. wait()
  2912. end]]--
  2913. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2914. for i = 1, 30 do
  2915. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(-14),math.rad(0), math.rad(0)),0.3)
  2916. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  2917. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)), 0.3)
  2918. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90)), 0.3)
  2919. 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)
  2920. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.2)
  2921. 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)
  2922. if Debounces.on == false then break end
  2923. wait()
  2924. end
  2925. end
  2926. Debounces.on = false
  2927. Debounces.NoIdl = false
  2928. local ry,ht,ps=nil,nil,nil
  2929. while ht==nil do
  2930. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  2931. wait()
  2932. end
  2933. z = Instance.new("Sound",char)
  2934. z.SoundId = "rbxassetid://142070127"
  2935. z.Volume = 1
  2936. wait(.1)
  2937. z:Play()
  2938. Landing()
  2939. hum.WalkSpeed = 8
  2940. if Debounces.CanAttack == false then
  2941. Debounces.CanAttack = true
  2942. end
  2943. end
  2944. end
  2945. end)
  2946. ----------------------------------------------------
  2947. Grab = false
  2948. mouse.KeyDown:connect(function(key)
  2949. if key == "z" then
  2950. larm.BrickColor = BrickColor.new("Bright red")
  2951. rarm.BrickColor = BrickColor.new("Bright red")
  2952. Debounces.on = true
  2953. Debounces.NoIdl = true
  2954. if Grab == false then
  2955. gp = nil
  2956. con1=larm.Touched:connect(function(hit) -- this is grab
  2957. ht = hit.Parent
  2958. hum1=ht:FindFirstChild('Humanoid')
  2959. if hum1 ~= nil then
  2960. hum1.PlatformStand=true
  2961. gp = ht
  2962. Grab = true
  2963. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  2964. asd.Parent = larm
  2965. asd.Name = "asd"
  2966. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  2967. elseif hum1 == nil then
  2968. con1:disconnect()
  2969. wait() return
  2970. end
  2971. end)
  2972. for i = 1, 18 do
  2973. 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)
  2974. 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)
  2975. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2976. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  2977. 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)
  2978. 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)
  2979. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.3, -1.1) * CFrame.Angles(math.rad(-60), math.rad(-90), math.rad(0)), 0.9)
  2980. if Debounces.on == false then break end
  2981. wait()
  2982. end
  2983. con1:disconnect()
  2984. Debounces.on = false
  2985. Debounces.NoIdl = false
  2986. elseif Grab == true then
  2987. Grab = false
  2988. for i = 1, 20 do
  2989. 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)
  2990. 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)
  2991. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  2992. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  2993. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2994. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2995. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  2996. if Debounces.on == false then end
  2997. wait()
  2998. end
  2999. if gp ~= nil then
  3000. for i,v in pairs(larm:GetChildren()) do
  3001. if v.Name == "asd" and v:IsA("Weld") then
  3002. v:Remove()
  3003. end
  3004. end
  3005. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3006. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3007. bv.P = 125000
  3008. bv.velocity = char.Head.CFrame.lookVector * 200
  3009. for i = 1, 12 do
  3010. 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)
  3011. if Debounces.on == false then end
  3012. wait()
  3013. end
  3014. ht=nil
  3015. Spawn(function()
  3016. wait(0.5)
  3017. bv:Destroy()
  3018. end)
  3019. Debounces.on = false
  3020. Debounces.NoIdl = false
  3021. elseif ht == nil then wait()
  3022. Grab = false
  3023. Debounces.on = false
  3024. Debounces.NoIdl = false
  3025. end
  3026. end
  3027. end
  3028. end)
  3029. mouse.KeyDown:connect(function(key)
  3030. if string.byte(key) == 52 then
  3031. char.Humanoid.WalkSpeed = 21
  3032. end
  3033. end)
  3034. mouse.KeyUp:connect(function(key)
  3035. if string.byte(key) == 52 then
  3036. char.Humanoid.WalkSpeed = 5
  3037. end
  3038. end)
  3039. ----------------------------------------------------
  3040. local animpose = "Idle"
  3041. local lastanimpose = "Idle"
  3042. local sine = 0
  3043. local change = 1
  3044. local val = 0
  3045. local ffing = false
  3046. ----------------------------------------------------
  3047. -------------------------------
  3048. game:GetService("RunService").RenderStepped:connect(function()
  3049. --[[if char.Humanoid.Jump == true then
  3050. jump = true
  3051. else
  3052. jump = false
  3053. end]]
  3054. char.Humanoid.FreeFalling:connect(function(f)
  3055. if f then
  3056. ffing = true
  3057. else
  3058. ffing = false
  3059. end
  3060. end)
  3061. sine = sine + change
  3062. if jumpn == true then
  3063. animpose = "Jumping"
  3064. elseif ffing == true then
  3065. animpose = "Freefalling"
  3066. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3067. animpose = "Idle"
  3068. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  3069. animpose = "Walking"
  3070. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  3071. animpose = "Running"
  3072. end
  3073. if animpose ~= lastanimpose then
  3074. sine = 0
  3075. if Debounces.NoIdl == false then
  3076. if animpose == "Idle" then
  3077. for i = 1, 2 do
  3078. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(20)), 0.05)
  3079. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.05)
  3080. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3081. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3082. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3083. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3084. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3085. end
  3086. elseif animpose == "Walking" then
  3087. for i = 1, 2 do
  3088. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3089. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3090. hed.Weld.C0 = CFrame.new(0,4,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3091. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  3092. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  3093. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 20, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3094. end
  3095. elseif animpose == "Running" then
  3096. for i = 1, 2 do
  3097. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3098. 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)
  3099. 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)
  3100. 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)
  3101. 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)
  3102. 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)
  3103. 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)
  3104. end
  3105. wait()
  3106. end
  3107. else
  3108. end
  3109. end
  3110. lastanimpose = animpose
  3111. if Debounces.NoIdl == false then
  3112. if animpose == "Idle" then
  3113. if stanceToggle == "Normal" then
  3114. change = 0.5
  3115. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(10+2*math.cos(sine/10)),math.rad(0),math.rad(20)), 0.2)
  3116. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(15),math.rad(5),math.rad(-20-2*math.cos(sine/14))), 0.2)
  3117. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/20)),math.rad(40),0), 0.2)
  3118. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1*math.cos(sine/20), 2) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  3119. 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)
  3120. 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)
  3121. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(-90), math.rad(-110), math.rad(-70)), 1)
  3122. elseif stanceToggle == "Sitting" then
  3123. 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)
  3124. 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)
  3125. 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)
  3126. 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)
  3127. 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)
  3128. 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)
  3129. 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)
  3130. end
  3131. elseif animpose == "Walking" then
  3132. if stanceToggle == "Normal" then
  3133. change = 1
  3134. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(-12),math.rad(10+2*math.cos(sine/14))), 0.2)
  3135. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-16),math.rad(12),math.rad(-10-2*math.cos(sine/14))), 0.2)
  3136. hed.Weld.C0 = CFrame.new(0,3,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3137. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(-8)), 0.4)
  3138. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-10-12*math.cos(sine/16)), 0, math.rad(8)), 0.4)
  3139. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 10, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3140. end
  3141. elseif animpose == "Running" then
  3142. change = 1
  3143. 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)
  3144. 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)
  3145. 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)
  3146. 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)
  3147. 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)
  3148. 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)
  3149. 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)
  3150. end
  3151. end
  3152. --[[if animpose == "Walking" then
  3153. if footsteps == false then
  3154. x:Play()
  3155. footsteps = true
  3156. end
  3157. x.Pitch = 1.1
  3158. elseif animpose == "Idle" then
  3159. x:Stop()
  3160. footsteps = false
  3161. elseif animpose == "Running" then
  3162. x.Pitch = 1.2
  3163. if footsteps == false then
  3164. x:Play()
  3165. footsteps = true
  3166. end
  3167. end]]--
  3168. end)
  3169.  
  3170.  
  3171.  
  3172. Player=game:GetService('Players').LocalPlayer
  3173. Character=Player.Character
  3174. Mouse=Player:GetMouse()
  3175. m=Instance.new('Model',Character)
  3176.  
  3177.  
  3178. local function weldBetween(a, b)
  3179. local weldd = Instance.new("ManualWeld")
  3180. weldd.Part0 = a
  3181. weldd.Part1 = b
  3182. weldd.C0 = CFrame.new()
  3183. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3184. weldd.Parent = a
  3185. return weldd
  3186. end
  3187.  
  3188. it=Instance.new
  3189.  
  3190. function nooutline(part)
  3191. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3192. end
  3193.  
  3194. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3195. local fp=it("Part")
  3196. fp.formFactor=formfactor
  3197. fp.Parent=parent
  3198. fp.Reflectance=reflectance
  3199. fp.Transparency=transparency
  3200. fp.CanCollide=false
  3201. fp.Locked=true
  3202. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3203. fp.Name=name
  3204. fp.Size=size
  3205. fp.Position=Character.Torso.Position
  3206. nooutline(fp)
  3207. fp.Material=material
  3208. fp:BreakJoints()
  3209. return fp
  3210. end
  3211.  
  3212. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3213. local mesh=it(Mesh)
  3214. mesh.Parent=part
  3215. if Mesh=="SpecialMesh" then
  3216. mesh.MeshType=meshtype
  3217. mesh.MeshId=meshid
  3218. end
  3219. mesh.Offset=offset
  3220. mesh.Scale=scale
  3221. return mesh
  3222. end
  3223.  
  3224. function weld(parent,part0,part1,c0,c1)
  3225. local weld=it("Weld")
  3226. weld.Parent=parent
  3227. weld.Part0=part0
  3228. weld.Part1=part1
  3229. weld.C0=c0
  3230. weld.C1=c1
  3231. return weld
  3232. end
  3233.  
  3234. Head=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Really black","Handle",Vector3.new(4.50989914, 4.5098958, 4.50989771))
  3235. Headweld=weld(m,Character["Head"],Head,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.019949913, -0.784425735, 0.342384338, 1, 0, 0, 0, 0.939693093, -0.342019022, 0, 0.342018992, 0.939693093))
  3236. mesh("SpecialMesh",Head,Enum.MeshType.FileMesh,"http://www.roblox.com/asset/?id=16952952",Vector3.new(0, 0, 0),Vector3.new(2.25494957, 2.2549479, 2.25494885))
  3237. Player=game:GetService('Players').LocalPlayer
  3238. Character=Player.Character
  3239. Mouse=Player:GetMouse()
  3240. m=Instance.new('Model',Character)
  3241.  
  3242.  
  3243. local function weldBetween(a, b)
  3244. local weldd = Instance.new("ManualWeld")
  3245. weldd.Part0 = a
  3246. weldd.Part1 = b
  3247. weldd.C0 = CFrame.new()
  3248. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3249. weldd.Parent = a
  3250. return weldd
  3251. end
  3252.  
  3253. it=Instance.new
  3254.  
  3255. function nooutline(part)
  3256. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3257. end
  3258.  
  3259. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3260. local fp=it("Part")
  3261. fp.formFactor=formfactor
  3262. fp.Parent=parent
  3263. fp.Reflectance=reflectance
  3264. fp.Transparency=transparency
  3265. fp.CanCollide=false
  3266. fp.Locked=true
  3267. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3268. fp.Name=name
  3269. fp.Size=size
  3270. fp.Position=Character.Torso.Position
  3271. nooutline(fp)
  3272. fp.Material=material
  3273. fp:BreakJoints()
  3274. return fp
  3275. end
  3276.  
  3277. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3278. local mesh=it(Mesh)
  3279. mesh.Parent=part
  3280. if Mesh=="SpecialMesh" then
  3281. mesh.MeshType=meshtype
  3282. mesh.MeshId=meshid
  3283. end
  3284. mesh.Offset=offset
  3285. mesh.Scale=scale
  3286. return mesh
  3287. end
  3288.  
  3289. function weld(parent,part0,part1,c0,c1)
  3290. local weld=it("Weld")
  3291. weld.Parent=parent
  3292. weld.Part0=part0
  3293. weld.Part1=part1
  3294. weld.C0=c0
  3295. weld.C1=c1
  3296. return weld
  3297. end
  3298.  
  3299. LArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3300. LArmweld=weld(m,Character["Left Arm"],LArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0699939728, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3301. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3302. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.42499733, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3303. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3304. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3305. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","LLeg",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3306. LLegweld=weld(m,LArm,LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450008392, -0.290473938, -1.11473179, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  3307. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3308. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3309. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.155472755, -0.149731159, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3310. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3311. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.822774887, -1.09854889, 1.52587891e-005, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, 0, 0, 0, -1))
  3312. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3313. Partweld=weld(m,LArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.789524078, 0.795269012, 0, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3314. Player=game:GetService('Players').LocalPlayer
  3315. Character=Player.Character
  3316. Mouse=Player:GetMouse()
  3317. m=Instance.new('Model',Character)
  3318.  
  3319.  
  3320. local function weldBetween(a, b)
  3321. local weldd = Instance.new("ManualWeld")
  3322. weldd.Part0 = a
  3323. weldd.Part1 = b
  3324. weldd.C0 = CFrame.new()
  3325. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3326. weldd.Parent = a
  3327. return weldd
  3328. end
  3329.  
  3330. it=Instance.new
  3331.  
  3332. function nooutline(part)
  3333. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3334. end
  3335.  
  3336. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3337. local fp=it("Part")
  3338. fp.formFactor=formfactor
  3339. fp.Parent=parent
  3340. fp.Reflectance=reflectance
  3341. fp.Transparency=transparency
  3342. fp.CanCollide=false
  3343. fp.Locked=true
  3344. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3345. fp.Name=name
  3346. fp.Size=size
  3347. fp.Position=Character.Torso.Position
  3348. nooutline(fp)
  3349. fp.Material=material
  3350. fp:BreakJoints()
  3351. return fp
  3352. end
  3353.  
  3354. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3355. local mesh=it(Mesh)
  3356. mesh.Parent=part
  3357. if Mesh=="SpecialMesh" then
  3358. mesh.MeshType=meshtype
  3359. mesh.MeshId=meshid
  3360. end
  3361. mesh.Offset=offset
  3362. mesh.Scale=scale
  3363. return mesh
  3364. end
  3365.  
  3366. function weld(parent,part0,part1,c0,c1)
  3367. local weld=it("Weld")
  3368. weld.Parent=parent
  3369. weld.Part0=part0
  3370. weld.Part1=part1
  3371. weld.C0=c0
  3372. weld.C1=c1
  3373. return weld
  3374. end
  3375.  
  3376. RArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3377. RArmweld=weld(m,Character["Right Arm"],RArm,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0500068665, 0.124999046, -1.14440918e-005, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3378. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3379. Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, 1.45000315, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3380. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3381. Partweld=weld(m,RArm,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.54501152, -0.0949978828, -7.62939453e-006, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3382. Player=game:GetService('Players').LocalPlayer
  3383. Character=Player.Character
  3384. Mouse=Player:GetMouse()
  3385. m=Instance.new('Model',Character)
  3386.  
  3387.  
  3388. local function weldBetween(a, b)
  3389. local weldd = Instance.new("ManualWeld")
  3390. weldd.Part0 = a
  3391. weldd.Part1 = b
  3392. weldd.C0 = CFrame.new()
  3393. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3394. weldd.Parent = a
  3395. return weldd
  3396. end
  3397.  
  3398. it=Instance.new
  3399.  
  3400. function nooutline(part)
  3401. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3402. end
  3403.  
  3404. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3405. local fp=it("Part")
  3406. fp.formFactor=formfactor
  3407. fp.Parent=parent
  3408. fp.Reflectance=reflectance
  3409. fp.Transparency=transparency
  3410. fp.CanCollide=false
  3411. fp.Locked=true
  3412. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3413. fp.Name=name
  3414. fp.Size=size
  3415. fp.Position=Character.Torso.Position
  3416. nooutline(fp)
  3417. fp.Material=material
  3418. fp:BreakJoints()
  3419. return fp
  3420. end
  3421.  
  3422. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3423. local mesh=it(Mesh)
  3424. mesh.Parent=part
  3425. if Mesh=="SpecialMesh" then
  3426. mesh.MeshType=meshtype
  3427. mesh.MeshId=meshid
  3428. end
  3429. mesh.Offset=offset
  3430. mesh.Scale=scale
  3431. return mesh
  3432. end
  3433.  
  3434. function weld(parent,part0,part1,c0,c1)
  3435. local weld=it("Weld")
  3436. weld.Parent=parent
  3437. weld.Part0=part0
  3438. weld.Part1=part1
  3439. weld.C0=c0
  3440. weld.C1=c1
  3441. return weld
  3442. end
  3443.  
  3444. RLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3445. RLegweld=weld(m,Character["Right Leg"],RLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.450008392, -0.269515991, -0.949736118, 0, 0, -1, -1, 0, 0, 0, 1, 0))
  3446. mesh("SpecialMesh",RLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3447. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3448. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.00201035, 1.44436717, 0.57000351, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3449. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3450. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.542831421, 0.283806801, 0.569999695, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3451. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.0700016, 1.9832561))
  3452. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.254991531, 0.96000123, -0.450004578, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3453. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3454. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.06000137, 1.91000128, -0.449989319, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3455. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3456. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.895587921, 0.0462193489, -0.450004578, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
  3457. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3458. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00769901276, 0.173805237, 0.593242645, -0.150384068, -0.852868438, 0.500000238, 0.0868240222, 0.492404103, 0.866025329, -0.984807789, 0.173648432, -2.60770406e-007))
  3459. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3460. Partweld=weld(m,RLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.470241547, 1.62436724, 0.593242645, -0.173647985, -0.984807849, 0, 0, 0, 1, -0.984807849, 0.173647985, 0))
  3461. Player=game:GetService('Players').LocalPlayer
  3462. Character=Player.Character
  3463. Mouse=Player:GetMouse()
  3464. m=Instance.new('Model',Character)
  3465.  
  3466.  
  3467. local function weldBetween(a, b)
  3468. local weldd = Instance.new("ManualWeld")
  3469. weldd.Part0 = a
  3470. weldd.Part1 = b
  3471. weldd.C0 = CFrame.new()
  3472. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3473. weldd.Parent = a
  3474. return weldd
  3475. end
  3476.  
  3477. it=Instance.new
  3478.  
  3479. function nooutline(part)
  3480. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3481. end
  3482.  
  3483. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3484. local fp=it("Part")
  3485. fp.formFactor=formfactor
  3486. fp.Parent=parent
  3487. fp.Reflectance=reflectance
  3488. fp.Transparency=transparency
  3489. fp.CanCollide=false
  3490. fp.Locked=true
  3491. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3492. fp.Name=name
  3493. fp.Size=size
  3494. fp.Position=Character.Torso.Position
  3495. nooutline(fp)
  3496. fp.Material=material
  3497. fp:BreakJoints()
  3498. return fp
  3499. end
  3500.  
  3501. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3502. local mesh=it(Mesh)
  3503. mesh.Parent=part
  3504. if Mesh=="SpecialMesh" then
  3505. mesh.MeshType=meshtype
  3506. mesh.MeshId=meshid
  3507. end
  3508. mesh.Offset=offset
  3509. mesh.Scale=scale
  3510. return mesh
  3511. end
  3512.  
  3513. function weld(parent,part0,part1,c0,c1)
  3514. local weld=it("Weld")
  3515. weld.Parent=parent
  3516. weld.Part0=part0
  3517. weld.Part1=part1
  3518. weld.C0=c0
  3519. weld.C1=c1
  3520. return weld
  3521. end
  3522.  
  3523. Torso=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Handle",Vector3.new(2.03212667, 4.08000183, 2.04325604))
  3524. Torsoweld=weld(m,Character["Torso"],Torso,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.044511795, 0.0452680588, 0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3525. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3526. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.991963387, 0.394999981, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3527. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.05393803, 4.16000175, 2.08000016))
  3528. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.43049431, -0.0152668953, -0.0299987793, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3529. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3530. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07803631, 0.394999981, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3531. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.43393803, 4.46000195, 2.11000013))
  3532. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0449981689, 0.119999886, 0.0149841309, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3533. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3534. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.48950481, -0.0152668953, -0.0299835205, 1, 0, 0, 0, 1, 0, 0, 0, 1))
  3535. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3536. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.708036423, 0.585000515, -0.990009308, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3537. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3538. Partweld=weld(m,Torso,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.571961403, 0.585000515, -0.990013123, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3539. Player=game:GetService('Players').LocalPlayer
  3540. Character=Player.Character
  3541. Mouse=Player:GetMouse()
  3542. m=Instance.new('Model',Character)
  3543.  
  3544.  
  3545. local function weldBetween(a, b)
  3546. local weldd = Instance.new("ManualWeld")
  3547. weldd.Part0 = a
  3548. weldd.Part1 = b
  3549. weldd.C0 = CFrame.new()
  3550. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3551. weldd.Parent = a
  3552. return weldd
  3553. end
  3554.  
  3555. it=Instance.new
  3556.  
  3557. function nooutline(part)
  3558. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3559. end
  3560.  
  3561. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3562. local fp=it("Part")
  3563. fp.formFactor=formfactor
  3564. fp.Parent=parent
  3565. fp.Reflectance=reflectance
  3566. fp.Transparency=transparency
  3567. fp.CanCollide=false
  3568. fp.Locked=true
  3569. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3570. fp.Name=name
  3571. fp.Size=size
  3572. fp.Position=Character.Torso.Position
  3573. nooutline(fp)
  3574. fp.Material=material
  3575. fp:BreakJoints()
  3576. return fp
  3577. end
  3578.  
  3579. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3580. local mesh=it(Mesh)
  3581. mesh.Parent=part
  3582. if Mesh=="SpecialMesh" then
  3583. mesh.MeshType=meshtype
  3584. mesh.MeshId=meshid
  3585. end
  3586. mesh.Offset=offset
  3587. mesh.Scale=scale
  3588. return mesh
  3589. end
  3590.  
  3591. function weld(parent,part0,part1,c0,c1)
  3592. local weld=it("Weld")
  3593. weld.Parent=parent
  3594. weld.Part0=part0
  3595. weld.Part1=part1
  3596. weld.C0=c0
  3597. weld.C1=c1
  3598. return weld
  3599. end
  3600.  
  3601. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3602. LLegweld=weld(m,Character["Left Leg"],LLeg,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450004578, -0.240491867, -0.949736118, 0, 0, 1, 1, 0, 0, 0, 1, 0))
  3603. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3604. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3605. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.135001183, 0.965001106, -0.450008392, 0, 1, 0, 0, 0, 1, 1, 0, 0))
  3606. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3607. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.07999802, 1.91000128, 0.450008392, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3608. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3609. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.91526413, 0.0496888161, 0.450023651, 0, -0.984807849, 0.173647985, 0, 0.173647985, 0.984807849, -1, 0, 0))
  3610. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3611. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.1345892, 1.44436717, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3612. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3613. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.657648087, 0.350095749, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3614. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3615. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.754587173, 1.624367, -0.569984436, 0, -1, 0, 0, 0, 1, -1, 0, 0))
  3616. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3617. Partweld=weld(m,LLeg,Part,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.238555908, 0.315980911, -0.569992065, 0, -0.866025388, 0.500000238, 0, 0.500000179, 0.866025329, -1, 0, 0))
  3618.  
  3619. Player=game:GetService('Players').LocalPlayer
  3620. Character=Player.Character
  3621. Mouse=Player:GetMouse()
  3622. m=Instance.new('Model',Character)
  3623.  
  3624.  
  3625. local function weldBetween(a, b)
  3626. local weldd = Instance.new("ManualWeld")
  3627. weldd.Part0 = a
  3628. weldd.Part1 = b
  3629. weldd.C0 = CFrame.new()
  3630. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3631. weldd.Parent = a
  3632. return weldd
  3633. end
  3634.  
  3635. it=Instance.new
  3636.  
  3637. function nooutline(part)
  3638. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3639. end
  3640.  
  3641. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3642. local fp=it("Part")
  3643. fp.formFactor=formfactor
  3644. fp.Parent=parent
  3645. fp.Reflectance=reflectance
  3646. fp.Transparency=transparency
  3647. fp.CanCollide=false
  3648. fp.Locked=true
  3649. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3650. fp.Name=name
  3651. fp.Size=size
  3652. fp.Position=Character.Torso.Position
  3653. nooutline(fp)
  3654. fp.Material=material
  3655. fp:BreakJoints()
  3656. return fp
  3657. end
  3658.  
  3659. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3660. local mesh=it(Mesh)
  3661. mesh.Parent=part
  3662. if Mesh=="SpecialMesh" then
  3663. mesh.MeshType=meshtype
  3664. mesh.MeshId=meshid
  3665. end
  3666. mesh.Offset=offset
  3667. mesh.Scale=scale
  3668. return mesh
  3669. end
  3670.  
  3671. function weld(parent,part0,part1,c0,c1)
  3672. local weld=it("Weld")
  3673. weld.Parent=parent
  3674. weld.Part0=part0
  3675. weld.Part1=part1
  3676. weld.C0=c0
  3677. weld.C1=c1
  3678. return weld
  3679. end
  3680.  
  3681. Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Institutional white","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
  3682. Orb.Shape = "Ball"
  3683. Orbweld=weld(m,Character["Left Arm"],Orb,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.319931984, 3.51501703, -0.0999984741, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  3684. Orb.Transparency = 0
  3685. ----------------------------------------------------
  3686. Player=game:GetService('Players').LocalPlayer
  3687. Character=Player.Character
  3688. Mouse=Player:GetMouse()
  3689. m=Instance.new('Model',Character)
  3690.  
  3691.  
  3692. local function weldBetween(a, b)
  3693. local weldd = Instance.new("ManualWeld")
  3694. weldd.Part0 = a
  3695. weldd.Part1 = b
  3696. weldd.C0 = CFrame.new()
  3697. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3698. weldd.Parent = a
  3699. return weldd
  3700. end
  3701.  
  3702. it=Instance.new
  3703.  
  3704. function nooutline(part)
  3705. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3706. end
  3707.  
  3708. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3709. local fp=it("Part")
  3710. fp.formFactor=formfactor
  3711. fp.Parent=parent
  3712. fp.Reflectance=reflectance
  3713. fp.Transparency=transparency
  3714. fp.CanCollide=false
  3715. fp.Locked=true
  3716. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3717. fp.Name=name
  3718. fp.Size=size
  3719. fp.Position=Character.Torso.Position
  3720. nooutline(fp)
  3721. fp.Material=material
  3722. fp:BreakJoints()
  3723. return fp
  3724. end
  3725.  
  3726. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3727. local mesh=it(Mesh)
  3728. mesh.Parent=part
  3729. if Mesh=="SpecialMesh" then
  3730. mesh.MeshType=meshtype
  3731. mesh.MeshId=meshid
  3732. end
  3733. mesh.Offset=offset
  3734. mesh.Scale=scale
  3735. return mesh
  3736. end
  3737.  
  3738. function weld(parent,part0,part1,c0,c1)
  3739. local weld=it("Weld")
  3740. weld.Parent=parent
  3741. weld.Part0=part0
  3742. weld.Part1=part1
  3743. weld.C0=c0
  3744. weld.C1=c1
  3745. return weld
  3746. end
  3747.  
  3748. WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3749. 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))
  3750. mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3751. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3752. 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))
  3753. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3754. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3755. 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))
  3756. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3757. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3758. 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))
  3759. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3760. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3761. 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))
  3762. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3763. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3764. 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))
  3765. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3766. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3767. 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))
  3768. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3769. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3770. 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))
  3771. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3772. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3773. 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))
  3774. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3775. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3776. 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))
  3777. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3778. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3779. 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))
  3780. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3781. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3782. 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))
  3783. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3784. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3785. 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))
  3786. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3787. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Lily white","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3788. 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))
  3789. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3790. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3791. 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))
  3792. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3793. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3794. 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))
  3795. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3796. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3797. 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))
  3798. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3799. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3800. 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))
  3801. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3802. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3803. 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))
  3804. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3805. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3806. 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))
  3807. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3808. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3809. 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))
  3810. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3811. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3812. 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))
  3813. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3814. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3815. 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))
  3816. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3817. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3818. 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))
  3819. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3820. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3821. 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))
  3822. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3823. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3824. 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))
  3825. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3826. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3827. 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))
  3828. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3829. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3830. 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))
  3831. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3832. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3833. 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))
  3834. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3835. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3836. 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))
  3837. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3838. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3839. 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))
  3840. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3841. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3842. 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))
  3843. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3844. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3845. 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))
  3846. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3847. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3848. 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))
  3849. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3850. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3851. 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))
  3852. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3853. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3854. 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))
  3855. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3856. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3857. 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))
  3858. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3859. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3860. 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))
  3861. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3862. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3863. 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))
  3864. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3865. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3866. 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))
  3867. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3868. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3869. 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))
  3870. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3871. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3872. 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))
  3873. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3874. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3875. 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))
  3876. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3877. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3878. 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))
  3879. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3880. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3881. 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))
  3882. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3883. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3884. 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))
  3885. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3886. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3887. 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))
  3888. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3889. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3890. 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))
  3891. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3892. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3893. 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))
  3894. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3895. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3896. 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))
  3897. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3898. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3899. 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))
  3900. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3901. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3902. 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))
  3903. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3904. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3905. 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))
  3906. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3907. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3908. 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))
  3909. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3910. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3911. 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))
  3912. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3913. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3914. 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))
  3915. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3916. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  3917. 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))
  3918. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3919. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  3920. 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))
  3921. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3922. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  3923. 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))
  3924. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3925. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3926. 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))
  3927. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3928. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3929. 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))
  3930. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3931. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3932. 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))
  3933. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3934. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3935. 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))
  3936. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3937. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  3938. 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))
  3939. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3940. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  3941. 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))
  3942. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  3943. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  3944. 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))
  3945. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  3946. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  3947. 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))
  3948. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3949. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  3950. 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))
  3951. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3952. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  3953. 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))
  3954. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3955. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3956. 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))
  3957. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3958. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3959. 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))
  3960. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3961. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3962. 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))
  3963. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3964. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3965. 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))
  3966. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3967. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  3968. 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))
  3969. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3970. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3971. 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))
  3972. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3973. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  3974. 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))
  3975. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3976. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  3977. 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))
  3978. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  3979. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  3980. 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))
  3981. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3982. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  3983. 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))
  3984. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3985. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3986. 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))
  3987. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3988. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  3989. 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))
  3990. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3991. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  3992. 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))
  3993. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  3994. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  3995. 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))
  3996. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  3997. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3998. 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))
  3999. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4000. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4001. 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))
  4002. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4003. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  4004. 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))
  4005. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4006. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  4007. 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))
  4008. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4009. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  4010. 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))
  4011. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4012. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4013. 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))
  4014. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4015. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4016. 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))
  4017. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4018. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4019. 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))
  4020. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4021. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4022. 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))
  4023. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4024. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4025. 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))
  4026. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4027. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4028. 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))
  4029. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4030. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4031. 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))
  4032. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4033. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4034. 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))
  4035. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4036. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4037. 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))
  4038. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4039. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4040. 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))
  4041. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4042. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4043. 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))
  4044. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4045. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4046. 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))
  4047. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4048. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4049. 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))
  4050. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4051. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4052. 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))
  4053. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4054. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4055. 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))
  4056. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4057. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4058. 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))
  4059. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4060. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4061. 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))
  4062. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4063. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4064. 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))
  4065. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4066. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4067. 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))
  4068. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4069. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4070. 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))
  4071. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4072. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4073. 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))
  4074. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4075. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  4076. 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))
  4077. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4078. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4079. 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))
  4080. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4081. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  4082. 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))
  4083. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4084. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4085. 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))
  4086. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4087. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4088. 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))
  4089. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4090. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4091. 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))
  4092. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4093. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4094. 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))
  4095. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4096. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4097. 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))
  4098. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4099. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4100. 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))
  4101. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4102. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4103. 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))
  4104. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4105. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4106. 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))
  4107. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4108. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4109. 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))
  4110. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4111. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4112. 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))
  4113. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4114. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4115. 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))
  4116. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4117. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4118. 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))
  4119. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4120. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4121. 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))
  4122. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4123. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4124. 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))
  4125. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4126. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4127. 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))
  4128. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4129. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4130. 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))
  4131. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4132. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4133. 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))
  4134. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4135. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4136. 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))
  4137. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4138. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4139. 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))
  4140. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4141. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4142. 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))
  4143. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4144. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4145. 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))
  4146. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4147. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4148. 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))
  4149. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4150. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4151. 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))
  4152. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4153. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4154. 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))
  4155. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4156. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4157. 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))
  4158. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4159. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4160. 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))
  4161. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4162. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4163. 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))
  4164. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4165. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4166. 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))
  4167. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4168. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4169. 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))
  4170. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4171. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4172. 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))
  4173. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4174. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4175. 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))
  4176. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4177. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4178. 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))
  4179. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4180. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4181. 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))
  4182. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4183. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4184. 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))
  4185. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4186. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4187. 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))
  4188. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4189. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4190. 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))
  4191. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4192. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4193. 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))
  4194. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4195. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4196. 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))
  4197. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4198. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4199. 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))
  4200. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4201. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4202. 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))
  4203. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4204. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4205. 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))
  4206. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4207. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4208. 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))
  4209. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4210. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4211. 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))
  4212. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4213. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4214. 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))
  4215. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4216. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4217. 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))
  4218. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4219. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4220. 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))
  4221. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4222. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4223. 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))
  4224. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4225. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4226. 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))
  4227. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4228. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4229. 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))
  4230. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4231. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4232. 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))
  4233. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4234.  
  4235.  
  4236.  
  4237.  
  4238. Player=game:GetService('Players').LocalPlayer
  4239. Character=Player.Character
  4240. Mouse=Player:GetMouse()
  4241. m=Instance.new('Model',Character)
  4242.  
  4243.  
  4244. local function weldBetween(a, b)
  4245. local weldd = Instance.new("ManualWeld")
  4246. weldd.Part0 = a
  4247. weldd.Part1 = b
  4248. weldd.C0 = CFrame.new()
  4249. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4250. weldd.Parent = a
  4251. return weldd
  4252. end
  4253.  
  4254. it=Instance.new
  4255.  
  4256. function nooutline(part)
  4257. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4258. end
  4259.  
  4260. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4261. local fp=it("Part")
  4262. fp.formFactor=formfactor
  4263. fp.Parent=parent
  4264. fp.Reflectance=reflectance
  4265. fp.Transparency=transparency
  4266. fp.CanCollide=false
  4267. fp.Locked=true
  4268. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4269. fp.Name=name
  4270. fp.Size=size
  4271. fp.Position=Character.Torso.Position
  4272. nooutline(fp)
  4273. fp.Material=material
  4274. fp:BreakJoints()
  4275. return fp
  4276. end
  4277.  
  4278. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4279. local mesh=it(Mesh)
  4280. mesh.Parent=part
  4281. if Mesh=="SpecialMesh" then
  4282. mesh.MeshType=meshtype
  4283. mesh.MeshId=meshid
  4284. end
  4285. mesh.Offset=offset
  4286. mesh.Scale=scale
  4287. return mesh
  4288. end
  4289.  
  4290. function weld(parent,part0,part1,c0,c1)
  4291. local weld=it("Weld")
  4292. weld.Parent=parent
  4293. weld.Part0=part0
  4294. weld.Part1=part1
  4295. weld.C0=c0
  4296. weld.C1=c1
  4297. return weld
  4298. end
  4299.  
  4300. BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
  4301. BladeEndweld=weld(m,Character["Right Arm"],BladeEnd,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.450769424, -5.79949188, -1.7236805, -0.999986351, -0.00451200129, -0.00263599772, 0.00276065455, -0.0278460663, -0.999610126, 0.00443684589, -0.999605477, 0.0278581958))
  4302. mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4303. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
  4304. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.90734863e-005, -5.98527908, 0.00445604324, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4305. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4306. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4307. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.52587891e-005, -2.39555359, 3.80643082, 1, -5.3551048e-009, 1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, 5.12227416e-009, -0.866027415, 0.500004888))
  4308. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4309. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4310. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.90734863e-006, 2.40819931, 3.84829712, 1, -5.3551048e-009, 1.5788828e-009, 4.07453626e-009, -0.499998868, 0.866032958, 3.95812094e-009, -0.866030097, -0.500000536))
  4311. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
  4312. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4313. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.33514404e-005, 0.468460083, -1.15685654, 1, -5.3551048e-009, 1.5788828e-009, 1.62981451e-009, -0.500003278, -0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
  4314. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4315. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
  4316. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(5.7220459e-006, -2.85785294, 0.00391054153, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4317. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4318. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4319. Bladeweld=weld(m,BladeEnd,Blade,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0, -0.458122253, -1.16581345, 1, -5.3551048e-009, 1.5788828e-009, -4.07453626e-009, 0.499998868, -0.866032958, -3.95812094e-009, 0.866030097, 0.500000536))
  4320. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4321. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4322. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392150879, -0.000373840332, 6.66751862, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
  4323. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
  4324. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4325. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00390815735, 6.52303314, 1.88164616, 1, -5.3551048e-009, 1.5788828e-009, 5.58793545e-009, -0.965928555, 0.258823007, -4.65661287e-010, -0.258822083, -0.965931714))
  4326. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4327. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4328. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391769409, 0.0489282608, 6.86997986, 1, -3.30619514e-008, -9.9773024e-007, 1.00096076e-006, 1.07847154e-006, 1.00000679, -2.28174031e-008, -1.00000346, 1.09151006e-006))
  4329. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
  4330. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4331. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 5.61977386, 3.36309242, 1, -3.30619514e-008, -9.9773024e-007, 4.8102811e-007, -0.866027653, 0.50000453, -8.77771527e-007, -0.500002861, -0.866030633))
  4332. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
  4333. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
  4334. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0039100647, -6.65688705, 0.13747406, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4335. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
  4336. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4337. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00391578674, 6.71179581, 0.134818077, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -1.00000346, 5.58793545e-009, -1.5788828e-009, 5.58793545e-009, -1.00000691))
  4338. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
  4339. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4340. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389480591, 4.77613449, 4.91134644, 1, -5.3551048e-009, 1.5788828e-009, 4.88944352e-009, -0.707108498, 0.707112134, 2.79396772e-009, -0.707109809, -0.707111001))
  4341. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4342. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4343. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00392341614, 5.84634399, 3.51166153, 1, -5.3551048e-009, 1.5788828e-009, 5.3551048e-009, -0.86602813, 0.500003815, 1.62981451e-009, -0.500002027, -0.866031051))
  4344. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4345. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4346. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00389862061, 1.71303558, 6.64987946, 1, -3.30619514e-008, -9.9773024e-007, 9.61008482e-007, -0.258820415, 0.96593225, -2.80793756e-007, -0.965929031, -0.258821368))
  4347. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4348. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
  4349. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00542259216, -0.378371716, 8.37445831, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
  4350. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
  4351. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
  4352. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000516891479, -2.73707199, -0.00561141968, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4353. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
  4354. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
  4355. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00561523438, -3.13931656, -0.0179476738, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4356. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
  4357. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Institutional white","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
  4358. BladeNeonweld=weld(m,BladeEnd,BladeNeon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00429534912, -0.295157909, 8.37542725, 1, 8.87969509e-006, -4.24777681e-006, 4.31533408e-006, -0.0072765369, 0.999980271, 8.85874033e-006, -0.999976933, -0.0072765518))
  4359. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
  4360. Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
  4361. Handleweld=weld(m,BladeEnd,Handle,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00547122955, -5.38523102, -0.00175476074, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
  4362. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
  4363. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4364. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00848770142, 4.68890381, 5.0786438, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
  4365. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
  4366. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
  4367. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022315979, 2.16143417, -0.0224318504, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4368. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4369. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4370. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000429153442, -0.148144245, 1.37475967, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4371. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4372. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4373. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00186729431, 0.705814362, 1.8845787, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4374. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4375. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
  4376. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281333923, 2.86053848, 0.11316824, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4377. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4378. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
  4379. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00347757339, -0.00207901001, 2.874897, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4380. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
  4381. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4382. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000751495361, 0.735794067, 2.04483795, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4383. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4384. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
  4385. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00281143188, 2.86390305, -0.125523567, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4386. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4387. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
  4388. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225639343, 3.24793243, -0.0257816315, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4389. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4390. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4391. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573730469, 5.12487411, 5.07043457, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
  4392. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4393. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4394. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847434998, 5.07132339, 5.49375916, -1, 5.3551048e-009, -1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, -4.88944352e-009, 0.707108498, -0.707112134))
  4395. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4396. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4397. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 0.240013123, -0.00784635544, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4398. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
  4399. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4400. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223922729, 3.48665237, -0.0140166283, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4401. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
  4402. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.23496354, 0.333971083))
  4403. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0057144165, 6.50336838, 0.0964884758, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4404. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
  4405. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4406. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00573348999, 4.2307663, -4.09196472, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
  4407. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
  4408. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4409. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00227165222, 3.39096451, 0.390414715, 1, -5.3551048e-009, 1.5788828e-009, -5.58793545e-009, 0.965928555, -0.258823007, 4.65661287e-010, 0.258822083, 0.965931714))
  4410. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4411. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4412. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00225067139, 3.38317871, -0.408802032, 1, -5.3551048e-009, 1.5788828e-009, -4.42378223e-009, 0.965928733, 0.25882256, 2.96859071e-009, -0.258821636, 0.965931952))
  4413. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4414. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
  4415. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00849342346, -3.96007156, 6.41414642, -1.00000012, 2.06101686e-006, 1.94132008e-006, 5.31668775e-007, -0.539589584, 0.841935158, 2.77510844e-006, 0.841932237, 0.539591372))
  4416. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
  4417. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
  4418. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00574302673, 4.75794983, 4.6880188, 1, -5.3551048e-009, 1.5788828e-009, -4.88944352e-009, 0.707108498, -0.707112134, -2.79396772e-009, 0.707109809, 0.707111001))
  4419. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4420. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
  4421. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00491142273, -3.52550125, -0.00119590759, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1.36788003e-006, -1.00000346, 2.09547579e-006, 1, 1.35786831e-006, 1.63512595e-007))
  4422. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
  4423. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4424. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224113464, 0.895763397, 0.829719543, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.866027653, -0.50000453, -1.39698386e-009, 0.500002861, 0.866030633))
  4425. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4426. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4427. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000440597534, -0.138348579, 0.894599915, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4428. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4429. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4430. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000467300415, -0.172971725, -4.87036133, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4431. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4432. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4433. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00296974182, 0.775684357, 2.01208115, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4434. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4435. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4436. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000457763672, -0.0884757042, 7.14133453, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4437. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4438. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4439. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00278663635, 2.60951233, -0.0151414871, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4440. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
  4441. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4442. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00187492371, 0.745685577, 1.8518219, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4443. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4444. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4445. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00299263, -1.55075121, 3.68893433, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
  4446. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4447. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4448. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000438690186, -0.132833481, 0.892940521, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4449. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4450. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4451. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000461578369, -0.098233223, -4.87198639, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4452. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4453. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4454. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000400543213, -0.123067856, 1.37639999, 1, -3.86452302e-006, 5.11141843e-006, 5.13588748e-006, 0.00727250986, -0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4455. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4456. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4457. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00226783752, -1.49668598, 3.68751907, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
  4458. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4459. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4460. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00223731995, -6.00695419, -0.00337791443, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4461. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
  4462. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4463. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.000419616699, -0.182757378, 7.13973236, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4464. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4465. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4466. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224304199, 0.873001099, -0.876026154, 1, -5.3551048e-009, 1.5788828e-009, -3.25962901e-009, 0.866028011, 0.500003994, 3.95812094e-009, -0.500002265, 0.866030872))
  4467. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4468. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
  4469. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.000431060791, -0.155970097, 8.00754547, 1, 1.88290142e-006, -4.05231549e-006, 4.06977051e-006, -0.00727253594, 0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4470. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
  4471. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
  4472. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00150680542, -0.259859562, 8.01216888, -1, -8.87969509e-006, 4.24777681e-006, -4.31565422e-006, 0.00727553666, -0.999980152, 8.85874033e-006, -0.999976993, -0.00727554969))
  4473. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
  4474. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4475. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00572776794, 3.31259918, 1.56507874, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 0.86602813, -0.500003815, -1.62981451e-009, 0.500002027, 0.866031051))
  4476. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4477. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4478. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00847244263, 1.56596184, 3.68146133, -1, 5.3551048e-009, -1.5788828e-009, -1.62981451e-009, 0.500003278, 0.866030395, -5.12227416e-009, 0.866027415, -0.500004888))
  4479. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4480. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4481. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00846862793, -0.113676071, -3.98678207, -1, 5.3551048e-009, -1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, 5.3551048e-009, -0.993459225, 0.11421828))
  4482. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
  4483. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
  4484. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00847244263, 2.12783813, 4.00239944, 1, 5.0291419e-008, 2.00066279e-006, 1.7893035e-006, 0.418343931, -0.908295453, -8.91042873e-007, 0.908292413, 0.418345362))
  4485. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
  4486. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
  4487. Handle2weld=weld(m,BladeEnd,Handle2,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00848197937, -0.114953518, 4.34464645, 1, -5.3551048e-009, 1.5788828e-009, -6.54836185e-010, -0.114217885, -0.993462563, -5.3551048e-009, 0.993459165, -0.114218257))
  4488. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
  4489. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 1.76913583, 0.333971083))
  4490. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00280761719, 2.54881287, -0.00673675537, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4491. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
  4492. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4493. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00242233276, 0.781448364, 1.95035934, 1, -9.49250534e-007, 2.02898082e-006, 2.10141297e-006, 0.701943696, -0.712239444, -7.53090717e-007, 0.712237179, 0.70194608))
  4494. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4495. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4496. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(1.11886787, -0.00262260437, 3.30176163, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4497. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4498. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4499. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124740601, -0.197305202, 1.52207947, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4500. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4501. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4502. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-1.12582397, -0.00260162354, 3.30752563, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4503. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4504. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4505. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00125694275, -0.156280041, 1.52334595, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
  4506. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4507. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4508. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126838684, 2.85546875, 0.447472572, 1, 2.25845724e-008, 1.00135367e-006, -4.02797014e-008, 0.999976933, 0.00727766939, -9.98494215e-007, -0.00727765262, 0.999980211))
  4509. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4510. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4511. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00126075745, 1.30287552, 1.671875, -1, 3.86452302e-006, -5.11141843e-006, -9.32952389e-007, 0.701947451, 0.712235808, 6.33043237e-006, 0.712233365, -0.701949954))
  4512. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4513. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4514. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00127220154, 2.8675766, 0.511937141, -1, 3.86452302e-006, -5.11141843e-006, 3.81679274e-006, 0.999976873, 0.00727466121, 5.1354582e-006, 0.00727464817, -0.999980271))
  4515. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4516. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4517. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00128173828, 0.741531372, 1.98311234, -1, -5.0291419e-008, -2.00066279e-006, -1.46543607e-006, 0.701945484, 0.712237716, 1.35891605e-006, 0.712235332, -0.701947927))
  4518. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4519. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4520. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00129127502, 2.06131363, -1.58065796, -1, 3.86452302e-006, -5.11141843e-006, 6.3306652e-006, 0.712233424, -0.701949954, 9.32952389e-007, -0.701947451, -0.712235808))
  4521. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
  4522. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4523. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.65778923, -0.00261688232, 3.554142, 9.13976692e-007, -0.298402101, 0.954447031, 1, 2.66823918e-007, -8.68145435e-007, -4.42378223e-009, 0.954443753, 0.298403084))
  4524. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4525. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4526. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.071811676, -0.00623512268, 6.19100571, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4527. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4528. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4529. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718102455, -0.00624275208, 6.83526611, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4530. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4531. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4532. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718164444, -0.00625419617, 6.99786377, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4533. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4534. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4535. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.0718173981, -0.00625228882, 6.02839279, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4536. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4537. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4538. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00294113159, -1.51745224, 3.69674301, 1, 2.25845724e-008, 1.00135367e-006, 9.98486939e-007, 0.00727552548, -0.999980271, -4.02797014e-008, 0.999976993, 0.00727553107))
  4539. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4540. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4541. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00124549866, -0.169769287, 1.02795029, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4542. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4543. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4544. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00121879578, -0.147402763, -4.72467804, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4545. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4546. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4547. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00126075745, 2.0196228, -1.61859512, 1, 2.25845724e-008, 1.00135367e-006, -7.34464265e-007, 0.70194453, 0.712238789, -6.76838681e-007, -0.712236404, 0.701947033))
  4548. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
  4549. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4550. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00123596191, 1.31023407, 1.65644073, 1, 4.13204543e-006, 4.88809019e-006, 5.71715645e-007, 0.701945722, -0.712237537, -6.37990888e-006, 0.712235212, 0.701948166))
  4551. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4552. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4553. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00224876404, -5.9966774, -0.00673389435, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4554. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4555. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4556. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00121307373, -0.206172466, -4.72341537, 1, -3.86452302e-006, 5.11141843e-006, 5.13573468e-006, 0.00727050938, -0.999980271, 3.81702557e-006, 0.999976993, 0.00727053359))
  4557. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4558. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4559. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00122642517, -0.219696999, 7.27475739, -1, -1.88290142e-006, 4.05231549e-006, -4.06977051e-006, 0.00727253594, -0.999980271, 1.8638093e-006, -0.999976933, -0.00727254525))
  4560. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4561. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4562. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.709104538, 0.00263023376, 3.57127762, 5.24742063e-007, -0.298404753, -0.954446197, -1, 1.02631748e-006, -8.71201337e-007, 1.22864731e-006, 0.954442978, -0.298405796))
  4563. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4564. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4565. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124359131, -0.133904457, 7.27602386, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
  4566. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4567. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4568. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0022354126, 0.250286102, -0.011218071, 1, -5.3551048e-009, 1.5788828e-009, -5.3551048e-009, 1.00000346, -5.58793545e-009, 1.5788828e-009, -5.58793545e-009, 1.00000691))
  4569. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4570. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4571. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00124740601, -0.18379879, 1.0292511, 1, 1.88290142e-006, -4.05231549e-006, 4.06897016e-006, -0.00727054104, 0.99998033, 1.86357647e-006, -0.999976873, -0.00727054477))
  4572. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4573. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4574. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0027923584, 2.42457581, -2.43035126, 1, -5.3551048e-009, 1.5788828e-009, -2.79396772e-009, 0.707109809, 0.707111001, 4.88944352e-009, -0.707108498, 0.707112134))
  4575. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
  4576. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
  4577. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.00516605377, -0.00261116028, 2.88111496, -1.60551281e-007, 2.08243728e-006, 1.00000679, 1, -5.3551048e-009, 1.63745426e-007, -5.12227416e-009, 1.00000334, -2.09547579e-006))
  4578. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
  4579. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Institutional white","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4580. Neonweld=weld(m,BladeEnd,Neon,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.00233078003, -1.57151031, 3.69814682, -1, 9.7672455e-007, -1.02919876e-006, -1.01856858e-006, 0.007278217, 0.99998033, 9.73697752e-007, 0.999976873, -0.00727825798))
  4581. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4582.  
  4583. Player=game:GetService('Players').LocalPlayer
  4584. Character=Player.Character
  4585. Mouse=Player:GetMouse()
  4586. m=Instance.new('Model',Character)
  4587.  
  4588.  
  4589. local function weldBetween(a, b)
  4590. local weldd = Instance.new("ManualWeld")
  4591. weldd.Part0 = a
  4592. weldd.Part1 = b
  4593. weldd.C0 = CFrame.new()
  4594. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4595. weldd.Parent = a
  4596. return weldd
  4597. end
  4598.  
  4599. it=Instance.new
  4600.  
  4601. function nooutline(part)
  4602. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4603. end
  4604.  
  4605. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4606. local fp=it("Part")
  4607. fp.formFactor=formfactor
  4608. fp.Parent=parent
  4609. fp.Reflectance=reflectance
  4610. fp.Transparency=transparency
  4611. fp.CanCollide=false
  4612. fp.Locked=true
  4613. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4614. fp.Name=name
  4615. fp.Size=size
  4616. fp.Position=Character.Torso.Position
  4617. nooutline(fp)
  4618. fp.Material=material
  4619. fp:BreakJoints()
  4620. return fp
  4621. end
  4622.  
  4623. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4624. local mesh=it(Mesh)
  4625. mesh.Parent=part
  4626. if Mesh=="SpecialMesh" then
  4627. mesh.MeshType=meshtype
  4628. mesh.MeshId=meshid
  4629. end
  4630. mesh.Offset=offset
  4631. mesh.Scale=scale
  4632. return mesh
  4633. end
  4634.  
  4635. function weld(parent,part0,part1,c0,c1)
  4636. local weld=it("Weld")
  4637. weld.Parent=parent
  4638. weld.Part0=part0
  4639. weld.Part1=part1
  4640. weld.C0=c0
  4641. weld.C1=c1
  4642. return weld
  4643. end
  4644.  
  4645. Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Institutional white","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
  4646. Face.Shape = "Ball"
  4647. Faceweld=weld(m,Character["Head"],Face,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0199375153, 0.150016785, -0.590007782, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4648.  
  4649.  
  4650. Player=game:GetService('Players').LocalPlayer
  4651. Character=Player.Character
  4652. Mouse=Player:GetMouse()
  4653. m=Instance.new('Model',Character)
  4654.  
  4655.  
  4656. local function weldBetween(a, b)
  4657. local weldd = Instance.new("ManualWeld")
  4658. weldd.Part0 = a
  4659. weldd.Part1 = b
  4660. weldd.C0 = CFrame.new()
  4661. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4662. weldd.Parent = a
  4663. return weldd
  4664. end
  4665.  
  4666. it=Instance.new
  4667.  
  4668. function nooutline(part)
  4669. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4670. end
  4671.  
  4672. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4673. local fp=it("Part")
  4674. fp.formFactor=formfactor
  4675. fp.Parent=parent
  4676. fp.Reflectance=reflectance
  4677. fp.Transparency=transparency
  4678. fp.CanCollide=false
  4679. fp.Locked=true
  4680. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4681. fp.Name=name
  4682. fp.Size=size
  4683. fp.Position=Character.Torso.Position
  4684. nooutline(fp)
  4685. fp.Material=material
  4686. fp:BreakJoints()
  4687. return fp
  4688. end
  4689.  
  4690. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4691. local mesh=it(Mesh)
  4692. mesh.Parent=part
  4693. if Mesh=="SpecialMesh" then
  4694. mesh.MeshType=meshtype
  4695. mesh.MeshId=meshid
  4696. end
  4697. mesh.Offset=offset
  4698. mesh.Scale=scale
  4699. return mesh
  4700. end
  4701.  
  4702. function weld(parent,part0,part1,c0,c1)
  4703. local weld=it("Weld")
  4704. weld.Parent=parent
  4705. weld.Part0=part0
  4706. weld.Part1=part1
  4707. weld.C0=c0
  4708. weld.C1=c1
  4709. return weld
  4710. end
  4711.  
  4712. Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
  4713. Backweld=weld(m,Character["Torso"],Back,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(-0.0149364471, -0.464990616, 1.0450058, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4714.  
  4715. local size = 40,40,40
  4716.  
  4717.  
  4718. ----------------------------------------------------
  4719. Player=game:GetService('Players').LocalPlayer
  4720. Character=Player.Character
  4721. Mouse=Player:GetMouse()
  4722. m=Instance.new('Model',Character)
  4723.  
  4724.  
  4725. local function weldBetween(a, b)
  4726. local weldd = Instance.new("ManualWeld")
  4727. weldd.Part0 = a
  4728. weldd.Part1 = b
  4729. weldd.C0 = CFrame.new()
  4730. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4731. weldd.Parent = a
  4732. return weldd
  4733. end
  4734.  
  4735. it=Instance.new
  4736.  
  4737. function nooutline(part)
  4738. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4739. end
  4740.  
  4741. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4742. local fp=it("Part")
  4743. fp.formFactor=formfactor
  4744. fp.Parent=parent
  4745. fp.Reflectance=reflectance
  4746. fp.Transparency=transparency
  4747. fp.CanCollide=false
  4748. fp.Locked=true
  4749. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4750. fp.Name=name
  4751. fp.Size=size
  4752. fp.Position=Character.Torso.Position
  4753. nooutline(fp)
  4754. fp.Material=material
  4755. fp:BreakJoints()
  4756. return fp
  4757. end
  4758.  
  4759. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4760. local mesh=it(Mesh)
  4761. mesh.Parent=part
  4762. if Mesh=="SpecialMesh" then
  4763. mesh.MeshType=meshtype
  4764. mesh.MeshId=meshid
  4765. end
  4766. mesh.Offset=offset
  4767. mesh.Scale=scale
  4768. return mesh
  4769. end
  4770.  
  4771. function weld(parent,part0,part1,c0,c1)
  4772. local weld=it("Weld")
  4773. weld.Parent=parent
  4774. weld.Part0=part0
  4775. weld.Part1=part1
  4776. weld.C0=c0
  4777. weld.C1=c1
  4778. return weld
  4779. end
  4780.  
  4781. F3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really black","Handle",Vector3.new(30.6000023, 30.6000023, 30.6000023))
  4782. F3weld=weld(m,Character["Torso"],F3,CFrame.new(0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1),CFrame.new(0.35006237, -0.479990005, 1.62999344, -1, 0, 0, 0, 1, 0, 0, 0, -1))
  4783. F3.Name = "F3"
  4784. F3.Shape = "Ball"
  4785. F3.CanCollide = false
  4786. F3.Size = Vector3.new(size)
  4787. F3.Transparency = 0.7
  4788. F3.Material = "Neon"
  4789. F3.Anchored = true
  4790. F3.BrickColor = BrickColor.new(0,0,0)
  4791. F3.Locked = true
  4792. F3.Archivable = false
  4793.  
  4794.  
  4795.  
  4796. local p = F3
  4797. local me = game.Players.LocalPlayer.Character
  4798. game.Workspace.CodedOverLordPlush.Humanoid.JumpPower = 400
  4799.  
  4800.  
  4801. p.Shape = "Ball"
  4802.  
  4803. game:GetService('RunService').Stepped:connect(function()
  4804. p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  4805. end)
  4806.  
  4807.  
  4808. wait(0.1)
  4809.  
  4810. F3.CanCollide = false
  4811. F3.CanCollide = false
  4812.  
  4813.  
  4814. F3.Transparency = 0.9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement