Advertisement
Orangeplayer1431

Untitled

Apr 1st, 2017
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 311.67 KB | None | 0 0
  1. wait(.5)
  2.  
  3. local runServ = game:GetService("RunService").RenderStepped
  4.  
  5. local HBill = Instance.new("BillboardGui",game.Players.LocalPlayer.Character.Head)
  6. local HMain, HBarBack, HBar = Instance.new("Frame", HBill), Instance.new("Frame"), Instance.new("Frame")
  7. local HHealth, HName = Instance.new("TextLabel", HBarBack), Instance.new("TextLabel")
  8. HBill.Size = UDim2.new(15,0,2.2,0)
  9. HBill.Name = "Health Display"
  10. HBill.StudsOffset = Vector3.new(0,4,0)
  11. HBill.AlwaysOnTop = true
  12. HBill.Enabled = true
  13. HMain.BackgroundColor3 = Color3.new(0, 0, 0)
  14. HMain.BackgroundTransparency = 1
  15. HMain.Size = UDim2.new(1,0,1,0)
  16. HBarBack.Parent = HMain
  17. HBarBack.BackgroundColor3 = Color3.new(0,0,0)
  18. HBarBack.BorderColor3 = Color3.new(0,0,0)
  19. HBarBack.BorderSizePixel = 2
  20. HBarBack.Position = UDim2.new(.025, 0, .55, 0)
  21. HBarBack.Size = UDim2.new(.95, 0, .3, 0)
  22. HBar.Parent = HBarBack
  23. HBar.BackgroundColor3 = Color3.new(0, 1, 0)
  24. HBar.BorderColor3 = Color3.new(0,0,0)
  25. HBar.Size = UDim2.new(.5,0,1,0)
  26. HHealth.BackgroundTransparency = 1
  27. HHealth.Size = UDim2.new(1,0,1,0)
  28. HHealth.Font = "SourceSans"
  29. HHealth.Text = " "
  30. HHealth.TextScaled = true
  31. HHealth.TextColor3 = Color3.new(1,1,1)
  32. HHealth.TextStrokeColor3 = BrickColor.new("Royal purple").Color
  33. HHealth.TextStrokeTransparency = 0
  34. HName.Parent = HMain
  35. HName.BackgroundTransparency = 1
  36. HName.Size = UDim2.new(1,0,.5,0)
  37. HName.Font = "SourceSansItalic"
  38. HName.Text = "Krichton, Overseer of the Void"
  39. HName.TextScaled = true
  40. HName.TextColor3 = BrickColor.new("Royal purple").Color
  41. HName.TextStrokeColor3 = Color3.new(0,0,0)
  42. HName.TextStrokeTransparency = 0
  43. HName.TextYAlignment = "Top"
  44. local p = game.Players.LocalPlayer
  45. local char = p.Character
  46. local mouse = p:GetMouse()
  47. local larm = char["Left Arm"]
  48. local rarm = char["Right Arm"]
  49. local lleg = char["Left Leg"]
  50. local rleg = char["Right Leg"]
  51. local hed = char.Head
  52. local torso = char.Torso
  53. local a = Instance.new("Part")
  54. a.BrickColor = BrickColor.new("Really black")
  55. a.Material = "Granite"
  56. a.Size = Vector3.new(650, 2, 650)
  57. a.Position = Vector3.new(0, 0, 0)
  58. a.Anchored = true
  59. a.Archivable = true
  60. a.CanCollide = true
  61. a.Parent = game.Workspace
  62. local m = Instance.new("SpecialMesh")
  63. m.Parent = a
  64. m.MeshType = "Brick"
  65. m.Scale = Vector3.new(10, 1, 10)
  66.  
  67. local l = game.Lighting
  68. local sky = Instance.new("Sky",l)
  69. l.TimeOfDay = "12:00:00"
  70. l.Brightness = 1
  71. l.Ambient = Color3.new(0.25, 0.5, 0.75)
  72. sky.CelestialBodiesShown = false
  73. sky.SkyboxBk = "http://www.roblox.com/asset/?id=1010388"
  74. sky.SkyboxDn = "http://www.roblox.com/asset/?id=1010389"
  75. sky.SkyboxFt = "http://www.roblox.com/asset/?id=1010386"
  76. sky.SkyboxLf = "http://www.roblox.com/asset/?id=1010387"
  77. sky.SkyboxRt = "http://www.roblox.com/asset/?id=1010385"
  78. sky.SkyboxUp = "http://www.roblox.com/asset/?id=1010390"
  79. sky.StarCount = 0
  80. sky.Name = "IcySkies"
  81.  
  82. local hum = char.Humanoid
  83. local cam = game.Workspace.CurrentCamera
  84. local root = char.HumanoidRootPart
  85. local deb = false
  86. local shot = 0
  87. local l = game:GetService("Lighting")
  88. local rs = game:GetService("RunService").RenderStepped
  89. local stanceToggle = "Normal"
  90. math.randomseed(os.time())
  91. hum.WalkSpeed = 30
  92. char.Health:Destroy()
  93. hum.MaxHealth = 50000
  94. wait(0.01)
  95. hum.Health = 50000
  96. ----------------------------------------------------
  97. ----------------------------------------------------
  98. shirt = Instance.new("Shirt", char)
  99. shirt.Name = "Shirt"
  100. pants = Instance.new("Pants", char)
  101. pants.Name = "Pants"
  102. char.Shirt.ShirtTemplate = "rbxassetid://237906462"
  103. char.Pants.PantsTemplate = "rbxassetid://237906462"
  104. ----------------------------------------------------
  105. ----------------------------------------------------
  106. Debounces = {
  107. on = false;
  108. ks = false;
  109. CanAttack = true;
  110. CanJoke = true;
  111. NoIdl = false;
  112. Slashing = false;
  113. Slashed = false;
  114. Grabbing = false;
  115. Grabbed = false;
  116. }
  117. local Touche = {char.Name, }
  118. ----------------------------------------------------
  119. function lerp(a, b, t) -- Linear interpolation
  120. return a + (b - a)*t
  121. end
  122.  
  123. function slerp(a, b, t) --Spherical interpolation
  124. dot = a:Dot(b)
  125. if dot > 0.99999 or dot < -0.99999 then
  126. return t <= 0.5 and a or b
  127. else
  128. r = math.acos(dot)
  129. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  130. end
  131. end
  132.  
  133. function matrixInterpolate(a, b, t)
  134. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  135. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  136. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  137. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  138. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  139. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  140. local t = v1:Dot(v2)
  141. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  142. return CFrame.new()
  143. end
  144. return CFrame.new(
  145. v0.x, v0.y, v0.z,
  146. v1.x, v1.y, v1.z,
  147. v2.x, v2.y, v2.z,
  148. v3.x, v3.y, v3.z)
  149. end
  150. ----------------------------------------------------
  151. function genWeld(a,b)
  152. local w = Instance.new("Weld",a)
  153. w.Part0 = a
  154. w.Part1 = b
  155. return w
  156. end
  157. function weld(a, b)
  158. local weld = Instance.new("Weld")
  159. weld.Name = "W"
  160. weld.Part0 = a
  161. weld.Part1 = b
  162. weld.C0 = a.CFrame:inverse() * b.CFrame
  163. weld.Parent = a
  164. return weld;
  165. end
  166. ----------------------------------------------------
  167. function Lerp(c1,c2,al)
  168. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  169. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  170. for i,v in pairs(com1) do
  171. com1[i] = v+(com2[i]-v)*al
  172. end
  173. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  174. end
  175. ----------------------------------------------------
  176. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  177. local wld = Instance.new("Weld", wp1)
  178. wld.Part0 = wp0
  179. wld.Part1 = wp1
  180. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  181. end
  182. ----------------------------------------------------
  183. for i,v in pairs(char:children()) do
  184. if v:IsA("Hat") then
  185. v:Destroy()
  186. end
  187. end
  188. for i,v in pairs(hed:children()) do
  189. if v:IsA("Sound") then
  190. v:Destroy()
  191. end
  192. end
  193. ----------------------------------------------------
  194. function HasntTouched(plrname)
  195. local ret = true
  196. for _, v in pairs(Touche) do
  197. if v == plrname then
  198. ret = false
  199. end
  200. end
  201. return ret
  202. end
  203. ----------------------------------------------------
  204. larm.Size = larm.Size * 2
  205. rarm.Size = rarm.Size * 2
  206. lleg.Size = lleg.Size * 2
  207. rleg.Size = rleg.Size * 2
  208. torso.Size = torso.Size * 2
  209. hed.Size = hed.Size * 2
  210. root.Size = root.Size * 2
  211. ----------------------------------------------------
  212. newWeld(torso, larm, -1.5, 0.5, 0)
  213. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  214. newWeld(torso, rarm, 1.5, 0.5, 0)
  215. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  216. newWeld(torso, hed, 0, 1.5, 0)
  217. newWeld(torso, lleg, -0.5, -1, 0)
  218. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  219. newWeld(torso, rleg, 0.5, -1, 0)
  220. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  221. newWeld(root, torso, 0, -1, 0)
  222. torso.Weld.C1 = CFrame.new(0, -1, 0)
  223. hed.Transparency = 1
  224. ----------------------------------------------------
  225. lite = Instance.new("PointLight", torso)
  226. lite.Brightness = 100
  227. lite.Range = 15
  228. lite.Color = Color3.new(2, 2, 2)
  229. --[[local hed2 = hed:Clone()
  230. hed2.CanCollide = false
  231. hed2.Parent = char
  232. hed2:ClearAllChildren()
  233. hed2.Transparency = 1
  234. hed2.Name = "DARP"
  235. local w = Instance.new("Weld",hed2)
  236. w.Part0 = hed
  237. w.Part1 = hed2
  238. w.C0 = CFrame.new(0,0,-0.175)
  239. z=Instance.new("SurfaceGui",hed2)
  240. z.Enabled = true
  241. z.Face = "Front"
  242. z.Adornee = hed2
  243. z.CanvasSize = Vector2.new(100,100)
  244. local face = Instance.new("ImageLabel",z)
  245. face.Size = UDim2.new(1,-30,1,0)
  246. face.Position = UDim2.new(0,15,0,0)
  247. face.BackgroundTransparency = 1
  248. face.Image='rbxassetid://46282671']]--
  249. ----------------------------------------------------
  250. z = Instance.new("Sound", char)
  251. z.SoundId = "rbxassetid://412053194"--242463565
  252. z.Looped = true
  253. z.Pitch = 1
  254. z.Volume = 1
  255. wait(.001)
  256. z:Play()
  257. ----------------------------------------------------
  258.  
  259. local m = Instance.new("Model")
  260. m.Name = "Absolution"
  261. p1 = Instance.new("Part", m)
  262. p1.BrickColor = BrickColor.new("Bright blue")
  263. p1.FormFactor = Enum.FormFactor.Custom
  264. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  265. 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)
  266. p1.CanCollide = false
  267. p1.Locked = true
  268. p1.Elasticity = 0
  269. p1.BottomSurface = Enum.SurfaceType.Smooth
  270. p1.TopSurface = Enum.SurfaceType.Smooth
  271. b1 = Instance.new("SpecialMesh", p1)
  272. b1.MeshType = Enum.MeshType.Wedge
  273. b1.Name = "Mesh"
  274. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  275. p2 = Instance.new("Part", m)
  276. p2.BrickColor = BrickColor.new("Really black")
  277. p2.FormFactor = Enum.FormFactor.Custom
  278. p2.Size = Vector3.new(1, 2.9000001, 1)
  279. 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)
  280. p2.CanCollide = false
  281. p2.Locked = true
  282. p2.Elasticity = 0
  283. p2.BottomSurface = Enum.SurfaceType.Smooth
  284. p2.TopSurface = Enum.SurfaceType.Smooth
  285. b2 = Instance.new("BlockMesh", p2)
  286. b2.Name = "Mesh"
  287. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  288. p3 = Instance.new("Part", m)
  289. p3.BrickColor = BrickColor.new("Bright blue")
  290. p3.FormFactor = Enum.FormFactor.Custom
  291. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  292. 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)
  293. p3.CanCollide = false
  294. p3.Locked = true
  295. p3.Elasticity = 0
  296. p3.BottomSurface = Enum.SurfaceType.Smooth
  297. p3.TopSurface = Enum.SurfaceType.Smooth
  298. b3 = Instance.new("SpecialMesh", p3)
  299. b3.MeshType = Enum.MeshType.Wedge
  300. b3.Name = "Mesh"
  301. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  302. p4 = Instance.new("Part", m)
  303. p4.BrickColor = BrickColor.new("Bright blue")
  304. p4.FormFactor = Enum.FormFactor.Custom
  305. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  306. 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)
  307. p4.CanCollide = false
  308. p4.Locked = true
  309. p4.Elasticity = 0
  310. p4.BottomSurface = Enum.SurfaceType.Smooth
  311. p4.TopSurface = Enum.SurfaceType.Smooth
  312. b4 = Instance.new("SpecialMesh", p4)
  313. b4.MeshType = Enum.MeshType.Wedge
  314. b4.Name = "Mesh"
  315. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  316. p5 = Instance.new("Part", m)
  317. p5.BrickColor = BrickColor.new("Bright blue")
  318. p5.FormFactor = Enum.FormFactor.Custom
  319. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  320. 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)
  321. p5.CanCollide = false
  322. p5.Locked = true
  323. p5.Elasticity = 0
  324. p5.BottomSurface = Enum.SurfaceType.Smooth
  325. p5.TopSurface = Enum.SurfaceType.Smooth
  326. b5 = Instance.new("SpecialMesh", p5)
  327. b5.MeshType = Enum.MeshType.Wedge
  328. b5.Name = "Mesh"
  329. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  330. p6 = Instance.new("Part", m)
  331. p6.Name = "Handle"
  332. p6.BrickColor = BrickColor.new("Really black")
  333. p6.FormFactor = Enum.FormFactor.Custom
  334. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  335. 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)
  336. p6.CanCollide = false
  337. p6.Locked = true
  338. p6.Elasticity = 0
  339. p6.BottomSurface = Enum.SurfaceType.Smooth
  340. p6.TopSurface = Enum.SurfaceType.Smooth
  341. b6 = Instance.new("BlockMesh", p6)
  342. b6.Name = "Mesh"
  343. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  344. p7 = Instance.new("Part", m)
  345. p7.BrickColor = BrickColor.new("Bright blue")
  346. p7.FormFactor = Enum.FormFactor.Custom
  347. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  348. 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)
  349. p7.CanCollide = false
  350. p7.Locked = true
  351. p7.Elasticity = 0
  352. p7.BottomSurface = Enum.SurfaceType.Smooth
  353. p7.TopSurface = Enum.SurfaceType.Smooth
  354. b7 = Instance.new("SpecialMesh", p7)
  355. b7.MeshType = Enum.MeshType.Wedge
  356. b7.Name = "Mesh"
  357. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  358. p8 = Instance.new("Part", m)
  359. p8.BrickColor = BrickColor.new("Bright blue")
  360. p8.FormFactor = Enum.FormFactor.Custom
  361. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  362. 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)
  363. p8.CanCollide = false
  364. p8.Locked = true
  365. p8.Elasticity = 0
  366. p8.BottomSurface = Enum.SurfaceType.Smooth
  367. p8.TopSurface = Enum.SurfaceType.Smooth
  368. b8 = Instance.new("SpecialMesh", p8)
  369. b8.MeshType = Enum.MeshType.Wedge
  370. b8.Name = "Mesh"
  371. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  372. p9 = Instance.new("Part", m)
  373. p9.BrickColor = BrickColor.new("Really black")
  374. p9.FormFactor = Enum.FormFactor.Custom
  375. p9.Size = Vector3.new(1, 1.07999957, 1)
  376. 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)
  377. p9.CanCollide = false
  378. p9.Locked = true
  379. p9.Elasticity = 0
  380. p9.BottomSurface = Enum.SurfaceType.Smooth
  381. p9.TopSurface = Enum.SurfaceType.Smooth
  382. b9 = Instance.new("BlockMesh", p9)
  383. b9.Name = "Mesh"
  384. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  385. p10 = Instance.new("Part", m)
  386. p10.BrickColor = BrickColor.new("Really black")
  387. p10.FormFactor = Enum.FormFactor.Custom
  388. p10.Size = Vector3.new(1, 1.41999948, 1)
  389. 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)
  390. p10.CanCollide = false
  391. p10.Locked = true
  392. p10.Elasticity = 0
  393. p10.BottomSurface = Enum.SurfaceType.Smooth
  394. p10.TopSurface = Enum.SurfaceType.Smooth
  395. b10 = Instance.new("BlockMesh", p10)
  396. b10.Name = "Mesh"
  397. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  398. p11 = Instance.new("Part", m)
  399. p11.BrickColor = BrickColor.new("Really black")
  400. p11.FormFactor = Enum.FormFactor.Custom
  401. p11.Size = Vector3.new(1, 1.50999951, 1)
  402. 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)
  403. p11.CanCollide = false
  404. p11.Locked = true
  405. p11.Elasticity = 0
  406. p11.BottomSurface = Enum.SurfaceType.Smooth
  407. p11.TopSurface = Enum.SurfaceType.Smooth
  408. b11 = Instance.new("BlockMesh", p11)
  409. b11.Name = "Mesh"
  410. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  411. p12 = Instance.new("Part", m)
  412. p12.Name = "BladeCenter"
  413. p12.BrickColor = BrickColor.new("Dark stone grey")
  414. p12.Material = Enum.Material.Concrete
  415. p12.FormFactor = Enum.FormFactor.Symmetric
  416. p12.Size = Vector3.new(1, 2, 2)
  417. 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)
  418. p12.CanCollide = false
  419. p12.Locked = true
  420. p12.BottomSurface = Enum.SurfaceType.Smooth
  421. p12.TopSurface = Enum.SurfaceType.Smooth
  422. b12 = Instance.new("SpecialMesh", p12)
  423. b12.MeshType = Enum.MeshType.Brick
  424. b12.Name = "Mesh"
  425. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  426. p13 = Instance.new("Part", m)
  427. p13.BrickColor = BrickColor.new("Really black")
  428. p13.FormFactor = Enum.FormFactor.Custom
  429. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  430. 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)
  431. p13.CanCollide = false
  432. p13.Locked = true
  433. p13.Elasticity = 0
  434. p13.BottomSurface = Enum.SurfaceType.Smooth
  435. p13.TopSurface = Enum.SurfaceType.Smooth
  436. b13 = Instance.new("BlockMesh", p13)
  437. b13.Name = "Mesh"
  438. b13.Scale = Vector3.new(1, 1, 0.400000006)
  439. p14 = Instance.new("Part", m)
  440. p14.BrickColor = BrickColor.new("Really black")
  441. p14.FormFactor = Enum.FormFactor.Custom
  442. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  443. 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)
  444. p14.CanCollide = false
  445. p14.Locked = true
  446. p14.Elasticity = 0
  447. p14.BottomSurface = Enum.SurfaceType.Smooth
  448. p14.TopSurface = Enum.SurfaceType.Smooth
  449. b14 = Instance.new("BlockMesh", p14)
  450. b14.Name = "Mesh"
  451. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  452. p15 = Instance.new("Part", m)
  453. p15.BrickColor = BrickColor.new("Really black")
  454. p15.FormFactor = Enum.FormFactor.Custom
  455. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  456. 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)
  457. p15.CanCollide = false
  458. p15.Locked = true
  459. p15.Elasticity = 0
  460. p15.BottomSurface = Enum.SurfaceType.Smooth
  461. p15.TopSurface = Enum.SurfaceType.Smooth
  462. b15 = Instance.new("BlockMesh", p15)
  463. b15.Name = "Mesh"
  464. b15.Scale = Vector3.new(1, 1, 0.400000006)
  465. p16 = Instance.new("Part", m)
  466. p16.BrickColor = BrickColor.new("Really black")
  467. p16.FormFactor = Enum.FormFactor.Custom
  468. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  469. 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)
  470. p16.CanCollide = false
  471. p16.Locked = true
  472. p16.Elasticity = 0
  473. p16.BottomSurface = Enum.SurfaceType.Smooth
  474. p16.TopSurface = Enum.SurfaceType.Smooth
  475. b16 = Instance.new("BlockMesh", p16)
  476. b16.Name = "Mesh"
  477. b16.Scale = Vector3.new(1, 1, 0.400000006)
  478. p17 = Instance.new("Part", m)
  479. p17.BrickColor = BrickColor.new("Really black")
  480. p17.FormFactor = Enum.FormFactor.Custom
  481. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  482. 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)
  483. p17.CanCollide = false
  484. p17.Locked = true
  485. p17.Elasticity = 0
  486. p17.BottomSurface = Enum.SurfaceType.Smooth
  487. p17.TopSurface = Enum.SurfaceType.Smooth
  488. b17 = Instance.new("BlockMesh", p17)
  489. b17.Name = "Mesh"
  490. b17.Scale = Vector3.new(1, 1, 0.400000006)
  491. p18 = Instance.new("WedgePart", m)
  492. p18.BrickColor = BrickColor.new("Dark stone grey")
  493. p18.Name = "BladePart1"
  494. p18.Material = Enum.Material.Concrete
  495. p18.Name = "Wedge"
  496. p18.FormFactor = Enum.FormFactor.Symmetric
  497. p18.Size = Vector3.new(1, 4, 2)
  498. 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)
  499. p18.CanCollide = false
  500. p18.Locked = true
  501. p18.BottomSurface = Enum.SurfaceType.Smooth
  502. p18.TopSurface = Enum.SurfaceType.Smooth
  503. b18 = Instance.new("SpecialMesh", p18)
  504. b18.MeshType = Enum.MeshType.Wedge
  505. b18.Name = "Mesh"
  506. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  507. p19 = Instance.new("WedgePart", m)
  508. p19.BrickColor = BrickColor.new("Dark stone grey")
  509. p19.Name = "BladePart2"
  510. p19.Material = Enum.Material.Concrete
  511. p19.Name = "Wedge"
  512. p19.FormFactor = Enum.FormFactor.Symmetric
  513. p19.Size = Vector3.new(1, 4, 2)
  514. 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)
  515. p19.CanCollide = false
  516. p19.Locked = true
  517. p19.BottomSurface = Enum.SurfaceType.Smooth
  518. p19.TopSurface = Enum.SurfaceType.Smooth
  519. b19 = Instance.new("SpecialMesh", p19)
  520. b19.MeshType = Enum.MeshType.Wedge
  521. b19.Name = "Mesh"
  522. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  523. p20 = Instance.new("Part", m)
  524. p20.BrickColor = BrickColor.new("Really black")
  525. p20.FormFactor = Enum.FormFactor.Custom
  526. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  527. 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)
  528. p20.CanCollide = false
  529. p20.Locked = true
  530. p20.Elasticity = 0
  531. p20.BottomSurface = Enum.SurfaceType.Smooth
  532. p20.TopSurface = Enum.SurfaceType.Smooth
  533. b20 = Instance.new("BlockMesh", p20)
  534. b20.Name = "Mesh"
  535. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  536. p21 = Instance.new("Part", m)
  537. p21.BrickColor = BrickColor.new("Bright blue")
  538. p21.FormFactor = Enum.FormFactor.Custom
  539. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  540. 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)
  541. p21.CanCollide = false
  542. p21.Locked = true
  543. p21.Elasticity = 0
  544. p21.BottomSurface = Enum.SurfaceType.Smooth
  545. p21.TopSurface = Enum.SurfaceType.Smooth
  546. b21 = Instance.new("SpecialMesh", p21)
  547. b21.MeshType = Enum.MeshType.Wedge
  548. b21.Name = "Mesh"
  549. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  550. w1 = Instance.new("Weld", p1)
  551. w1.Name = "Part_Weld"
  552. w1.Part0 = p1
  553. 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)
  554. w1.Part1 = p2
  555. 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)
  556. w2 = Instance.new("Weld", p2)
  557. w2.Name = "Part_Weld"
  558. w2.Part0 = p2
  559. 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)
  560. w2.Part1 = p3
  561. 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)
  562. w3 = Instance.new("Weld", p3)
  563. w3.Name = "Part_Weld"
  564. w3.Part0 = p3
  565. 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)
  566. w3.Part1 = p4
  567. 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)
  568. w4 = Instance.new("Weld", p4)
  569. w4.Name = "Part_Weld"
  570. w4.Part0 = p4
  571. 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)
  572. w4.Part1 = p5
  573. 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)
  574. w5 = Instance.new("Weld", p5)
  575. w5.Name = "Part_Weld"
  576. w5.Part0 = p5
  577. 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)
  578. w5.Part1 = p6
  579. 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)
  580. w6 = Instance.new("Weld", p6)
  581. w6.Name = "Part_Weld"
  582. w6.Part0 = p6
  583. 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)
  584. w6.Part1 = p7
  585. 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)
  586. w7 = Instance.new("Weld", p7)
  587. w7.Name = "Part_Weld"
  588. w7.Part0 = p7
  589. 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)
  590. w7.Part1 = p8
  591. 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)
  592. w8 = Instance.new("Weld", p8)
  593. w8.Name = "Part_Weld"
  594. w8.Part0 = p8
  595. 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)
  596. w8.Part1 = p9
  597. 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)
  598. w9 = Instance.new("Weld", p9)
  599. w9.Name = "Part_Weld"
  600. w9.Part0 = p9
  601. 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)
  602. w9.Part1 = p10
  603. 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)
  604. w10 = Instance.new("Weld", p10)
  605. w10.Name = "Part_Weld"
  606. w10.Part0 = p10
  607. 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)
  608. w10.Part1 = p11
  609. 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)
  610. w11 = Instance.new("Weld", p11)
  611. w11.Name = "Part_Weld"
  612. w11.Part0 = p11
  613. 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)
  614. w11.Part1 = p12
  615. 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)
  616. w12 = Instance.new("Weld", p12)
  617. w12.Name = "Part_Weld"
  618. w12.Part0 = p12
  619. 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)
  620. w12.Part1 = p13
  621. 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)
  622. w13 = Instance.new("Weld", p13)
  623. w13.Name = "Part_Weld"
  624. w13.Part0 = p13
  625. 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)
  626. w13.Part1 = p14
  627. 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)
  628. w14 = Instance.new("Weld", p14)
  629. w14.Name = "Part_Weld"
  630. w14.Part0 = p14
  631. 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)
  632. w14.Part1 = p15
  633. 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)
  634. w15 = Instance.new("Weld", p15)
  635. w15.Name = "Part_Weld"
  636. w15.Part0 = p15
  637. 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)
  638. w15.Part1 = p16
  639. 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)
  640. w16 = Instance.new("Weld", p16)
  641. w16.Name = "Part_Weld"
  642. w16.Part0 = p16
  643. 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)
  644. w16.Part1 = p17
  645. 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)
  646. w17 = Instance.new("Weld", p17)
  647. w17.Name = "Wedge_Weld"
  648. w17.Part0 = p17
  649. 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)
  650. w17.Part1 = p18
  651. 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)
  652. w18 = Instance.new("Weld", p18)
  653. w18.Name = "Wedge_Weld"
  654. w18.Part0 = p18
  655. 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)
  656. w18.Part1 = p19
  657. 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)
  658. w19 = Instance.new("Weld", p19)
  659. w19.Name = "Part_Weld"
  660. w19.Part0 = p19
  661. 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)
  662. w19.Part1 = p20
  663. 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)
  664. w20 = Instance.new("Weld", p20)
  665. w20.Name = "Part_Weld"
  666. w20.Part0 = p20
  667. 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)
  668. w20.Part1 = p21
  669. 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)
  670. m.Parent = char
  671. m:MakeJoints()
  672. ----------------------------------------------------
  673. local cor = Instance.new("Part", char.Absolution)
  674. cor.Name = "Thingy"
  675. cor.Locked = true
  676. cor.BottomSurface = 0
  677. cor.CanCollide = false
  678. cor.Size = Vector3.new(1, 13, 1)
  679. cor.Transparency = 1
  680. cor.TopSurface = 0
  681. corw = Instance.new("Weld", cor)
  682. corw.Part0 = rarm
  683. corw.Part1 = cor
  684. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  685. corw.C1 = CFrame.new(0, 0, 0)
  686. weld1 = Instance.new("Weld", char.Absolution)
  687. weld1.Part0 = cor
  688. weld1.Part1 = p6
  689. weld1.C0 = CFrame.new(0, 0, 0)
  690. ----------------------------------------------------
  691. hitb = Instance.new("Part", char.Absolution)
  692. hitb.Name = "Thingy2"
  693. hitb.Locked = true
  694. hitb.BottomSurface = 0
  695. hitb.CanCollide = false
  696. hitb.Size = Vector3.new(0, 8, 6)
  697. hitb.Transparency = 1
  698. hitb.TopSurface = 0
  699. weld2 = Instance.new("Weld", char.Absolution)
  700. weld2.Part0 = hitb
  701. weld2.Part1 = p12
  702. weld2.C0 = CFrame.new(0, .6, 1)
  703. ----------------------------------------------------
  704. local m = Instance.new("Model")
  705. m.Name = "Claw"
  706. p1 = Instance.new("Part", m)
  707. p1.BrickColor = BrickColor.new("Really black")
  708. p1.FormFactor = Enum.FormFactor.Custom
  709. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  710. 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)
  711. p1.CanCollide = false
  712. p1.Locked = true
  713. p1.BottomSurface = Enum.SurfaceType.Smooth
  714. p1.TopSurface = Enum.SurfaceType.Smooth
  715. b1 = Instance.new("BlockMesh", p1)
  716. b1.Name = "Mesh"
  717. p2 = Instance.new("WedgePart", m)
  718. p2.BrickColor = BrickColor.new("Really black")
  719. p2.Name = "Wedge"
  720. p2.FormFactor = Enum.FormFactor.Custom
  721. p2.Size = Vector3.new(3, 1, 0.5)
  722. 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)
  723. p2.CanCollide = false
  724. p2.Locked = true
  725. p2.BottomSurface = Enum.SurfaceType.Smooth
  726. p2.TopSurface = Enum.SurfaceType.Smooth
  727. p3 = Instance.new("Part", m)
  728. p3.BrickColor = BrickColor.new("Really black")
  729. p3.FormFactor = Enum.FormFactor.Custom
  730. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  731. 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)
  732. p3.CanCollide = false
  733. p3.Locked = true
  734. p3.BottomSurface = Enum.SurfaceType.Smooth
  735. p3.TopSurface = Enum.SurfaceType.Smooth
  736. b2 = Instance.new("BlockMesh", p3)
  737. b2.Name = "Mesh"
  738. p4 = Instance.new("WedgePart", m)
  739. p4.BrickColor = BrickColor.new("Really black")
  740. p4.Name = "Wedge"
  741. p4.FormFactor = Enum.FormFactor.Custom
  742. p4.Size = Vector3.new(3, 1, 0.5)
  743. 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)
  744. p4.CanCollide = false
  745. p4.Locked = true
  746. p4.BottomSurface = Enum.SurfaceType.Smooth
  747. p4.TopSurface = Enum.SurfaceType.Smooth
  748. p5 = Instance.new("Part", m)
  749. p5.BrickColor = BrickColor.new("Really black")
  750. p5.FormFactor = Enum.FormFactor.Custom
  751. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  752. 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)
  753. p5.CanCollide = false
  754. p5.Locked = true
  755. p5.BottomSurface = Enum.SurfaceType.Smooth
  756. p5.TopSurface = Enum.SurfaceType.Smooth
  757. b3 = Instance.new("BlockMesh", p5)
  758. b3.Name = "Mesh"
  759. p6 = Instance.new("Part", m)
  760. p6.BrickColor = BrickColor.new("Really black")
  761. p6.FormFactor = Enum.FormFactor.Custom
  762. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  763. 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)
  764. p6.CanCollide = false
  765. p6.Locked = true
  766. p6.BottomSurface = Enum.SurfaceType.Smooth
  767. p6.TopSurface = Enum.SurfaceType.Smooth
  768. b4 = Instance.new("BlockMesh", p6)
  769. b4.Name = "Mesh"
  770. p7 = Instance.new("Part", m)
  771. p7.BrickColor = BrickColor.new("Really black")
  772. p7.FormFactor = Enum.FormFactor.Custom
  773. p7.Size = Vector3.new(3, 1, 1.20000005)
  774. 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)
  775. p7.CanCollide = false
  776. p7.Locked = true
  777. p7.BottomSurface = Enum.SurfaceType.Smooth
  778. p7.TopSurface = Enum.SurfaceType.Smooth
  779. b5 = Instance.new("BlockMesh", p7)
  780. b5.Name = "Mesh"
  781. p8 = Instance.new("Part", m)
  782. p8.BrickColor = BrickColor.new("Bright blue")
  783. p8.FormFactor = Enum.FormFactor.Symmetric
  784. p8.Size = Vector3.new(1, 1, 1)
  785. 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)
  786. p8.CanCollide = false
  787. p8.Locked = true
  788. b6 = Instance.new("SpecialMesh", p8)
  789. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  790. b6.TextureId = ""
  791. b6.MeshType = Enum.MeshType.FileMesh
  792. b6.Name = "Mesh"
  793. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  794. p9 = Instance.new("Part", m)
  795. p9.BrickColor = BrickColor.new("Really black")
  796. p9.FormFactor = Enum.FormFactor.Custom
  797. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  798. 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)
  799. p9.CanCollide = false
  800. p9.Locked = true
  801. p9.BottomSurface = Enum.SurfaceType.Smooth
  802. p9.TopSurface = Enum.SurfaceType.Smooth
  803. b7 = Instance.new("BlockMesh", p9)
  804. b7.Name = "Mesh"
  805. p10 = Instance.new("Part", m)
  806. p10.BrickColor = BrickColor.new("Bright blue")
  807. p10.FormFactor = Enum.FormFactor.Symmetric
  808. p10.Size = Vector3.new(1, 1, 1)
  809. 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)
  810. p10.CanCollide = false
  811. p10.Locked = true
  812. b8 = Instance.new("SpecialMesh", p10)
  813. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  814. b8.TextureId = ""
  815. b8.MeshType = Enum.MeshType.FileMesh
  816. b8.Name = "Mesh"
  817. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  818. p11 = Instance.new("Part", m)
  819. p11.BrickColor = BrickColor.new("Really black")
  820. p11.FormFactor = Enum.FormFactor.Custom
  821. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  822. 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)
  823. p11.CanCollide = false
  824. p11.Locked = true
  825. p11.BottomSurface = Enum.SurfaceType.Smooth
  826. p11.TopSurface = Enum.SurfaceType.Smooth
  827. b9 = Instance.new("BlockMesh", p11)
  828. b9.Name = "Mesh"
  829. p12 = Instance.new("Part", m)
  830. p12.BrickColor = BrickColor.new("Really black")
  831. p12.FormFactor = Enum.FormFactor.Custom
  832. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  833. 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)
  834. p12.CanCollide = false
  835. p12.Locked = true
  836. p12.BottomSurface = Enum.SurfaceType.Smooth
  837. p12.TopSurface = Enum.SurfaceType.Smooth
  838. b10 = Instance.new("BlockMesh", p12)
  839. b10.Name = "Mesh"
  840. p13 = Instance.new("Part", m)
  841. p13.BrickColor = BrickColor.new("Really black")
  842. p13.FormFactor = Enum.FormFactor.Custom
  843. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  844. 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)
  845. p13.CanCollide = false
  846. p13.Locked = true
  847. p13.BottomSurface = Enum.SurfaceType.Smooth
  848. p13.TopSurface = Enum.SurfaceType.Smooth
  849. b11 = Instance.new("BlockMesh", p13)
  850. b11.Name = "Mesh"
  851. p14 = Instance.new("Part", m)
  852. p14.BrickColor = BrickColor.new("Bright blue")
  853. p14.FormFactor = Enum.FormFactor.Symmetric
  854. p14.Size = Vector3.new(1, 1, 1)
  855. 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)
  856. p14.CanCollide = false
  857. p14.Locked = true
  858. b12 = Instance.new("SpecialMesh", p14)
  859. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  860. b12.TextureId = ""
  861. b12.MeshType = Enum.MeshType.FileMesh
  862. b12.Name = "Mesh"
  863. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  864. p15 = Instance.new("Part", m)
  865. p15.BrickColor = BrickColor.new("Medium stone grey")
  866. p15.Transparency = 1
  867. p15.Name = "ArmPart"
  868. p15.FormFactor = Enum.FormFactor.Custom
  869. p15.Size = Vector3.new(2, 1, 1)
  870. 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)
  871. p15.CanCollide = false
  872. p15.Locked = true
  873. p15.BottomSurface = Enum.SurfaceType.Smooth
  874. p15.TopSurface = Enum.SurfaceType.Smooth
  875. b13 = Instance.new("BlockMesh", p15)
  876. b13.Name = "Mesh"
  877. p16 = Instance.new("Part", m)
  878. p16.BrickColor = BrickColor.new("Really black")
  879. p16.FormFactor = Enum.FormFactor.Custom
  880. p16.Size = Vector3.new(3, 1, 2.4000001)
  881. 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)
  882. p16.CanCollide = false
  883. p16.Locked = true
  884. p16.BottomSurface = Enum.SurfaceType.Smooth
  885. p16.TopSurface = Enum.SurfaceType.Smooth
  886. b14 = Instance.new("BlockMesh", p16)
  887. b14.Name = "Mesh"
  888. p17 = Instance.new("Part", m)
  889. p17.BrickColor = BrickColor.new("Really black")
  890. p17.FormFactor = Enum.FormFactor.Custom
  891. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  892. 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)
  893. p17.CanCollide = false
  894. p17.Locked = true
  895. p17.BottomSurface = Enum.SurfaceType.Smooth
  896. p17.TopSurface = Enum.SurfaceType.Smooth
  897. b15 = Instance.new("BlockMesh", p17)
  898. b15.Name = "Mesh"
  899. p18 = Instance.new("Part", m)
  900. p18.BrickColor = BrickColor.new("Bright blue")
  901. p18.FormFactor = Enum.FormFactor.Symmetric
  902. p18.Size = Vector3.new(1, 1, 1)
  903. 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)
  904. p18.CanCollide = false
  905. p18.Locked = true
  906. b16 = Instance.new("SpecialMesh", p18)
  907. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  908. b16.TextureId = ""
  909. b16.MeshType = Enum.MeshType.FileMesh
  910. b16.Name = "Mesh"
  911. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  912. p19 = Instance.new("Part", m)
  913. p19.BrickColor = BrickColor.new("Bright blue")
  914. p19.FormFactor = Enum.FormFactor.Symmetric
  915. p19.Size = Vector3.new(1, 1, 1)
  916. 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)
  917. p19.CanCollide = false
  918. p19.Locked = true
  919. b17 = Instance.new("SpecialMesh", p19)
  920. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  921. b17.TextureId = ""
  922. b17.MeshType = Enum.MeshType.FileMesh
  923. b17.Name = "Mesh"
  924. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  925. p20 = Instance.new("Part", m)
  926. p20.BrickColor = BrickColor.new("Really black")
  927. p20.FormFactor = Enum.FormFactor.Custom
  928. p20.Size = Vector3.new(3, 1, 2.4000001)
  929. 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)
  930. p20.CanCollide = false
  931. p20.Locked = true
  932. p20.BottomSurface = Enum.SurfaceType.Smooth
  933. p20.TopSurface = Enum.SurfaceType.Smooth
  934. b18 = Instance.new("BlockMesh", p20)
  935. b18.Name = "Mesh"
  936. p21 = Instance.new("Part", m)
  937. p21.BrickColor = BrickColor.new("Really black")
  938. p21.FormFactor = Enum.FormFactor.Custom
  939. p21.Size = Vector3.new(3, 1, 1.19999993)
  940. 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)
  941. p21.CanCollide = false
  942. p21.Locked = true
  943. p21.BottomSurface = Enum.SurfaceType.Smooth
  944. p21.TopSurface = Enum.SurfaceType.Smooth
  945. b19 = Instance.new("BlockMesh", p21)
  946. b19.Name = "Mesh"
  947. p22 = Instance.new("WedgePart", m)
  948. p22.BrickColor = BrickColor.new("Really black")
  949. p22.Name = "Wedge"
  950. p22.FormFactor = Enum.FormFactor.Custom
  951. p22.Size = Vector3.new(3, 1, 0.5)
  952. 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)
  953. p22.CanCollide = false
  954. p22.Locked = true
  955. p22.BottomSurface = Enum.SurfaceType.Smooth
  956. p22.TopSurface = Enum.SurfaceType.Smooth
  957. p23 = Instance.new("Part", m)
  958. p23.BrickColor = BrickColor.new("Really black")
  959. p23.FormFactor = Enum.FormFactor.Custom
  960. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  961. 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)
  962. p23.CanCollide = false
  963. p23.Locked = true
  964. p23.BottomSurface = Enum.SurfaceType.Smooth
  965. p23.TopSurface = Enum.SurfaceType.Smooth
  966. b20 = Instance.new("BlockMesh", p23)
  967. b20.Name = "Mesh"
  968. p24 = Instance.new("WedgePart", m)
  969. p24.BrickColor = BrickColor.new("Really black")
  970. p24.Name = "Wedge"
  971. p24.FormFactor = Enum.FormFactor.Custom
  972. p24.Size = Vector3.new(3, 1, 0.5)
  973. 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)
  974. p24.CanCollide = false
  975. p24.Locked = true
  976. p24.BottomSurface = Enum.SurfaceType.Smooth
  977. p24.TopSurface = Enum.SurfaceType.Smooth
  978. p25 = Instance.new("Part", m)
  979. p25.BrickColor = BrickColor.new("Bright blue")
  980. p25.FormFactor = Enum.FormFactor.Symmetric
  981. p25.Size = Vector3.new(1, 1, 1)
  982. 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)
  983. p25.CanCollide = false
  984. p25.Locked = true
  985. p25.BottomSurface = Enum.SurfaceType.Smooth
  986. p25.TopSurface = Enum.SurfaceType.Smooth
  987. b21 = Instance.new("SpecialMesh", p25)
  988. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  989. b21.TextureId = ""
  990. b21.MeshType = Enum.MeshType.FileMesh
  991. b21.Name = "Mesh"
  992. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  993. p26 = Instance.new("Part", m)
  994. p26.BrickColor = BrickColor.new("Really black")
  995. p26.FormFactor = Enum.FormFactor.Symmetric
  996. p26.Size = Vector3.new(1, 1, 1)
  997. 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)
  998. p26.CanCollide = false
  999. p26.Locked = true
  1000. p26.BottomSurface = Enum.SurfaceType.Smooth
  1001. p26.TopSurface = Enum.SurfaceType.Smooth
  1002. b22 = Instance.new("SpecialMesh", p26)
  1003. b22.MeshType = Enum.MeshType.Brick
  1004. b22.Name = "Mesh"
  1005. w1 = Instance.new("Weld", p1)
  1006. w1.Name = "Wedge_Weld"
  1007. w1.Part0 = p1
  1008. 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)
  1009. w1.Part1 = p2
  1010. 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)
  1011. w2 = Instance.new("Weld", p2)
  1012. w2.Name = "Part_Weld"
  1013. w2.Part0 = p2
  1014. 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)
  1015. w2.Part1 = p3
  1016. 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)
  1017. w3 = Instance.new("Weld", p3)
  1018. w3.Name = "Wedge_Weld"
  1019. w3.Part0 = p3
  1020. 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)
  1021. w3.Part1 = p4
  1022. 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)
  1023. w4 = Instance.new("Weld", p4)
  1024. w4.Name = "Part_Weld"
  1025. w4.Part0 = p4
  1026. 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)
  1027. w4.Part1 = p5
  1028. 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)
  1029. w5 = Instance.new("Weld", p5)
  1030. w5.Name = "Part_Weld"
  1031. w5.Part0 = p5
  1032. 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)
  1033. w5.Part1 = p6
  1034. 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)
  1035. w6 = Instance.new("Weld", p6)
  1036. w6.Name = "Part_Weld"
  1037. w6.Part0 = p6
  1038. 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)
  1039. w6.Part1 = p7
  1040. 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)
  1041. w7 = Instance.new("Weld", p7)
  1042. w7.Name = "Part_Weld"
  1043. w7.Part0 = p7
  1044. 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)
  1045. w7.Part1 = p8
  1046. 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)
  1047. w8 = Instance.new("Weld", p8)
  1048. w8.Name = "Part_Weld"
  1049. w8.Part0 = p8
  1050. 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)
  1051. w8.Part1 = p9
  1052. 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)
  1053. w9 = Instance.new("Weld", p9)
  1054. w9.Name = "Part_Weld"
  1055. w9.Part0 = p9
  1056. 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)
  1057. w9.Part1 = p10
  1058. 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)
  1059. w10 = Instance.new("Weld", p10)
  1060. w10.Name = "Part_Weld"
  1061. w10.Part0 = p10
  1062. 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)
  1063. w10.Part1 = p11
  1064. 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)
  1065. w11 = Instance.new("Weld", p11)
  1066. w11.Name = "Part_Weld"
  1067. w11.Part0 = p11
  1068. 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)
  1069. w11.Part1 = p12
  1070. 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)
  1071. w12 = Instance.new("Weld", p12)
  1072. w12.Name = "Part_Weld"
  1073. w12.Part0 = p12
  1074. 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)
  1075. w12.Part1 = p13
  1076. 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)
  1077. w13 = Instance.new("Weld", p13)
  1078. w13.Name = "Part_Weld"
  1079. w13.Part0 = p13
  1080. 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)
  1081. w13.Part1 = p14
  1082. 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)
  1083. w14 = Instance.new("Weld", p14)
  1084. w14.Name = "ArmPart_Weld"
  1085. w14.Part0 = p14
  1086. 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)
  1087. w14.Part1 = p15
  1088. 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)
  1089. w15 = Instance.new("Weld", p15)
  1090. w15.Name = "Part_Weld"
  1091. w15.Part0 = p15
  1092. 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)
  1093. w15.Part1 = p16
  1094. 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)
  1095. w16 = Instance.new("Weld", p16)
  1096. w16.Name = "Part_Weld"
  1097. w16.Part0 = p16
  1098. 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)
  1099. w16.Part1 = p17
  1100. 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)
  1101. w17 = Instance.new("Weld", p17)
  1102. w17.Name = "Part_Weld"
  1103. w17.Part0 = p17
  1104. 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)
  1105. w17.Part1 = p18
  1106. 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)
  1107. w18 = Instance.new("Weld", p18)
  1108. w18.Name = "Part_Weld"
  1109. w18.Part0 = p18
  1110. 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)
  1111. w18.Part1 = p19
  1112. 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)
  1113. w19 = Instance.new("Weld", p19)
  1114. w19.Name = "Part_Weld"
  1115. w19.Part0 = p19
  1116. 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)
  1117. w19.Part1 = p20
  1118. 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)
  1119. w20 = Instance.new("Weld", p20)
  1120. w20.Name = "Part_Weld"
  1121. w20.Part0 = p20
  1122. 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)
  1123. w20.Part1 = p21
  1124. 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)
  1125. w21 = Instance.new("Weld", p21)
  1126. w21.Name = "Wedge_Weld"
  1127. w21.Part0 = p21
  1128. 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)
  1129. w21.Part1 = p22
  1130. 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)
  1131. w22 = Instance.new("Weld", p22)
  1132. w22.Name = "Part_Weld"
  1133. w22.Part0 = p22
  1134. 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)
  1135. w22.Part1 = p23
  1136. 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)
  1137. w23 = Instance.new("Weld", p23)
  1138. w23.Name = "Wedge_Weld"
  1139. w23.Part0 = p23
  1140. 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)
  1141. w23.Part1 = p24
  1142. 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)
  1143. w24 = Instance.new("Weld", p24)
  1144. w24.Name = "Part_Weld"
  1145. w24.Part0 = p24
  1146. 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)
  1147. w24.Part1 = p25
  1148. 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)
  1149. w25 = Instance.new("Weld", p25)
  1150. w25.Name = "Part_Weld"
  1151. w25.Part0 = p25
  1152. 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)
  1153. w25.Part1 = p26
  1154. 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)
  1155. m.Parent = char
  1156. m:MakeJoints()
  1157. ----------------------------------------------------
  1158. local cor2 = Instance.new("Part", char.Claw)
  1159. cor2.Name = "Thingy"
  1160. cor2.Locked = true
  1161. cor2.BottomSurface = 0
  1162. cor2.CanCollide = false
  1163. cor2.Size = Vector3.new(2, 1, 1)
  1164. cor2.Transparency = 1
  1165. cor2.TopSurface = 0
  1166. corw2 = Instance.new("Weld", cor2)
  1167. corw2.Part0 = larm
  1168. corw2.Part1 = cor2
  1169. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1170. corw2.C1 = CFrame.new(0, 0, 0)
  1171. weld2 = Instance.new("Weld", char.Claw)
  1172. weld2.Part0 = cor2
  1173. weld2.Part1 = char.Claw.ArmPart
  1174. weld2.C0 = CFrame.new(0, 0, 0)
  1175. ----------------------------------------------------
  1176. function weld5(part0, part1, c0, c1)
  1177. weeld=Instance.new("Weld", part0)
  1178. weeld.Part0=part0
  1179. weeld.Part1=part1
  1180. weeld.C0=c0
  1181. weeld.C1=c1
  1182. return weeld
  1183. end
  1184. ----------------------------------------------------
  1185. ----------------------------------------------------
  1186. a = game.Players.LocalPlayer.Character.Absolution:GetChildren()
  1187. for i = 1,#a do
  1188. if a[i]:IsA("UnionOperation") or a[i]:IsA("Part") or a[i]:IsA("WedgePart") then
  1189. a[i].Transparency = 1
  1190. end
  1191. end
  1192. ----------------------------------------------------
  1193. ACE = game.Players.LocalPlayer.Character.Claw:GetChildren()
  1194. for i = 1,#a do
  1195. if ACE[i]:IsA("UnionOperation") or ACE[i]:IsA("Part") or ACE[i]:IsA("WedgePart") then
  1196. ACE[i].Transparency = 1
  1197. end
  1198. end
  1199. ----------------------------------------------------
  1200. function newRay(start,face,range,wat)
  1201. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  1202. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  1203. return rey,hit,pos
  1204. end
  1205. ----------------------------------------------------
  1206. mod5 = Instance.new("Model",char)
  1207.  
  1208. function FindNearestTorso(Position,Distance,SinglePlayer)
  1209. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1210. local List = {}
  1211. for i,v in pairs(workspace:GetChildren())do
  1212. if v:IsA("Model")then
  1213. if v:findFirstChild("Torso")then
  1214. if v ~= char then
  1215. if(v.Torso.Position -Position).magnitude <= Distance then
  1216. table.insert(List,v)
  1217. end
  1218. end
  1219. end
  1220. end
  1221. end
  1222. return List
  1223. end
  1224.  
  1225. function Landing()
  1226. part=Instance.new('Part',mod5)
  1227. part.Anchored=true
  1228. part.CanCollide=false
  1229. part.FormFactor='Custom'
  1230. part.Size=Vector3.new(.2,.2,.2)
  1231. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  1232. part.Transparency=.7
  1233. part.BrickColor=BrickColor.new('Really black')
  1234. mesh=Instance.new('SpecialMesh',part)
  1235. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1236. mesh.Scale=Vector3.new(10,5,10)
  1237.  
  1238. for i,v in pairs(FindNearestTorso(torso.CFrame.p,40))do
  1239. if v:FindFirstChild('Humanoid') then
  1240. v.Humanoid:TakeDamage(math.random(20,30))
  1241. v.Humanoid.PlatformStand = true
  1242. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1243. end
  1244. end
  1245.  
  1246. coroutine.resume(coroutine.create(function()
  1247. for i=0,3.8,0.05 do
  1248. wait()
  1249. part.CFrame=part.CFrame
  1250. part.Transparency=i
  1251. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  1252. end
  1253. part.Parent = nil
  1254. end))
  1255. end
  1256. ----------------------------------------------------
  1257. mod4 = Instance.new("Model",char)
  1258.  
  1259. ptez = {0.7, 0.8, 0.9, 1}
  1260.  
  1261. function FindNearestTorso(Position,Distance,SinglePlayer)
  1262. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1263. local List = {}
  1264. for i,v in pairs(workspace:GetChildren())do
  1265. if v:IsA("Model")then
  1266. if v:findFirstChild("Torso")then
  1267. if v ~= char then
  1268. if(v.Torso.Position -Position).magnitude <= Distance then
  1269. table.insert(List,v)
  1270. end
  1271. end
  1272. end
  1273. end
  1274. end
  1275. return List
  1276. end
  1277.  
  1278. function GroundPound()
  1279. part=Instance.new('Part',mod4)
  1280. part.Anchored=true
  1281. part.CanCollide=false
  1282. part.FormFactor='Custom'
  1283. part.Size=Vector3.new(.2,.2,.2)
  1284. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  1285. part.Transparency=.7
  1286. part.BrickColor=BrickColor.new('Really black')
  1287. mesh=Instance.new('SpecialMesh',part)
  1288. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1289. mesh.Scale=Vector3.new(3,3,3)
  1290. part2=Instance.new('Part',mod4)
  1291. part2.Anchored=true
  1292. part2.CanCollide=false
  1293. part2.FormFactor='Custom'
  1294. part2.Size=Vector3.new(.2,.2,.2)
  1295. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  1296. part2.Transparency=.7
  1297. part2.BrickColor=BrickColor.new('Really red')
  1298. mesh2=Instance.new('SpecialMesh',part2)
  1299. mesh2.MeshId='http://www.roblox.com/asset/?id=0'
  1300. mesh2.Scale=Vector3.new(3,1.5,3)
  1301. x = Instance.new("Sound",char)
  1302. x.SoundId = "http://www.roblox.com/asset/?id=0"
  1303. x.Pitch = ptez[math.random(1,#ptez)]
  1304. x.Volume = 1
  1305. wait(0.001)
  1306. x:Play()
  1307. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  1308. if v:FindFirstChild('Humanoid') then
  1309. v.Humanoid:TakeDamage(math.random(8,15))
  1310. end
  1311. end
  1312. coroutine.resume(coroutine.create(function()
  1313. for i=0,0.62,0.13 do
  1314. wait()
  1315. part.CFrame=part.CFrame
  1316. part.Transparency=i
  1317. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  1318. part2.CFrame=part2.CFrame
  1319. part2.Transparency=i
  1320. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  1321. end
  1322. part.Parent=nil
  1323. part2.Parent=nil
  1324. x:Destroy()
  1325. end))
  1326. end
  1327. ----------------------------------------------------
  1328. mod=Instance.new('Model',char)
  1329.  
  1330. function charge()
  1331. hed.Velocity=hed.CFrame.lookVector*200
  1332. part=Instance.new('Part',mod)
  1333. part.Anchored=true
  1334. part.CanCollide=false
  1335. part.FormFactor='Custom'
  1336. part.Size=Vector3.new(.2,.2,.2)
  1337. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  1338. part.Transparency=.7
  1339. part.BrickColor=BrickColor.new('Black')
  1340. mesh=Instance.new('SpecialMesh',part)
  1341. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  1342. mesh.Scale=Vector3.new(10,5,10)
  1343. part2=part:clone()
  1344. part2.Parent=mod
  1345. part2.BrickColor=BrickColor.new('Bright red')
  1346. mesh2=mesh:clone()
  1347. mesh2.Parent=part2
  1348. mesh2.Scale=Vector3.new(20,10,20)
  1349. part3=part2:clone()
  1350. part3.Parent = mod
  1351. part3.BrickColor=BrickColor.new('Really black')
  1352. mesh3=mesh2:clone()
  1353. mesh2.Parent=part3
  1354. mesh3.Scale=Vector3.new(30,15,30)
  1355. coroutine.resume(coroutine.create(function()
  1356. for i=0,1,0.1 do
  1357. wait()
  1358. part.CFrame=part.CFrame
  1359. part.Transparency=i
  1360. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  1361. part2.CFrame=part2.CFrame
  1362. part2.Transparency=i
  1363. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1364. part3.CFrame=part3.CFrame
  1365. part3.Transparency=i
  1366. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  1367. end
  1368. part.Parent=nil
  1369. part2.Parent=nil
  1370. part3.Parent = nil
  1371. end))
  1372. end
  1373. ----------------------------------------------------
  1374. function FindNearestTorso(Position,Distance,SinglePlayer)
  1375. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  1376. local List = {}
  1377. for i,v in pairs(workspace:GetChildren())do
  1378. if v:IsA("Model")then
  1379. if v:findFirstChild("Torso")then
  1380. if v ~= char then
  1381. if(v.Torso.Position -Position).magnitude <= Distance then
  1382. table.insert(List,v)
  1383. end
  1384. end
  1385. end
  1386. end
  1387. end
  1388. return List
  1389. end
  1390.  
  1391. mod3 = Instance.new("Model",rleg)
  1392.  
  1393. function Stomp()
  1394. part=Instance.new('Part',mod3)
  1395. part.Anchored=true
  1396. part.CanCollide=false
  1397. part.FormFactor='Custom'
  1398. part.Size=Vector3.new(.2,.2,.2)
  1399. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  1400. part.Transparency=.7
  1401. part.BrickColor=BrickColor.new('Bright green')
  1402. mesh=Instance.new('SpecialMesh',part)
  1403. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  1404. mesh.Scale=Vector3.new(25,25,25)
  1405. part2=part:clone()
  1406. part2.Parent=mod3
  1407. part2.BrickColor=BrickColor.new('Bright green')
  1408. mesh2=mesh:clone()
  1409. mesh2.Parent=part2
  1410. mesh2.Scale=Vector3.new(15,15,15)
  1411. part3=part:clone()
  1412. part3.Parent=mod3
  1413. part3.TopSurface=0
  1414. part3.BottomSurface=0
  1415. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  1416. mesh3=Instance.new('SpecialMesh',part3)
  1417. mesh3.MeshType = 3
  1418. mesh3.Scale=Vector3.new(12,12,12)
  1419. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  1420. if v:FindFirstChild('Humanoid') then
  1421. v.Humanoid:TakeDamage(math.random(20,60))
  1422. v.Humanoid.PlatformStand = true
  1423. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  1424. end
  1425. end
  1426. coroutine.resume(coroutine.create(function()
  1427. for i=0,3.8,0.05 do
  1428. wait()
  1429. part.CFrame=part.CFrame
  1430. part.Transparency=i
  1431. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  1432. part2.CFrame=part2.CFrame
  1433. part2.Transparency=i
  1434. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  1435. part3.CFrame=part3.CFrame
  1436. part3.Transparency=i
  1437. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  1438. end
  1439. end))
  1440. end
  1441. ----------------------------------------------------
  1442.  
  1443. local acos = math.acos
  1444. local sqrt = math.sqrt
  1445. local Vec3 = Vector3.new
  1446. local fromAxisAngle = CFrame.fromAxisAngle
  1447.  
  1448. local function toAxisAngle(CFr)
  1449. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  1450. local Angle = math.acos((R00+R11+R22-1)/2)
  1451. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1452. A = A == 0 and 0.00001 or A
  1453. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1454. B = B == 0 and 0.00001 or B
  1455. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  1456. C = C == 0 and 0.00001 or C
  1457. local x = (R21-R12)/sqrt(A)
  1458. local y = (R02-R20)/sqrt(B)
  1459. local z = (R10-R01)/sqrt(C)
  1460. return Vec3(x,y,z),Angle
  1461. end
  1462.  
  1463. function ApplyTrig(Num,Func)
  1464. local Min,Max = Func(0),Func(1)
  1465. local i = Func(Num)
  1466. return (i-Min)/(Max-Min)
  1467. --[[if Func == "sin" then
  1468. return (math.sin((1-Num)*math.pi)+1)/2
  1469. elseif Func == "cos" then
  1470. return (math.cos((1-Num)*math.pi)+1)/2
  1471. end]]
  1472. end
  1473.  
  1474. function LerpCFrame(CFrame1,CFrame2,Num)
  1475. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  1476. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  1477. end
  1478.  
  1479. function Crater(Torso,Radius)
  1480. Spawn(function()
  1481. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  1482. local Ignore = {}
  1483. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1484. if v.Character ~= nil then
  1485. Ignore[#Ignore+1] = v.Character
  1486. end
  1487. end
  1488. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  1489. if Hit == nil then return end
  1490. local Parts = {}
  1491. for i = 1,360,10 do
  1492. local P = Instance.new("Part",Torso.Parent)
  1493. P.Anchored = true
  1494. P.FormFactor = "Custom"
  1495. P.BrickColor = Hit.BrickColor
  1496. P.Material = Hit.Material
  1497. P.TopSurface = "Smooth"
  1498. P.BottomSurface = "Smooth"
  1499. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  1500. 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)))
  1501. 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}
  1502. if math.random(0,5) == 0 then -- rubble
  1503. local P = Instance.new("Part",Torso.Parent)
  1504. P.Anchored = true
  1505. P.FormFactor = "Custom"
  1506. P.BrickColor = Hit.BrickColor
  1507. P.Material = Hit.Material
  1508. P.TopSurface = "Smooth"
  1509. P.BottomSurface = "Smooth"
  1510. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  1511. 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)))
  1512. 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}
  1513. end
  1514. end
  1515. for i = 0,1,0.05 do
  1516. for i2,v in pairs(Parts) do
  1517. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  1518. end
  1519. wait(0.02)
  1520. end
  1521. for i,v in pairs(Parts) do
  1522. if v[1].Size.X > 2.1 then
  1523. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  1524. end
  1525. v[1].Anchored = false
  1526. end
  1527. for i = 0,1,0.05 do
  1528. for i2,v in pairs(Parts) do
  1529. v[1].Transparency = i
  1530. if i == 1 then
  1531. v[1]:Destroy()
  1532. elseif i >= 0.25 then
  1533. v[1].CanCollide = false
  1534. end
  1535. end
  1536. wait(0.02)
  1537. end
  1538. Parts = nil
  1539. end)
  1540. end
  1541.  
  1542. ----------------------------------------------------
  1543. mouse.KeyDown:connect(function(key)
  1544. if key == "r" then
  1545. larm.BrickColor = BrickColor.new("Bright red")
  1546. rarm.BrickColor = BrickColor.new("Bright red")
  1547. if Debounces.CanAttack == true then
  1548. Debounces.CanAttack = false
  1549. Debounces.on = true
  1550. Debounces.NoIdl = true
  1551. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1552. hit = ht.Parent
  1553. if ht and hit:IsA("Model") then
  1554. if hit:FindFirstChild("Humanoid") then
  1555. if hit.Name ~= p.Name then
  1556. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1557. Debounces.Slashed = true]]--
  1558. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  1559. wait(1)
  1560. --Debounces.Slashed = false
  1561. --end
  1562. end
  1563. end
  1564. elseif ht and hit:IsA("Hat") then
  1565. if hit.Parent.Name ~= p.Name then
  1566. if hit.Parent:FindFirstChild("Humanoid") then
  1567. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1568. Debounces.Slashed = true]]--
  1569. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  1570. wait(1)
  1571. --Debounces.Slashed = false
  1572. end
  1573. end
  1574. end
  1575. end)
  1576. q = Instance.new("Sound",hed)
  1577. q.SoundId = "http://www.roblox.com/asset/?id=0"
  1578. q.Pitch = 0.85
  1579. q.Looped = false
  1580. q1 = Instance.new("Sound",hed)
  1581. q1.SoundId = "http://www.roblox.com/asset/?id=0"
  1582. q1.Pitch = 0.85
  1583. q1.Looped = false
  1584. q:Play()
  1585. q1:Play()
  1586. for i = 1,20 do
  1587. 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)
  1588. 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)
  1589. 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)
  1590. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1591. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1592. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.4)
  1593. 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)
  1594. if Debounces.on == false then break end
  1595. wait()
  1596. end
  1597. n = Instance.new("Sound",hed)
  1598. n.SoundId = "http://www.roblox.com/asset/?id=0"
  1599. n.Pitch = 0.94
  1600. n.Looped = false
  1601. n1 = Instance.new("Sound",hed)
  1602. n1.SoundId = "http://www.roblox.com/asset/?id=0"
  1603. n1.Pitch = 0.94
  1604. n1.Looped = false
  1605. n:Play()
  1606. n1:Play()
  1607. b = Instance.new("Sound",hed)
  1608. b.SoundId = "http://www.roblox.com/asset/?id=0"
  1609. b.Pitch = 0.94
  1610. b.Looped = false
  1611. b1 = Instance.new("Sound",hed)
  1612. b1.SoundId = "http://www.roblox.com/asset/?id=0"
  1613. b1.Pitch = 0.94
  1614. b1.Looped = false
  1615. b:Play()
  1616. b1:Play()
  1617. for i = 1,26 do
  1618. 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)
  1619. 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)
  1620. 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)
  1621. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.5)
  1622. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.5)
  1623. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.5)
  1624. 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)
  1625. if Debounces.on == false then break end
  1626. wait()
  1627. end
  1628. wait(.5)
  1629. to:disconnect()
  1630. q:Destroy()
  1631. q1:Destroy()
  1632. n:Destroy()
  1633. n1:Destroy()
  1634. larm.BrickColor = BrickColor.new("Really black")
  1635. rarm.BrickColor = BrickColor.new("Really black")
  1636. if Debounces.CanAttack == false then
  1637. Debounces.CanAttack = true
  1638. Debounces.on = false
  1639. Debounces.NoIdl = false
  1640. end
  1641. end
  1642. end
  1643. end)
  1644. ----------------------------------------------------
  1645. mouse.KeyDown:connect(function(key)
  1646. if key == "q" then
  1647. larm.BrickColor = BrickColor.new("Bright red")
  1648. rarm.BrickColor = BrickColor.new("Bright red")
  1649. if Debounces.CanAttack == true then
  1650. Debounces.CanAttack = false
  1651. Debounces.on = true
  1652. Debounces.NoIdl = true
  1653. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  1654. hit = ht.Parent
  1655. if ht and hit:IsA("Model") then
  1656. if hit:FindFirstChild("Humanoid") then
  1657. if hit.Name ~= p.Name then
  1658. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1659. Debounces.Slashed = true]]--
  1660. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  1661. wait(1)
  1662. --Debounces.Slashed = false
  1663. --end
  1664. end
  1665. end
  1666. elseif ht and hit:IsA("Hat") then
  1667. if hit.Parent.Name ~= p.Name then
  1668. if hit.Parent:FindFirstChild("Humanoid") then
  1669. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  1670. Debounces.Slashed = true]]--
  1671. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  1672. wait(1)
  1673. --Debounces.Slashed = false
  1674. end
  1675. end
  1676. end
  1677. end)
  1678. for i = 1, 20 do
  1679. 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)
  1680. 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)
  1681. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  1682. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  1683. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1684. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1685. 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)
  1686. if Debounces.on == false then break end
  1687. wait()
  1688. end
  1689. z = Instance.new("Sound",hed)
  1690. z.SoundId = "rbxassetid://0"
  1691. z.Looped = false
  1692. z.Pitch = .9
  1693. z1 = Instance.new("Sound",hed)
  1694. z1.SoundId = "rbxassetid://0"
  1695. z1.Looped = false
  1696. z1.Pitch = .9
  1697. wait(0.01)
  1698. z:Play()
  1699. z1:Play()
  1700. for i = 1, 12 do
  1701. 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)
  1702. 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)
  1703. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  1704. 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)
  1705. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  1706. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  1707. 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)
  1708. if Debounces.on == false then break end
  1709. wait()
  1710. end
  1711. for i = 1, 12 do
  1712. 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)
  1713. 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)
  1714. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  1715. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  1716. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  1717. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  1718. 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)
  1719. if Debounces.on == false then break end
  1720. wait()
  1721. end
  1722. z = Instance.new("Sound",hed)
  1723. z.SoundId = "rbxassetid://0"
  1724. z.Looped = false
  1725. z.Pitch = 1
  1726. z1 = Instance.new("Sound",hed)
  1727. z1.SoundId = "rbxassetid://0"
  1728. z1.Looped = false
  1729. z1.Pitch = 1
  1730. wait(0.01)
  1731. z:Play()
  1732. z1:Play()
  1733. for i = 1, 12 do
  1734. 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)
  1735. 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)
  1736. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  1737. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  1738. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  1739. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  1740. 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)
  1741. if Debounces.on == false then break end
  1742. wait()
  1743. end
  1744. to:disconnect()
  1745. larm.BrickColor = BrickColor.new("Really black")
  1746. rarm.BrickColor = BrickColor.new("Really black")
  1747. if Debounces.CanAttack == false then
  1748. Debounces.CanAttack = true
  1749. Debounces.on = false
  1750. Debounces.NoIdl = false
  1751. end
  1752. end
  1753. end
  1754. end)
  1755. ----------------------------------------------------
  1756. Sit = false
  1757. mouse.KeyDown:connect(function(key)
  1758. if key == "v" then
  1759. if Sit == false then
  1760. Sit = true
  1761. hum.WalkSpeed = 0.001
  1762. stanceToggle = "Sitting"
  1763. elseif Sit == true then
  1764. Sit = false
  1765. hum.WalkSpeed = 7
  1766. stanceToggle = "Normal"
  1767. end
  1768. end
  1769. end)
  1770. ----------------------------------------------------
  1771. mouse.KeyDown:connect(function(key)
  1772. if key == "t" then
  1773. if Debounces.CanAttack == true then
  1774. Debounces.CanAttack = false
  1775. Debounces.on = true
  1776. Debounces.NoIdl = true
  1777. for i = 1, 20 do
  1778. 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)
  1779. 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)
  1780. 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)
  1781. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.4)
  1782. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.4)
  1783. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.4)
  1784. 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)
  1785. if Debounces.on == false then break end
  1786. wait()
  1787. end
  1788. Spawn(function()
  1789. local Parts = {}
  1790. for Y = -5,5 do
  1791. local P = Instance.new("Part",char)
  1792. P.Anchored = true
  1793. P.FormFactor = "Custom"
  1794. P.CanCollide = false
  1795. P.Size = Vector3.new(1,2,1)
  1796. P.TopSurface = "SmoothNoOutlines"
  1797. P.BottomSurface = "SmoothNoOutlines"
  1798. P.BrickColor = BrickColor.new("Really black")
  1799. P.Name = tostring(Y)
  1800. local i = (Y+5)/(10)
  1801. i = 1-math.cos(math.pi*i-(math.pi/2))
  1802. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  1803. --[[P.Touched:connect(function(ht)
  1804. local hit = ht.Parent
  1805. if hit:FindFirstChild("Humanoid") then
  1806. hit.Humanoid:TakeDamage(math.random(20,50))
  1807. end
  1808. end)]]--
  1809. s = Instance.new("Sound",P)
  1810. s.SoundId = "rbxassetid://0"
  1811. s.Volume = .7
  1812. s.Pitch = 0.9
  1813. s:Play()
  1814. P.Touched:connect(function(ht)
  1815. hit = ht.Parent
  1816. if ht and hit:IsA("Model") then
  1817. if hit:FindFirstChild("Humanoid") then
  1818. if hit.Name ~= p.Name then
  1819. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1820. Debounces.Slashed = true]]--
  1821. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  1822. hit:FindFirstChild("Humanoid").PlatformStand = true
  1823. wait(1)
  1824. --Debounces.Slashed = false
  1825. --end
  1826. end
  1827. end
  1828. elseif ht and hit:IsA("Hat") then
  1829. if hit.Parent.Name ~= p.Name then
  1830. if hit.Parent:FindFirstChild("Humanoid") then
  1831. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  1832. Debounces.Slashed = true]]--
  1833. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  1834. hit:FindFirstChild("Humanoid").PlatformStand = true
  1835. wait(1)
  1836. --Debounces.Slashed = false
  1837. --end
  1838. end
  1839. end
  1840. end
  1841. end)
  1842. Parts[#Parts+1] = P
  1843. end
  1844. local BREAKIT = false
  1845. local CParts = {}
  1846. local Rocks = {}
  1847. local LastPos = nil
  1848. for i = 1,70 do
  1849. for i2,v in pairs(Parts) do
  1850. v.CFrame = v.CFrame*CFrame.new(0,0,-4)
  1851. local cf = v.CFrame
  1852. v.Size = v.Size+Vector3.new(0.4,0.35,0)
  1853. v.CFrame = cf
  1854. v.Transparency = v.Transparency+0.02
  1855. if v.Transparency >= 0.975 then BREAKIT = true end
  1856. if v.Name == "0" then
  1857. local Ignore = {}
  1858. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  1859. if v.Character ~= nil then
  1860. Ignore[#Ignore+1] = v.Character
  1861. end
  1862. end
  1863. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-200,0))
  1864. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  1865. if Hit ~= nil then
  1866. if #Rocks == 0 then
  1867. for i = 1,5 do
  1868. local P = Instance.new("Part",char)
  1869. Rocks[#Rocks+1] = P
  1870. P.Anchored = true
  1871. P.FormFactor = "Custom"
  1872. P.BrickColor = Hit.BrickColor
  1873. P.Material = Hit.Material
  1874. P.TopSurface = "Smooth"
  1875. P.BottomSurface = "Smooth"
  1876. P.Size = Vector3.new(1,1,1)*(math.random(500,900)/100)
  1877. end
  1878. end
  1879. for i,P in pairs(Rocks) do
  1880. 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)))
  1881. end
  1882. local P = Instance.new("Part",char)
  1883. CParts[#CParts+1] = {P,tick()}
  1884. P.Anchored = true
  1885. P.FormFactor = "Custom"
  1886. P.BrickColor = Hit.BrickColor
  1887. P.Material = Hit.Material
  1888. P.TopSurface = "Smooth"
  1889. P.BottomSurface = "Smooth"
  1890. P.Size = Vector3.new(1,1,1)*(math.random(100,300)/100)
  1891. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1892. Pos = Pos.p
  1893. 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)))
  1894. local P = P:Clone()
  1895. CParts[#CParts+1] = {P,tick()}
  1896. P.Parent = char
  1897. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  1898. Pos = Pos.p
  1899. 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)))
  1900. if LastPos ~= nil then
  1901. local P = P:Clone()
  1902. CParts[#CParts+1] = {P,tick()}
  1903. P.Parent = char
  1904. P.BrickColor = BrickColor.new("Really black")
  1905. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  1906. Pos = Pos.p
  1907. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1908. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  1909. --P.Velocity = Vector3.new(0,-1000,0)
  1910. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  1911. end
  1912. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  1913. end
  1914. end
  1915. end
  1916. if BREAKIT then break end
  1917. wait(0.002)
  1918. end
  1919. for i,v in pairs(Rocks) do
  1920. CParts[#CParts+1] = {v,tick()}
  1921. end
  1922. for i,v in pairs(Parts) do
  1923. v:Destroy()
  1924. end
  1925. Parts = nil
  1926. while true do
  1927. local t = tick()
  1928. local p = nil
  1929. for i,v in pairs(CParts) do
  1930. if t-v[2] > 4 then
  1931. v[1].Transparency = v[1].Transparency+0.05
  1932. if v[1].Transparency >= 1 then
  1933. v[1]:Destroy()
  1934. CParts[i] = nil
  1935. end
  1936. end
  1937. p = v
  1938. end
  1939. if p == nil then break end
  1940. wait(0.002)
  1941. end
  1942. for i,v in pairs(CParts) do
  1943. v:Destroy()
  1944. end
  1945. CParts = {}
  1946. end)
  1947. for i = 1, 20 do
  1948. 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)
  1949. 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)
  1950. 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)
  1951. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  1952. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  1953. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  1954. 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)
  1955. if Debounces.on == false then break end
  1956. wait()
  1957. end
  1958. if Debounces.CanAttack == false then
  1959. Debounces.CanAttack = true
  1960. Debounces.on = false
  1961. Debounces.NoIdl = false
  1962. end
  1963. end
  1964. end
  1965. end)
  1966. ----------------------------------------------------
  1967. mouse.KeyDown:connect(function(key)
  1968. if key == "e" then
  1969. larm.BrickColor = BrickColor.new("Bright red")
  1970. rarm.BrickColor = BrickColor.new("Bright red")
  1971. if Debounces.CanAttack == true then
  1972. Debounces.CanAttack = false
  1973. Debounces.on = true
  1974. Debounces.NoIdl = true
  1975. for i = 1, 18 do
  1976. 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)
  1977. 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)
  1978. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  1979. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  1980. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  1981. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  1982. 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)
  1983. if Debounces.on == false then break end
  1984. wait()
  1985. end
  1986. 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))
  1987. local rng = Instance.new("Part", char.Absolution.Handle)
  1988. rng.Anchored = true
  1989. rng.BrickColor = BrickColor.new("Really black")
  1990. rng.CanCollide = true
  1991. rng.FormFactor = 3
  1992. rng.Name = "Ring"
  1993. rng.Size = Vector3.new(1, 1, 1)
  1994. rng.CanCollide = false
  1995. rng.Transparency = 0.35
  1996. rng.TopSurface = 0
  1997. rng.BottomSurface = 0
  1998. rng.CFrame = HandCF
  1999. local rngm = Instance.new("SpecialMesh", rng)
  2000. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2001. rngm.Scale = Vector3.new(1, 1, 2)
  2002. x = Instance.new("Sound", hed)
  2003. x.SoundId = "http://www.roblox.com/asset/?id=0"
  2004. x.Looped = false
  2005. x.Pitch = .7
  2006. x.Volume = 1
  2007. x1 = Instance.new("Sound", hed)
  2008. x1.SoundId = "http://www.roblox.com/asset/?id=0"
  2009. x1.Looped = false
  2010. x1.Pitch = .7
  2011. x1.Volume = 1
  2012. x:Play()
  2013. x1:Play()
  2014. rngto = rng.Touched:connect(function(ht)
  2015. hit = ht.Parent
  2016. if ht and hit:IsA("Model") then
  2017. if hit:FindFirstChild("Humanoid") then
  2018. if hit.Name ~= p.Name then
  2019. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2020. Debounces.Slashed = true]]--
  2021. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  2022. hit:FindFirstChild("Humanoid").PlatformStand = true
  2023. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2024. --Debounces.Slashed = false
  2025. --end
  2026. end
  2027. end
  2028. elseif ht and hit:IsA("Hat") then
  2029. if hit.Parent.Name ~= p.Name then
  2030. if hit.Parent:FindFirstChild("Humanoid") then
  2031. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2032. Debounces.Slashed = true]]--
  2033. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  2034. hit:FindFirstChild("Humanoid").PlatformStand = true
  2035. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  2036. --Debounces.Slashed = false
  2037. end
  2038. end
  2039. end
  2040. end)
  2041. coroutine.wrap(function()
  2042. for i = 1, 60, 2 do
  2043. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2044. rng.Size = rngm.Scale
  2045. rng.CFrame = HandCF
  2046. rng.Transparency = i/60
  2047. wait()
  2048. end
  2049. wait()
  2050. rng:Destroy()
  2051. end)()
  2052. for i = 1, 18 do
  2053. 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)
  2054. 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)
  2055. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  2056. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  2057. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  2058. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  2059. 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)
  2060. if Debounces.on == false then break end
  2061. wait()
  2062. end
  2063. larm.BrickColor = BrickColor.new("Really black")
  2064. rarm.BrickColor = BrickColor.new("Really black")
  2065. x:Destroy()
  2066. x1:Destroy()
  2067. if Debounces.CanAttack == false then
  2068. Debounces.CanAttack = true
  2069. Debounces.on = false
  2070. Debounces.NoIdl = false
  2071. end
  2072. end
  2073. end
  2074. end)
  2075. ----------------------------------------------------
  2076. mouse.KeyDown:connect(function(key)
  2077. if key == "y" then
  2078. if Debounces.CanAttack == true then
  2079. Debounces.CanAttack = false
  2080. Debounces.on = true
  2081. Debounces.NoIdl = true
  2082. for i = 1, 15 do
  2083. 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)
  2084. 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)
  2085. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  2086. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  2087. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  2088. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  2089. 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)
  2090. if Debounces.on == false then break end
  2091. wait()
  2092. end
  2093. x = Instance.new("Sound",char)
  2094. x.SoundId = "rbxassetid://0"
  2095. x.Pitch = 1
  2096. x.Volume = .8
  2097. wait(.1)
  2098. x:Play()
  2099. Debounces.on = false
  2100. Debounces.Here = false
  2101. shot = shot + 1
  2102. local rng = Instance.new("Part", char)
  2103. rng.Anchored = true
  2104. rng.BrickColor = BrickColor.new("Really black")
  2105. rng.CanCollide = false
  2106. rng.FormFactor = 3
  2107. rng.Name = "Ring"
  2108. rng.Size = Vector3.new(1, 1, 1)
  2109. rng.Transparency = 0.35
  2110. rng.TopSurface = 0
  2111. rng.BottomSurface = 0
  2112. rng2 = rng:clone()
  2113. rng3 = rng2:clone()
  2114. rng4 = rng2:clone()
  2115. local rngm = Instance.new("SpecialMesh", rng)
  2116. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2117. rngm.Scale = Vector3.new(10, 10, 1)
  2118. rngm2 = rngm:clone()
  2119. rngm2.Scale = Vector3.new(5, 5, 1)
  2120. rngm3=rngm2:clone()
  2121. rngm3.Parent = rng3
  2122. rngm3.Scale = Vector3.new(8, 8, 1)
  2123. rngm4 = rngm2:clone()
  2124. rngm4.Parent = rng4
  2125. rngm4.Scale = Vector3.new(6, 6, 1)
  2126. local bem = Instance.new("Part", char)
  2127. bem.Anchored = true
  2128. bem.BrickColor = BrickColor.new("Really black")
  2129. bem.CanCollide = false
  2130. bem.FormFactor = 3
  2131. bem.Name = "Beam" .. shot
  2132. bem.Size = Vector3.new(1, 1, 1)
  2133. bem.Transparency = 0.35
  2134. bem.TopSurface = 0
  2135. bem.BottomSurface = 0
  2136. local bemm = Instance.new("SpecialMesh", bem)
  2137. bemm.MeshType = 4
  2138. bemm.Scale = Vector3.new(1, 4, 4)
  2139. local out = Instance.new("Part", char)
  2140. out.Anchored = true
  2141. out.BrickColor = BrickColor.new("Really black")
  2142. out.CanCollide = false
  2143. out.FormFactor = 3
  2144. out.Name = "Out"
  2145. out.Size = Vector3.new(4, 4, 4)
  2146. out.Transparency = 0.35
  2147. out.TopSurface = 0
  2148. out.BottomSurface = 0
  2149. local outm = Instance.new("SpecialMesh", out)
  2150. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  2151. outm.Scale = Vector3.new(4, 4, 4)
  2152. local bnd = Instance.new("Part", char)
  2153. bnd.Anchored = true
  2154. bnd.BrickColor = BrickColor.new("Really black")
  2155. bnd.CanCollide = false
  2156. bnd.FormFactor = 3
  2157. bnd.Name = "Bend"
  2158. bnd.Size = Vector3.new(1, 1, 1)
  2159. bnd.Transparency = 1
  2160. bnd.TopSurface = 0
  2161. bnd.BottomSurface = 0
  2162. local bndm = Instance.new("SpecialMesh", bnd)
  2163. bndm.MeshType = 3
  2164. bndm.Scale = Vector3.new(8, 8, 8)
  2165. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  2166. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  2167. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  2168. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  2169. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  2170. rng4.CFrame = rng3.CFrame * CFrame.new(0, -.5, 0)
  2171. Debounces.Shewt = true
  2172. coroutine.wrap(function()
  2173. for i = 1, 20, 0.2 do
  2174. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2175. rngm3.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2176. rngm4.Scale = Vector3.new(6 + i*2, 6 + i*2, 1)
  2177. rng.Transparency = i/20
  2178. rng3.Transparency = 1/16
  2179. rng4.Transparency = i/12
  2180. wait()
  2181. end
  2182. wait()
  2183. rng:Destroy()
  2184. end)()
  2185. if Debounces.Shewt == true then
  2186. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  2187. hit = ht.Parent
  2188. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  2189. if HasntTouched(hit.Name) == true and deb == false then
  2190. deb = true
  2191. coroutine.wrap(function()
  2192. hit:FindFirstChild("Humanoid").PlatformStand = true
  2193. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2194. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  2195. end)()
  2196. table.insert(Touche, hit.Name)
  2197. deb = false
  2198. end
  2199. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  2200. if HasntTouched(hit.Parent.Name) == true and deb == false then
  2201. deb = true
  2202. coroutine.wrap(function()
  2203. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  2204. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  2205. wait(1)
  2206. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  2207. end)()
  2208. table.insert(Touche, hit.Parent.Name)
  2209. deb = false
  2210. for i, v in pairs(Touche) do
  2211. print(v)
  2212. end
  2213. end
  2214. end
  2215. end)
  2216. end
  2217. for i = 0, 260, 8 do
  2218. bem.Size = Vector3.new(i, 2, 2)
  2219. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  2220. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  2221. bnd.Size = Vector3.new(1,1,1)
  2222. bndm.Scale = Vector3.new(8,8,8)
  2223. if i % 10 == 0 then
  2224. local newRng = rng2:Clone()
  2225. newRng.Parent = char
  2226. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  2227. local newRngm = rngm2:clone()
  2228. newRngm.Parent=newRng
  2229. coroutine.wrap(function()
  2230. for i = 1, 10, 0.2 do
  2231. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 1)
  2232. newRng.Transparency = i/10
  2233. wait()
  2234. end
  2235. wait()
  2236. newRng:Destroy()
  2237. end)()
  2238. end
  2239. wait()
  2240. end
  2241. wait()
  2242. Debounces.Shewt = false
  2243. bem:Destroy()
  2244. out:Destroy()
  2245. bnd:Destroy()
  2246. Debounces.Ready = false
  2247. for i, v in pairs(Touche) do
  2248. table.remove(Touche, i)
  2249. end
  2250. wait()
  2251. table.insert(Touche, char.Name)
  2252. Debounces.NoIdl = false
  2253. if Debounces.CanAttack == false then
  2254. Debounces.CanAttack = true
  2255. end
  2256. end
  2257. end
  2258. end)
  2259. ----------------------------------------------------
  2260. sidz = {"231917888", "231917845", "231917806"}
  2261. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  2262. mouse.KeyDown:connect(function(key)
  2263. if key == "f" then
  2264. larm.BrickColor = BrickColor.new("Bright red")
  2265. rarm.BrickColor = BrickColor.new("Bright red")
  2266. if Debounces.CanAttack == true then
  2267. Debounces.CanAttack = false
  2268. Debounces.on = true
  2269. Debounces.NoIdl = true
  2270. for i = 1, 10 do
  2271. 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)
  2272. 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)
  2273. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2274. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2275. 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)
  2276. 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)
  2277. 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)
  2278. if Debounces.on == false then break end
  2279. wait()
  2280. end
  2281. z = Instance.new("Sound",char)
  2282. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  2283. z.Pitch = ptz[math.random(1,#ptz)]
  2284. z.Volume = 1
  2285. z1 = Instance.new("Sound",char)
  2286. z1.SoundId = z.SoundId
  2287. z1.Pitch = z.Pitch
  2288. z1.Volume = 1
  2289. wait(1)
  2290. z:Play()
  2291. z1:Play()
  2292. Stomp()
  2293. for i = 1, 20 do
  2294. 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)
  2295. 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)
  2296. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2297. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.6)
  2298. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.6)
  2299. 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)
  2300. 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)
  2301. if Debounces.on == false then break end
  2302. wait()
  2303. end
  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. mouse.KeyDown:connect(function(key)
  2316. if key == "g" then
  2317. larm.BrickColor = BrickColor.new("Bright red")
  2318. rarm.BrickColor = BrickColor.new("Bright red")
  2319. if Debounces.CanAttack == true then
  2320. Debounces.CanAttack = false
  2321. Debounces.on = true
  2322. Debounces.NoIdl = true
  2323. chrg = lleg.Touched:connect(function(ht)
  2324. hit = ht.Parent
  2325. if ht and hit:IsA("Model") then
  2326. if hit:FindFirstChild("Humanoid") then
  2327. if hit.Name ~= p.Name then
  2328. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2329. Debounces.Slashed = true]]--
  2330. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2331. hit:FindFirstChild("Humanoid").PlatformStand = true
  2332. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2333. --Debounces.Slashed = false
  2334. --end
  2335. end
  2336. end
  2337. elseif ht and hit:IsA("Hat") then
  2338. if hit.Parent.Name ~= p.Name then
  2339. if hit.Parent:FindFirstChild("Humanoid") then
  2340. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  2341. Debounces.Slashed = true]]--
  2342. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2343. hit:FindFirstChild("Humanoid").PlatformStand = true
  2344. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2345. --Debounces.Slashed = false
  2346. end
  2347. end
  2348. end
  2349. end)
  2350. for i = 1, 14 do
  2351. 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)
  2352. 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)
  2353. 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)
  2354. 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)
  2355. 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)
  2356. 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)
  2357. 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)
  2358. if Debounces.on == false then break end
  2359. wait()
  2360. end
  2361. charge()
  2362. z = Instance.new("Sound",char)
  2363. z.SoundId = "rbxassetid://0"
  2364. z.Volume = 1
  2365. z.Pitch = .8
  2366. z1 = Instance.new("Sound",char)
  2367. z1.SoundId = "rbxassetid://0"
  2368. z1.Volume = 1
  2369. z1.Pitch = .9
  2370. z:Play()
  2371. z1:Play()
  2372. wait(1)
  2373. z:Destroy()
  2374. z1:Destroy()
  2375. chrg:disconnect()
  2376. if Debounces.CanAttack == false then
  2377. Debounces.CanAttack = true
  2378. Debounces.on = false
  2379. Debounces.NoIdl = false
  2380. larm.BrickColor = BrickColor.new("Really black")
  2381. rarm.BrickColor = BrickColor.new("Really black")
  2382. end
  2383. end
  2384. end
  2385. end)
  2386. ----------------------------------------------------
  2387. pt = {0.7, 0.8, 0.9}
  2388. mouse.KeyDown:connect(function(key)
  2389. if key == "h" then
  2390. if Debounces.CanJoke == true then
  2391. Debounces.CanJoke = false
  2392. u = Instance.new("Sound")
  2393. u.SoundId = "http://www.roblox.com/asset/?id=0"
  2394. u.Parent = char
  2395. u.Looped = false
  2396. u.Pitch = pt[math.random(1,#pt)]
  2397. u.Volume = 1
  2398. u2 = Instance.new("Sound")
  2399. u2.SoundId = "http://www.roblox.com/asset/?id=0"
  2400. u2.Parent = char
  2401. u2.Looped = false
  2402. u2.Pitch = u.Pitch
  2403. u2.Volume = 1
  2404. wait(.01)
  2405. u:Play()
  2406. u2:Play()
  2407. wait(6)
  2408. u:Destroy()
  2409. u2:Destroy()
  2410. if Debounces.CanJoke == false then
  2411. Debounces.CanJoke = true
  2412. end
  2413. end
  2414. end
  2415. end)
  2416. ----------------------------------------------------
  2417. mouse.KeyDown:connect(function(key)
  2418. if key == "j" then
  2419. if Debounces.CanJoke == true then
  2420. Debounces.CanJoke = false
  2421. z = Instance.new("Sound",char)
  2422. z.SoundId = "rbxassetid://0"
  2423. z.Pitch = .76
  2424. z.Volume = 1
  2425. wait()
  2426. z:Play()
  2427. wait(6)
  2428. z:Destroy()
  2429. if Debounces.CanJoke == false then
  2430. Debounces.CanJoke = true
  2431. end
  2432. end
  2433. end
  2434. end)
  2435. ----------------------------------------------------
  2436. mouse.KeyDown:connect(function(key)
  2437. if key == "k" then
  2438. if Debounces.CanJoke == true then
  2439. Debounces.CanJoke = false
  2440. z = Instance.new("Sound",char)
  2441. z.SoundId = "rbxassetid://0"
  2442. z.Pitch = .76
  2443. z.Volume = 1
  2444. wait()
  2445. z:Play()
  2446. wait(4)
  2447. z:Destroy()
  2448. if Debounces.CanJoke == false then
  2449. Debounces.CanJoke = true
  2450. end
  2451. end
  2452. end
  2453. end)
  2454. ----------------------------------------------------
  2455. mouse.KeyDown:connect(function(key)
  2456. if key == "x" then
  2457. if Debounces.CanAttack == true then
  2458. Debounces.CanAttack = false
  2459. Debounces.NoIdl = true
  2460. Debounces.on = true
  2461. Debounces.ks = true
  2462. for i = 1, 10 do
  2463. 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)
  2464. 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)
  2465. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.6)
  2466. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.6)
  2467. 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)
  2468. 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)
  2469. 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)
  2470. if Debounces.on == false then break end
  2471. wait()
  2472. end
  2473. z = Instance.new("Sound",hed)
  2474. z.SoundId = "rbxassetid://0"
  2475. z.Volume = 1
  2476. wait(0.1)
  2477. z:Play()
  2478. kik = rleg.Touched:connect(function(ht)
  2479. hit = ht.Parent
  2480. if ht and hit:IsA("Model") then
  2481. if hit:FindFirstChild("Humanoid") then
  2482. if hit.Name ~= p.Name then
  2483. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2484. Debounces.Slashed = true]]--
  2485. if Debounces.ks==true then
  2486. z = Instance.new("Sound",hed)
  2487. z.SoundId = "rbxassetid://0"
  2488. z.Volume = 1
  2489. z:Play()
  2490. Debounces.ks=false
  2491. end
  2492. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  2493. hit:FindFirstChild("Humanoid").PlatformStand = true
  2494. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2495. --Debounces.Slashed = false
  2496. --end
  2497. end
  2498. end
  2499. elseif ht and hit:IsA("Hat") then
  2500. if hit.Parent.Name ~= p.Name then
  2501. if hit.Parent:FindFirstChild("Humanoid") then
  2502. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  2503. Debounces.Slashed = true]]--
  2504. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  2505. hit:FindFirstChild("Humanoid").PlatformStand = true
  2506. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  2507. --Debounces.Slashed = false
  2508. --end
  2509. end
  2510. end
  2511. end
  2512. end)
  2513. for i = 1, 8 do
  2514. 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)
  2515. 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)
  2516. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.7)
  2517. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.7)
  2518. 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)
  2519. 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)
  2520. 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)
  2521. if Debounces.on == false then break end
  2522. wait()
  2523. end
  2524. kik:disconnect()
  2525. if Debounces.CanAttack == false then
  2526. Debounces.CanAttack = true
  2527. Debounces.on = false
  2528. Debounces.NoIdl = false
  2529. end
  2530. end
  2531. end
  2532. end)
  2533. ----------------------------------------------------
  2534. mouse.KeyDown:connect(function(key)
  2535. if key == "c" then
  2536. if Debounces.CanAttack == true then
  2537. Debounces.CanAttack = false
  2538. Debounces.NoIdl = true
  2539. Debounces.on = true
  2540. SIDZ = {"231917744", "231917742"}
  2541. PTZ = {0.7, 0.8, 0.9, 1}
  2542. for i = 1, 20 do
  2543. wait()
  2544. for i,v in pairs(char.Absolution:children()) do
  2545. if v:IsA("Part") or v:IsA("WedgePart") then
  2546. v.Transparency = v.Transparency + 0.05
  2547. end
  2548. end
  2549. end
  2550. function FindNearestTorso(Position,Distance,SinglePlayer)
  2551. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  2552. local List = {}
  2553. for i,v in pairs(workspace:GetChildren())do
  2554. if v:IsA("Model")then
  2555. if v:findFirstChild("Torso")then
  2556. if v ~= char then
  2557. if(v.Torso.Position -Position).magnitude <= Distance then
  2558. table.insert(List,v)
  2559. end
  2560. end
  2561. end
  2562. end
  2563. end
  2564. return List
  2565. end
  2566. GroundPound()
  2567. for i = 1, 5 do
  2568. 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)
  2569. 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)
  2570. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2571. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2572. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2573. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2574. 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)
  2575. if Debounces.on == false then break end
  2576. wait()
  2577. end
  2578. GroundPound()
  2579. for i = 1, 5 do
  2580. 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)
  2581. 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)
  2582. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2583. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2584. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2585. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2586. 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)
  2587. if Debounces.on == false then break end
  2588. wait()
  2589. end
  2590. GroundPound()
  2591. for i = 1, 5 do
  2592. 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)
  2593. 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)
  2594. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2595. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2596. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2597. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2598. 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)
  2599. if Debounces.on == false then break end
  2600. wait()
  2601. end
  2602. GroundPound()
  2603. for i = 1, 5 do
  2604. 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)
  2605. 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)
  2606. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2607. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2608. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2609. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2610. 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)
  2611. if Debounces.on == false then break end
  2612. wait()
  2613. end
  2614. GroundPound()
  2615. for i = 1, 5 do
  2616. 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)
  2617. 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)
  2618. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.6)
  2619. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.6)
  2620. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.6)
  2621. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2622. 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)
  2623. if Debounces.on == false then break end
  2624. wait()
  2625. end
  2626. GroundPound()
  2627. for i = 1, 5 do
  2628. 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)
  2629. 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)
  2630. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.6)
  2631. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.6)
  2632. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.6)
  2633. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.6)
  2634. 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)
  2635. if Debounces.on == false then break end
  2636. wait()
  2637. end
  2638. for i = 1, 18 do
  2639. 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)
  2640. 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)
  2641. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.4)
  2642. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.4)
  2643. 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)
  2644. 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)
  2645. 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)
  2646. if Debounces.on == false then break end
  2647. wait()
  2648. end
  2649. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  2650. if v:FindFirstChild('Humanoid') then
  2651. v.Humanoid:TakeDamage(math.random(20,60))
  2652. v.Humanoid.PlatformStand = true
  2653. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  2654. end
  2655. end
  2656. x = Instance.new("Sound",char)
  2657. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  2658. x.Pitch = PTZ[math.random(1,#PTZ)]
  2659. x.Volume = 1
  2660. wait(0.1)
  2661. x:Play()
  2662. Crater(hed,20)
  2663. for i = 1, 14 do
  2664. 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)
  2665. 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)
  2666. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  2667. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  2668. 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)
  2669. 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)
  2670. 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)
  2671. if Debounces.on == false then break end
  2672. wait()
  2673. end
  2674. if Debounces.CanAttack == false then
  2675. Debounces.CanAttack = true
  2676. Debounces.on = false
  2677. Debounces.NoIdl = false
  2678. for i = 1, 20 do
  2679. wait()
  2680. for i,v in pairs(char.Absolution:children()) do
  2681. if v:IsA("Part") or v:IsA("WedgePart") then
  2682. v.Transparency = v.Transparency - 0.05
  2683. end
  2684. end
  2685. end
  2686. end
  2687. end
  2688. end
  2689. end)
  2690. ----------------------------------------------------176349813
  2691. mouse.KeyDown:connect(function(key)
  2692. if key == "b" then
  2693. hum.WalkSpeed = 0.01
  2694. if Debounces.CanAttack == true then
  2695. Debounces.CanAttack = false
  2696. Debounces.NoIdl = true
  2697. Debounces.on = true
  2698. for i = 1,20 do
  2699. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(-30)), 0.1)
  2700. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(75), 0, math.rad(30)), 0.1)
  2701. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), 0), 0.1)
  2702. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.1)
  2703. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(-5)), 0.1)
  2704. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles (math.rad(30), 0, math.rad(5)), 0.1)
  2705. 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)
  2706. if Debounces.on == false then break end
  2707. wait()
  2708. end
  2709. wait(1)
  2710. v = Instance.new("Sound")
  2711. v.SoundId = "rbxassetid://0"
  2712. v.Parent = char
  2713. v.Looped = false
  2714. v.Pitch = 1.04
  2715. v.Volume = 1
  2716. wait(.01)
  2717. v:Play()
  2718.  
  2719. if Daytime == true then
  2720. Daytime = false
  2721. l.TimeOfDay = 24
  2722. else
  2723. Daytime = true
  2724. l.TimeOfDay = 12
  2725. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  2726. end
  2727.  
  2728. local Shockwave = function()
  2729. local rng1 = Instance.new("Part", char)
  2730. rng1.Anchored = true
  2731. rng1.BrickColor = BrickColor.new("Really black")
  2732. rng1.CanCollide = false
  2733. rng1.FormFactor = 3
  2734. rng1.Name = "Ring"
  2735. rng1.Size = Vector3.new(1, 1, 1)
  2736. rng1.Transparency = 0.35
  2737. rng1.TopSurface = 0
  2738. rng1.BottomSurface = 0
  2739. local rngm1 = Instance.new("SpecialMesh", rng)
  2740. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2741. rngm1.Scale = Vector3.new(10, 10, 1)
  2742. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  2743. local Wave = Instance.new("Part", game.Workspace--[[?]])
  2744. Wave.Name = "Shockwave"
  2745. Wave.BrickColor = BrickColor.new("Really black")
  2746. Wave.Size = Vector3.new(1, 1, 1)
  2747. Wave.Shape = "Ball"
  2748. Wave.CanCollide = false
  2749. Wave.Anchored = true
  2750. Wave.TopSurface = 0
  2751. Wave.BottomSurface = 0
  2752. Wave.Touched:connect(function(hit)
  2753. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  2754. local Occlude = true
  2755. local NotOccludes = {
  2756. char.Name;
  2757. "Wings";
  2758. "Scythe";
  2759. "Thingy";
  2760. "Thingy2"; -- put all of the names in a table pls
  2761. }
  2762. for i,v in pairs(NotOccludes) do
  2763. if hit.Parent.Name == v then
  2764. Occlude = false
  2765. end
  2766. end
  2767. --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
  2768. if Occlude then
  2769. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  2770. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  2771. end
  2772. end
  2773. end)
  2774.  
  2775. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  2776.  
  2777. coroutine.wrap(function()
  2778. for i = 1, 20, 0.2 do
  2779. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  2780. rng1.Transparency = i/20
  2781. wait()
  2782. end
  2783. wait()
  2784. rng1:Destroy()
  2785. end)()
  2786.  
  2787. Delay(0, function()
  2788.  
  2789. if Daytime == false then
  2790. for i = 1, 50, 1 do
  2791. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2792. Wave.CFrame = char.Torso.CFrame
  2793. local t = i / 50
  2794. Wave.Transparency = t
  2795. wait()
  2796. end
  2797. else
  2798. for i = 1, 50, 1 do
  2799. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  2800. Wave.CFrame = char.Torso.CFrame
  2801. local t = i / 50
  2802. Wave.Transparency = t
  2803. wait()
  2804. end
  2805. end
  2806. Wave:Destroy()
  2807. end)
  2808. Delay(0, function()
  2809. while wait() do
  2810. if Wave ~= nil then
  2811. Wave.CFrame = char.Torso.CFrame
  2812. else
  2813. break
  2814. end
  2815. end
  2816. end)
  2817. end
  2818. Shockwave()
  2819. for i = 1, 15 do
  2820. 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)
  2821. 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)
  2822. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2823. 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)
  2824. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2825. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2826. if Debounces.on == false then break end
  2827. wait()
  2828. end
  2829. for i = 1, 15 do
  2830. 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)
  2831. 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)
  2832. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2833. 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)
  2834. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2835. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2836. if Debounces.on == false then break end
  2837. wait()
  2838. end
  2839. for i = 1, 15 do
  2840. 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)
  2841. 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)
  2842. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2843. 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)
  2844. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2845. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2846. if Debounces.on == false then break end
  2847. wait()
  2848. end
  2849. for i = 1, 15 do
  2850. 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)
  2851. 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)
  2852. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2853. 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)
  2854. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2855. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2856. if Debounces.on == false then break end
  2857. wait()
  2858. end
  2859. for i = 1, 15 do
  2860. 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)
  2861. 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)
  2862. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(30), 0), 0.1)
  2863. 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)
  2864. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(-40)), 0.1)
  2865. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2866. if Debounces.on == false then break end
  2867. wait()
  2868. end
  2869. for i = 1, 15 do
  2870. 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)
  2871. 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)
  2872. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2) * CFrame.Angles(math.rad(45), math.rad(-30), 0), 0.1)
  2873. 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)
  2874. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.1)
  2875. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(-30), 0, math.rad(40)), 0.1)
  2876. if Debounces.on == false then break end
  2877. wait()
  2878. end
  2879. wait(1.4)
  2880. Debounces.NoIdl = false
  2881. hum.WalkSpeed = 5
  2882. Debounces.on = false
  2883. wait()
  2884. if Debounces.CanAttack == false then
  2885. Debounces.CanAttack = true
  2886. v:Destroy()
  2887. end
  2888. end
  2889. end
  2890. end)
  2891. ----------------------------------------------------
  2892. mouse.KeyDown:connect(function(key)
  2893. if key == "m" then
  2894. hum.WalkSpeed = 0
  2895. if Debounces.CanAttack == true then
  2896. Debounces.CanAttack = false
  2897. Debounces.on = true
  2898. Debounces.NoIdl = true
  2899. --[[x = Instance.new("Sound",char)
  2900. x.SoundId = "http://www.roblox.com/asset/?id=0"
  2901. x.Looped = false
  2902. x.Pitch = 1.1
  2903. x.Volume = 1
  2904. x:Play()
  2905. x2 = Instance.new("Sound",char)
  2906. x2.SoundId = "http://www.roblox.com/asset/?id=0"
  2907. x2.Looped = false
  2908. x2.Pitch = .7
  2909. x2.Volume = 1
  2910. wait(.1)
  2911. x:Play()
  2912. x2:Play()
  2913. for i = 1, 20 do
  2914. 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)
  2915. 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)
  2916. 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)
  2917. 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)
  2918. 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)
  2919. 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)
  2920. 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)
  2921. if Debounces.on == false then break end
  2922. wait()
  2923. x:Destroy()
  2924. x2:Destroy()
  2925. end
  2926. wait(1)]]--
  2927. local rng = Instance.new("Part", char)
  2928. rng.Anchored = true
  2929. rng.BrickColor = BrickColor.new("Really black")
  2930. rng.CanCollide = false
  2931. rng.FormFactor = 3
  2932. rng.Name = "Ring"
  2933. rng.Size = Vector3.new(1, 1, 1)
  2934. rng.Transparency = 0.35
  2935. rng.TopSurface = 0
  2936. rng.BottomSurface = 0
  2937. rng.Position = torso.Position - Vector3.new(0,2,0)
  2938. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2939. local rngm = Instance.new("SpecialMesh", rng)
  2940. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  2941. rngm.Scale = Vector3.new(1, 1, 2)
  2942. x = Instance.new("Sound",char)
  2943. x.SoundId = "http://www.roblox.com/asset/?id=0"
  2944. x.Looped = false
  2945. x.Pitch = .7
  2946. x.Volume = 1
  2947. x:Play()
  2948. coroutine.wrap(function()
  2949. for i = 1, 60, 2 do
  2950. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  2951. rng.Transparency = i/60
  2952. wait()
  2953. end
  2954. wait()
  2955. rng:Destroy()
  2956. end)()
  2957. hum.WalkSpeed = 50
  2958. BV = Instance.new("BodyVelocity", torso)
  2959. BV.maxForce = Vector3.new(0,200000,0)
  2960. BV.P = 100000
  2961. BV.velocity = Vector3.new(0,800,0)
  2962. for i = 1, 20 do
  2963. 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)
  2964. 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)
  2965. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  2966. 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)
  2967. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -2, 0) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  2968. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, 0, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  2969. 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)
  2970. if Debounces.on == false then break end
  2971. wait()
  2972. end
  2973. x:Destroy()
  2974. BV:Destroy()
  2975. --[[for i = 1, 30 do
  2976. 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)
  2977. 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)
  2978. 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)
  2979. 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)
  2980. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  2981. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  2982. if Debounces.on == false then break end
  2983. wait()
  2984. end]]--
  2985. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  2986. for i = 1, 30 do
  2987. 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)
  2988. 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)
  2989. 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)
  2990. 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)
  2991. 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)
  2992. 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)
  2993. 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)
  2994. if Debounces.on == false then break end
  2995. wait()
  2996. end
  2997. end
  2998. Debounces.on = false
  2999. Debounces.NoIdl = false
  3000. local ry,ht,ps=nil,nil,nil
  3001. while ht==nil do
  3002. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  3003. wait()
  3004. end
  3005. z = Instance.new("Sound",char)
  3006. z.SoundId = "rbxassetid://142070127"
  3007. z.Volume = 1
  3008. wait(.1)
  3009. z:Play()
  3010. Landing()
  3011. hum.WalkSpeed = 8
  3012. if Debounces.CanAttack == false then
  3013. Debounces.CanAttack = true
  3014. end
  3015. end
  3016. end
  3017. end)
  3018. ----------------------------------------------------
  3019. Grab = false
  3020. mouse.KeyDown:connect(function(key)
  3021. if key == "z" then
  3022. larm.BrickColor = BrickColor.new("Bright red")
  3023. rarm.BrickColor = BrickColor.new("Bright red")
  3024. Debounces.on = true
  3025. Debounces.NoIdl = true
  3026. if Grab == false then
  3027. gp = nil
  3028. con1=larm.Touched:connect(function(hit) -- this is grab
  3029. ht = hit.Parent
  3030. hum1=ht:FindFirstChild('Humanoid')
  3031. if hum1 ~= nil then
  3032. hum1.PlatformStand=true
  3033. gp = ht
  3034. Grab = true
  3035. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  3036. asd.Parent = larm
  3037. asd.Name = "asd"
  3038. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  3039. elseif hum1 == nil then
  3040. con1:disconnect()
  3041. wait() return
  3042. end
  3043. end)
  3044. for i = 1, 18 do
  3045. 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)
  3046. 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)
  3047. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3048. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  3049. 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)
  3050. 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)
  3051. 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)
  3052. if Debounces.on == false then break end
  3053. wait()
  3054. end
  3055. con1:disconnect()
  3056. Debounces.on = false
  3057. Debounces.NoIdl = false
  3058. elseif Grab == true then
  3059. Grab = false
  3060. for i = 1, 20 do
  3061. 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)
  3062. 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)
  3063. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3064. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3065. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3066. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3067. 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)
  3068. if Debounces.on == false then end
  3069. wait()
  3070. end
  3071. if gp ~= nil then
  3072. for i,v in pairs(larm:GetChildren()) do
  3073. if v.Name == "asd" and v:IsA("Weld") then
  3074. v:Remove()
  3075. end
  3076. end
  3077. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  3078. bv.maxForce = Vector3.new(400000, 400000, 400000)
  3079. bv.P = 125000
  3080. bv.velocity = char.Head.CFrame.lookVector * 200
  3081. for i = 1, 12 do
  3082. 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)
  3083. if Debounces.on == false then end
  3084. wait()
  3085. end
  3086. ht=nil
  3087. Spawn(function()
  3088. wait(0.5)
  3089. bv:Destroy()
  3090. end)
  3091. Debounces.on = false
  3092. Debounces.NoIdl = false
  3093. elseif ht == nil then wait()
  3094. Grab = false
  3095. Debounces.on = false
  3096. Debounces.NoIdl = false
  3097. end
  3098. end
  3099. end
  3100. end)
  3101. mouse.KeyDown:connect(function(key)
  3102. if string.byte(key) == 52 then
  3103. char.Humanoid.WalkSpeed = 21
  3104. end
  3105. end)
  3106. mouse.KeyUp:connect(function(key)
  3107. if string.byte(key) == 52 then
  3108. char.Humanoid.WalkSpeed = 5
  3109. end
  3110. end)
  3111. ----------------------------------------------------
  3112. local animpose = "Idle"
  3113. local lastanimpose = "Idle"
  3114. local sine = 0
  3115. local change = 1
  3116. local val = 0
  3117. local ffing = false
  3118. ----------------------------------------------------
  3119. -------------------------------
  3120. game:GetService("RunService").RenderStepped:connect(function()
  3121. --[[if char.Humanoid.Jump == true then
  3122. jump = true
  3123. else
  3124. jump = false
  3125. end]]
  3126. char.Humanoid.FreeFalling:connect(function(f)
  3127. if f then
  3128. ffing = true
  3129. else
  3130. ffing = false
  3131. end
  3132. end)
  3133. sine = sine + change
  3134. if jumpn == true then
  3135. animpose = "Jumping"
  3136. elseif ffing == true then
  3137. animpose = "Freefalling"
  3138. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3139. animpose = "Idle"
  3140. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  3141. animpose = "Walking"
  3142. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 2 then
  3143. animpose = "Running"
  3144. end
  3145. if animpose ~= lastanimpose then
  3146. sine = 0
  3147. if Debounces.NoIdl == false then
  3148. if animpose == "Idle" then
  3149. for i = 1, 2 do
  3150. 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)
  3151. 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)
  3152. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  3153. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  3154. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3155. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3156. 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)
  3157. end
  3158. elseif animpose == "Walking" then
  3159. for i = 1, 2 do
  3160. 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)
  3161. 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)
  3162. hed.Weld.C0 = CFrame.new(0,4,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3163. 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)
  3164. 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)
  3165. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 20, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3166. end
  3167. elseif animpose == "Running" then
  3168. for i = 1, 2 do
  3169. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.8, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  3170. 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)
  3171. 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)
  3172. 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)
  3173. 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)
  3174. 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)
  3175. 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)
  3176. end
  3177. wait()
  3178. end
  3179. else
  3180. end
  3181. end
  3182. lastanimpose = animpose
  3183. if Debounces.NoIdl == false then
  3184. if animpose == "Idle" then
  3185. if stanceToggle == "Normal" then
  3186. change = 0.5
  3187. 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)
  3188. 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)
  3189. 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)
  3190. 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)
  3191. 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)
  3192. 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)
  3193. 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)
  3194. elseif stanceToggle == "Sitting" then
  3195. 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)
  3196. 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)
  3197. 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)
  3198. 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)
  3199. 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)
  3200. 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)
  3201. 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)
  3202. end
  3203. elseif animpose == "Walking" then
  3204. if stanceToggle == "Normal" then
  3205. change = 1
  3206. 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)
  3207. 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)
  3208. hed.Weld.C0 = CFrame.new(0,3,-1.5)*CFrame.Angles(math.rad(-14-4*math.cos(sine/14)),0,0)
  3209. 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)
  3210. 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)
  3211. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(1.2, 10, -.2) * CFrame.Angles(math.rad(-15),0, math.rad(0)), 0.05)
  3212. end
  3213. elseif animpose == "Running" then
  3214. change = 1
  3215. 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)
  3216. 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)
  3217. 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)
  3218. 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)
  3219. 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)
  3220. 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)
  3221. 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)
  3222. end
  3223. end
  3224. --[[if animpose == "Walking" then
  3225. if footsteps == false then
  3226. x:Play()
  3227. footsteps = true
  3228. end
  3229. x.Pitch = 1.1
  3230. elseif animpose == "Idle" then
  3231. x:Stop()
  3232. footsteps = false
  3233. elseif animpose == "Running" then
  3234. x.Pitch = 1.2
  3235. if footsteps == false then
  3236. x:Play()
  3237. footsteps = true
  3238. end
  3239. end]]--
  3240. end)
  3241.  
  3242.  
  3243.  
  3244. Player=game:GetService('Players').LocalPlayer
  3245. Character=Player.Character
  3246. Mouse=Player:GetMouse()
  3247. m=Instance.new('Model',Character)
  3248.  
  3249.  
  3250. local function weldBetween(a, b)
  3251. local weldd = Instance.new("ManualWeld")
  3252. weldd.Part0 = a
  3253. weldd.Part1 = b
  3254. weldd.C0 = CFrame.new()
  3255. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3256. weldd.Parent = a
  3257. return weldd
  3258. end
  3259.  
  3260. it=Instance.new
  3261.  
  3262. function nooutline(part)
  3263. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3264. end
  3265.  
  3266. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3267. local fp=it("Part")
  3268. fp.formFactor=formfactor
  3269. fp.Parent=parent
  3270. fp.Reflectance=reflectance
  3271. fp.Transparency=transparency
  3272. fp.CanCollide=false
  3273. fp.Locked=true
  3274. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3275. fp.Name=name
  3276. fp.Size=size
  3277. fp.Position=Character.Torso.Position
  3278. nooutline(fp)
  3279. fp.Material=material
  3280. fp:BreakJoints()
  3281. return fp
  3282. end
  3283.  
  3284. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3285. local mesh=it(Mesh)
  3286. mesh.Parent=part
  3287. if Mesh=="SpecialMesh" then
  3288. mesh.MeshType=meshtype
  3289. mesh.MeshId=meshid
  3290. end
  3291. mesh.Offset=offset
  3292. mesh.Scale=scale
  3293. return mesh
  3294. end
  3295.  
  3296. function weld(parent,part0,part1,c0,c1)
  3297. local weld=it("Weld")
  3298. weld.Parent=parent
  3299. weld.Part0=part0
  3300. weld.Part1=part1
  3301. weld.C0=c0
  3302. weld.C1=c1
  3303. return weld
  3304. end
  3305.  
  3306. Head=part(Enum.FormFactor.Plate,m,Enum.Material.Plastic,0,0,"Really black","Handle",Vector3.new(4.50989914, 4.5098958, 4.50989771))
  3307. 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))
  3308. 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))
  3309. Player=game:GetService('Players').LocalPlayer
  3310. Character=Player.Character
  3311. Mouse=Player:GetMouse()
  3312. m=Instance.new('Model',Character)
  3313.  
  3314.  
  3315. local function weldBetween(a, b)
  3316. local weldd = Instance.new("ManualWeld")
  3317. weldd.Part0 = a
  3318. weldd.Part1 = b
  3319. weldd.C0 = CFrame.new()
  3320. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3321. weldd.Parent = a
  3322. return weldd
  3323. end
  3324.  
  3325. it=Instance.new
  3326.  
  3327. function nooutline(part)
  3328. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3329. end
  3330.  
  3331. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3332. local fp=it("Part")
  3333. fp.formFactor=formfactor
  3334. fp.Parent=parent
  3335. fp.Reflectance=reflectance
  3336. fp.Transparency=transparency
  3337. fp.CanCollide=false
  3338. fp.Locked=true
  3339. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3340. fp.Name=name
  3341. fp.Size=size
  3342. fp.Position=Character.Torso.Position
  3343. nooutline(fp)
  3344. fp.Material=material
  3345. fp:BreakJoints()
  3346. return fp
  3347. end
  3348.  
  3349. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3350. local mesh=it(Mesh)
  3351. mesh.Parent=part
  3352. if Mesh=="SpecialMesh" then
  3353. mesh.MeshType=meshtype
  3354. mesh.MeshId=meshid
  3355. end
  3356. mesh.Offset=offset
  3357. mesh.Scale=scale
  3358. return mesh
  3359. end
  3360.  
  3361. function weld(parent,part0,part1,c0,c1)
  3362. local weld=it("Weld")
  3363. weld.Parent=parent
  3364. weld.Part0=part0
  3365. weld.Part1=part1
  3366. weld.C0=c0
  3367. weld.C1=c1
  3368. return weld
  3369. end
  3370.  
  3371. LArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3372. 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))
  3373. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3374. 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))
  3375. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3376. 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))
  3377. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","LLeg",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3378. 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))
  3379. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3380. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3381. 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))
  3382. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3383. 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))
  3384. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3385. 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))
  3386. Player=game:GetService('Players').LocalPlayer
  3387. Character=Player.Character
  3388. Mouse=Player:GetMouse()
  3389. m=Instance.new('Model',Character)
  3390.  
  3391.  
  3392. local function weldBetween(a, b)
  3393. local weldd = Instance.new("ManualWeld")
  3394. weldd.Part0 = a
  3395. weldd.Part1 = b
  3396. weldd.C0 = CFrame.new()
  3397. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3398. weldd.Parent = a
  3399. return weldd
  3400. end
  3401.  
  3402. it=Instance.new
  3403.  
  3404. function nooutline(part)
  3405. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3406. end
  3407.  
  3408. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3409. local fp=it("Part")
  3410. fp.formFactor=formfactor
  3411. fp.Parent=parent
  3412. fp.Reflectance=reflectance
  3413. fp.Transparency=transparency
  3414. fp.CanCollide=false
  3415. fp.Locked=true
  3416. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3417. fp.Name=name
  3418. fp.Size=size
  3419. fp.Position=Character.Torso.Position
  3420. nooutline(fp)
  3421. fp.Material=material
  3422. fp:BreakJoints()
  3423. return fp
  3424. end
  3425.  
  3426. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3427. local mesh=it(Mesh)
  3428. mesh.Parent=part
  3429. if Mesh=="SpecialMesh" then
  3430. mesh.MeshType=meshtype
  3431. mesh.MeshId=meshid
  3432. end
  3433. mesh.Offset=offset
  3434. mesh.Scale=scale
  3435. return mesh
  3436. end
  3437.  
  3438. function weld(parent,part0,part1,c0,c1)
  3439. local weld=it("Weld")
  3440. weld.Parent=parent
  3441. weld.Part0=part0
  3442. weld.Part1=part1
  3443. weld.C0=c0
  3444. weld.C1=c1
  3445. return weld
  3446. end
  3447.  
  3448. RArm=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3449. 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))
  3450. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.39230847, 1.27000177, 2.25777745))
  3451. 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))
  3452. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3453. 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))
  3454. Player=game:GetService('Players').LocalPlayer
  3455. Character=Player.Character
  3456. Mouse=Player:GetMouse()
  3457. m=Instance.new('Model',Character)
  3458.  
  3459.  
  3460. local function weldBetween(a, b)
  3461. local weldd = Instance.new("ManualWeld")
  3462. weldd.Part0 = a
  3463. weldd.Part1 = b
  3464. weldd.C0 = CFrame.new()
  3465. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3466. weldd.Parent = a
  3467. return weldd
  3468. end
  3469.  
  3470. it=Instance.new
  3471.  
  3472. function nooutline(part)
  3473. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3474. end
  3475.  
  3476. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3477. local fp=it("Part")
  3478. fp.formFactor=formfactor
  3479. fp.Parent=parent
  3480. fp.Reflectance=reflectance
  3481. fp.Transparency=transparency
  3482. fp.CanCollide=false
  3483. fp.Locked=true
  3484. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3485. fp.Name=name
  3486. fp.Size=size
  3487. fp.Position=Character.Torso.Position
  3488. nooutline(fp)
  3489. fp.Material=material
  3490. fp:BreakJoints()
  3491. return fp
  3492. end
  3493.  
  3494. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3495. local mesh=it(Mesh)
  3496. mesh.Parent=part
  3497. if Mesh=="SpecialMesh" then
  3498. mesh.MeshType=meshtype
  3499. mesh.MeshId=meshid
  3500. end
  3501. mesh.Offset=offset
  3502. mesh.Scale=scale
  3503. return mesh
  3504. end
  3505.  
  3506. function weld(parent,part0,part1,c0,c1)
  3507. local weld=it("Weld")
  3508. weld.Parent=parent
  3509. weld.Part0=part0
  3510. weld.Part1=part1
  3511. weld.C0=c0
  3512. weld.C1=c1
  3513. return weld
  3514. end
  3515.  
  3516. RLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3517. 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))
  3518. mesh("SpecialMesh",RLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3519. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3520. 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))
  3521. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3522. 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))
  3523. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.0700016, 1.9832561))
  3524. 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))
  3525. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3526. 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))
  3527. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3528. 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))
  3529. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3530. 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))
  3531. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3532. 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))
  3533. Player=game:GetService('Players').LocalPlayer
  3534. Character=Player.Character
  3535. Mouse=Player:GetMouse()
  3536. m=Instance.new('Model',Character)
  3537.  
  3538.  
  3539. local function weldBetween(a, b)
  3540. local weldd = Instance.new("ManualWeld")
  3541. weldd.Part0 = a
  3542. weldd.Part1 = b
  3543. weldd.C0 = CFrame.new()
  3544. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3545. weldd.Parent = a
  3546. return weldd
  3547. end
  3548.  
  3549. it=Instance.new
  3550.  
  3551. function nooutline(part)
  3552. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3553. end
  3554.  
  3555. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3556. local fp=it("Part")
  3557. fp.formFactor=formfactor
  3558. fp.Parent=parent
  3559. fp.Reflectance=reflectance
  3560. fp.Transparency=transparency
  3561. fp.CanCollide=false
  3562. fp.Locked=true
  3563. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3564. fp.Name=name
  3565. fp.Size=size
  3566. fp.Position=Character.Torso.Position
  3567. nooutline(fp)
  3568. fp.Material=material
  3569. fp:BreakJoints()
  3570. return fp
  3571. end
  3572.  
  3573. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3574. local mesh=it(Mesh)
  3575. mesh.Parent=part
  3576. if Mesh=="SpecialMesh" then
  3577. mesh.MeshType=meshtype
  3578. mesh.MeshId=meshid
  3579. end
  3580. mesh.Offset=offset
  3581. mesh.Scale=scale
  3582. return mesh
  3583. end
  3584.  
  3585. function weld(parent,part0,part1,c0,c1)
  3586. local weld=it("Weld")
  3587. weld.Parent=parent
  3588. weld.Part0=part0
  3589. weld.Part1=part1
  3590. weld.C0=c0
  3591. weld.C1=c1
  3592. return weld
  3593. end
  3594.  
  3595. Torso=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Handle",Vector3.new(2.03212667, 4.08000183, 2.04325604))
  3596. 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))
  3597. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3598. 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))
  3599. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.05393803, 4.16000175, 2.08000016))
  3600. 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))
  3601. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3602. 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))
  3603. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(2.43393803, 4.46000195, 2.11000013))
  3604. 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))
  3605. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 4.16000175, 2.08000016))
  3606. 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))
  3607. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3608. 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))
  3609. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 3.91000199, 0.200000003))
  3610. 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))
  3611. Player=game:GetService('Players').LocalPlayer
  3612. Character=Player.Character
  3613. Mouse=Player:GetMouse()
  3614. m=Instance.new('Model',Character)
  3615.  
  3616.  
  3617. local function weldBetween(a, b)
  3618. local weldd = Instance.new("ManualWeld")
  3619. weldd.Part0 = a
  3620. weldd.Part1 = b
  3621. weldd.C0 = CFrame.new()
  3622. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3623. weldd.Parent = a
  3624. return weldd
  3625. end
  3626.  
  3627. it=Instance.new
  3628.  
  3629. function nooutline(part)
  3630. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3631. end
  3632.  
  3633. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3634. local fp=it("Part")
  3635. fp.formFactor=formfactor
  3636. fp.Parent=parent
  3637. fp.Reflectance=reflectance
  3638. fp.Transparency=transparency
  3639. fp.CanCollide=false
  3640. fp.Locked=true
  3641. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3642. fp.Name=name
  3643. fp.Size=size
  3644. fp.Position=Character.Torso.Position
  3645. nooutline(fp)
  3646. fp.Material=material
  3647. fp:BreakJoints()
  3648. return fp
  3649. end
  3650.  
  3651. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3652. local mesh=it(Mesh)
  3653. mesh.Parent=part
  3654. if Mesh=="SpecialMesh" then
  3655. mesh.MeshType=meshtype
  3656. mesh.MeshId=meshid
  3657. end
  3658. mesh.Offset=offset
  3659. mesh.Scale=scale
  3660. return mesh
  3661. end
  3662.  
  3663. function weld(parent,part0,part1,c0,c1)
  3664. local weld=it("Weld")
  3665. weld.Parent=parent
  3666. weld.Part0=part0
  3667. weld.Part1=part1
  3668. weld.C0=c0
  3669. weld.C1=c1
  3670. return weld
  3671. end
  3672.  
  3673. LLeg=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3674. 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))
  3675. mesh("SpecialMesh",LLeg,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3676. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Grass,0,0,"Really black","Part",Vector3.new(1.97212684, 4.08000183, 1.9832561))
  3677. 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))
  3678. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3679. 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))
  3680. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(1.11393797, 2.15000176, 2.08000016))
  3681. 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))
  3682. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3683. 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))
  3684. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3685. 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))
  3686. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3687. 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))
  3688. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","Part",Vector3.new(0.200000003, 1.60000002, 0.200000003))
  3689. 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))
  3690.  
  3691. Player=game:GetService('Players').LocalPlayer
  3692. Character=Player.Character
  3693. Mouse=Player:GetMouse()
  3694. m=Instance.new('Model',Character)
  3695.  
  3696.  
  3697. local function weldBetween(a, b)
  3698. local weldd = Instance.new("ManualWeld")
  3699. weldd.Part0 = a
  3700. weldd.Part1 = b
  3701. weldd.C0 = CFrame.new()
  3702. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3703. weldd.Parent = a
  3704. return weldd
  3705. end
  3706.  
  3707. it=Instance.new
  3708.  
  3709. function nooutline(part)
  3710. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3711. end
  3712.  
  3713. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3714. local fp=it("Part")
  3715. fp.formFactor=formfactor
  3716. fp.Parent=parent
  3717. fp.Reflectance=reflectance
  3718. fp.Transparency=transparency
  3719. fp.CanCollide=false
  3720. fp.Locked=true
  3721. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3722. fp.Name=name
  3723. fp.Size=size
  3724. fp.Position=Character.Torso.Position
  3725. nooutline(fp)
  3726. fp.Material=material
  3727. fp:BreakJoints()
  3728. return fp
  3729. end
  3730.  
  3731. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3732. local mesh=it(Mesh)
  3733. mesh.Parent=part
  3734. if Mesh=="SpecialMesh" then
  3735. mesh.MeshType=meshtype
  3736. mesh.MeshId=meshid
  3737. end
  3738. mesh.Offset=offset
  3739. mesh.Scale=scale
  3740. return mesh
  3741. end
  3742.  
  3743. function weld(parent,part0,part1,c0,c1)
  3744. local weld=it("Weld")
  3745. weld.Parent=parent
  3746. weld.Part0=part0
  3747. weld.Part1=part1
  3748. weld.C0=c0
  3749. weld.C1=c1
  3750. return weld
  3751. end
  3752.  
  3753. Orb=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Royal purple","Handle",Vector3.new(3.20000124, 3.20000124, 3.20000124))
  3754. Orb.Shape = "Ball"
  3755. 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))
  3756. Orb.Transparency = 0
  3757. ----------------------------------------------------
  3758. Player=game:GetService('Players').LocalPlayer
  3759. Character=Player.Character
  3760. Mouse=Player:GetMouse()
  3761. m=Instance.new('Model',Character)
  3762.  
  3763.  
  3764. local function weldBetween(a, b)
  3765. local weldd = Instance.new("ManualWeld")
  3766. weldd.Part0 = a
  3767. weldd.Part1 = b
  3768. weldd.C0 = CFrame.new()
  3769. weldd.C1 = b.CFrame:inverse() * a.CFrame
  3770. weldd.Parent = a
  3771. return weldd
  3772. end
  3773.  
  3774. it=Instance.new
  3775.  
  3776. function nooutline(part)
  3777. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  3778. end
  3779.  
  3780. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  3781. local fp=it("Part")
  3782. fp.formFactor=formfactor
  3783. fp.Parent=parent
  3784. fp.Reflectance=reflectance
  3785. fp.Transparency=transparency
  3786. fp.CanCollide=false
  3787. fp.Locked=true
  3788. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  3789. fp.Name=name
  3790. fp.Size=size
  3791. fp.Position=Character.Torso.Position
  3792. nooutline(fp)
  3793. fp.Material=material
  3794. fp:BreakJoints()
  3795. return fp
  3796. end
  3797.  
  3798. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  3799. local mesh=it(Mesh)
  3800. mesh.Parent=part
  3801. if Mesh=="SpecialMesh" then
  3802. mesh.MeshType=meshtype
  3803. mesh.MeshId=meshid
  3804. end
  3805. mesh.Offset=offset
  3806. mesh.Scale=scale
  3807. return mesh
  3808. end
  3809.  
  3810. function weld(parent,part0,part1,c0,c1)
  3811. local weld=it("Weld")
  3812. weld.Parent=parent
  3813. weld.Part0=part0
  3814. weld.Part1=part1
  3815. weld.C0=c0
  3816. weld.C1=c1
  3817. return weld
  3818. end
  3819.  
  3820. WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Royal purple","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3821. 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))
  3822. mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3823. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3824. 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))
  3825. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3826. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3827. 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))
  3828. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3829. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 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.0128250122, 1.69621086, 2.74610329, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3831. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3832. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 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.0128326416, 3.14628506, 2.63505173, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.757224739, -0.653154373, 2.98023224e-008, -0.653154373, 0.757224917))
  3834. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 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, 1.01108551, 2.51173878, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.0735907629, -0.997288585, 0, -0.997288525, 0.0735907704))
  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.0128250122, 0.396331787, 2.11554885, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.187033802, -0.982353449, -7.4505806e-009, -0.982353449, -0.187033832))
  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.0128250122, -0.0868225098, 1.57054901, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, 0.434913546, -0.900472343, 0, -0.900472283, -0.434913576))
  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.0128173828, 2.42856979, 2.78783226, -1, 1.86264515e-008, 5.96046448e-008, 2.98023224e-008, -0.562374592, -0.82688272, 0, -0.826882541, 0.562374532))
  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.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))
  3849. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3850. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 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.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))
  3852. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3853. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 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.0140304565, -3.38129997, -2.7243309, -1, 1.86264515e-008, 5.96046448e-008, 0, 0.329198927, 0.944260657, -1.49011612e-008, 0.944260657, -0.329198956))
  3855. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3856. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 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.0140457153, 1.33783531, 2.71401596, -1, 1.86264515e-008, 5.96046448e-008, 0, -0.329198927, -0.944260657, 1.49011612e-008, -0.944260657, 0.329198956))
  3858. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3859. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Royal purple","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  3860. 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))
  3861. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  3862. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3863. 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))
  3864. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3865. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3866. 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))
  3867. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3868. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3869. 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))
  3870. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3871. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3872. 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))
  3873. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3874. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 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.80095482, 3.22347641, 0.17275238, -0.49999845, 0.565649092, -0.655776381, 0.433012724, -0.492487878, -0.754954159, -0.750001132, -0.661435425, 0.00130999088))
  3876. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3877. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 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.80094624, -4.81201553, -0.349707603, 0.49999845, -0.565649092, 0.655776381, -0.750000596, 0.0957893208, 0.654464483, -0.433013558, -0.819063783, -0.376342565))
  3879. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3880. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 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.80094624, 2.76852798, 0.339404106, 0.49999845, -0.565649092, 0.655776381, 0.750000596, -0.0957893208, -0.654464483, 0.433013558, 0.819063783, 0.376342565))
  3882. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 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.80095482, 3.18227959, -0.357192993, -0.49999845, 0.565649092, -0.655776381, -2.98023224e-007, -0.757224619, -0.653154492, -0.866026402, -0.326576054, 0.378611445))
  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.80094719, 3.23778915, -0.0931434631, -0.49999845, 0.565649092, -0.655776381, 0.224142939, -0.646899283, -0.728890419, -0.836517453, -0.511431754, 0.196662545))
  3888. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3889. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3890. 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))
  3891. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3892. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 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.80095387, 3.00566101, 0.650568962, -0.49999845, 0.565649092, -0.655776381, 0.749999642, -0.0957909003, -0.654465079, -0.433014959, -0.819063544, -0.376341343))
  3894. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 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.80094147, 2.81278229, 0.830840111, -0.49999845, 0.565649092, -0.655776381, 0.836516857, 0.119463086, -0.534760058, -0.224145442, -0.815947115, -0.532906353))
  3897. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3898. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 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.80094433, 2.57622147, 0.953166008, -0.49999845, 0.565649092, -0.655776381, 0.866026282, 0.326575905, -0.378611505, -4.32133675e-007, -0.757224679, -0.653154492))
  3900. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3901. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3902. 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))
  3903. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3904. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3905. 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))
  3906. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3907. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3908. 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))
  3909. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3910. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3911. 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))
  3912. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3913. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3914. 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))
  3915. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3916. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3917. 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))
  3918. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3919. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3920. 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))
  3921. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3922. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3923. 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))
  3924. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3925. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3926. 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))
  3927. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3928. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3929. 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))
  3930. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3931. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3932. 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))
  3933. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3934. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3935. 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))
  3936. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3937. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3938. 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))
  3939. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3940. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3941. 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))
  3942. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3943. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3944. 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))
  3945. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3946. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3947. 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))
  3948. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3949. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3950. 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))
  3951. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3952. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3953. 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))
  3954. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3955. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3956. 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))
  3957. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3958. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3959. 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))
  3960. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3961. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3962. 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))
  3963. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3964. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3965. 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))
  3966. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3967. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3968. 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))
  3969. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3970. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  3971. 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))
  3972. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3973. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  3974. 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))
  3975. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  3976. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  3977. 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))
  3978. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  3979. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  3980. 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))
  3981. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  3982. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Royal purple","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  3983. 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))
  3984. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3985. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  3986. 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))
  3987. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  3988. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  3989. 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))
  3990. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3991. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  3992. 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))
  3993. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3994. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  3995. 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))
  3996. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  3997. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  3998. 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))
  3999. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4000. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4001. 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))
  4002. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4003. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4004. 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))
  4005. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4006. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4007. 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))
  4008. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4009. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4010. 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))
  4011. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4012. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4013. 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))
  4014. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4015. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4016. 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))
  4017. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4018. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4019. 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))
  4020. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4021. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  4022. 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))
  4023. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4024. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  4025. 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))
  4026. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4027. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4028. 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))
  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.583352029, 0.373031557))
  4031. 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))
  4032. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4033. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4034. 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))
  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, 0.539886534, 0.706888735))
  4037. 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))
  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, 4.23216105, 1.09807956))
  4040. 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))
  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.885322511, 0.706888735))
  4043. 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))
  4044. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4045. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4046. 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))
  4047. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 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(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))
  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.584495842, 0.706888735))
  4052. 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))
  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.885322511, 0.706888735))
  4055. 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))
  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, 1.83584321, 0.702313483))
  4058. 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))
  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.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4061. 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))
  4062. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4063. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4064. 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))
  4065. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4066. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4067. 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))
  4068. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4069. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Royal purple","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  4070. 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))
  4071. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4072. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4073. 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))
  4074. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4075. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  4076. 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))
  4077. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4078. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  4079. 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))
  4080. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4081. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  4082. 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))
  4083. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4084. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4085. 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))
  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.539886534, 0.706888735))
  4088. 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))
  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, 1.83584321, 0.702313483))
  4091. 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))
  4092. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4093. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4094. 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))
  4095. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4096. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4097. 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))
  4098. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4099. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4100. 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))
  4101. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4102. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4103. 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))
  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.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4106. 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))
  4107. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4108. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4109. 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))
  4110. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4111. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4112. 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))
  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.613091588, 3.18786216))
  4115. 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))
  4116. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4117. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  4118. 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))
  4119. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  4120. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4121. 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))
  4122. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4123. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4124. 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))
  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.584495842, 0.706888735))
  4127. 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))
  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, 4.23216105, 1.09807956))
  4130. 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))
  4131. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4132. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4133. 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))
  4134. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4135. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4136. 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))
  4137. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4138. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4139. 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))
  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.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4142. 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))
  4143. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4144. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  4145. 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))
  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.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  4148. 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))
  4149. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4150. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4151. 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))
  4152. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4153. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  4154. 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))
  4155. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4156. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4157. 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))
  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.584495842, 0.706888735))
  4160. 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))
  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.583352029, 0.373031557))
  4163. 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))
  4164. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4165. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4166. 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))
  4167. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4168. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4169. 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))
  4170. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4171. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4172. 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))
  4173. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4174. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4175. 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))
  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.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4178. 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))
  4179. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4180. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4181. 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))
  4182. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4183. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4184. 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))
  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, 0.539886534, 0.706888735))
  4187. 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))
  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.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4190. 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))
  4191. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4192. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4193. 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))
  4194. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4195. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4196. 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))
  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.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4199. 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))
  4200. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4201. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4202. 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))
  4203. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4204. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4205. 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))
  4206. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4207. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4208. 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))
  4209. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4210. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4211. 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))
  4212. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4213. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4214. 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))
  4215. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4216. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4217. 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))
  4218. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4219. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4220. 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))
  4221. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4222. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4223. 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))
  4224. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4225. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4226. 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))
  4227. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4228. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4229. 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))
  4230. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4231. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4232. 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))
  4233. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4234. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4235. 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))
  4236. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4237. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  4238. 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))
  4239. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  4240. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  4241. 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))
  4242. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4243. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4244. 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))
  4245. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4246. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4247. 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))
  4248. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4249. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  4250. 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))
  4251. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4252. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  4253. 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))
  4254. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4255. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  4256. 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))
  4257. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4258. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  4259. 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))
  4260. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4261. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  4262. 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))
  4263. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  4264. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  4265. 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))
  4266. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  4267. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  4268. 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))
  4269. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4270. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  4271. 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))
  4272. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4273. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  4274. 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))
  4275. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4276. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  4277. 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))
  4278. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  4279. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"Really black","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  4280. 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))
  4281. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  4282. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4283. 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))
  4284. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4285. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4286. 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))
  4287. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4288. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4289. 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))
  4290. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4291. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4292. 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))
  4293. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4294. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4295. 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))
  4296. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4297. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  4298. 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))
  4299. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  4300. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Black","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  4301. 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))
  4302. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  4303. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  4304. 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))
  4305. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  4306.  
  4307.  
  4308.  
  4309.  
  4310. Player=game:GetService('Players').LocalPlayer
  4311. Character=Player.Character
  4312. Mouse=Player:GetMouse()
  4313. m=Instance.new('Model',Character)
  4314.  
  4315.  
  4316. local function weldBetween(a, b)
  4317. local weldd = Instance.new("ManualWeld")
  4318. weldd.Part0 = a
  4319. weldd.Part1 = b
  4320. weldd.C0 = CFrame.new()
  4321. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4322. weldd.Parent = a
  4323. return weldd
  4324. end
  4325.  
  4326. it=Instance.new
  4327.  
  4328. function nooutline(part)
  4329. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4330. end
  4331.  
  4332. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4333. local fp=it("Part")
  4334. fp.formFactor=formfactor
  4335. fp.Parent=parent
  4336. fp.Reflectance=reflectance
  4337. fp.Transparency=transparency
  4338. fp.CanCollide=false
  4339. fp.Locked=true
  4340. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4341. fp.Name=name
  4342. fp.Size=size
  4343. fp.Position=Character.Torso.Position
  4344. nooutline(fp)
  4345. fp.Material=material
  4346. fp:BreakJoints()
  4347. return fp
  4348. end
  4349.  
  4350. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4351. local mesh=it(Mesh)
  4352. mesh.Parent=part
  4353. if Mesh=="SpecialMesh" then
  4354. mesh.MeshType=meshtype
  4355. mesh.MeshId=meshid
  4356. end
  4357. mesh.Offset=offset
  4358. mesh.Scale=scale
  4359. return mesh
  4360. end
  4361.  
  4362. function weld(parent,part0,part1,c0,c1)
  4363. local weld=it("Weld")
  4364. weld.Parent=parent
  4365. weld.Part0=part0
  4366. weld.Part1=part1
  4367. weld.C0=c0
  4368. weld.C1=c1
  4369. return weld
  4370. end
  4371.  
  4372. BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
  4373. 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))
  4374. mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4375. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
  4376. 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))
  4377. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4378. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4379. 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))
  4380. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4381. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4382. 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))
  4383. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
  4384. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  4385. 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))
  4386. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4387. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
  4388. 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))
  4389. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  4390. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  4391. 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))
  4392. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  4393. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4394. 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))
  4395. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
  4396. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4397. 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))
  4398. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4399. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4400. 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))
  4401. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
  4402. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4403. 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))
  4404. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
  4405. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
  4406. 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))
  4407. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
  4408. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4409. 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))
  4410. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
  4411. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4412. 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))
  4413. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4414. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4415. 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))
  4416. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4417. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4418. 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))
  4419. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  4420. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
  4421. 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))
  4422. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
  4423. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
  4424. 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))
  4425. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
  4426. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
  4427. 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))
  4428. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
  4429. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Royal purple","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
  4430. 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))
  4431. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
  4432. Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
  4433. 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))
  4434. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
  4435. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4436. 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))
  4437. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
  4438. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
  4439. 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))
  4440. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4441. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4442. 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))
  4443. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4444. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4445. 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))
  4446. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4447. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
  4448. 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))
  4449. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4450. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
  4451. 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))
  4452. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
  4453. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4454. 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))
  4455. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4456. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
  4457. 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))
  4458. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  4459. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
  4460. 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))
  4461. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4462. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4463. 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))
  4464. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4465. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4466. 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))
  4467. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4468. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4469. 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))
  4470. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
  4471. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4472. 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))
  4473. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
  4474. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.23496354, 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.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))
  4476. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
  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.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))
  4479. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
  4480. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4481. 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))
  4482. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4483. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  4484. 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))
  4485. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  4486. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
  4487. 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))
  4488. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
  4489. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
  4490. 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))
  4491. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4492. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
  4493. 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))
  4494. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
  4495. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4496. 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))
  4497. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4498. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4499. 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))
  4500. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4501. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4502. 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))
  4503. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4504. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4505. 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))
  4506. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4507. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4508. 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))
  4509. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4510. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4511. 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))
  4512. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
  4513. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4514. 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))
  4515. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  4516. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4517. 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))
  4518. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4519. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4520. 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))
  4521. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4522. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4523. 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))
  4524. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4525. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4526. 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))
  4527. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4528. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  4529. 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))
  4530. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4531. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  4532. 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))
  4533. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
  4534. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  4535. 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))
  4536. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  4537. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  4538. 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))
  4539. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  4540. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
  4541. 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))
  4542. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
  4543. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
  4544. 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))
  4545. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
  4546. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  4547. 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))
  4548. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  4549. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4550. 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))
  4551. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  4552. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4553. 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))
  4554. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
  4555. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
  4556. 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))
  4557. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
  4558. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
  4559. 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))
  4560. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
  4561. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 1.76913583, 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.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))
  4563. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
  4564. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4565. 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))
  4566. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4567. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4568. 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))
  4569. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4570. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.36180529, 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.197305202, 1.52207947, -1, 3.86452302e-006, -5.11141843e-006, -5.13588748e-006, -0.00727250986, 0.99998033, 3.81655991e-006, 0.999976933, 0.00727252662))
  4572. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4573. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","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(-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))
  4575. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4576. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4577. 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))
  4578. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4579. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4580. 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))
  4581. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4582. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4583. 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))
  4584. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4585. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  4586. 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))
  4587. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  4588. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  4589. 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))
  4590. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  4591. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4592. 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))
  4593. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
  4594. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4595. 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))
  4596. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4597. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4598. 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))
  4599. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4600. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4601. 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))
  4602. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4603. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4604. 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))
  4605. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4606. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4607. 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))
  4608. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  4609. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4610. 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))
  4611. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4612. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4613. 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))
  4614. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4615. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4616. 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))
  4617. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4618. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4619. 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))
  4620. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
  4621. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  4622. 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))
  4623. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  4624. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4625. 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))
  4626. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4627. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4628. 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))
  4629. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4630. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  4631. 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))
  4632. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4633. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4634. 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))
  4635. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  4636. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4637. 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))
  4638. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4639. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  4640. 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))
  4641. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  4642. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  4643. 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))
  4644. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  4645. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  4646. 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))
  4647. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
  4648. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
  4649. 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))
  4650. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
  4651. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Royal purple","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  4652. 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))
  4653. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  4654.  
  4655. Player=game:GetService('Players').LocalPlayer
  4656. Character=Player.Character
  4657. Mouse=Player:GetMouse()
  4658. m=Instance.new('Model',Character)
  4659.  
  4660.  
  4661. local function weldBetween(a, b)
  4662. local weldd = Instance.new("ManualWeld")
  4663. weldd.Part0 = a
  4664. weldd.Part1 = b
  4665. weldd.C0 = CFrame.new()
  4666. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4667. weldd.Parent = a
  4668. return weldd
  4669. end
  4670.  
  4671. it=Instance.new
  4672.  
  4673. function nooutline(part)
  4674. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4675. end
  4676.  
  4677. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4678. local fp=it("Part")
  4679. fp.formFactor=formfactor
  4680. fp.Parent=parent
  4681. fp.Reflectance=reflectance
  4682. fp.Transparency=transparency
  4683. fp.CanCollide=false
  4684. fp.Locked=true
  4685. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4686. fp.Name=name
  4687. fp.Size=size
  4688. fp.Position=Character.Torso.Position
  4689. nooutline(fp)
  4690. fp.Material=material
  4691. fp:BreakJoints()
  4692. return fp
  4693. end
  4694.  
  4695. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4696. local mesh=it(Mesh)
  4697. mesh.Parent=part
  4698. if Mesh=="SpecialMesh" then
  4699. mesh.MeshType=meshtype
  4700. mesh.MeshId=meshid
  4701. end
  4702. mesh.Offset=offset
  4703. mesh.Scale=scale
  4704. return mesh
  4705. end
  4706.  
  4707. function weld(parent,part0,part1,c0,c1)
  4708. local weld=it("Weld")
  4709. weld.Parent=parent
  4710. weld.Part0=part0
  4711. weld.Part1=part1
  4712. weld.C0=c0
  4713. weld.C1=c1
  4714. return weld
  4715. end
  4716.  
  4717. Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"Royal purple","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
  4718. Face.Shape = "Ball"
  4719. 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))
  4720.  
  4721.  
  4722. Player=game:GetService('Players').LocalPlayer
  4723. Character=Player.Character
  4724. Mouse=Player:GetMouse()
  4725. m=Instance.new('Model',Character)
  4726.  
  4727.  
  4728. local function weldBetween(a, b)
  4729. local weldd = Instance.new("ManualWeld")
  4730. weldd.Part0 = a
  4731. weldd.Part1 = b
  4732. weldd.C0 = CFrame.new()
  4733. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4734. weldd.Parent = a
  4735. return weldd
  4736. end
  4737.  
  4738. it=Instance.new
  4739.  
  4740. function nooutline(part)
  4741. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4742. end
  4743.  
  4744. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4745. local fp=it("Part")
  4746. fp.formFactor=formfactor
  4747. fp.Parent=parent
  4748. fp.Reflectance=reflectance
  4749. fp.Transparency=transparency
  4750. fp.CanCollide=false
  4751. fp.Locked=true
  4752. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4753. fp.Name=name
  4754. fp.Size=size
  4755. fp.Position=Character.Torso.Position
  4756. nooutline(fp)
  4757. fp.Material=material
  4758. fp:BreakJoints()
  4759. return fp
  4760. end
  4761.  
  4762. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4763. local mesh=it(Mesh)
  4764. mesh.Parent=part
  4765. if Mesh=="SpecialMesh" then
  4766. mesh.MeshType=meshtype
  4767. mesh.MeshId=meshid
  4768. end
  4769. mesh.Offset=offset
  4770. mesh.Scale=scale
  4771. return mesh
  4772. end
  4773.  
  4774. function weld(parent,part0,part1,c0,c1)
  4775. local weld=it("Weld")
  4776. weld.Parent=parent
  4777. weld.Part0=part0
  4778. weld.Part1=part1
  4779. weld.C0=c0
  4780. weld.C1=c1
  4781. return weld
  4782. end
  4783.  
  4784. Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"Really black","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
  4785. 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))
  4786.  
  4787. local size = 40,40,40
  4788.  
  4789.  
  4790. ----------------------------------------------------
  4791. Player=game:GetService('Players').LocalPlayer
  4792. Character=Player.Character
  4793. Mouse=Player:GetMouse()
  4794. m=Instance.new('Model',Character)
  4795.  
  4796.  
  4797. local function weldBetween(a, b)
  4798. local weldd = Instance.new("ManualWeld")
  4799. weldd.Part0 = a
  4800. weldd.Part1 = b
  4801. weldd.C0 = CFrame.new()
  4802. weldd.C1 = b.CFrame:inverse() * a.CFrame
  4803. weldd.Parent = a
  4804. return weldd
  4805. end
  4806.  
  4807. it=Instance.new
  4808.  
  4809. function nooutline(part)
  4810. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  4811. end
  4812.  
  4813. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  4814. local fp=it("Part")
  4815. fp.formFactor=formfactor
  4816. fp.Parent=parent
  4817. fp.Reflectance=reflectance
  4818. fp.Transparency=transparency
  4819. fp.CanCollide=false
  4820. fp.Locked=true
  4821. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  4822. fp.Name=name
  4823. fp.Size=size
  4824. fp.Position=Character.Torso.Position
  4825. nooutline(fp)
  4826. fp.Material=material
  4827. fp:BreakJoints()
  4828. return fp
  4829. end
  4830.  
  4831. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  4832. local mesh=it(Mesh)
  4833. mesh.Parent=part
  4834. if Mesh=="SpecialMesh" then
  4835. mesh.MeshType=meshtype
  4836. mesh.MeshId=meshid
  4837. end
  4838. mesh.Offset=offset
  4839. mesh.Scale=scale
  4840. return mesh
  4841. end
  4842.  
  4843. function weld(parent,part0,part1,c0,c1)
  4844. local weld=it("Weld")
  4845. weld.Parent=parent
  4846. weld.Part0=part0
  4847. weld.Part1=part1
  4848. weld.C0=c0
  4849. weld.C1=c1
  4850. return weld
  4851. end
  4852.  
  4853. F3=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0.5,"Really black","Handle",Vector3.new(30.6000023, 30.6000023, 30.6000023))
  4854. 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))
  4855. F3.Name = "F3"
  4856. F3.Shape = "Ball"
  4857. F3.CanCollide = false
  4858. F3.Size = Vector3.new(size)
  4859. F3.Transparency = 0.7
  4860. F3.Material = "Neon"
  4861. F3.Anchored = true
  4862. F3.BrickColor = BrickColor.new(0,0,0)
  4863. F3.Locked = true
  4864. F3.Archivable = false
  4865.  
  4866.  
  4867.  
  4868. local p = F3
  4869. local me = game.Players.LocalPlayer.Character
  4870. game.Workspace.wickedbountyhunter56.Humanoid.JumpPower = 100
  4871.  
  4872.  
  4873. p.Shape = "Ball"
  4874.  
  4875. game:GetService('RunService').Stepped:connect(function()
  4876. p.CFrame = me.Torso.CFrame * CFrame.new(0,0,0) * CFrame.Angles(0,0,0)
  4877. end)
  4878.  
  4879.  
  4880. wait(0.1)
  4881.  
  4882. F3.CanCollide = false
  4883. F3.CanCollide = false
  4884.  
  4885.  
  4886. F3.Transparency = 0.9
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement