Advertisement
StrikerAndDai

Untitled

Jul 16th, 2017
364
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 433.03 KB | None | 0 0
  1.  
  2. p = game.Players.LocalPlayer
  3. char = p.Character
  4. torso = char.Torso
  5. neck = char.Torso.Neck
  6. hum = char.Humanoid
  7.  
  8. CV="Pastel blue"
  9.  
  10. local txt = Instance.new("BillboardGui", char)
  11. txt.Adornee = char .Head
  12. txt.Name = "_status"
  13. txt.Size = UDim2.new(2, 0, 1.2, 0)
  14. txt.StudsOffset = Vector3.new(-9, 8, 0)
  15. local text = Instance.new("TextLabel", txt)
  16. text.Size = UDim2.new(10, 0, 7, 0)
  17. text.FontSize = "Size24"
  18. text.TextScaled = true
  19. text.TextTransparency = 0
  20. text.BackgroundTransparency = 1
  21. text.TextTransparency = 0
  22. text.TextStrokeTransparency = 0
  23. text.Font = "SciFi"
  24. text.TextStrokeColor3 = Color3.new(0,0,0)
  25.  
  26. v=Instance.new("Part")
  27. v.Name = "ColorBrick"
  28. v.Parent=p.Character
  29. v.FormFactor="Symmetric"
  30. v.Anchored=true
  31. v.CanCollide=false
  32. v.BottomSurface="Smooth"
  33. v.TopSurface="Smooth"
  34. v.Size=Vector3.new(10,5,3)
  35. v.Transparency=1
  36. v.CFrame=char.Torso.CFrame
  37. v.BrickColor=BrickColor.new(CV)
  38. v.Transparency=1
  39. text.TextColor3 = Color3.new(1,1,1)
  40. v.Shape="Block"
  41. text.Text = "Zelanor"
  42.  
  43. --[[User: TheDarkRevenant
  44. Script: Absalom (Armored).lua
  45. Pass: cUpnjTnT]]
  46.  
  47. local p = game.Players.LocalPlayer
  48. local char = p.Character
  49. local mouse = p:GetMouse()
  50. local larm = char["Left Arm"]
  51. local rarm = char["Right Arm"]
  52. local lleg = char["Left Leg"]
  53. local rleg = char["Right Leg"]
  54. local hed = char.Head
  55. local torso = char.Torso
  56. local hum = char.Humanoid
  57. local cam = game.Workspace.CurrentCamera
  58. local root = char.HumanoidRootPart
  59. local deb = false
  60. local shot = 0
  61. local l = game:GetService("Lighting")
  62. local rs = game:GetService("RunService").RenderStepped
  63. local debris=game:service"Debris"
  64. local stanceToggle = "Normal"
  65. math.randomseed(os.time())
  66. hum.WalkSpeed = 7
  67. char.Health:Destroy()
  68. hum.MaxHealth = 50000
  69. wait(0.1)
  70. hum.Health = 50000
  71. ----------------------------------------------------
  72. ypcall(function()
  73. char.Shirt:Destroy()
  74. char.Pants:Destroy()
  75. shirt = Instance.new("Shirt", char)
  76. shirt.Name = "Shirt"
  77. pants = Instance.new("Pants", char)
  78. pants.Name = "Pants"
  79. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=236410507"
  80. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=236412261"
  81. end)
  82. ----------------------------------------------------
  83. Debounces = {
  84. on = false;
  85. ks = false;
  86. CanAttack = true;
  87. CanJoke = true;
  88. NoIdl = false;
  89. Slashing = false;
  90. Slashed = false;
  91. Grabbing = false;
  92. Grabbed = false;
  93. }
  94. local Touche = {char.Name, }
  95. ----------------------------------------------------
  96. function lerp(a, b, t) -- Linear interpolation
  97. return a + (b - a)*t
  98. end
  99.  
  100. function slerp(a, b, t) --Spherical interpolation
  101. dot = a:Dot(b)
  102. if dot > 0.99999 or dot < -0.99999 then
  103. return t <= 0.5 and a or b
  104. else
  105. r = math.acos(dot)
  106. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  107. end
  108. end
  109.  
  110. function matrixInterpolate(a, b, t)
  111. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  112. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  113. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  114. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  115. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  116. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  117. local t = v1:Dot(v2)
  118. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  119. return CFrame.new()
  120. end
  121. return CFrame.new(
  122. v0.x, v0.y, v0.z,
  123. v1.x, v1.y, v1.z,
  124. v2.x, v2.y, v2.z,
  125. v3.x, v3.y, v3.z)
  126. end
  127. ----------------------------------------------------
  128. function genWeld(a,b)
  129. local w = Instance.new("Weld",a)
  130. w.Part0 = a
  131. w.Part1 = b
  132. return w
  133. end
  134. function weld(a, b)
  135. local weld = Instance.new("Weld")
  136. weld.Name = "W"
  137. weld.Part0 = a
  138. weld.Part1 = b
  139. weld.C0 = a.CFrame:inverse() * b.CFrame
  140. weld.Parent = a
  141. return weld;
  142. end
  143. ----------------------------------------------------
  144. function Lerp(c1,c2,al)
  145. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  146. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  147. for i,v in pairs(com1) do
  148. com1[i] = v+(com2[i]-v)*al
  149. end
  150. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  151. end
  152. ----------------------------------------------------
  153. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  154. local wld = Instance.new("Weld", wp1)
  155. wld.Part0 = wp0
  156. wld.Part1 = wp1
  157. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  158. end
  159. ----------------------------------------------------
  160. function Tween(a,b,c)
  161. return a+(b-a)*c
  162. end
  163. ----------------------------------------------------
  164. function nwPrt(prnt,siz,cf,col)
  165. local prt=Instance.new("Part")
  166. prt.Parent=prnt
  167. prt.FormFactor=3
  168. prt.Name="Part"
  169. prt.Size=siz
  170. prt.CanCollide=false
  171. prt.Anchored=true
  172. prt.Locked=true
  173. prt.TopSurface=10
  174. prt.BottomSurface=10
  175. prt.FrontSurface=10
  176. prt.BackSurface=10
  177. prt.LeftSurface=10
  178. prt.RightSurface=10
  179. prt:BreakJoints()
  180. prt.CFrame=cf or CFrame.new(30,10,30)
  181. prt.Material="Neon"
  182. prt.BrickColor=BrickColor.new(col)
  183. m=Instance.new("SpecialMesh",prt)
  184. m.MeshType=6
  185. return prt
  186. end
  187. ----------------------------------------------------
  188. function nwSnd(prnt,pch,vol,id)
  189. local s=Instance.new("Sound",prnt)
  190. s.Pitch=1
  191. s.Volume=10
  192. s.SoundId="rbxassetid://401075550"..id
  193. s.PlayOnRemove=true
  194. return s
  195. end
  196. ----------------------------------------------------
  197. function newRay(start,face,range,wat)
  198. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  199. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  200. return rey,hit,pos
  201. end
  202. ----------------------------------------------------
  203. for i,v in pairs(char:children()) do
  204. if v:IsA("Hat") then
  205. v:Destroy()
  206. end
  207. end
  208. for i,v in pairs(hed:children()) do
  209. if v:IsA("Sound") then
  210. v:Destroy()
  211. end
  212. end
  213. ----------------------------------------------------
  214. function HasntTouched(plrname)
  215. local ret = true
  216. for _, v in pairs(Touche) do
  217. if v == plrname then
  218. ret = false
  219. end
  220. end
  221. return ret
  222. end
  223. ----------------------------------------------------
  224. larm.Size = larm.Size * 2
  225. rarm.Size = rarm.Size * 2
  226. lleg.Size = lleg.Size * 2
  227. rleg.Size = rleg.Size * 2
  228. torso.Size = torso.Size * 2
  229. hed.Size = hed.Size * 2
  230. root.Size = root.Size * 2
  231. ----------------------------------------------------
  232. newWeld(torso, larm, -1.5, 0.5, 0)
  233. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  234. newWeld(torso, rarm, 1.5, 0.5, 0)
  235. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  236. newWeld(torso, hed, 0, 1.5, 0)
  237. newWeld(torso, lleg, -0.5, -1, 0)
  238. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  239. newWeld(torso, rleg, 0.5, -1, 0)
  240. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  241. newWeld(root, torso, 0, -1, 0)
  242. torso.Weld.C1 = CFrame.new(0, -1, 0)
  243. ----------------------------------------------------
  244. hed.face.Texture = "rbxassetid://340355951"
  245. z=Instance.new('Decal',hed)
  246. z.Face = 'Front'
  247. z.Texture='rbxassetid://340355951'
  248. z1=Instance.new('Decal',hed)
  249. z1.Face = 'Right'
  250. hed.BrickColor = BrickColor.new("Institutional white")
  251. lite = Instance.new("PointLight", torso)
  252. lite.Brightness = 1
  253. lite.Range = 600
  254. lite.Color = Color3.new(1, 1, 1)
  255. --[[local hed2 = hed:Clone()
  256. hed2.CanCollide = false
  257. hed2.Parent = char
  258. hed2:ClearAllChildren()
  259. hed2.Transparency = 1
  260. hed2.Name = "gottem"
  261. local w = Instance.new("Weld",hed2)
  262. w.Part0 = hed
  263. w.Part1 = hed2
  264. w.C0 = CFrame.new(0,0,-0.175)
  265. z=Instance.new("SurfaceGui",hed2)
  266. z.Enabled = true
  267. z.Face = "Front"
  268. z.Adornee = hed2
  269. z.CanvasSize = Vector2.new(100,100)
  270. local face = Instance.new("ImageLabel",z)
  271. face.Size = UDim2.new(1,-30,1,0)
  272. face.Position = UDim2.new(0,15,0,0)
  273. face.BackgroundTransparency = 1
  274. face.Image='rbxassetid://340355951']]--
  275. ----------------------------------------------------
  276. z = Instance.new("Sound", char)
  277. z.SoundId = "rbxassetid://"--242463565
  278. z.Looped = true
  279. z.Pitch = 1.02
  280. z.Volume = 1
  281. wait(.01)
  282. z:Play()
  283. ----------------------------------------------------
  284. local m = Instance.new("Model")
  285. m.Name = "Absolution"
  286. p1 = Instance.new("Part", m)
  287. p1.BrickColor = BrickColor.new("Institutional white")
  288. p1.Material = "Neon"
  289. p1.FormFactor = Enum.FormFactor.Custom
  290. p1.Size = Vector3.new(1, 0.600000024, 1.5)
  291. 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)
  292. p1.CanCollide = false
  293. p1.Locked = true
  294. p1.Elasticity = 0
  295. p1.BottomSurface = Enum.SurfaceType.Smooth
  296. p1.TopSurface = Enum.SurfaceType.Smooth
  297. b1 = Instance.new("SpecialMesh", p1)
  298. b1.MeshType = Enum.MeshType.Wedge
  299. b1.Name = "Mesh"
  300. b1.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  301. p2 = Instance.new("Part", m)
  302. p2.BrickColor = BrickColor.new("Really black")
  303. p2.FormFactor = Enum.FormFactor.Custom
  304. p2.Size = Vector3.new(1, 2.9000001, 1)
  305. 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)
  306. p2.CanCollide = false
  307. p2.Locked = true
  308. p2.Elasticity = 0
  309. p2.BottomSurface = Enum.SurfaceType.Smooth
  310. p2.TopSurface = Enum.SurfaceType.Smooth
  311. b2 = Instance.new("BlockMesh", p2)
  312. b2.Name = "Mesh"
  313. b2.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  314. p3 = Instance.new("Part", m)
  315. p3.BrickColor = BrickColor.new("Institutional white")
  316. p3.Material = "Neon"
  317. p3.FormFactor = Enum.FormFactor.Custom
  318. p3.Size = Vector3.new(1, 1.20000005, 2.0999999)
  319. 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)
  320. p3.CanCollide = false
  321. p3.Locked = true
  322. p3.Elasticity = 0
  323. p3.BottomSurface = Enum.SurfaceType.Smooth
  324. p3.TopSurface = Enum.SurfaceType.Smooth
  325. b3 = Instance.new("SpecialMesh", p3)
  326. b3.MeshType = Enum.MeshType.Wedge
  327. b3.Name = "Mesh"
  328. b3.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  329. p4 = Instance.new("Part", m)
  330. p4.BrickColor = BrickColor.new("Institutional white")
  331. p4.Material = "Neon"
  332. p4.FormFactor = Enum.FormFactor.Custom
  333. p4.Size = Vector3.new(1, 1.43999994, 2.05000019)
  334. 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)
  335. p4.CanCollide = false
  336. p4.Locked = true
  337. p4.Elasticity = 0
  338. p4.BottomSurface = Enum.SurfaceType.Smooth
  339. p4.TopSurface = Enum.SurfaceType.Smooth
  340. b4 = Instance.new("SpecialMesh", p4)
  341. b4.MeshType = Enum.MeshType.Wedge
  342. b4.Name = "Mesh"
  343. b4.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  344. p5 = Instance.new("Part", m)
  345. p5.BrickColor = BrickColor.new("Institutional white")
  346. p5.Material = "Neon"
  347. p5.FormFactor = Enum.FormFactor.Custom
  348. p5.Size = Vector3.new(1, 1.20000005, 3.20000005)
  349. 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)
  350. p5.CanCollide = false
  351. p5.Locked = true
  352. p5.Elasticity = 0
  353. p5.BottomSurface = Enum.SurfaceType.Smooth
  354. p5.TopSurface = Enum.SurfaceType.Smooth
  355. b5 = Instance.new("SpecialMesh", p5)
  356. b5.MeshType = Enum.MeshType.Wedge
  357. b5.Name = "Mesh"
  358. b5.Scale = Vector3.new(0.400000006, 0.600000024, 0.699999928)
  359. p6 = Instance.new("Part", m)
  360. p6.Name = "Handle"
  361. p6.BrickColor = BrickColor.new("Really black")
  362. p6.FormFactor = Enum.FormFactor.Custom
  363. p6.Size = Vector3.new(1.5999999, 13.6000004, 1)
  364. 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)
  365. p6.CanCollide = false
  366. p6.Locked = true
  367. p6.Elasticity = 0
  368. p6.BottomSurface = Enum.SurfaceType.Smooth
  369. p6.TopSurface = Enum.SurfaceType.Smooth
  370. b6 = Instance.new("BlockMesh", p6)
  371. b6.Name = "Mesh"
  372. b6.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  373. p7 = Instance.new("Part", m)
  374. p7.BrickColor = BrickColor.new("Institutional white")
  375. p7.Material = "Neon"
  376. p7.FormFactor = Enum.FormFactor.Custom
  377. p7.Size = Vector3.new(1, 1.00999999, 1.05000019)
  378. 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)
  379. p7.CanCollide = false
  380. p7.Locked = true
  381. p7.Elasticity = 0
  382. p7.BottomSurface = Enum.SurfaceType.Smooth
  383. p7.TopSurface = Enum.SurfaceType.Smooth
  384. b7 = Instance.new("SpecialMesh", p7)
  385. b7.MeshType = Enum.MeshType.Wedge
  386. b7.Name = "Mesh"
  387. b7.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  388. p8 = Instance.new("Part", m)
  389. p8.BrickColor = BrickColor.new("Institutional white")
  390. p8.Material = "Neon"
  391. p8.FormFactor = Enum.FormFactor.Custom
  392. p8.Size = Vector3.new(1, 1.00999999, 1.05000019)
  393. 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)
  394. p8.CanCollide = false
  395. p8.Locked = true
  396. p8.Elasticity = 0
  397. p8.BottomSurface = Enum.SurfaceType.Smooth
  398. p8.TopSurface = Enum.SurfaceType.Smooth
  399. b8 = Instance.new("SpecialMesh", p8)
  400. b8.MeshType = Enum.MeshType.Wedge
  401. b8.Name = "Mesh"
  402. b8.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  403. p9 = Instance.new("Part", m)
  404. p9.BrickColor = BrickColor.new("Really black")
  405. p9.FormFactor = Enum.FormFactor.Custom
  406. p9.Size = Vector3.new(1, 1.07999957, 1)
  407. 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)
  408. p9.CanCollide = false
  409. p9.Locked = true
  410. p9.Elasticity = 0
  411. p9.BottomSurface = Enum.SurfaceType.Smooth
  412. p9.TopSurface = Enum.SurfaceType.Smooth
  413. b9 = Instance.new("BlockMesh", p9)
  414. b9.Name = "Mesh"
  415. b9.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  416. p10 = Instance.new("Part", m)
  417. p10.BrickColor = BrickColor.new("Really black")
  418. p10.FormFactor = Enum.FormFactor.Custom
  419. p10.Size = Vector3.new(1, 1.41999948, 1)
  420. 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)
  421. p10.CanCollide = false
  422. p10.Locked = true
  423. p10.Elasticity = 0
  424. p10.BottomSurface = Enum.SurfaceType.Smooth
  425. p10.TopSurface = Enum.SurfaceType.Smooth
  426. b10 = Instance.new("BlockMesh", p10)
  427. b10.Name = "Mesh"
  428. b10.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  429. p11 = Instance.new("Part", m)
  430. p11.BrickColor = BrickColor.new("Really black")
  431. p11.FormFactor = Enum.FormFactor.Custom
  432. p11.Size = Vector3.new(1, 1.50999951, 1)
  433. 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)
  434. p11.CanCollide = false
  435. p11.Locked = true
  436. p11.Elasticity = 0
  437. p11.BottomSurface = Enum.SurfaceType.Smooth
  438. p11.TopSurface = Enum.SurfaceType.Smooth
  439. b11 = Instance.new("BlockMesh", p11)
  440. b11.Name = "Mesh"
  441. b11.Scale = Vector3.new(0.550000012, 1, 0.550000012)
  442. p12 = Instance.new("Part", m)
  443. p12.Name = "BladeCenter"
  444. p12.BrickColor = BrickColor.new("Dark stone grey")
  445. p12.Material = Enum.Material.Concrete
  446. p12.FormFactor = Enum.FormFactor.Symmetric
  447. p12.Size = Vector3.new(1, 2, 2)
  448. 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)
  449. p12.CanCollide = false
  450. p12.Locked = true
  451. p12.BottomSurface = Enum.SurfaceType.Smooth
  452. p12.TopSurface = Enum.SurfaceType.Smooth
  453. b12 = Instance.new("SpecialMesh", p12)
  454. b12.MeshType = Enum.MeshType.Brick
  455. b12.Name = "Mesh"
  456. b12.Scale = Vector3.new(0.499999911, 1, 0.699999928)
  457. p13 = Instance.new("Part", m)
  458. p13.BrickColor = BrickColor.new("Really black")
  459. p13.FormFactor = Enum.FormFactor.Custom
  460. p13.Size = Vector3.new(2.91000009, 4.3300004, 1)
  461. 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)
  462. p13.CanCollide = false
  463. p13.Locked = true
  464. p13.Elasticity = 0
  465. p13.BottomSurface = Enum.SurfaceType.Smooth
  466. p13.TopSurface = Enum.SurfaceType.Smooth
  467. b13 = Instance.new("BlockMesh", p13)
  468. b13.Name = "Mesh"
  469. b13.Scale = Vector3.new(1, 1, 0.400000006)
  470. p14 = Instance.new("Part", m)
  471. p14.BrickColor = BrickColor.new("Really black")
  472. p14.FormFactor = Enum.FormFactor.Custom
  473. p14.Size = Vector3.new(2.5, 2.17999935, 1)
  474. 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)
  475. p14.CanCollide = false
  476. p14.Locked = true
  477. p14.Elasticity = 0
  478. p14.BottomSurface = Enum.SurfaceType.Smooth
  479. p14.TopSurface = Enum.SurfaceType.Smooth
  480. b14 = Instance.new("BlockMesh", p14)
  481. b14.Name = "Mesh"
  482. b14.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  483. p15 = Instance.new("Part", m)
  484. p15.BrickColor = BrickColor.new("Really black")
  485. p15.FormFactor = Enum.FormFactor.Custom
  486. p15.Size = Vector3.new(1.16999996, 4.2699995, 1)
  487. 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)
  488. p15.CanCollide = false
  489. p15.Locked = true
  490. p15.Elasticity = 0
  491. p15.BottomSurface = Enum.SurfaceType.Smooth
  492. p15.TopSurface = Enum.SurfaceType.Smooth
  493. b15 = Instance.new("BlockMesh", p15)
  494. b15.Name = "Mesh"
  495. b15.Scale = Vector3.new(1, 1, 0.400000006)
  496. p16 = Instance.new("Part", m)
  497. p16.BrickColor = BrickColor.new("Really black")
  498. p16.FormFactor = Enum.FormFactor.Custom
  499. p16.Size = Vector3.new(1.68999994, 4.76000023, 1)
  500. 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)
  501. p16.CanCollide = false
  502. p16.Locked = true
  503. p16.Elasticity = 0
  504. p16.BottomSurface = Enum.SurfaceType.Smooth
  505. p16.TopSurface = Enum.SurfaceType.Smooth
  506. b16 = Instance.new("BlockMesh", p16)
  507. b16.Name = "Mesh"
  508. b16.Scale = Vector3.new(1, 1, 0.400000006)
  509. p17 = Instance.new("Part", m)
  510. p17.BrickColor = BrickColor.new("Really black")
  511. p17.FormFactor = Enum.FormFactor.Custom
  512. p17.Size = Vector3.new(1.78999996, 4.21999979, 1)
  513. 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)
  514. p17.CanCollide = false
  515. p17.Locked = true
  516. p17.Elasticity = 0
  517. p17.BottomSurface = Enum.SurfaceType.Smooth
  518. p17.TopSurface = Enum.SurfaceType.Smooth
  519. b17 = Instance.new("BlockMesh", p17)
  520. b17.Name = "Mesh"
  521. b17.Scale = Vector3.new(1, 1, 0.400000006)
  522. p18 = Instance.new("WedgePart", m)
  523. p18.BrickColor = BrickColor.new("Dark stone grey")
  524. p18.Name = "BladePart1"
  525. p18.Material = Enum.Material.Concrete
  526. p18.Name = "Wedge"
  527. p18.FormFactor = Enum.FormFactor.Symmetric
  528. p18.Size = Vector3.new(1, 4, 2)
  529. 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)
  530. p18.CanCollide = false
  531. p18.Locked = true
  532. p18.BottomSurface = Enum.SurfaceType.Smooth
  533. p18.TopSurface = Enum.SurfaceType.Smooth
  534. b18 = Instance.new("SpecialMesh", p18)
  535. b18.MeshType = Enum.MeshType.Wedge
  536. b18.Name = "Mesh"
  537. b18.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  538. p19 = Instance.new("WedgePart", m)
  539. p19.BrickColor = BrickColor.new("Dark stone grey")
  540. p19.Name = "BladePart2"
  541. p19.Material = Enum.Material.Concrete
  542. p19.Name = "Wedge"
  543. p19.FormFactor = Enum.FormFactor.Symmetric
  544. p19.Size = Vector3.new(1, 4, 2)
  545. 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)
  546. p19.CanCollide = false
  547. p19.Locked = true
  548. p19.BottomSurface = Enum.SurfaceType.Smooth
  549. p19.TopSurface = Enum.SurfaceType.Smooth
  550. b19 = Instance.new("SpecialMesh", p19)
  551. b19.MeshType = Enum.MeshType.Wedge
  552. b19.Name = "Mesh"
  553. b19.Scale = Vector3.new(0.499999911, 0.899999976, 0.699999928)
  554. p20 = Instance.new("Part", m)
  555. p20.BrickColor = BrickColor.new("Really black")
  556. p20.FormFactor = Enum.FormFactor.Custom
  557. p20.Size = Vector3.new(2.53000021, 2.39999938, 1)
  558. 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)
  559. p20.CanCollide = false
  560. p20.Locked = true
  561. p20.Elasticity = 0
  562. p20.BottomSurface = Enum.SurfaceType.Smooth
  563. p20.TopSurface = Enum.SurfaceType.Smooth
  564. b20 = Instance.new("BlockMesh", p20)
  565. b20.Name = "Mesh"
  566. b20.Scale = Vector3.new(0.400000006, 1, 0.400000006)
  567. p21 = Instance.new("Part", m)
  568. p21.BrickColor = BrickColor.new("Institutional white")
  569. p21.Material = "Neon"
  570. p21.FormFactor = Enum.FormFactor.Custom
  571. p21.Size = Vector3.new(1, 1.43999994, 1.59000015)
  572. 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)
  573. p21.CanCollide = false
  574. p21.Locked = true
  575. p21.Elasticity = 0
  576. p21.BottomSurface = Enum.SurfaceType.Smooth
  577. p21.TopSurface = Enum.SurfaceType.Smooth
  578. b21 = Instance.new("SpecialMesh", p21)
  579. b21.MeshType = Enum.MeshType.Wedge
  580. b21.Name = "Mesh"
  581. b21.Scale = Vector3.new(0.300000012, 0.600000024, 0.699999988)
  582. w1 = Instance.new("Weld", p1)
  583. w1.Name = "Part_Weld"
  584. w1.Part0 = p1
  585. 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)
  586. w1.Part1 = p2
  587. 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)
  588. w2 = Instance.new("Weld", p2)
  589. w2.Name = "Part_Weld"
  590. w2.Part0 = p2
  591. 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)
  592. w2.Part1 = p3
  593. 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)
  594. w3 = Instance.new("Weld", p3)
  595. w3.Name = "Part_Weld"
  596. w3.Part0 = p3
  597. 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)
  598. w3.Part1 = p4
  599. 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)
  600. w4 = Instance.new("Weld", p4)
  601. w4.Name = "Part_Weld"
  602. w4.Part0 = p4
  603. 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)
  604. w4.Part1 = p5
  605. 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)
  606. w5 = Instance.new("Weld", p5)
  607. w5.Name = "Part_Weld"
  608. w5.Part0 = p5
  609. 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)
  610. w5.Part1 = p6
  611. 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)
  612. w6 = Instance.new("Weld", p6)
  613. w6.Name = "Part_Weld"
  614. w6.Part0 = p6
  615. 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)
  616. w6.Part1 = p7
  617. 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)
  618. w7 = Instance.new("Weld", p7)
  619. w7.Name = "Part_Weld"
  620. w7.Part0 = p7
  621. 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)
  622. w7.Part1 = p8
  623. 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)
  624. w8 = Instance.new("Weld", p8)
  625. w8.Name = "Part_Weld"
  626. w8.Part0 = p8
  627. 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)
  628. w8.Part1 = p9
  629. 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)
  630. w9 = Instance.new("Weld", p9)
  631. w9.Name = "Part_Weld"
  632. w9.Part0 = p9
  633. 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)
  634. w9.Part1 = p10
  635. 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)
  636. w10 = Instance.new("Weld", p10)
  637. w10.Name = "Part_Weld"
  638. w10.Part0 = p10
  639. 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)
  640. w10.Part1 = p11
  641. 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)
  642. w11 = Instance.new("Weld", p11)
  643. w11.Name = "Part_Weld"
  644. w11.Part0 = p11
  645. 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)
  646. w11.Part1 = p12
  647. 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)
  648. w12 = Instance.new("Weld", p12)
  649. w12.Name = "Part_Weld"
  650. w12.Part0 = p12
  651. 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)
  652. w12.Part1 = p13
  653. 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)
  654. w13 = Instance.new("Weld", p13)
  655. w13.Name = "Part_Weld"
  656. w13.Part0 = p13
  657. 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)
  658. w13.Part1 = p14
  659. 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)
  660. w14 = Instance.new("Weld", p14)
  661. w14.Name = "Part_Weld"
  662. w14.Part0 = p14
  663. 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)
  664. w14.Part1 = p15
  665. 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)
  666. w15 = Instance.new("Weld", p15)
  667. w15.Name = "Part_Weld"
  668. w15.Part0 = p15
  669. 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)
  670. w15.Part1 = p16
  671. 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)
  672. w16 = Instance.new("Weld", p16)
  673. w16.Name = "Part_Weld"
  674. w16.Part0 = p16
  675. 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)
  676. w16.Part1 = p17
  677. 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)
  678. w17 = Instance.new("Weld", p17)
  679. w17.Name = "Wedge_Weld"
  680. w17.Part0 = p17
  681. 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)
  682. w17.Part1 = p18
  683. 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)
  684. w18 = Instance.new("Weld", p18)
  685. w18.Name = "Wedge_Weld"
  686. w18.Part0 = p18
  687. 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)
  688. w18.Part1 = p19
  689. 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)
  690. w19 = Instance.new("Weld", p19)
  691. w19.Name = "Part_Weld"
  692. w19.Part0 = p19
  693. 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)
  694. w19.Part1 = p20
  695. 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)
  696. w20 = Instance.new("Weld", p20)
  697. w20.Name = "Part_Weld"
  698. w20.Part0 = p20
  699. 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)
  700. w20.Part1 = p21
  701. 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)
  702. m.Parent = char
  703. m:MakeJoints()
  704. ----------------------------------------------------
  705. local cor = Instance.new("Part", char.Absolution)
  706. cor.Name = "Thingy"
  707. cor.Locked = true
  708. cor.BottomSurface = 0
  709. cor.CanCollide = false
  710. cor.Size = Vector3.new(1, 13, 1)
  711. cor.Transparency = 1
  712. cor.TopSurface = 0
  713. corw = Instance.new("Weld", cor)
  714. corw.Part0 = rarm
  715. corw.Part1 = cor
  716. corw.C0 = CFrame.new(0, -1, -1.1) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  717. corw.C1 = CFrame.new(0, 0, 0)
  718. weld1 = Instance.new("Weld", char.Absolution)
  719. weld1.Part0 = cor
  720. weld1.Part1 = p6
  721. weld1.C0 = CFrame.new(0, 0, 0)
  722. ----------------------------------------------------
  723. hitb = Instance.new("Part", char.Absolution)
  724. hitb.Name = "Thingy2"
  725. hitb.Locked = true
  726. hitb.BottomSurface = 0
  727. hitb.CanCollide = false
  728. hitb.Size = Vector3.new(0, 8, 6)
  729. hitb.Transparency = 1
  730. hitb.TopSurface = 0
  731. weld2 = Instance.new("Weld", char.Absolution)
  732. weld2.Part0 = hitb
  733. weld2.Part1 = p12
  734. weld2.C0 = CFrame.new(0, .6, 1)
  735. ----------------------------------------------------
  736. local m = Instance.new("Model")
  737. m.Name = "Claw"
  738. p1 = Instance.new("Part", m)
  739. p1.BrickColor = BrickColor.new("Really black")
  740. p1.FormFactor = Enum.FormFactor.Custom
  741. p1.Size = Vector3.new(1.5, 0.5, 0.5)
  742. 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)
  743. p1.CanCollide = false
  744. p1.Locked = true
  745. p1.BottomSurface = Enum.SurfaceType.Smooth
  746. p1.TopSurface = Enum.SurfaceType.Smooth
  747. b1 = Instance.new("BlockMesh", p1)
  748. b1.Name = "Mesh"
  749. p2 = Instance.new("WedgePart", m)
  750. p2.BrickColor = BrickColor.new("Really black")
  751. p2.Name = "Wedge"
  752. p2.FormFactor = Enum.FormFactor.Custom
  753. p2.Size = Vector3.new(3, 1, 0.5)
  754. 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)
  755. p2.CanCollide = false
  756. p2.Locked = true
  757. p2.BottomSurface = Enum.SurfaceType.Smooth
  758. p2.TopSurface = Enum.SurfaceType.Smooth
  759. p3 = Instance.new("Part", m)
  760. p3.BrickColor = BrickColor.new("Really black")
  761. p3.FormFactor = Enum.FormFactor.Custom
  762. p3.Size = Vector3.new(1.5, 0.5, 0.5)
  763. 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)
  764. p3.CanCollide = false
  765. p3.Locked = true
  766. p3.BottomSurface = Enum.SurfaceType.Smooth
  767. p3.TopSurface = Enum.SurfaceType.Smooth
  768. b2 = Instance.new("BlockMesh", p3)
  769. b2.Name = "Mesh"
  770. p4 = Instance.new("WedgePart", m)
  771. p4.BrickColor = BrickColor.new("Really black")
  772. p4.Name = "Wedge"
  773. p4.FormFactor = Enum.FormFactor.Custom
  774. p4.Size = Vector3.new(3, 1, 0.5)
  775. 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)
  776. p4.CanCollide = false
  777. p4.Locked = true
  778. p4.BottomSurface = Enum.SurfaceType.Smooth
  779. p4.TopSurface = Enum.SurfaceType.Smooth
  780. p5 = Instance.new("Part", m)
  781. p5.BrickColor = BrickColor.new("Really black")
  782. p5.FormFactor = Enum.FormFactor.Custom
  783. p5.Size = Vector3.new(1.5, 0.5, 0.5)
  784. 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)
  785. p5.CanCollide = false
  786. p5.Locked = true
  787. p5.BottomSurface = Enum.SurfaceType.Smooth
  788. p5.TopSurface = Enum.SurfaceType.Smooth
  789. b3 = Instance.new("BlockMesh", p5)
  790. b3.Name = "Mesh"
  791. p6 = Instance.new("Part", m)
  792. p6.BrickColor = BrickColor.new("Really black")
  793. p6.FormFactor = Enum.FormFactor.Custom
  794. p6.Size = Vector3.new(1.5, 0.5, 0.5)
  795. 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)
  796. p6.CanCollide = false
  797. p6.Locked = true
  798. p6.BottomSurface = Enum.SurfaceType.Smooth
  799. p6.TopSurface = Enum.SurfaceType.Smooth
  800. b4 = Instance.new("BlockMesh", p6)
  801. b4.Name = "Mesh"
  802. p7 = Instance.new("Part", m)
  803. p7.BrickColor = BrickColor.new("Really black")
  804. p7.FormFactor = Enum.FormFactor.Custom
  805. p7.Size = Vector3.new(3, 1, 1.20000005)
  806. 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)
  807. p7.CanCollide = false
  808. p7.Locked = true
  809. p7.BottomSurface = Enum.SurfaceType.Smooth
  810. p7.TopSurface = Enum.SurfaceType.Smooth
  811. b5 = Instance.new("BlockMesh", p7)
  812. b5.Name = "Mesh"
  813. p8 = Instance.new("Part", m)
  814. p8.BrickColor = BrickColor.new("Institutional white")
  815. p8.Material = "Neon"
  816. p8.FormFactor = Enum.FormFactor.Symmetric
  817. p8.Size = Vector3.new(1, 1, 1)
  818. 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)
  819. p8.CanCollide = false
  820. p8.Locked = true
  821. b6 = Instance.new("SpecialMesh", p8)
  822. b6.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  823. b6.TextureId = ""
  824. b6.MeshType = Enum.MeshType.FileMesh
  825. b6.Name = "Mesh"
  826. b6.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  827. p9 = Instance.new("Part", m)
  828. p9.BrickColor = BrickColor.new("Really black")
  829. p9.FormFactor = Enum.FormFactor.Custom
  830. p9.Size = Vector3.new(1.5, 0.5, 0.5)
  831. 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)
  832. p9.CanCollide = false
  833. p9.Locked = true
  834. p9.BottomSurface = Enum.SurfaceType.Smooth
  835. p9.TopSurface = Enum.SurfaceType.Smooth
  836. b7 = Instance.new("BlockMesh", p9)
  837. b7.Name = "Mesh"
  838. p10 = Instance.new("Part", m)
  839. p10.BrickColor = BrickColor.new("Institutional white")
  840. p10.Material = "Neon"
  841. p10.FormFactor = Enum.FormFactor.Symmetric
  842. p10.Size = Vector3.new(1, 1, 1)
  843. 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)
  844. p10.CanCollide = false
  845. p10.Locked = true
  846. b8 = Instance.new("SpecialMesh", p10)
  847. b8.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  848. b8.TextureId = ""
  849. b8.MeshType = Enum.MeshType.FileMesh
  850. b8.Name = "Mesh"
  851. b8.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  852. p11 = Instance.new("Part", m)
  853. p11.BrickColor = BrickColor.new("Really black")
  854. p11.FormFactor = Enum.FormFactor.Custom
  855. p11.Size = Vector3.new(1.5, 0.5, 0.5)
  856. 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)
  857. p11.CanCollide = false
  858. p11.Locked = true
  859. p11.BottomSurface = Enum.SurfaceType.Smooth
  860. p11.TopSurface = Enum.SurfaceType.Smooth
  861. b9 = Instance.new("BlockMesh", p11)
  862. b9.Name = "Mesh"
  863. p12 = Instance.new("Part", m)
  864. p12.BrickColor = BrickColor.new("Really black")
  865. p12.FormFactor = Enum.FormFactor.Custom
  866. p12.Size = Vector3.new(1.5, 0.5, 0.5)
  867. 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)
  868. p12.CanCollide = false
  869. p12.Locked = true
  870. p12.BottomSurface = Enum.SurfaceType.Smooth
  871. p12.TopSurface = Enum.SurfaceType.Smooth
  872. b10 = Instance.new("BlockMesh", p12)
  873. b10.Name = "Mesh"
  874. p13 = Instance.new("Part", m)
  875. p13.BrickColor = BrickColor.new("Really black")
  876. p13.FormFactor = Enum.FormFactor.Custom
  877. p13.Size = Vector3.new(1.5, 0.5, 0.5)
  878. 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)
  879. p13.CanCollide = false
  880. p13.Locked = true
  881. p13.BottomSurface = Enum.SurfaceType.Smooth
  882. p13.TopSurface = Enum.SurfaceType.Smooth
  883. b11 = Instance.new("BlockMesh", p13)
  884. b11.Name = "Mesh"
  885. p14 = Instance.new("Part", m)
  886. p14.BrickColor = BrickColor.new("Institutional white")
  887. p14.Material = "Neon"
  888. p14.FormFactor = Enum.FormFactor.Symmetric
  889. p14.Size = Vector3.new(1, 1, 1)
  890. 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)
  891. p14.CanCollide = false
  892. p14.Locked = true
  893. b12 = Instance.new("SpecialMesh", p14)
  894. b12.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  895. b12.TextureId = ""
  896. b12.MeshType = Enum.MeshType.FileMesh
  897. b12.Name = "Mesh"
  898. b12.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  899. p15 = Instance.new("Part", m)
  900. p15.BrickColor = BrickColor.new("Medium stone grey")
  901. p15.Transparency = 1
  902. p15.Name = "ArmPart"
  903. p15.FormFactor = Enum.FormFactor.Custom
  904. p15.Size = Vector3.new(2, 1, 1)
  905. 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)
  906. p15.CanCollide = false
  907. p15.Locked = true
  908. p15.BottomSurface = Enum.SurfaceType.Smooth
  909. p15.TopSurface = Enum.SurfaceType.Smooth
  910. b13 = Instance.new("BlockMesh", p15)
  911. b13.Name = "Mesh"
  912. p16 = Instance.new("Part", m)
  913. p16.BrickColor = BrickColor.new("Really black")
  914. p16.FormFactor = Enum.FormFactor.Custom
  915. p16.Size = Vector3.new(3, 1, 2.4000001)
  916. 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)
  917. p16.CanCollide = false
  918. p16.Locked = true
  919. p16.BottomSurface = Enum.SurfaceType.Smooth
  920. p16.TopSurface = Enum.SurfaceType.Smooth
  921. b14 = Instance.new("BlockMesh", p16)
  922. b14.Name = "Mesh"
  923. p17 = Instance.new("Part", m)
  924. p17.BrickColor = BrickColor.new("Really black")
  925. p17.FormFactor = Enum.FormFactor.Custom
  926. p17.Size = Vector3.new(1.5, 0.5, 0.5)
  927. 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)
  928. p17.CanCollide = false
  929. p17.Locked = true
  930. p17.BottomSurface = Enum.SurfaceType.Smooth
  931. p17.TopSurface = Enum.SurfaceType.Smooth
  932. b15 = Instance.new("BlockMesh", p17)
  933. b15.Name = "Mesh"
  934. p18 = Instance.new("Part", m)
  935. p18.BrickColor = BrickColor.new("Institutional white")
  936. p18.Material = "Neon"
  937. p18.FormFactor = Enum.FormFactor.Symmetric
  938. p18.Size = Vector3.new(1, 1, 1)
  939. 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)
  940. p18.CanCollide = false
  941. p18.Locked = true
  942. b16 = Instance.new("SpecialMesh", p18)
  943. b16.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  944. b16.TextureId = ""
  945. b16.MeshType = Enum.MeshType.FileMesh
  946. b16.Name = "Mesh"
  947. b16.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  948. p19 = Instance.new("Part", m)
  949. p19.BrickColor = BrickColor.new("Institutional white")
  950. p19.Material = "Neon"
  951. p19.FormFactor = Enum.FormFactor.Symmetric
  952. p19.Size = Vector3.new(1, 1, 1)
  953. 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)
  954. p19.CanCollide = false
  955. p19.Locked = true
  956. b17 = Instance.new("SpecialMesh", p19)
  957. b17.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  958. b17.TextureId = ""
  959. b17.MeshType = Enum.MeshType.FileMesh
  960. b17.Name = "Mesh"
  961. b17.Scale = Vector3.new(1.20000005, 0.449999988, 0.449999988)
  962. p20 = Instance.new("Part", m)
  963. p20.BrickColor = BrickColor.new("Really black")
  964. p20.FormFactor = Enum.FormFactor.Custom
  965. p20.Size = Vector3.new(3, 1, 2.4000001)
  966. 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)
  967. p20.CanCollide = false
  968. p20.Locked = true
  969. p20.BottomSurface = Enum.SurfaceType.Smooth
  970. p20.TopSurface = Enum.SurfaceType.Smooth
  971. b18 = Instance.new("BlockMesh", p20)
  972. b18.Name = "Mesh"
  973. p21 = Instance.new("Part", m)
  974. p21.BrickColor = BrickColor.new("Really black")
  975. p21.FormFactor = Enum.FormFactor.Custom
  976. p21.Size = Vector3.new(3, 1, 1.19999993)
  977. 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)
  978. p21.CanCollide = false
  979. p21.Locked = true
  980. p21.BottomSurface = Enum.SurfaceType.Smooth
  981. p21.TopSurface = Enum.SurfaceType.Smooth
  982. b19 = Instance.new("BlockMesh", p21)
  983. b19.Name = "Mesh"
  984. p22 = Instance.new("WedgePart", m)
  985. p22.BrickColor = BrickColor.new("Really black")
  986. p22.Name = "Wedge"
  987. p22.FormFactor = Enum.FormFactor.Custom
  988. p22.Size = Vector3.new(3, 1, 0.5)
  989. 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)
  990. p22.CanCollide = false
  991. p22.Locked = true
  992. p22.BottomSurface = Enum.SurfaceType.Smooth
  993. p22.TopSurface = Enum.SurfaceType.Smooth
  994. p23 = Instance.new("Part", m)
  995. p23.BrickColor = BrickColor.new("Really black")
  996. p23.FormFactor = Enum.FormFactor.Custom
  997. p23.Size = Vector3.new(1.5, 0.5, 0.5)
  998. 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)
  999. p23.CanCollide = false
  1000. p23.Locked = true
  1001. p23.BottomSurface = Enum.SurfaceType.Smooth
  1002. p23.TopSurface = Enum.SurfaceType.Smooth
  1003. b20 = Instance.new("BlockMesh", p23)
  1004. b20.Name = "Mesh"
  1005. p24 = Instance.new("WedgePart", m)
  1006. p24.BrickColor = BrickColor.new("Really black")
  1007. p24.Name = "Wedge"
  1008. p24.FormFactor = Enum.FormFactor.Custom
  1009. p24.Size = Vector3.new(3, 1, 0.5)
  1010. 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)
  1011. p24.CanCollide = false
  1012. p24.Locked = true
  1013. p24.BottomSurface = Enum.SurfaceType.Smooth
  1014. p24.TopSurface = Enum.SurfaceType.Smooth
  1015. p25 = Instance.new("Part", m)
  1016. p25.BrickColor = BrickColor.new("Institutional white")
  1017. p25.Material = "Neon"
  1018. p25.FormFactor = Enum.FormFactor.Symmetric
  1019. p25.Size = Vector3.new(1, 1, 1)
  1020. 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)
  1021. p25.CanCollide = false
  1022. p25.Locked = true
  1023. p25.BottomSurface = Enum.SurfaceType.Smooth
  1024. p25.TopSurface = Enum.SurfaceType.Smooth
  1025. b21 = Instance.new("SpecialMesh", p25)
  1026. b21.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1027. b21.TextureId = ""
  1028. b21.MeshType = Enum.MeshType.FileMesh
  1029. b21.Name = "Mesh"
  1030. b21.Scale = Vector3.new(1.39999998, 1.39999998, 0.600000024)
  1031. p26 = Instance.new("Part", m)
  1032. p26.BrickColor = BrickColor.new("Really black")
  1033. p26.FormFactor = Enum.FormFactor.Symmetric
  1034. p26.Size = Vector3.new(1, 1, 1)
  1035. 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)
  1036. p26.CanCollide = false
  1037. p26.Locked = true
  1038. p26.BottomSurface = Enum.SurfaceType.Smooth
  1039. p26.TopSurface = Enum.SurfaceType.Smooth
  1040. b22 = Instance.new("SpecialMesh", p26)
  1041. b22.MeshType = Enum.MeshType.Brick
  1042. b22.Name = "Mesh"
  1043. w1 = Instance.new("Weld", p1)
  1044. w1.Name = "Wedge_Weld"
  1045. w1.Part0 = p1
  1046. 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)
  1047. w1.Part1 = p2
  1048. 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)
  1049. w2 = Instance.new("Weld", p2)
  1050. w2.Name = "Part_Weld"
  1051. w2.Part0 = p2
  1052. 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)
  1053. w2.Part1 = p3
  1054. 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)
  1055. w3 = Instance.new("Weld", p3)
  1056. w3.Name = "Wedge_Weld"
  1057. w3.Part0 = p3
  1058. 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)
  1059. w3.Part1 = p4
  1060. 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)
  1061. w4 = Instance.new("Weld", p4)
  1062. w4.Name = "Part_Weld"
  1063. w4.Part0 = p4
  1064. 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)
  1065. w4.Part1 = p5
  1066. 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)
  1067. w5 = Instance.new("Weld", p5)
  1068. w5.Name = "Part_Weld"
  1069. w5.Part0 = p5
  1070. 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)
  1071. w5.Part1 = p6
  1072. 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)
  1073. w6 = Instance.new("Weld", p6)
  1074. w6.Name = "Part_Weld"
  1075. w6.Part0 = p6
  1076. 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)
  1077. w6.Part1 = p7
  1078. 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)
  1079. w7 = Instance.new("Weld", p7)
  1080. w7.Name = "Part_Weld"
  1081. w7.Part0 = p7
  1082. 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)
  1083. w7.Part1 = p8
  1084. 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)
  1085. w8 = Instance.new("Weld", p8)
  1086. w8.Name = "Part_Weld"
  1087. w8.Part0 = p8
  1088. 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)
  1089. w8.Part1 = p9
  1090. 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)
  1091. w9 = Instance.new("Weld", p9)
  1092. w9.Name = "Part_Weld"
  1093. w9.Part0 = p9
  1094. 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)
  1095. w9.Part1 = p10
  1096. 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)
  1097. w10 = Instance.new("Weld", p10)
  1098. w10.Name = "Part_Weld"
  1099. w10.Part0 = p10
  1100. 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)
  1101. w10.Part1 = p11
  1102. 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)
  1103. w11 = Instance.new("Weld", p11)
  1104. w11.Name = "Part_Weld"
  1105. w11.Part0 = p11
  1106. 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)
  1107. w11.Part1 = p12
  1108. 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)
  1109. w12 = Instance.new("Weld", p12)
  1110. w12.Name = "Part_Weld"
  1111. w12.Part0 = p12
  1112. 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)
  1113. w12.Part1 = p13
  1114. 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)
  1115. w13 = Instance.new("Weld", p13)
  1116. w13.Name = "Part_Weld"
  1117. w13.Part0 = p13
  1118. 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)
  1119. w13.Part1 = p14
  1120. 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)
  1121. w14 = Instance.new("Weld", p14)
  1122. w14.Name = "ArmPart_Weld"
  1123. w14.Part0 = p14
  1124. 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)
  1125. w14.Part1 = p15
  1126. 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)
  1127. w15 = Instance.new("Weld", p15)
  1128. w15.Name = "Part_Weld"
  1129. w15.Part0 = p15
  1130. 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)
  1131. w15.Part1 = p16
  1132. 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)
  1133. w16 = Instance.new("Weld", p16)
  1134. w16.Name = "Part_Weld"
  1135. w16.Part0 = p16
  1136. 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)
  1137. w16.Part1 = p17
  1138. 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)
  1139. w17 = Instance.new("Weld", p17)
  1140. w17.Name = "Part_Weld"
  1141. w17.Part0 = p17
  1142. 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)
  1143. w17.Part1 = p18
  1144. 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)
  1145. w18 = Instance.new("Weld", p18)
  1146. w18.Name = "Part_Weld"
  1147. w18.Part0 = p18
  1148. 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)
  1149. w18.Part1 = p19
  1150. 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)
  1151. w19 = Instance.new("Weld", p19)
  1152. w19.Name = "Part_Weld"
  1153. w19.Part0 = p19
  1154. 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)
  1155. w19.Part1 = p20
  1156. 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)
  1157. w20 = Instance.new("Weld", p20)
  1158. w20.Name = "Part_Weld"
  1159. w20.Part0 = p20
  1160. 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)
  1161. w20.Part1 = p21
  1162. 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)
  1163. w21 = Instance.new("Weld", p21)
  1164. w21.Name = "Wedge_Weld"
  1165. w21.Part0 = p21
  1166. 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)
  1167. w21.Part1 = p22
  1168. 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)
  1169. w22 = Instance.new("Weld", p22)
  1170. w22.Name = "Part_Weld"
  1171. w22.Part0 = p22
  1172. 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)
  1173. w22.Part1 = p23
  1174. 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)
  1175. w23 = Instance.new("Weld", p23)
  1176. w23.Name = "Wedge_Weld"
  1177. w23.Part0 = p23
  1178. 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)
  1179. w23.Part1 = p24
  1180. 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)
  1181. w24 = Instance.new("Weld", p24)
  1182. w24.Name = "Part_Weld"
  1183. w24.Part0 = p24
  1184. 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)
  1185. w24.Part1 = p25
  1186. 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)
  1187. w25 = Instance.new("Weld", p25)
  1188. w25.Name = "Part_Weld"
  1189. w25.Part0 = p25
  1190. 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)
  1191. w25.Part1 = p26
  1192. 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)
  1193. m.Parent = char
  1194. m:MakeJoints()
  1195. ----------------------------------------------------
  1196. local cor2 = Instance.new("Part", char.Claw)
  1197. cor2.Name = "Thingy"
  1198. cor2.Locked = true
  1199. cor2.BottomSurface = 0
  1200. cor2.CanCollide = false
  1201. cor2.Size = Vector3.new(2, 1, 1)
  1202. cor2.Transparency = 1
  1203. cor2.TopSurface = 0
  1204. corw2 = Instance.new("Weld", cor2)
  1205. corw2.Part0 = larm
  1206. corw2.Part1 = cor2
  1207. corw2.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(180), math.rad(90))
  1208. corw2.C1 = CFrame.new(0, 0, 0)
  1209. weld2 = Instance.new("Weld", char.Claw)
  1210. weld2.Part0 = cor2
  1211. weld2.Part1 = char.Claw.ArmPart
  1212. weld2.C0 = CFrame.new(0, 0, 0)
  1213. ----------------------------------------------------
  1214. local m = Instance.new("Model")
  1215. m.Name = "LeftArm"
  1216. p1 = Instance.new("WedgePart", m)
  1217. p1.BrickColor = BrickColor.new("Institutional white")
  1218. p1.Material = Enum.Material.Neon
  1219. p1.Name = "Wedge"
  1220. p1.FormFactor = Enum.FormFactor.Custom
  1221. p1.Size = Vector3.new(1, 1.19999981, 4)
  1222. p1.CFrame = CFrame.new(60.830101, 8.39941978, -13.7674818, 1.52359269e-006, -0.707334042, 0.707343757, -2.62521735e-006, 0.707093, 0.707071185, -1.00027835, 3.43534703e-006, 4.43342998e-007)
  1223. p1.CanCollide = false
  1224. p1.Locked = true
  1225. p1.TopSurface = Enum.SurfaceType.Smooth
  1226. b1 = Instance.new("SpecialMesh", p1)
  1227. b1.MeshType = Enum.MeshType.Wedge
  1228. b1.Name = "Mesh"
  1229. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1230. p2 = Instance.new("WedgePart", m)
  1231. p2.BrickColor = BrickColor.new("Institutional white")
  1232. p2.Material = Enum.Material.Neon
  1233. p2.Name = "Wedge"
  1234. p2.FormFactor = Enum.FormFactor.Custom
  1235. p2.Size = Vector3.new(1, 1.19999981, 4)
  1236. p2.CFrame = CFrame.new(60.8306694, 8.39941502, -12.5672398, 1.56085741e-006, -0.707337618, 0.707340181, -2.7146209e-006, 0.707089424, 0.707074761, -1.00027835, 3.34575839e-006, 4.06471969e-007)
  1237. p2.CanCollide = false
  1238. p2.Locked = true
  1239. p2.TopSurface = Enum.SurfaceType.Smooth
  1240. b2 = Instance.new("SpecialMesh", p2)
  1241. b2.MeshType = Enum.MeshType.Wedge
  1242. b2.Name = "Mesh"
  1243. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1244. p3 = Instance.new("WedgePart", m)
  1245. p3.BrickColor = BrickColor.new("Institutional white")
  1246. p3.Material = Enum.Material.Neon
  1247. p3.Name = "Wedge"
  1248. p3.FormFactor = Enum.FormFactor.Custom
  1249. p3.Size = Vector3.new(1, 1.19999981, 4)
  1250. p3.CFrame = CFrame.new(60.8312187, 8.39939976, -13.1675138, 1.66519976e-006, -0.707341254, 0.707336545, -2.72952207e-006, 0.707085788, 0.707078397, -1.00027835, 3.26143936e-006, 4.69727013e-007)
  1251. p3.CanCollide = false
  1252. p3.Locked = true
  1253. p3.TopSurface = Enum.SurfaceType.Smooth
  1254. b3 = Instance.new("SpecialMesh", p3)
  1255. b3.MeshType = Enum.MeshType.Wedge
  1256. b3.Name = "Mesh"
  1257. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1258. p4 = Instance.new("WedgePart", m)
  1259. p4.BrickColor = BrickColor.new("Institutional white")
  1260. p4.Material = Enum.Material.Neon
  1261. p4.Name = "Wedge"
  1262. p4.FormFactor = Enum.FormFactor.Custom
  1263. p4.Size = Vector3.new(1, 1.19999981, 4)
  1264. p4.CFrame = CFrame.new(60.8317757, 8.39937305, -13.1676111, 1.74718321e-006, -0.70734489, 0.707332909, -2.7742235e-006, 0.707082152, 0.707082033, -1.00027835, 3.17185027e-006, 4.96093037e-007)
  1265. p4.CanCollide = false
  1266. p4.Locked = true
  1267. p4.TopSurface = Enum.SurfaceType.Smooth
  1268. b4 = Instance.new("SpecialMesh", p4)
  1269. b4.MeshType = Enum.MeshType.Wedge
  1270. b4.Name = "Mesh"
  1271. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1272. p5 = Instance.new("WedgePart", m)
  1273. p5.BrickColor = BrickColor.new("Institutional white")
  1274. p5.Material = Enum.Material.Neon
  1275. p5.Name = "Wedge"
  1276. p5.FormFactor = Enum.FormFactor.Custom
  1277. p5.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1278. p5.CFrame = CFrame.new(60.4623528, 9.0813055, -13.1677084, -1.74365277e-006, 0.422768414, 0.90661031, 3.01146247e-006, -0.90627563, 0.422602654, 1.00028574, -3.16541991e-006, -6.48408104e-007)
  1279. p5.CanCollide = false
  1280. p5.Locked = true
  1281. p5.TopSurface = Enum.SurfaceType.Smooth
  1282. b5 = Instance.new("SpecialMesh", p5)
  1283. b5.MeshType = Enum.MeshType.Wedge
  1284. b5.Name = "Mesh"
  1285. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1286. p6 = Instance.new("WedgePart", m)
  1287. p6.BrickColor = BrickColor.new("Institutional white")
  1288. p6.Material = Enum.Material.Neon
  1289. p6.Name = "Wedge"
  1290. p6.FormFactor = Enum.FormFactor.Custom
  1291. p6.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1292. p6.CFrame = CFrame.new(60.4629173, 9.08128643, -13.7679863, -1.75857326e-006, 0.422772557, 0.906618714, 3.13068858e-006, -0.906274974, 0.422602147, 1.00029314, -3.27979569e-006, -6.11540997e-007)
  1293. p6.CanCollide = false
  1294. p6.Locked = true
  1295. p6.TopSurface = Enum.SurfaceType.Smooth
  1296. b6 = Instance.new("SpecialMesh", p6)
  1297. b6.MeshType = Enum.MeshType.Wedge
  1298. b6.Name = "Mesh"
  1299. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1300. p7 = Instance.new("WedgePart", m)
  1301. p7.BrickColor = BrickColor.new("Institutional white")
  1302. p7.Material = Enum.Material.Neon
  1303. p7.Name = "Wedge"
  1304. p7.FormFactor = Enum.FormFactor.Custom
  1305. p7.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1306. p7.CFrame = CFrame.new(60.4634781, 9.0812645, -12.5677195, -1.77349398e-006, 0.422776699, 0.906627119, 3.24991538e-006, -0.906274319, 0.42260164, 1.00030053, -3.39417238e-006, -5.74673834e-007)
  1307. p7.CanCollide = false
  1308. p7.Locked = true
  1309. p7.TopSurface = Enum.SurfaceType.Smooth
  1310. b7 = Instance.new("SpecialMesh", p7)
  1311. b7.MeshType = Enum.MeshType.Wedge
  1312. b7.Name = "Mesh"
  1313. b7.Scale = Vector3.new(0.200000003, 1, 1)
  1314. p8 = Instance.new("Part", m)
  1315. p8.BrickColor = BrickColor.new("Really black")
  1316. p8.Material = Enum.Material.Neon
  1317. p8.FormFactor = Enum.FormFactor.Custom
  1318. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1319. p8.CFrame = CFrame.new(62.1344833, 9.89923668, -14.2683573, 1.0003655, -9.00030136e-006, -1.6914961e-006, -8.34465027e-007, 0.999961495, 3.15914986e-006, -2.15653972e-006, 3.05826416e-006, 1.00030792)
  1320. p8.CanCollide = false
  1321. p8.Locked = true
  1322. p8.BottomSurface = Enum.SurfaceType.Smooth
  1323. p8.TopSurface = Enum.SurfaceType.Smooth
  1324. b8 = Instance.new("SpecialMesh", p8)
  1325. b8.MeshType = Enum.MeshType.Sphere
  1326. b8.Name = "Mesh"
  1327. p9 = Instance.new("Part", m)
  1328. p9.BrickColor = BrickColor.new("Really black")
  1329. p9.Material = Enum.Material.Neon
  1330. p9.FormFactor = Enum.FormFactor.Custom
  1331. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1332. p9.CFrame = CFrame.new(62.1350441, 7.19933271, -14.2684784, 1.00037432, -9.11423649e-006, -1.78677055e-006, -8.82557742e-007, 0.999960482, 3.17407398e-006, -2.19382355e-006, 3.14769591e-006, 1.00031543)
  1333. p9.CanCollide = false
  1334. p9.Locked = true
  1335. p9.BottomSurface = Enum.SurfaceType.Smooth
  1336. p9.TopSurface = Enum.SurfaceType.Smooth
  1337. b9 = Instance.new("SpecialMesh", p9)
  1338. b9.MeshType = Enum.MeshType.Sphere
  1339. b9.Name = "Mesh"
  1340. p10 = Instance.new("Part", m)
  1341. p10.BrickColor = BrickColor.new("Institutional white")
  1342. p10.Material = Enum.Material.Neon
  1343. p10.FormFactor = Enum.FormFactor.Custom
  1344. p10.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1345. p10.CFrame = CFrame.new(62.4732666, 7.92819929, -14.2685785, -0.906659067, -0.422771662, -1.80169195e-006, 0.422602057, -0.906270981, 3.2933026e-006, 3.38190716e-006, -1.99476835e-006, 1.00032294)
  1346. p10.CanCollide = false
  1347. p10.Locked = true
  1348. p10.BottomSurface = Enum.SurfaceType.Smooth
  1349. p10.TopSurface = Enum.SurfaceType.Smooth
  1350. p11 = Instance.new("Part", m)
  1351. p11.BrickColor = BrickColor.new("Institutional white")
  1352. p11.Material = Enum.Material.Neon
  1353. p11.FormFactor = Enum.FormFactor.Custom
  1354. p11.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1355. p11.CFrame = CFrame.new(62.4794731, 9.45469475, -14.2686787, -0.819467902, 0.573809147, -1.81661335e-006, -0.573551893, -0.819118977, 3.41253167e-006, -9.27350783e-008, -4.03244348e-006, 1.00033033)
  1356. p11.CanCollide = false
  1357. p11.Locked = true
  1358. p11.BottomSurface = Enum.SurfaceType.Smooth
  1359. p11.TopSurface = Enum.SurfaceType.Smooth
  1360. p12 = Instance.new("Part", m)
  1361. p12.BrickColor = BrickColor.new("Really black")
  1362. p12.Material = Enum.Material.Neon
  1363. p12.FormFactor = Enum.FormFactor.Custom
  1364. p12.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1365. p12.CFrame = CFrame.new(62.7369499, 6.29933262, -14.2688055, 1.00040102, -9.53674316e-006, -1.84644205e-006, -1.25169754e-006, 0.999957919, 3.50196092e-006, -2.25187659e-006, 3.46763295e-006, 1.00033784)
  1366. p12.CanCollide = false
  1367. p12.Locked = true
  1368. p12.BottomSurface = Enum.SurfaceType.Smooth
  1369. p12.TopSurface = Enum.SurfaceType.Smooth
  1370. b10 = Instance.new("SpecialMesh", p12)
  1371. b10.MeshType = Enum.MeshType.Sphere
  1372. b10.Name = "Mesh"
  1373. p13 = Instance.new("Part", m)
  1374. p13.BrickColor = BrickColor.new("Institutional white")
  1375. p13.Material = Enum.Material.Neon
  1376. p13.FormFactor = Enum.FormFactor.Custom
  1377. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1378. p13.CFrame = CFrame.new(62.8003883, 10.1991549, -13.2136488, 1.00040984, -9.59636054e-006, -1.88372474e-006, -1.43051466e-006, 0.999956846, 3.58340549e-006, -2.3487878e-006, 3.4825357e-006, 1.00034535)
  1379. p13.CanCollide = false
  1380. p13.Locked = true
  1381. p13.BottomSurface = Enum.SurfaceType.Smooth
  1382. p13.TopSurface = Enum.SurfaceType.Smooth
  1383. b11 = Instance.new("SpecialMesh", p13)
  1384. b11.MeshType = Enum.MeshType.Sphere
  1385. b11.Name = "Mesh"
  1386. p14 = Instance.new("Part", m)
  1387. p14.BrickColor = BrickColor.new("Really black")
  1388. p14.Material = Enum.Material.Neon
  1389. p14.FormFactor = Enum.FormFactor.Custom
  1390. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1391. p14.CFrame = CFrame.new(62.7374802, 9.79915905, -14.2689018, 1.00041437, -9.80505502e-006, -1.96572228e-006, -1.37091877e-006, 0.999956131, 3.62812011e-006, -2.37115751e-006, 3.4527211e-006, 1.00034904)
  1392. p14.CanCollide = false
  1393. p14.Locked = true
  1394. p14.BottomSurface = Enum.SurfaceType.Smooth
  1395. p14.TopSurface = Enum.SurfaceType.Smooth
  1396. b12 = Instance.new("SpecialMesh", p14)
  1397. b12.MeshType = Enum.MeshType.Sphere
  1398. b12.Name = "Mesh"
  1399. p15 = Instance.new("Part", m)
  1400. p15.BrickColor = BrickColor.new("Really black")
  1401. p15.Material = Enum.Material.Metal
  1402. p15.Name = "Main"
  1403. p15.FormFactor = Enum.FormFactor.Custom
  1404. p15.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1405. p15.CFrame = CFrame.new(62.838131, 8.1992178, -13.1686192, 1.00041902, -9.80505047e-006, -1.96572933e-006, -1.54973122e-006, 0.999955654, 3.62813353e-006, -2.38607572e-006, 3.57197018e-006, 1.00035274)
  1406. p15.CanCollide = false
  1407. p15.Locked = true
  1408. p15.BottomSurface = Enum.SurfaceType.Smooth
  1409. p15.TopSurface = Enum.SurfaceType.Smooth
  1410. p16 = Instance.new("Part", m)
  1411. p16.BrickColor = BrickColor.new("Really black")
  1412. p16.Material = Enum.Material.Neon
  1413. p16.FormFactor = Enum.FormFactor.Custom
  1414. p16.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1415. p16.CFrame = CFrame.new(62.9387741, 8.79918098, -14.2691231, 1.0004282, -9.95411301e-006, -2.00301338e-006, -1.66894927e-006, 0.999954581, 3.71756369e-006, -2.46808372e-006, 3.61668594e-006, 1.00036013)
  1416. p16.CanCollide = false
  1417. p16.Locked = true
  1418. p16.BottomSurface = Enum.SurfaceType.Smooth
  1419. p16.TopSurface = Enum.SurfaceType.Smooth
  1420. b13 = Instance.new("SpecialMesh", p16)
  1421. b13.MeshType = Enum.MeshType.Sphere
  1422. b13.Name = "Mesh"
  1423. p17 = Instance.new("Part", m)
  1424. p17.BrickColor = BrickColor.new("Institutional white")
  1425. p17.Material = Enum.Material.Neon
  1426. p17.FormFactor = Enum.FormFactor.Custom
  1427. p17.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1428. p17.CFrame = CFrame.new(63.0825539, 6.854743, -14.2692442, -0.866409063, -0.50020963, -2.099928e-006, 0.499978155, -0.86598444, 3.73249213e-006, 4.01878242e-006, -1.94999211e-006, 1.00036764)
  1429. p17.CanCollide = false
  1430. p17.Locked = true
  1431. p17.BottomSurface = Enum.SurfaceType.Smooth
  1432. p17.TopSurface = Enum.SurfaceType.Smooth
  1433. p18 = Instance.new("Part", m)
  1434. p18.BrickColor = BrickColor.new("Institutional white")
  1435. p18.Material = Enum.Material.Neon
  1436. p18.FormFactor = Enum.FormFactor.Custom
  1437. p18.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  1438. p18.CFrame = CFrame.new(63.1831665, 8.15466595, -14.2693415, -0.906707585, 0.422816038, -2.11485258e-006, -0.422596663, -0.906265914, 3.8437388e-006, 6.9698217e-007, -4.50413063e-006, 1.00037515)
  1439. p18.CanCollide = false
  1440. p18.Locked = true
  1441. p18.BottomSurface = Enum.SurfaceType.Smooth
  1442. p18.TopSurface = Enum.SurfaceType.Smooth
  1443. p19 = Instance.new("Part", m)
  1444. p19.BrickColor = BrickColor.new("Institutional white")
  1445. p19.Material = Enum.Material.Neon
  1446. p19.FormFactor = Enum.FormFactor.Custom
  1447. p19.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  1448. p19.CFrame = CFrame.new(63.2069473, 8.53140068, -14.2694473, -0.707418501, 0.707425714, -2.09994369e-006, -0.707068563, -0.707078457, 3.72453474e-006, -9.59315798e-007, -4.56575162e-006, 1.00037515)
  1449. p19.CanCollide = false
  1450. p19.Locked = true
  1451. p19.BottomSurface = Enum.SurfaceType.Smooth
  1452. p19.TopSurface = Enum.SurfaceType.Smooth
  1453. p20 = Instance.new("Part", m)
  1454. p20.BrickColor = BrickColor.new("Institutional white")
  1455. p20.Material = Enum.Material.Neon
  1456. p20.FormFactor = Enum.FormFactor.Custom
  1457. p20.Size = Vector3.new(0.200000048, 0.899999917, 0.200000048)
  1458. p20.CFrame = CFrame.new(63.2280884, 9.68191624, -14.2694416, -0.342169315, 0.940117717, -2.11486008e-006, -0.93964541, -0.342010528, 3.84375198e-006, -2.7989995e-006, -3.73256239e-006, 1.00037885)
  1459. p20.CanCollide = false
  1460. p20.Locked = true
  1461. p20.BottomSurface = Enum.SurfaceType.Smooth
  1462. p20.TopSurface = Enum.SurfaceType.Smooth
  1463. p21 = Instance.new("Part", m)
  1464. p21.BrickColor = BrickColor.new("Institutional white")
  1465. p21.Material = Enum.Material.Neon
  1466. p21.FormFactor = Enum.FormFactor.Custom
  1467. p21.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  1468. p21.CFrame = CFrame.new(63.3539009, 9.07959557, -14.2694454, 0.707428038, 0.707422554, -2.12876989e-006, -0.707079053, 0.707067132, 3.83015185e-006, -4.56554562e-006, 9.7875602e-007, 1.00037885)
  1469. p21.CanCollide = false
  1470. p21.Locked = true
  1471. p21.BottomSurface = Enum.SurfaceType.Smooth
  1472. p21.TopSurface = Enum.SurfaceType.Smooth
  1473. p22 = Instance.new("Part", m)
  1474. p22.BrickColor = BrickColor.new("Really black")
  1475. p22.Material = Enum.Material.Neon
  1476. p22.FormFactor = Enum.FormFactor.Custom
  1477. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1478. p22.CFrame = CFrame.new(63.4412346, 7.49916172, -14.269558, 1.0004549, -5.30481339e-006, -2.11486781e-006, -7.24196434e-006, 0.999951959, 3.84376608e-006, -2.5650661e-006, 4.02606338e-006, 1.00038254)
  1479. p22.CanCollide = false
  1480. p22.Locked = true
  1481. p22.BottomSurface = Enum.SurfaceType.Smooth
  1482. p22.TopSurface = Enum.SurfaceType.Smooth
  1483. b14 = Instance.new("SpecialMesh", p22)
  1484. b14.MeshType = Enum.MeshType.Sphere
  1485. b14.Name = "Mesh"
  1486. p23 = Instance.new("Part", m)
  1487. p23.BrickColor = BrickColor.new("Really black")
  1488. p23.Material = Enum.Material.Neon
  1489. p23.FormFactor = Enum.FormFactor.Custom
  1490. p23.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1491. p23.CFrame = CFrame.new(63.5412827, 8.29912186, -14.2695541, 1.00045943, -5.54520193e-006, -2.12978443e-006, -7.22709638e-006, 0.999951601, 3.96298356e-006, -2.56507747e-006, 4.02606247e-006, 1.00038624)
  1492. p23.CanCollide = false
  1493. p23.Locked = true
  1494. p23.BottomSurface = Enum.SurfaceType.Smooth
  1495. p23.TopSurface = Enum.SurfaceType.Smooth
  1496. b15 = Instance.new("SpecialMesh", p23)
  1497. b15.MeshType = Enum.MeshType.Sphere
  1498. b15.Name = "Mesh"
  1499. p24 = Instance.new("Part", m)
  1500. p24.BrickColor = BrickColor.new("Really black")
  1501. p24.Material = Enum.Material.Neon
  1502. p24.FormFactor = Enum.FormFactor.Custom
  1503. p24.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1504. p24.CFrame = CFrame.new(63.7413521, 9.49905682, -14.2695513, 1.00045943, -5.51538596e-006, -2.12978443e-006, -7.25689733e-006, 0.999951601, 3.96298356e-006, -2.56507769e-006, 4.02606247e-006, 1.00038624)
  1505. p24.CanCollide = false
  1506. p24.Locked = true
  1507. p24.BottomSurface = Enum.SurfaceType.Smooth
  1508. p24.TopSurface = Enum.SurfaceType.Smooth
  1509. b16 = Instance.new("SpecialMesh", p24)
  1510. b16.MeshType = Enum.MeshType.Sphere
  1511. b16.Name = "Mesh"
  1512. w1 = Instance.new("Weld", p1)
  1513. w1.Name = "Wedge_Weld"
  1514. w1.Part0 = p1
  1515. w1.C0 = CFrame.new(-13.7623367, 38.4686089, -47.5196228, 1.82382877e-007, -1.21785519e-007, -1.0000037, -0.707109988, 0.707106709, -1.20249211e-007, 0.707110047, 0.707106352, 1.16605563e-007)
  1516. w1.Part1 = p2
  1517. w1.C1 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1518. w2 = Instance.new("Weld", p2)
  1519. w2.Name = "Wedge_Weld"
  1520. w2.Part0 = p2
  1521. w2.C0 = CFrame.new(-12.5623302, 38.4686165, -47.5196419, 2.04734633e-007, -9.19831891e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517531e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1522. w2.Part1 = p3
  1523. w2.C1 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1524. w3 = Instance.new("Weld", p3)
  1525. w3.Name = "Wedge_Weld"
  1526. w3.Part0 = p3
  1527. w3.C0 = CFrame.new(-13.1623344, 38.4686127, -47.5196381, 2.04734619e-007, -9.1983182e-008, -1.0000037, -0.707109928, 0.707106471, -1.25517545e-007, 0.707110047, 0.707106233, 1.65067799e-008)
  1528. w3.Part1 = p4
  1529. w3.C1 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1530. w4 = Instance.new("Weld", p4)
  1531. w4.Name = "Wedge_Weld"
  1532. w4.Part0 = p4
  1533. w4.C0 = CFrame.new(-13.1623335, 38.4686165, -47.5196266, 1.82382891e-007, -1.21785519e-007, -1.0000037, -0.707110047, 0.70710659, -1.20249197e-007, 0.707110107, 0.707106352, 1.16605577e-007)
  1534. w4.Part1 = p5
  1535. w4.C1 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1536. w5 = Instance.new("Weld", p5)
  1537. w5.Name = "Wedge_Weld"
  1538. w5.Part0 = p5
  1539. w5.C0 = CFrame.new(13.1623335, -19.1215992, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069863e-008)
  1540. w5.Part1 = p6
  1541. w5.C1 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1542. w6 = Instance.new("Weld", p6)
  1543. w6.Name = "Wedge_Weld"
  1544. w6.Part0 = p6
  1545. w6.C0 = CFrame.new(13.7623377, -19.1215973, -57.7639008, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069792e-008)
  1546. w6.Part1 = p7
  1547. w6.C1 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1548. w7 = Instance.new("Weld", p7)
  1549. w7.Name = "Part_Weld"
  1550. w7.Part0 = p7
  1551. w7.C0 = CFrame.new(12.5623283, -19.121603, -57.7638969, -1.63937244e-007, 2.39803342e-007, 1.0000037, 0.422619939, -0.906307638, 1.72281261e-007, 0.906312168, 0.422617614, 8.41069721e-008)
  1552. w7.Part1 = p8
  1553. w7.C1 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1554. w8 = Instance.new("Weld", p8)
  1555. w8.Name = "Part_Weld"
  1556. w8.Part0 = p8
  1557. w8.C0 = CFrame.new(-62.1028557, -7.90003395, 14.2623377, 1.00000453, -2.44006515e-007, -3.7252903e-008, 1.71363354e-007, 0.999999285, -1.49011612e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  1558. w8.Part1 = p9
  1559. w8.C1 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1560. w9 = Instance.new("Weld", p9)
  1561. w9.Name = "Part_Weld"
  1562. w9.Part0 = p9
  1563. w9.C0 = CFrame.new(-62.1028442, -5.2000351, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  1564. w9.Part1 = p10
  1565. w9.C1 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1566. w10 = Instance.new("Weld", p10)
  1567. w10.Name = "Part_Weld"
  1568. w10.Part0 = p10
  1569. w10.C0 = CFrame.new(54.0845451, 31.7618942, 14.2623348, -0.906311929, 0.422618181, -1.82007653e-009, -0.422620118, -0.906307399, -6.66151578e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1570. w10.Part1 = p11
  1571. w10.C1 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1572. w11 = Instance.new("Weld", p11)
  1573. w11.Name = "Part_Weld"
  1574. w11.Part0 = p11
  1575. w11.C0 = CFrame.new(55.4291229, -29.7103825, 14.2623348, -0.819155812, -0.573575914, -5.86004596e-008, 0.573578954, -0.8191517, -3.17313607e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1576. w11.Part1 = p12
  1577. w11.C1 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1578. w12 = Instance.new("Weld", p12)
  1579. w12.Name = "Part_Weld"
  1580. w12.Part0 = p12
  1581. w12.C0 = CFrame.new(-62.7028465, -4.30003357, 14.2623425, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1582. w12.Part1 = p13
  1583. w12.C1 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1584. w13 = Instance.new("Weld", p13)
  1585. w13.Name = "Part_Weld"
  1586. w13.Part0 = p13
  1587. w13.C0 = CFrame.new(-62.7657433, -8.200037, 13.2074499, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1588. w13.Part1 = p14
  1589. w13.C1 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1590. w14 = Instance.new("Weld", p14)
  1591. w14.Name = "Part_Weld"
  1592. w14.Part0 = p14
  1593. w14.C0 = CFrame.new(-62.7025757, -7.80003023, 14.2622833, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1594. w14.Part1 = p15
  1595. w14.C1 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1596. w15 = Instance.new("Weld", p15)
  1597. w15.Name = "Part_Weld"
  1598. w15.Part0 = p15
  1599. w15.C0 = CFrame.new(-62.8028793, -6.2000289, 13.1623297, 1.00000465, -2.68220901e-007, 2.98023295e-008, 8.94069672e-008, 0.999999523, 5.9604659e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1600. w15.Part1 = p16
  1601. w15.C1 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1602. w16 = Instance.new("Weld", p16)
  1603. w16.Name = "Part_Weld"
  1604. w16.Part0 = p16
  1605. w16.C0 = CFrame.new(-62.9029045, -6.80003929, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  1606. w16.Part1 = p17
  1607. w16.C1 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1608. w17 = Instance.new("Weld", p17)
  1609. w17.Name = "Part_Weld"
  1610. w17.Part0 = p17
  1611. w17.C0 = CFrame.new(52.1717262, 35.7280197, 14.2623415, -0.866029143, 0.499999821, 3.55271368e-015, -0.500002086, -0.86602509, -5.96046448e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  1612. w17.Part1 = p18
  1613. w17.C1 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1614. w18 = Instance.new("Weld", p18)
  1615. w18.Name = "Part_Weld"
  1616. w18.Part0 = p18
  1617. w18.C0 = CFrame.new(59.8312111, -21.1078911, 14.2623348, -0.906311929, -0.422617912, -5.22000931e-008, 0.422620177, -0.906307578, -4.1425146e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1618. w18.Part1 = p19
  1619. w18.C1 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1620. w19 = Instance.new("Weld", p19)
  1621. w19.Name = "Part_Weld"
  1622. w19.Part0 = p19
  1623. w19.C0 = CFrame.new(49.2864532, -40.0483932, 14.2623358, -0.707110107, -0.707106173, -6.32202841e-008, 0.707109928, -0.70710659, -2.1073431e-008, -4.47034836e-008, 5.9604659e-008, 1.0000037)
  1624. w19.Part1 = p20
  1625. w19.C1 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1626. w20 = Instance.new("Weld", p20)
  1627. w20.Name = "Part_Weld"
  1628. w20.Part0 = p20
  1629. w20.C0 = CFrame.new(28.8318367, -56.7515907, 14.2622824, -0.342020333, -0.939692557, 4.07203444e-008, 0.939692557, -0.342020333, 6.23934611e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1630. w20.Part1 = p21
  1631. w20.C1 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1632. w21 = Instance.new("Weld", p21)
  1633. w21.Name = "Part_Weld"
  1634. w21.Part0 = p21
  1635. w21.C0 = CFrame.new(-39.764328, -49.7778244, 14.2622843, 0.707105696, -0.707107842, 7.39707531e-008, 0.707107842, 0.707105696, 8.91225582e-009, -5.86070712e-008, 4.60033966e-008, 1)
  1636. w21.Part1 = p22
  1637. w21.C1 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1638. w22 = Instance.new("Weld", p22)
  1639. w22.Name = "Part_Weld"
  1640. w22.Part0 = p22
  1641. w22.C0 = CFrame.new(-63.402874, -5.50003099, 14.2623358, 1.00000453, -2.99885869e-007, 2.98023224e-008, 7.4505806e-008, 0.999999642, 5.96046448e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1642. w22.Part1 = p23
  1643. w22.C1 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1644. w23 = Instance.new("Weld", p23)
  1645. w23.Name = "Part_Weld"
  1646. w23.Part0 = p23
  1647. w23.C0 = CFrame.new(-63.502594, -6.30003357, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  1648. w23.Part1 = p24
  1649. w23.C1 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1650. w24 = Instance.new("Weld", p24)
  1651. w24.Name = "Part_Weld"
  1652. w24.Part0 = p24
  1653. w24.C0 = CFrame.new(-63.7025795, -7.50003004, 14.2622843, 1, -8.94065622e-008, 4.47034871e-008, 8.94065622e-008, 1, -5.96044352e-008, -4.47034836e-008, 5.96044387e-008, 1)
  1654. m.Parent = larm
  1655. m:MakeJoints()
  1656. ----------------------------------------------------
  1657. local cor3 = Instance.new("Part", larm.LeftArm)
  1658. cor3.Name = "Thingy"
  1659. cor3.Locked = true
  1660. cor3.BottomSurface = 0
  1661. cor3.CanCollide = false
  1662. cor3.Size = Vector3.new(2, 1, 1)
  1663. cor3.Transparency = 1
  1664. cor3.TopSurface = 0
  1665. corw2 = Instance.new("Weld", cor3)
  1666. corw2.Part0 = larm
  1667. corw2.Part1 = cor3
  1668. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1669. corw2.C1 = CFrame.new(0, 0, 0)
  1670. weld2 = Instance.new("Weld", larm.LeftArm)
  1671. weld2.Part0 = cor3
  1672. weld2.Part1 = p15
  1673. weld2.C0 = CFrame.new(0, 0, 0)
  1674. ----------------------------------------------------
  1675. local m = Instance.new("Model")
  1676. m.Name = "RightArm"
  1677. p1 = Instance.new("WedgePart", m)
  1678. p1.BrickColor = BrickColor.new("Institutional white")
  1679. p1.Material = Enum.Material.Neon
  1680. p1.Name = "Wedge"
  1681. p1.FormFactor = Enum.FormFactor.Custom
  1682. p1.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1683. p1.CFrame = CFrame.new(71.7528229, 9.08148766, -13.7657108, 2.20961255e-007, -0.422704399, -0.906498253, -1.70178805e-006, -0.906287491, 0.422612786, -1.00018191, -1.16194826e-006, 2.39246219e-006)
  1684. p1.CanCollide = false
  1685. p1.Locked = true
  1686. p1.TopSurface = Enum.SurfaceType.Smooth
  1687. b1 = Instance.new("SpecialMesh", p1)
  1688. b1.MeshType = Enum.MeshType.Wedge
  1689. b1.Name = "Mesh"
  1690. b1.Scale = Vector3.new(0.200000003, 1, 1)
  1691. p2 = Instance.new("WedgePart", m)
  1692. p2.BrickColor = BrickColor.new("Institutional white")
  1693. p2.Material = Enum.Material.Neon
  1694. p2.Name = "Wedge"
  1695. p2.FormFactor = Enum.FormFactor.Custom
  1696. p2.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1697. p2.CFrame = CFrame.new(71.7534714, 9.08147335, -12.5655851, 3.25293399e-007, -0.422708124, -0.906506479, -1.7167032e-006, -0.906286299, 0.422612339, -1.0001893, -1.13135729e-006, 2.49332743e-006)
  1698. p2.CanCollide = false
  1699. p2.Locked = true
  1700. p2.TopSurface = Enum.SurfaceType.Smooth
  1701. b2 = Instance.new("SpecialMesh", p2)
  1702. b2.MeshType = Enum.MeshType.Wedge
  1703. b2.Name = "Mesh"
  1704. b2.Scale = Vector3.new(0.200000003, 1, 1)
  1705. p3 = Instance.new("WedgePart", m)
  1706. p3.BrickColor = BrickColor.new("Institutional white")
  1707. p3.Material = Enum.Material.Neon
  1708. p3.Name = "Wedge"
  1709. p3.FormFactor = Enum.FormFactor.Custom
  1710. p3.Size = Vector3.new(1, 1.19999981, 3.30000019)
  1711. p3.CFrame = CFrame.new(71.7541199, 9.08145237, -13.1658068, 4.29627249e-007, -0.422711849, -0.906514704, -1.73161834e-006, -0.906285107, 0.422611892, -1.0001967, -1.10076587e-006, 2.59419403e-006)
  1712. p3.CanCollide = false
  1713. p3.Locked = true
  1714. p3.TopSurface = Enum.SurfaceType.Smooth
  1715. b3 = Instance.new("SpecialMesh", p3)
  1716. b3.MeshType = Enum.MeshType.Wedge
  1717. b3.Name = "Mesh"
  1718. b3.Scale = Vector3.new(0.200000003, 1, 1)
  1719. p4 = Instance.new("WedgePart", m)
  1720. p4.BrickColor = BrickColor.new("Institutional white")
  1721. p4.Material = Enum.Material.Neon
  1722. p4.Name = "Wedge"
  1723. p4.FormFactor = Enum.FormFactor.Custom
  1724. p4.Size = Vector3.new(1, 1.19999981, 4)
  1725. p4.CFrame = CFrame.new(71.4245453, 8.39948177, -13.7660398, -5.32960883e-007, 0.70726943, -0.707265258, 1.90324067e-006, 0.707083881, 0.707096815, 1.0001967, 9.87842554e-008, 2.61978244e-006)
  1726. p4.CanCollide = false
  1727. p4.Locked = true
  1728. p4.TopSurface = Enum.SurfaceType.Smooth
  1729. b4 = Instance.new("SpecialMesh", p4)
  1730. b4.MeshType = Enum.MeshType.Wedge
  1731. b4.Name = "Mesh"
  1732. b4.Scale = Vector3.new(0.200000003, 1, 1)
  1733. p5 = Instance.new("WedgePart", m)
  1734. p5.BrickColor = BrickColor.new("Institutional white")
  1735. p5.Material = Enum.Material.Neon
  1736. p5.Name = "Wedge"
  1737. p5.FormFactor = Enum.FormFactor.Custom
  1738. p5.Size = Vector3.new(1, 1.19999981, 4)
  1739. p5.CFrame = CFrame.new(71.4251862, 8.39946651, -13.1660223, -6.3729243e-007, 0.707273066, -0.707261622, 1.91814229e-006, 0.707080245, 0.707100451, 1.0001967, 1.62003985e-007, 2.53547341e-006)
  1740. p5.CanCollide = false
  1741. p5.Locked = true
  1742. p5.TopSurface = Enum.SurfaceType.Smooth
  1743. b5 = Instance.new("SpecialMesh", p5)
  1744. b5.MeshType = Enum.MeshType.Wedge
  1745. b5.Name = "Mesh"
  1746. b5.Scale = Vector3.new(0.200000003, 1, 1)
  1747. p6 = Instance.new("WedgePart", m)
  1748. p6.BrickColor = BrickColor.new("Institutional white")
  1749. p6.Material = Enum.Material.Neon
  1750. p6.Name = "Wedge"
  1751. p6.FormFactor = Enum.FormFactor.Custom
  1752. p6.Size = Vector3.new(1, 1.19999981, 4)
  1753. p6.CFrame = CFrame.new(71.4258194, 8.39945126, -12.5660009, -7.41623865e-007, 0.707276702, -0.707257986, 1.93304436e-006, 0.707076609, 0.707104087, 1.0001967, 2.25224142e-007, 2.45116462e-006)
  1754. p6.CanCollide = false
  1755. p6.Locked = true
  1756. p6.TopSurface = Enum.SurfaceType.Smooth
  1757. b6 = Instance.new("SpecialMesh", p6)
  1758. b6.MeshType = Enum.MeshType.Wedge
  1759. b6.Name = "Mesh"
  1760. b6.Scale = Vector3.new(0.200000003, 1, 1)
  1761. p7 = Instance.new("Part", m)
  1762. p7.BrickColor = BrickColor.new("Really black")
  1763. p7.Material = Enum.Material.Neon
  1764. p7.FormFactor = Enum.FormFactor.Custom
  1765. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1766. p7.CFrame = CFrame.new(70.3255081, 6.6994977, -14.2663507, 1.00023162, 1.31726265e-005, -7.92685455e-007, -1.94311142e-005, 0.999976158, 1.97985287e-006, -1.62725564e-006, 1.86058458e-006, 1.00020039)
  1767. p7.CanCollide = false
  1768. p7.Locked = true
  1769. p7.BottomSurface = Enum.SurfaceType.Smooth
  1770. p7.TopSurface = Enum.SurfaceType.Smooth
  1771. b7 = Instance.new("SpecialMesh", p7)
  1772. b7.MeshType = Enum.MeshType.Sphere
  1773. b7.Name = "Mesh"
  1774. p8 = Instance.new("Part", m)
  1775. p8.BrickColor = BrickColor.new("Institutional white")
  1776. p8.Material = Enum.Material.Neon
  1777. p8.FormFactor = Enum.FormFactor.Custom
  1778. p8.Size = Vector3.new(0.200000048, 0.999999881, 0.200000048)
  1779. p8.CFrame = CFrame.new(70.0060196, 9.16293144, -14.2664633, 0.881308079, -0.429463804, -0.198316693, 0.401435703, 0.900625467, -0.166355878, 0.250050306, 0.0670034215, 0.966122985)
  1780. p8.CanCollide = false
  1781. p8.Locked = true
  1782. p8.BottomSurface = Enum.SurfaceType.Smooth
  1783. p8.TopSurface = Enum.SurfaceType.Smooth
  1784. p9 = Instance.new("Part", m)
  1785. p9.BrickColor = BrickColor.new("Really black")
  1786. p9.Material = Enum.Material.Neon
  1787. p9.FormFactor = Enum.FormFactor.Custom
  1788. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1789. p9.CFrame = CFrame.new(70.2268219, 8.59942532, -14.2665701, 1.00024557, 1.30422413e-005, -8.7916851e-007, -1.95577741e-005, 0.999974489, 1.9967556e-006, -1.75833702e-006, 2.01165676e-006, 1.00021148)
  1790. p9.CanCollide = false
  1791. p9.Locked = true
  1792. p9.BottomSurface = Enum.SurfaceType.Smooth
  1793. p9.TopSurface = Enum.SurfaceType.Smooth
  1794. b8 = Instance.new("SpecialMesh", p9)
  1795. b8.MeshType = Enum.MeshType.Sphere
  1796. b8.Name = "Mesh"
  1797. p10 = Instance.new("Part", m)
  1798. p10.BrickColor = BrickColor.new("Really black")
  1799. p10.Material = Enum.Material.Neon
  1800. p10.FormFactor = Enum.FormFactor.Custom
  1801. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1802. p10.CFrame = CFrame.new(69.8274002, 9.5993948, -14.266675, 1.00025487, 1.30049675e-005, -9.23888138e-007, -1.9595207e-005, 0.999973536, 2.11597762e-006, -1.80306665e-006, 2.13088947e-006, 1.00021887)
  1803. p10.CanCollide = false
  1804. p10.Locked = true
  1805. p10.BottomSurface = Enum.SurfaceType.Smooth
  1806. p10.TopSurface = Enum.SurfaceType.Smooth
  1807. b9 = Instance.new("SpecialMesh", p10)
  1808. b9.MeshType = Enum.MeshType.Sphere
  1809. b9.Name = "Mesh"
  1810. p11 = Instance.new("Part", m)
  1811. p11.BrickColor = BrickColor.new("Institutional white")
  1812. p11.Material = Enum.Material.Neon
  1813. p11.FormFactor = Enum.FormFactor.Custom
  1814. p11.Size = Vector3.new(0.200000048, 1.79999983, 0.200000048)
  1815. p11.CFrame = CFrame.new(69.693718, 7.37976837, -14.2265854, 0.690841019, -0.711695194, -0.129447505, 0.678571701, 0.699464202, -0.224133074, 0.250056893, 0.0670053288, 0.966144204)
  1816. p11.CanCollide = false
  1817. p11.Locked = true
  1818. p11.BottomSurface = Enum.SurfaceType.Smooth
  1819. p11.TopSurface = Enum.SurfaceType.Smooth
  1820. p12 = Instance.new("Part", m)
  1821. p12.BrickColor = BrickColor.new("Institutional white")
  1822. p12.Material = Enum.Material.Neon
  1823. p12.FormFactor = Enum.FormFactor.Custom
  1824. p12.Size = Vector3.new(0.200000048, 1.5999999, 0.200000048)
  1825. p12.CFrame = CFrame.new(69.47966, 8.73308277, -14.2467909, 0.176576898, -0.984305978, 0.022559464, 0.951990068, 0.164877579, -0.257825077, 0.25006038, 0.0670051575, 0.966151059)
  1826. p12.CanCollide = false
  1827. p12.Locked = true
  1828. p12.BottomSurface = Enum.SurfaceType.Smooth
  1829. p12.TopSurface = Enum.SurfaceType.Smooth
  1830. p13 = Instance.new("Part", m)
  1831. p13.BrickColor = BrickColor.new("Institutional white")
  1832. p13.Material = Enum.Material.Neon
  1833. p13.FormFactor = Enum.FormFactor.Custom
  1834. p13.Size = Vector3.new(1.5, 1.5, 1.5)
  1835. p13.CFrame = CFrame.new(69.3920746, 10.1993351, -13.2118578, 1.00028241, 1.27716921e-005, -1.06170774e-006, -1.99186616e-005, 0.999970496, 2.39908695e-006, -1.93528831e-006, 2.38418579e-006, 1.00024128)
  1836. p13.CanCollide = false
  1837. p13.Locked = true
  1838. p13.BottomSurface = Enum.SurfaceType.Smooth
  1839. p13.TopSurface = Enum.SurfaceType.Smooth
  1840. b10 = Instance.new("SpecialMesh", p13)
  1841. b10.MeshType = Enum.MeshType.Sphere
  1842. b10.Name = "Mesh"
  1843. p14 = Instance.new("Part", m)
  1844. p14.BrickColor = BrickColor.new("Really black")
  1845. p14.Material = Enum.Material.Metal
  1846. p14.Name = "Main"
  1847. p14.FormFactor = Enum.FormFactor.Custom
  1848. p14.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  1849. p14.CFrame = CFrame.new(69.4298401, 8.19937706, -13.1668339, 1.00029147, 1.25630004e-005, -1.16605349e-006, -2.0008245e-005, 0.999969125, 2.41400744e-006, -2.03963987e-006, 2.39908786e-006, 1.00024867)
  1850. p14.CanCollide = false
  1851. p14.Locked = true
  1852. p14.BottomSurface = Enum.SurfaceType.Smooth
  1853. p14.TopSurface = Enum.SurfaceType.Smooth
  1854. p15 = Instance.new("Part", m)
  1855. p15.BrickColor = BrickColor.new("Really black")
  1856. p15.Material = Enum.Material.Neon
  1857. p15.FormFactor = Enum.FormFactor.Custom
  1858. p15.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1859. p15.CFrame = CFrame.new(69.1303406, 7.89936399, -14.2672224, 1.00030053, 1.24437429e-005, -1.24804228e-006, -2.02170359e-005, 0.999968052, 2.45872889e-006, -2.07692119e-006, 2.48851507e-006, 1.00025606)
  1860. p15.CanCollide = false
  1861. p15.Locked = true
  1862. p15.BottomSurface = Enum.SurfaceType.Smooth
  1863. p15.TopSurface = Enum.SurfaceType.Smooth
  1864. b11 = Instance.new("SpecialMesh", p15)
  1865. b11.MeshType = Enum.MeshType.Sphere
  1866. b11.Name = "Mesh"
  1867. p16 = Instance.new("Part", m)
  1868. p16.BrickColor = BrickColor.new("Institutional white")
  1869. p16.Material = Enum.Material.Neon
  1870. p16.FormFactor = Enum.FormFactor.Custom
  1871. p16.Size = Vector3.new(0.200000048, 0.899999857, 0.200000048)
  1872. p16.CFrame = CFrame.new(68.9101486, 8.4345789, -14.2572756, 0.881372392, -0.429496199, -0.198331535, 0.401431859, 0.900618315, -0.166353673, 0.250065029, 0.0670081601, 0.966180325)
  1873. p16.CanCollide = false
  1874. p16.Locked = true
  1875. p16.BottomSurface = Enum.SurfaceType.Smooth
  1876. p16.TopSurface = Enum.SurfaceType.Smooth
  1877. p17 = Instance.new("Part", m)
  1878. p17.BrickColor = BrickColor.new("Institutional white")
  1879. p17.Material = Enum.Material.Neon
  1880. p17.FormFactor = Enum.FormFactor.Custom
  1881. p17.Size = Vector3.new(0.200000048, 0.599999785, 0.200000048)
  1882. p17.CFrame = CFrame.new(68.8972092, 7.71862125, -14.2674294, -0.70732069, -0.707330942, -1.25169754e-006, 0.707094371, -0.707072854, 2.48849392e-006, 3.42912972e-006, -4.32133675e-007, 1.00026357)
  1883. p17.CanCollide = false
  1884. p17.Locked = true
  1885. p17.BottomSurface = Enum.SurfaceType.Smooth
  1886. p17.TopSurface = Enum.SurfaceType.Smooth
  1887. p18 = Instance.new("Part", m)
  1888. p18.BrickColor = BrickColor.new("Really black")
  1889. p18.Material = Enum.Material.Neon
  1890. p18.FormFactor = Enum.FormFactor.Custom
  1891. p18.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1892. p18.CFrame = CFrame.new(68.6320877, 8.89929676, -14.2675419, 1.000319, 7.09295273e-006, -1.29642399e-006, -1.53779984e-005, 0.999966145, 2.53321537e-006, -2.20864695e-006, 2.76013293e-006, 1.00027096)
  1893. p18.CanCollide = false
  1894. p18.Locked = true
  1895. p18.BottomSurface = Enum.SurfaceType.Smooth
  1896. p18.TopSurface = Enum.SurfaceType.Smooth
  1897. b12 = Instance.new("SpecialMesh", p18)
  1898. b12.MeshType = Enum.MeshType.Sphere
  1899. b12.Name = "Mesh"
  1900. p19 = Instance.new("Part", m)
  1901. p19.BrickColor = BrickColor.new("Really black")
  1902. p19.Material = Enum.Material.Neon
  1903. p19.FormFactor = Enum.FormFactor.Custom
  1904. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  1905. p19.CFrame = CFrame.new(68.6320801, 7.49934578, -14.2675457, 1.00032365, 7.02587113e-006, -1.41567671e-006, -1.53780693e-005, 0.999965429, 2.48852461e-006, -2.20865695e-006, 2.76013111e-006, 1.00027466)
  1906. p19.CanCollide = false
  1907. p19.Locked = true
  1908. p19.BottomSurface = Enum.SurfaceType.Smooth
  1909. p19.TopSurface = Enum.SurfaceType.Smooth
  1910. b13 = Instance.new("SpecialMesh", p19)
  1911. b13.MeshType = Enum.MeshType.Sphere
  1912. b13.Name = "Mesh"
  1913. w1 = Instance.new("Weld", p1)
  1914. w1.Name = "Wedge_Weld"
  1915. w1.Part0 = p1
  1916. w1.C0 = CFrame.new(-13.7623348, 36.7341995, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.9372038e-008)
  1917. w1.Part1 = p2
  1918. w1.C1 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1919. w2 = Instance.new("Weld", p2)
  1920. w2.Name = "Wedge_Weld"
  1921. w2.Part0 = p2
  1922. w2.C0 = CFrame.new(-12.5623264, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720344e-008)
  1923. w2.Part1 = p3
  1924. w2.C1 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1925. w3 = Instance.new("Weld", p3)
  1926. w3.Name = "Wedge_Weld"
  1927. w3.Part0 = p3
  1928. w3.C0 = CFrame.new(-13.1623297, 36.7342033, 62.0193214, 9.89621753e-008, 1.14119814e-007, -1.0000037, -0.422620028, -0.90630722, -1.14673988e-007, -0.906311929, 0.422617972, 5.93720415e-008)
  1929. w3.Part1 = p4
  1930. w3.C1 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1931. w4 = Instance.new("Weld", p4)
  1932. w4.Name = "Wedge_Weld"
  1933. w4.Part0 = p4
  1934. w4.C0 = CFrame.new(13.7623348, -55.015049, 45.9640198, -9.79639907e-008, 4.26051052e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756872e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1935. w4.Part1 = p5
  1936. w4.C1 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1937. w5 = Instance.new("Weld", p5)
  1938. w5.Name = "Wedge_Weld"
  1939. w5.Part0 = p5
  1940. w5.C0 = CFrame.new(13.1623316, -55.0150452, 45.964016, -9.79639907e-008, 4.26051088e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756837e-008, -0.707109869, 0.707106531, -1.51036286e-008)
  1941. w5.Part1 = p6
  1942. w5.C1 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1943. w6 = Instance.new("Weld", p6)
  1944. w6.Name = "Part_Weld"
  1945. w6.Part0 = p6
  1946. w6.C0 = CFrame.new(12.5623283, -55.0150337, 45.9640045, -9.79639836e-008, 4.2605091e-008, 1.0000037, 0.707110107, 0.707106173, -2.40756819e-008, -0.707109869, 0.707106531, -1.51036659e-008)
  1947. w6.Part1 = p7
  1948. w6.C1 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1949. w7 = Instance.new("Weld", p7)
  1950. w7.Name = "Part_Weld"
  1951. w7.Part0 = p7
  1952. w7.C0 = CFrame.new(-70.3026047, -4.700037, 14.2622862, 1, -1.41560378e-007, 4.47034942e-008, 1.41560378e-007, 1, -7.45055218e-008, -4.47034836e-008, 7.45055289e-008, 1)
  1953. w7.Part1 = p8
  1954. w7.C1 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1955. w8 = Instance.new("Weld", p8)
  1956. w8.Name = "Part_Weld"
  1957. w8.Part0 = p8
  1958. w8.C0 = CFrame.new(-60.9718094, 24.5524559, 28.8434105, 0.881098926, 0.40146178, 0.250000894, -0.429376036, 0.900638521, 0.0669875294, -0.198267892, -0.166365504, 0.965929449)
  1959. w8.Part1 = p9
  1960. w8.C1 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1961. w9 = Instance.new("Weld", p9)
  1962. w9.Name = "Part_Weld"
  1963. w9.Part0 = p9
  1964. w9.C0 = CFrame.new(-70.2029343, -6.60003233, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1965. w9.Part1 = p10
  1966. w9.C1 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1967. w10 = Instance.new("Weld", p10)
  1968. w10.Name = "Part_Weld"
  1969. w10.Part0 = p10
  1970. w10.C0 = CFrame.new(-69.8029404, -7.60003138, 14.2623386, 1.00000465, -1.78813934e-007, 0, 1.41561031e-007, 0.999999523, 4.47034836e-008, -4.47034836e-008, 7.4505806e-008, 1.0000037)
  1971. w10.Part1 = p11
  1972. w10.C1 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1973. w11 = Instance.new("Weld", p11)
  1974. w11.Name = "Part_Weld"
  1975. w11.Part0 = p11
  1976. w11.C0 = CFrame.new(-48.2122765, 46.7597122, 23.9593029, 0.690653324, 0.678602815, 0.250001013, -0.711519539, 0.699469149, 0.0669875666, -0.129410163, -0.224143714, 0.965929449)
  1977. w11.Part1 = p12
  1978. w11.C1 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1979. w12 = Instance.new("Weld", p12)
  1980. w12.Name = "Part_Weld"
  1981. w12.Part0 = p12
  1982. w12.C0 = CFrame.new(-15.1098747, 68.1893845, 13.9264202, 0.176517636, 0.952019334, 0.250000954, -0.984043717, 0.164862752, 0.0669875368, 0.0225575883, -0.257833987, 0.965929389)
  1983. w12.Part1 = p13
  1984. w12.C1 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1985. w13 = Instance.new("Weld", p13)
  1986. w13.Name = "Part_Weld"
  1987. w13.Part0 = p13
  1988. w13.C0 = CFrame.new(-69.3658066, -8.20003605, 13.2074509, 1.00000453, -2.98023224e-007, -3.72529421e-008, 1.49011612e-007, 0.999999285, -1.49011443e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1989. w13.Part1 = p14
  1990. w13.C1 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1991. w14 = Instance.new("Weld", p14)
  1992. w14.Name = "Part_Weld"
  1993. w14.Part0 = p14
  1994. w14.C0 = CFrame.new(-69.4029617, -6.2000351, 13.1623278, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  1995. w14.Part1 = p15
  1996. w14.C1 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  1997. w15 = Instance.new("Weld", p15)
  1998. w15.Name = "Part_Weld"
  1999. w15.Part0 = p15
  2000. w15.C0 = CFrame.new(-69.1029282, -5.90003109, 14.2623358, 1.00000453, -2.98023224e-007, 2.98023188e-008, 1.1920929e-007, 0.999999583, 5.96046412e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2001. w15.Part1 = p16
  2002. w15.C1 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  2003. w16 = Instance.new("Weld", p16)
  2004. w16.Name = "Part_Weld"
  2005. w16.Part0 = p16
  2006. w16.C0 = CFrame.new(-59.7121582, 24.7350845, 28.4943123, 0.881098986, 0.401461899, 0.250000954, -0.429376066, 0.90063864, 0.0669875517, -0.198267847, -0.166365474, 0.965929389)
  2007. w16.Part1 = p17
  2008. w16.C1 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2009. w17 = Instance.new("Weld", p17)
  2010. w17.Name = "Part_Weld"
  2011. w17.Part0 = p17
  2012. w17.C0 = CFrame.new(44.6532936, 52.7416191, 14.2623348, -0.707109928, 0.707106709, 2.10734257e-008, -0.707110047, -0.707106292, -6.32202699e-008, -4.47034836e-008, 5.96046448e-008, 1.0000037)
  2013. w17.Part1 = p18
  2014. w17.C1 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  2015. w18 = Instance.new("Weld", p18)
  2016. w18.Name = "Part_Weld"
  2017. w18.Part0 = p18
  2018. w18.C0 = CFrame.new(-68.6029282, -6.90003586, 14.2623405, 1.00000465, -2.30967999e-007, -4.47034836e-008, 1.63912773e-007, 0.999999285, -2.98023224e-008, -7.4505806e-008, -1.49011612e-008, 1.0000037)
  2019. w18.Part1 = p19
  2020. w18.C1 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2021. w19 = Instance.new("Weld", p19)
  2022. w19.Name = "Wedge_Weld"
  2023. w19.Part0 = p19
  2024. w19.C0 = CFrame.new(-68.6026077, -5.50004053, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2025. m.Parent = rarm
  2026. m:MakeJoints()
  2027. ----------------------------------------------------
  2028. local cor4 = Instance.new("Part", rarm.RightArm)
  2029. cor4.Name = "Thingy"
  2030. cor4.Locked = true
  2031. cor4.BottomSurface = 0
  2032. cor4.CanCollide = false
  2033. cor4.Size = Vector3.new(2, 1, 1)
  2034. cor4.Transparency = 1
  2035. cor4.TopSurface = 0
  2036. corw2 = Instance.new("Weld", cor4)
  2037. corw2.Part0 = rarm
  2038. corw2.Part1 = cor4
  2039. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2040. corw2.C1 = CFrame.new(0, 0, 0)
  2041. weld2 = Instance.new("Weld", rarm.RightArm)
  2042. weld2.Part0 = cor4
  2043. weld2.Part1 = p14
  2044. weld2.C0 = CFrame.new(0, 0, 0)
  2045. ----------------------------------------------------
  2046. local m = Instance.new("Model")
  2047. m.Name = "Torso"
  2048. p1 = Instance.new("Part", m)
  2049. p1.BrickColor = BrickColor.new("Really black")
  2050. p1.Material = Enum.Material.Neon
  2051. p1.FormFactor = Enum.FormFactor.Custom
  2052. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2053. p1.CFrame = CFrame.new(67.3119202, 9.5997963, -14.263937, 1.00006402, 1.86259939e-007, 2.23464554e-008, -1.44914884e-006, 0.999991, -1.49014099e-008, -1.51248571e-006, 5.96053269e-008, 1.00005186)
  2054. p1.CanCollide = false
  2055. p1.Locked = true
  2056. p1.BottomSurface = Enum.SurfaceType.Smooth
  2057. p1.TopSurface = Enum.SurfaceType.Smooth
  2058. b1 = Instance.new("SpecialMesh", p1)
  2059. b1.MeshType = Enum.MeshType.Sphere
  2060. b1.Name = "Mesh"
  2061. p2 = Instance.new("Part", m)
  2062. p2.BrickColor = BrickColor.new("Really black")
  2063. p2.Material = Enum.Material.Neon
  2064. p2.FormFactor = Enum.FormFactor.Custom
  2065. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2066. p2.CFrame = CFrame.new(65.0111618, 9.59981537, -14.2638226, 1.00005496, 2.75671482e-007, 1.2665987e-007, -1.35973096e-006, 0.999992192, -2.98023224e-008, -1.40815973e-006, 4.47034836e-008, 1.00004447)
  2067. p2.CanCollide = false
  2068. p2.Locked = true
  2069. p2.BottomSurface = Enum.SurfaceType.Smooth
  2070. p2.TopSurface = Enum.SurfaceType.Smooth
  2071. b2 = Instance.new("SpecialMesh", p2)
  2072. b2.MeshType = Enum.MeshType.Sphere
  2073. b2.Name = "Mesh"
  2074. p3 = Instance.new("Part", m)
  2075. p3.BrickColor = BrickColor.new("Institutional white")
  2076. p3.Material = Enum.Material.Neon
  2077. p3.FormFactor = Enum.FormFactor.Custom
  2078. p3.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2079. p3.CFrame = CFrame.new(67.6028595, 9.39744663, -14.2168236, 0.491504252, -0.868347466, -0.0669902489, 0.834227681, 0.491479307, -0.249998316, 0.250008702, 0.0669909269, 0.965961695)
  2080. p3.CanCollide = false
  2081. p3.Locked = true
  2082. p3.BottomSurface = Enum.SurfaceType.Smooth
  2083. p3.TopSurface = Enum.SurfaceType.Smooth
  2084. p4 = Instance.new("Part", m)
  2085. p4.BrickColor = BrickColor.new("Institutional white")
  2086. p4.Material = Enum.Material.Neon
  2087. p4.FormFactor = Enum.FormFactor.Custom
  2088. p4.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2089. p4.CFrame = CFrame.new(64.6849442, 9.10655022, -14.2635975, 0.866056859, 0.500018656, 3.35280106e-007, -0.49999845, 0.866020203, -2.98035943e-008, -1.06866298e-006, -5.48167122e-007, 1.00002968)
  2090. p4.CanCollide = false
  2091. p4.Locked = true
  2092. p4.BottomSurface = Enum.SurfaceType.Smooth
  2093. p4.TopSurface = Enum.SurfaceType.Smooth
  2094. p5 = Instance.new("Part", m)
  2095. p5.BrickColor = BrickColor.new("Institutional white")
  2096. p5.Material = Enum.Material.Neon
  2097. p5.FormFactor = Enum.FormFactor.Custom
  2098. p5.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2099. p5.CFrame = CFrame.new(66.9344177, 8.96636868, -14.2634897, -0.866048932, -0.500014246, 4.3958832e-007, 0.499999046, -0.866021395, -4.47044108e-008, 9.70867745e-007, 5.08911796e-007, 1.00002229)
  2100. p5.CanCollide = false
  2101. p5.Locked = true
  2102. p5.BottomSurface = Enum.SurfaceType.Smooth
  2103. p5.TopSurface = Enum.SurfaceType.Smooth
  2104. p6 = Instance.new("Part", m)
  2105. p6.BrickColor = BrickColor.new("Institutional white")
  2106. p6.Material = Enum.Material.Neon
  2107. p6.FormFactor = Enum.FormFactor.Custom
  2108. p6.Size = Vector3.new(0.200000048, 1.29999983, 0.200000048)
  2109. p6.CFrame = CFrame.new(65.358757, 9.04366112, -14.2633762, -0.866041601, 0.500008702, 5.43894771e-007, -0.499997824, -0.8660236, -5.96051208e-008, 8.43271948e-007, -5.21275751e-007, 1.0000149)
  2110. p6.CanCollide = false
  2111. p6.Locked = true
  2112. p6.BottomSurface = Enum.SurfaceType.Smooth
  2113. p6.TopSurface = Enum.SurfaceType.Smooth
  2114. p7 = Instance.new("Part", m)
  2115. p7.BrickColor = BrickColor.new("Really black")
  2116. p7.Material = Enum.Material.Neon
  2117. p7.FormFactor = Enum.FormFactor.Custom
  2118. p7.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2119. p7.CFrame = CFrame.new(68.0082169, 9.19989014, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308121e-007, -8.7916851e-007, 5.96046519e-008, 1.00001121)
  2120. p7.CanCollide = false
  2121. p7.Locked = true
  2122. p7.BottomSurface = Enum.SurfaceType.Smooth
  2123. p7.TopSurface = Enum.SurfaceType.Smooth
  2124. b3 = Instance.new("SpecialMesh", p7)
  2125. b3.MeshType = Enum.MeshType.Sphere
  2126. b3.Name = "Mesh"
  2127. p8 = Instance.new("Part", m)
  2128. p8.BrickColor = BrickColor.new("Really black")
  2129. p8.Material = Enum.Material.Neon
  2130. p8.FormFactor = Enum.FormFactor.Custom
  2131. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2132. p8.CFrame = CFrame.new(64.4081497, 8.59989357, -14.2632627, 1.00001383, 5.32715489e-007, 5.6624458e-007, -8.4191629e-007, 0.999997973, -2.980277e-008, -9.08971174e-007, -1.4901623e-008, 1.00001121)
  2133. p8.CanCollide = false
  2134. p8.Locked = true
  2135. p8.BottomSurface = Enum.SurfaceType.Smooth
  2136. p8.TopSurface = Enum.SurfaceType.Smooth
  2137. b4 = Instance.new("SpecialMesh", p8)
  2138. b4.MeshType = Enum.MeshType.Sphere
  2139. b4.Name = "Mesh"
  2140. p9 = Instance.new("Part", m)
  2141. p9.BrickColor = BrickColor.new("Really black")
  2142. p9.Material = Enum.Material.Neon
  2143. p9.FormFactor = Enum.FormFactor.Custom
  2144. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2145. p9.CFrame = CFrame.new(67.8082123, 8.49989128, -14.2632694, 1.00001383, 6.37024641e-007, 5.36441803e-007, -9.46223736e-007, 0.999997973, -1.04308128e-007, -8.7916851e-007, 5.96046448e-008, 1.00001121)
  2146. p9.CanCollide = false
  2147. p9.Locked = true
  2148. p9.BottomSurface = Enum.SurfaceType.Smooth
  2149. p9.TopSurface = Enum.SurfaceType.Smooth
  2150. b5 = Instance.new("SpecialMesh", p9)
  2151. b5.MeshType = Enum.MeshType.Sphere
  2152. b5.Name = "Mesh"
  2153. p10 = Instance.new("Part", m)
  2154. p10.BrickColor = BrickColor.new("Institutional white")
  2155. p10.Material = Enum.Material.Neon
  2156. p10.FormFactor = Enum.FormFactor.Custom
  2157. p10.Size = Vector3.new(0.200000048, 0.999999821, 0.200000048)
  2158. p10.CFrame = CFrame.new(67.3000946, 8.34052181, -14.1962805, -0.323144197, -0.934642911, 0.148454338, 0.912730813, -0.349243045, -0.212012067, 0.250002205, 0.0669885725, 0.965932906)
  2159. p10.CanCollide = false
  2160. p10.Locked = true
  2161. p10.BottomSurface = Enum.SurfaceType.Smooth
  2162. p10.TopSurface = Enum.SurfaceType.Smooth
  2163. p11 = Instance.new("Part", m)
  2164. p11.BrickColor = BrickColor.new("Really black")
  2165. p11.Material = Enum.Material.Metal
  2166. p11.Name = "Main"
  2167. p11.FormFactor = Enum.FormFactor.Custom
  2168. p11.Size = Vector3.new(4.4000001, 4.19999981, 2.20000005)
  2169. p11.CFrame = CFrame.new(66.1075974, 8.19991207, -13.1631384, 1, 7.67355459e-007, 7.5990539e-007, -7.67355459e-007, 1, -2.98022478e-008, -7.5990539e-007, 2.98016651e-008, 1)
  2170. p11.CanCollide = false
  2171. p11.Locked = true
  2172. p11.BottomSurface = Enum.SurfaceType.Smooth
  2173. p11.TopSurface = Enum.SurfaceType.Smooth
  2174. p12 = Instance.new("Part", m)
  2175. p12.BrickColor = BrickColor.new("Really black")
  2176. p12.Material = Enum.Material.Neon
  2177. p12.FormFactor = Enum.FormFactor.Custom
  2178. p12.Size = Vector3.new(3, 3, 2)
  2179. p12.CFrame = CFrame.new(66.1075974, 8.19991302, -13.5631437, 1.00000453, 6.48145658e-007, 6.55599706e-007, -7.97160624e-007, 0.999999344, -1.49012251e-008, -7.5990863e-007, 2.98017362e-008, 1.0000037)
  2180. p12.CanCollide = false
  2181. p12.Locked = true
  2182. p12.BottomSurface = Enum.SurfaceType.Smooth
  2183. p12.TopSurface = Enum.SurfaceType.Smooth
  2184. b6 = Instance.new("SpecialMesh", p12)
  2185. b6.MeshType = Enum.MeshType.Sphere
  2186. b6.Name = "Mesh"
  2187. p13 = Instance.new("Part", m)
  2188. p13.BrickColor = BrickColor.new("Institutional white")
  2189. p13.Material = Enum.Material.Neon
  2190. p13.FormFactor = Enum.FormFactor.Custom
  2191. p13.Size = Vector3.new(0.200000048, 3.79999971, 0.200000048)
  2192. p13.CFrame = CFrame.new(66.1331863, 7.82621098, -12.0632286, 6.04434092e-007, -1.00000906, 6.55602378e-007, 0.999998689, 8.72662156e-007, -1.49012802e-008, 4.47028583e-008, 8.64220965e-007, 1.00000739)
  2193. p13.CanCollide = false
  2194. p13.Locked = true
  2195. p13.BottomSurface = Enum.SurfaceType.Smooth
  2196. p13.TopSurface = Enum.SurfaceType.Smooth
  2197. p14 = Instance.new("Part", m)
  2198. p14.BrickColor = BrickColor.new("Institutional white")
  2199. p14.Material = Enum.Material.Neon
  2200. p14.FormFactor = Enum.FormFactor.Custom
  2201. p14.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2202. p14.CFrame = CFrame.new(65.0837555, 8.11279583, -12.0633221, 0.866040885, 0.500009477, 5.5129766e-007, -0.499999583, 0.866022587, -2.09610107e-013, -8.68580742e-007, -4.3265041e-007, 1.00001478)
  2203. p14.CanCollide = false
  2204. p14.Locked = true
  2205. p14.BottomSurface = Enum.SurfaceType.Smooth
  2206. p14.TopSurface = Enum.SurfaceType.Smooth
  2207. p15 = Instance.new("Part", m)
  2208. p15.BrickColor = BrickColor.new("Institutional white")
  2209. p15.Material = Enum.Material.Neon
  2210. p15.FormFactor = Enum.FormFactor.Custom
  2211. p15.Size = Vector3.new(0.200000048, 3.99999976, 0.200000048)
  2212. p15.CFrame = CFrame.new(67.0844116, 8.11277008, -12.0634222, 0.866049111, -0.500013351, 4.46991237e-007, 0.49999693, 0.866022587, 1.49009658e-008, -8.91868751e-007, 6.00952262e-007, 1.00002217)
  2213. p15.CanCollide = false
  2214. p15.Locked = true
  2215. p15.BottomSurface = Enum.SurfaceType.Smooth
  2216. p15.TopSurface = Enum.SurfaceType.Smooth
  2217. p16 = Instance.new("Part", m)
  2218. p16.BrickColor = BrickColor.new("Institutional white")
  2219. p16.Material = Enum.Material.Neon
  2220. p16.FormFactor = Enum.FormFactor.Custom
  2221. p16.Size = Vector3.new(0.200000048, 1.19999969, 0.200000048)
  2222. p16.CFrame = CFrame.new(65.484314, 7.30655766, -14.2634888, 0.906336308, 0.422632158, 3.49386681e-007, -0.422617853, 0.906302929, 2.46360354e-008, -1.01209048e-006, -3.84037776e-007, 1.00002587)
  2223. p16.CanCollide = false
  2224. p16.Locked = true
  2225. p16.BottomSurface = Enum.SurfaceType.Smooth
  2226. p16.TopSurface = Enum.SurfaceType.Smooth
  2227. p17 = Instance.new("Part", m)
  2228. p17.BrickColor = BrickColor.new("Institutional white")
  2229. p17.Material = Enum.Material.Neon
  2230. p17.FormFactor = Enum.FormFactor.Custom
  2231. p17.Size = Vector3.new(0.200000048, 1.89999986, 0.200000048)
  2232. p17.CFrame = CFrame.new(67.1100159, 7.10342312, -14.2635927, 0.866056919, -0.50001812, 3.65035532e-007, 0.499996245, 0.866021872, 5.96044032e-008, -8.79435504e-007, 6.97014912e-007, 1.00002956)
  2233. p17.CanCollide = false
  2234. p17.Locked = true
  2235. p17.BottomSurface = Enum.SurfaceType.Smooth
  2236. p17.TopSurface = Enum.SurfaceType.Smooth
  2237. p18 = Instance.new("Part", m)
  2238. p18.BrickColor = BrickColor.new("Institutional white")
  2239. p18.Material = Enum.Material.Neon
  2240. p18.FormFactor = Enum.FormFactor.Custom
  2241. p18.Size = Vector3.new(0.200000048, 1.19999981, 0.200000048)
  2242. p18.CFrame = CFrame.new(65.6104889, 7.05342484, -14.2637053, -0.707138717, -0.707138956, 3.36865924e-007, 0.707104087, -0.707101464, 1.4901164e-007, 9.95719802e-007, 5.95316749e-007, 1.00003707)
  2243. p18.CanCollide = false
  2244. p18.Locked = true
  2245. p18.BottomSurface = Enum.SurfaceType.Smooth
  2246. p18.TopSurface = Enum.SurfaceType.Smooth
  2247. p19 = Instance.new("Part", m)
  2248. p19.BrickColor = BrickColor.new("Really black")
  2249. p19.Material = Enum.Material.Neon
  2250. p19.FormFactor = Enum.FormFactor.Custom
  2251. p19.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2252. p19.CFrame = CFrame.new(65.2110596, 6.69982004, -14.2638168, 1.00005388, -1.78813906e-007, 3.08695888e-007, -1.7285347e-006, 0.999993682, 2.38419489e-007, -1.15321473e-006, 3.72538381e-007, 1.0000447)
  2253. p19.CanCollide = false
  2254. p19.Locked = true
  2255. p19.BottomSurface = Enum.SurfaceType.Smooth
  2256. p19.TopSurface = Enum.SurfaceType.Smooth
  2257. b7 = Instance.new("SpecialMesh", p19)
  2258. b7.MeshType = Enum.MeshType.Sphere
  2259. b7.Name = "Mesh"
  2260. p20 = Instance.new("Part", m)
  2261. p20.BrickColor = BrickColor.new("Really black")
  2262. p20.Material = Enum.Material.Neon
  2263. p20.FormFactor = Enum.FormFactor.Custom
  2264. p20.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2265. p20.CFrame = CFrame.new(66.7116928, 6.49980783, -14.2639294, 1.00006235, -2.98028993e-007, 2.80525398e-007, -1.8477574e-006, 0.999992907, 3.27827962e-007, -1.18139712e-006, 4.61949412e-007, 1.00005233)
  2266. p20.CanCollide = false
  2267. p20.Locked = true
  2268. p20.BottomSurface = Enum.SurfaceType.Smooth
  2269. p20.TopSurface = Enum.SurfaceType.Smooth
  2270. b8 = Instance.new("SpecialMesh", p20)
  2271. b8.MeshType = Enum.MeshType.Sphere
  2272. b8.Name = "Mesh"
  2273. p21 = Instance.new("Part", m)
  2274. p21.BrickColor = BrickColor.new("Institutional white")
  2275. p21.Material = Enum.Material.Neon
  2276. p21.FormFactor = Enum.FormFactor.Custom
  2277. p21.Size = Vector3.new(0.200000048, 0.799999893, 0.200000048)
  2278. p21.CFrame = CFrame.new(67.0623169, 6.40337944, -14.264039, 0.258836836, -0.965994418, 2.52354425e-007, 0.965917706, 0.258818805, 4.17237061e-007, 2.19511691e-007, 1.31106742e-006, 1.00005996)
  2279. p21.CanCollide = false
  2280. p21.Locked = true
  2281. p21.BottomSurface = Enum.SurfaceType.Smooth
  2282. p21.TopSurface = Enum.SurfaceType.Smooth
  2283. p22 = Instance.new("Part", m)
  2284. p22.BrickColor = BrickColor.new("Really black")
  2285. p22.Material = Enum.Material.Neon
  2286. p22.FormFactor = Enum.FormFactor.Custom
  2287. p22.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2288. p22.CFrame = CFrame.new(67.5129166, 6.29977846, -14.2641516, 1.00007939, -5.96046448e-007, 2.24182997e-007, -2.14576721e-006, 0.999991298, 5.06646757e-007, -1.23776351e-006, 6.40773351e-007, 1.00006759)
  2289. p22.CanCollide = false
  2290. p22.Locked = true
  2291. p22.BottomSurface = Enum.SurfaceType.Smooth
  2292. p22.TopSurface = Enum.SurfaceType.Smooth
  2293. b9 = Instance.new("SpecialMesh", p22)
  2294. b9.MeshType = Enum.MeshType.Sphere
  2295. b9.Name = "Mesh"
  2296. w1 = Instance.new("Weld", p1)
  2297. w1.Name = "Part_Weld"
  2298. w1.Part0 = p1
  2299. w1.C0 = CFrame.new(-67.3029404, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2300. w1.Part1 = p2
  2301. w1.C1 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2302. w2 = Instance.new("Weld", p2)
  2303. w2.Name = "Part_Weld"
  2304. w2.Part0 = p2
  2305. w2.C0 = CFrame.new(-65.0029221, -7.60003757, 14.2623367, 1.00000453, -2.08616257e-007, -3.72529385e-008, 1.1920929e-007, 0.999999404, -1.49011452e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2306. w2.Part1 = p3
  2307. w2.C1 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2308. w3 = Instance.new("Weld", p3)
  2309. w3.Name = "Part_Weld"
  2310. w3.Part0 = p3
  2311. w3.C0 = CFrame.new(-35.8392487, 56.0098076, 20.1084957, 0.491483778, 0.834233105, 0.250000894, -0.868311942, 0.491481245, 0.0669875443, -0.0669877231, -0.249999821, 0.965929389)
  2312. w3.Part1 = p4
  2313. w3.C1 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2314. w4 = Instance.new("Weld", p4)
  2315. w4.Name = "Part_Weld"
  2316. w4.Part0 = p4
  2317. w4.C0 = CFrame.new(-52.459343, -38.4935722, 14.2623358, 0.866029263, -0.499999881, -2.48114169e-008, 0.500002384, 0.866024733, -3.15312398e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2318. w4.Part1 = p5
  2319. w4.C1 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2320. w5 = Instance.new("Weld", p5)
  2321. w5.Name = "Part_Weld"
  2322. w5.Part0 = p5
  2323. w5.C0 = CFrame.new(54.4780006, 39.4971619, 14.2623367, -0.866029263, 0.49999994, 2.48113796e-008, -0.500002444, -0.866024733, 3.15312398e-008, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2324. w5.Part1 = p6
  2325. w5.C1 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2326. w6 = Instance.new("Weld", p6)
  2327. w6.Name = "Part_Weld"
  2328. w6.Part0 = p6
  2329. w6.C0 = CFrame.new(60.1191711, -26.5763226, 14.2623367, -0.866029382, -0.499999493, 3.9712539e-008, 0.500002205, -0.866024911, -5.72166936e-009, -6.70552254e-008, 2.98023224e-008, 1.0000037)
  2330. w6.Part1 = p7
  2331. w6.C1 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2332. w7 = Instance.new("Weld", p7)
  2333. w7.Name = "Part_Weld"
  2334. w7.Part0 = p7
  2335. w7.C0 = CFrame.new(-68.0026093, -7.20003986, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2336. w7.Part1 = p8
  2337. w7.C1 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2338. w8 = Instance.new("Weld", p8)
  2339. w8.Name = "Part_Weld"
  2340. w8.Part0 = p8
  2341. w8.C0 = CFrame.new(-64.4025955, -6.60003376, 14.2622824, 1, -5.96043641e-008, 4.47034836e-008, 5.96043677e-008, 1, -5.9604421e-008, -4.470348e-008, 5.96044245e-008, 1)
  2342. w8.Part1 = p9
  2343. w8.C1 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2344. w9 = Instance.new("Weld", p9)
  2345. w9.Name = "Part_Weld"
  2346. w9.Part0 = p9
  2347. w9.C0 = CFrame.new(-67.8026123, -6.50004005, 14.2622881, 1, -1.63912006e-007, 7.4505806e-008, 1.63912006e-007, 1, 1.49011186e-008, -7.4505806e-008, -1.49011061e-008, 1)
  2348. w9.Part1 = p10
  2349. w9.C1 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2350. w10 = Instance.new("Weld", p10)
  2351. w10.Name = "Main_Weld"
  2352. w10.Part0 = p10
  2353. w10.C0 = CFrame.new(19.5072937, 66.0613785, 5.0658741, -0.323143423, 0.912731171, 0.250000954, -0.93463856, -0.349243909, 0.0669875741, 0.148453087, -0.212012053, 0.965929449)
  2354. w10.Part1 = p11
  2355. w10.C1 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2356. w11 = Instance.new("Weld", p11)
  2357. w11.Name = "Part_Weld"
  2358. w11.Part0 = p11
  2359. w11.C0 = CFrame.new(-66.1029282, -6.20003605, 13.1623268, 1.00000453, -2.38418579e-007, -3.72529456e-008, 8.94069672e-008, 0.999999344, -1.49011452e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2360. w11.Part1 = p12
  2361. w11.C1 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2362. w12 = Instance.new("Weld", p12)
  2363. w12.Name = "Part_Weld"
  2364. w12.Part0 = p12
  2365. w12.C0 = CFrame.new(-66.1026306, -6.20004368, 13.5622816, 1, -1.1920875e-007, 6.70552325e-008, 1.1920875e-007, 1, -2.98022158e-008, -6.70552325e-008, 2.98022229e-008, 1)
  2366. w12.Part1 = p13
  2367. w12.C1 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2368. w13 = Instance.new("Weld", p13)
  2369. w13.Name = "Part_Weld"
  2370. w13.Part0 = p13
  2371. w13.C0 = CFrame.new(-5.82635021, 66.1279221, 12.0623207, 7.54977023e-008, 0.999999344, -1.49011434e-008, -1.00000453, 1.94707212e-007, 3.72529385e-008, -6.70552325e-008, 2.9802333e-008, 1.0000037)
  2372. w13.Part1 = p14
  2373. w13.C1 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2374. w14 = Instance.new("Weld", p14)
  2375. w14.Name = "Part_Weld"
  2376. w14.Part0 = p14
  2377. w14.C0 = CFrame.new(-53.3026466, -37.8329315, 12.0623188, 0.866029263, -0.499999881, -2.4811424e-008, 0.500002325, 0.866024673, -3.15312434e-008, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2378. w14.Part1 = p15
  2379. w14.C1 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2380. w15 = Instance.new("Weld", p15)
  2381. w15.Name = "Part_Weld"
  2382. w15.Part0 = p15
  2383. w15.C0 = CFrame.new(-61.1476631, 28.2449875, 12.0623198, 0.866029382, 0.499999404, -3.97125675e-008, -0.500002146, 0.866024971, 5.72170222e-009, -6.70552396e-008, 2.9802333e-008, 1.0000037)
  2384. w15.Part1 = p16
  2385. w15.C1 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2386. w16 = Instance.new("Weld", p16)
  2387. w16.Name = "Part_Weld"
  2388. w16.Part0 = p16
  2389. w16.C0 = CFrame.new(-57.1000977, -32.4815826, 14.2622862, 0.906307578, -0.422618747, 6.51076419e-008, 0.422618747, 0.906307578, 3.17729842e-009, -6.0350331e-008, 2.46360994e-008, 1)
  2390. w16.Part1 = p17
  2391. w16.C1 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2392. w17 = Instance.new("Weld", p17)
  2393. w17.Name = "Part_Weld"
  2394. w17.Part0 = p17
  2395. w17.C0 = CFrame.new(-60.6646385, 29.1315918, 14.2623339, 0.866029501, 0.499999583, 5.5611892e-008, -0.500002265, 0.866025209, 3.67179815e-008, -4.470348e-008, 5.96046448e-008, 1.0000037)
  2396. w17.Part1 = p18
  2397. w17.C1 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2398. w18 = Instance.new("Weld", p18)
  2399. w18.Name = "Part_Weld"
  2400. w18.Part0 = p18
  2401. w18.C0 = CFrame.new(42.8147545, 49.9616852, 14.2623405, -0.707109571, 0.707106829, 2.10734417e-008, -0.707110047, -0.707106233, -6.32202557e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2402. w18.Part1 = p19
  2403. w18.C1 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2404. w19 = Instance.new("Weld", p19)
  2405. w19.Name = "Part_Weld"
  2406. w19.Part0 = p19
  2407. w19.C0 = CFrame.new(-65.2028809, -4.70003223, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2408. w19.Part1 = p20
  2409. w19.C1 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2410. w20 = Instance.new("Weld", p20)
  2411. w20.Name = "Part_Weld"
  2412. w20.Part0 = p20
  2413. w20.C0 = CFrame.new(-66.7028656, -4.50003386, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2414. w20.Part1 = p21
  2415. w20.C1 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2416. w21 = Instance.new("Weld", p21)
  2417. w21.Name = "Part_Weld"
  2418. w21.Part0 = p21
  2419. w21.C0 = CFrame.new(-21.6081295, 63.6283798, 14.2623405, 0.258820146, 0.965925455, 6.52870682e-008, -0.965930045, 0.258819073, -1.33600135e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2420. w21.Part1 = p22
  2421. w21.C1 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2422. w22 = Instance.new("Weld", p22)
  2423. w22.Name = "Wedge_Weld"
  2424. w22.Part0 = p22
  2425. w22.C0 = CFrame.new(-67.5028763, -4.30003405, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2426. m.Parent = torso
  2427. m:MakeJoints()
  2428. ----------------------------------------------------
  2429. local cor5 = Instance.new("Part", torso.Torso)
  2430. cor5.Name = "Thingy"
  2431. cor5.Locked = true
  2432. cor5.BottomSurface = 0
  2433. cor5.CanCollide = false
  2434. cor5.Size = Vector3.new(2, 1, 1)
  2435. cor5.Transparency = 1
  2436. cor5.TopSurface = 0
  2437. corw2 = Instance.new("Weld", cor5)
  2438. corw2.Part0 = torso
  2439. corw2.Part1 = cor5
  2440. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2441. corw2.C1 = CFrame.new(0, 0, 0)
  2442. weld2 = Instance.new("Weld", torso.Torso)
  2443. weld2.Part0 = cor5
  2444. weld2.Part1 = p11
  2445. weld2.C0 = CFrame.new(0, 0, 0)
  2446. ----------------------------------------------------
  2447. local m = Instance.new("Model")
  2448. m.Name = "RightLeg"
  2449. p1 = Instance.new("Part", m)
  2450. p1.BrickColor = BrickColor.new("Really black")
  2451. p1.Material = Enum.Material.Neon
  2452. p1.FormFactor = Enum.FormFactor.Custom
  2453. p1.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2454. p1.CFrame = CFrame.new(67.2429962, 5.49923229, -14.269578, 1.00045943, -5.51538596e-006, -2.14306033e-006, -7.25689733e-006, 0.999951601, 3.93318305e-006, -2.55180248e-006, 4.05587616e-006, 1.00038624)
  2455. p1.CanCollide = false
  2456. p1.Locked = true
  2457. p1.BottomSurface = Enum.SurfaceType.Smooth
  2458. p1.TopSurface = Enum.SurfaceType.Smooth
  2459. b1 = Instance.new("SpecialMesh", p1)
  2460. b1.MeshType = Enum.MeshType.Sphere
  2461. b1.Name = "Mesh"
  2462. p2 = Instance.new("Part", m)
  2463. p2.BrickColor = BrickColor.new("Really black")
  2464. p2.Material = Enum.Material.Neon
  2465. p2.FormFactor = Enum.FormFactor.Custom
  2466. p2.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2467. p2.CFrame = CFrame.new(67.6437836, 4.79925013, -14.2696915, 1.00046372, -5.51538369e-006, -2.14306829e-006, -7.37613163e-006, 0.999951243, 3.93319806e-006, -2.57999613e-006, 4.14531632e-006, 1.00039005)
  2468. p2.CanCollide = false
  2469. p2.Locked = true
  2470. p2.BottomSurface = Enum.SurfaceType.Smooth
  2471. p2.TopSurface = Enum.SurfaceType.Smooth
  2472. b2 = Instance.new("SpecialMesh", p2)
  2473. b2.MeshType = Enum.MeshType.Sphere
  2474. b2.Name = "Mesh"
  2475. p3 = Instance.new("Part", m)
  2476. p3.BrickColor = BrickColor.new("Institutional white")
  2477. p3.Material = Enum.Material.Neon
  2478. p3.FormFactor = Enum.FormFactor.Custom
  2479. p3.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2480. p3.CFrame = CFrame.new(66.8881302, 5.17327356, -14.2696877, -0.707441688, -0.707433701, -2.14858301e-006, 0.707077265, -0.707066894, 4.0476084e-006, 4.7538756e-006, -1.07312485e-006, 1.00039387)
  2481. p3.CanCollide = false
  2482. p3.Locked = true
  2483. p3.BottomSurface = Enum.SurfaceType.Smooth
  2484. p3.TopSurface = Enum.SurfaceType.Smooth
  2485. p4 = Instance.new("Part", m)
  2486. p4.BrickColor = BrickColor.new("Really black")
  2487. p4.Material = Enum.Material.Neon
  2488. p4.FormFactor = Enum.FormFactor.Custom
  2489. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2490. p4.CFrame = CFrame.new(66.5432739, 4.7992568, -14.2696896, 1.00046802, -5.54323196e-006, -2.17126149e-006, -7.42077827e-006, 0.999950886, 4.02261594e-006, -2.58000705e-006, 4.14531496e-006, 1.00039387)
  2491. p4.CanCollide = false
  2492. p4.Locked = true
  2493. p4.BottomSurface = Enum.SurfaceType.Smooth
  2494. p4.TopSurface = Enum.SurfaceType.Smooth
  2495. b3 = Instance.new("SpecialMesh", p4)
  2496. b3.MeshType = Enum.MeshType.Sphere
  2497. b3.Name = "Mesh"
  2498. p5 = Instance.new("Part", m)
  2499. p5.BrickColor = BrickColor.new("Institutional white")
  2500. p5.Material = Enum.Material.Neon
  2501. p5.FormFactor = Enum.FormFactor.Custom
  2502. p5.Size = Vector3.new(0.200000048, 0.999999762, 0.200000048)
  2503. p5.CFrame = CFrame.new(67.8495178, 4.41932487, -14.269804, -0.906733274, 0.422823101, -2.17126944e-006, -0.422590762, -0.906265974, 4.0226314e-006, 5.74146384e-007, -4.94026517e-006, 1.00039768)
  2504. p5.CanCollide = false
  2505. p5.Locked = true
  2506. p5.BottomSurface = Enum.SurfaceType.Smooth
  2507. p5.TopSurface = Enum.SurfaceType.Smooth
  2508. p6 = Instance.new("Part", m)
  2509. p6.BrickColor = BrickColor.new("Institutional white")
  2510. p6.Material = Enum.Material.Neon
  2511. p6.FormFactor = Enum.FormFactor.Custom
  2512. p6.Size = Vector3.new(0.200000048, 0.799999833, 0.200000048)
  2513. p6.CFrame = CFrame.new(66.5438004, 4.21363878, -14.2698011, 1.00047636, -7.68899918e-006, -2.17678416e-006, -5.51342964e-006, 0.999950111, 4.13704174e-006, -2.63088032e-006, 4.20975539e-006, 1.0004015)
  2514. p6.CanCollide = false
  2515. p6.Locked = true
  2516. p6.BottomSurface = Enum.SurfaceType.Smooth
  2517. p6.TopSurface = Enum.SurfaceType.Smooth
  2518. p7 = Instance.new("Part", m)
  2519. p7.BrickColor = BrickColor.new("Really black")
  2520. p7.Material = Enum.Material.Metal
  2521. p7.Name = "Main"
  2522. p7.FormFactor = Enum.FormFactor.Custom
  2523. p7.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2524. p7.CFrame = CFrame.new(67.2447891, 3.99926972, -13.1694622, 1.00048089, -5.69129634e-006, -2.186149e-006, -7.65911773e-006, 0.999949753, 4.1418657e-006, -2.63640663e-006, 4.32419529e-006, 1.00040531)
  2525. p7.CanCollide = false
  2526. p7.Locked = true
  2527. p7.BottomSurface = Enum.SurfaceType.Smooth
  2528. p7.TopSurface = Enum.SurfaceType.Smooth
  2529. p8 = Instance.new("Part", m)
  2530. p8.BrickColor = BrickColor.new("Institutional white")
  2531. p8.Material = Enum.Material.Neon
  2532. p8.FormFactor = Enum.FormFactor.Custom
  2533. p8.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2534. p8.CFrame = CFrame.new(67.1560593, 4.19274044, -14.2700233, -0.766423643, -0.643097878, -2.21435107e-006, 0.642760634, -0.766000509, 4.23129995e-006, 4.88720252e-006, -1.69966381e-006, 1.00041294)
  2535. p8.CanCollide = false
  2536. p8.Locked = true
  2537. p8.BottomSurface = Enum.SurfaceType.Smooth
  2538. p8.TopSurface = Enum.SurfaceType.Smooth
  2539. p9 = Instance.new("WedgePart", m)
  2540. p9.BrickColor = BrickColor.new("Institutional white")
  2541. p9.Material = Enum.Material.Neon
  2542. p9.Name = "Wedge"
  2543. p9.FormFactor = Enum.FormFactor.Custom
  2544. p9.Size = Vector3.new(1, 1.19999981, 4)
  2545. p9.CFrame = CFrame.new(67.3460693, 3.49928832, -10.7686377, -1.00049889, -4.27957411e-006, 4.5400966e-006, 8.07642937e-006, 0.906259179, -0.422600418, 2.61850914e-006, -0.422791958, -0.906690836)
  2546. p9.CanCollide = false
  2547. p9.Locked = true
  2548. p9.TopSurface = Enum.SurfaceType.Smooth
  2549. b4 = Instance.new("SpecialMesh", p9)
  2550. b4.MeshType = Enum.MeshType.Wedge
  2551. b4.Name = "Mesh"
  2552. b4.Scale = Vector3.new(0.600000024, 1, 1)
  2553. p10 = Instance.new("Part", m)
  2554. p10.BrickColor = BrickColor.new("Really black")
  2555. p10.Material = Enum.Material.Neon
  2556. p10.FormFactor = Enum.FormFactor.Custom
  2557. p10.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2558. p10.CFrame = CFrame.new(68.0469971, 3.99923301, -14.2702446, 1.00050783, -6.09550762e-006, -2.27330474e-006, -8.07715332e-006, 0.999947786, 4.38094139e-006, -2.69438578e-006, 4.64916229e-006, 1.0004282)
  2559. p10.CanCollide = false
  2560. p10.Locked = true
  2561. p10.BottomSurface = Enum.SurfaceType.Smooth
  2562. p10.TopSurface = Enum.SurfaceType.Smooth
  2563. b5 = Instance.new("SpecialMesh", p10)
  2564. b5.MeshType = Enum.MeshType.Sphere
  2565. b5.Name = "Mesh"
  2566. p11 = Instance.new("Part", m)
  2567. p11.BrickColor = BrickColor.new("Really black")
  2568. p11.Material = Enum.Material.Neon
  2569. p11.FormFactor = Enum.FormFactor.Custom
  2570. p11.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2571. p11.CFrame = CFrame.new(66.5467682, 3.59925723, -14.2703533, 1.00051641, -6.21477238e-006, -2.30150818e-006, -8.22622587e-006, 0.999947011, 4.47037792e-006, -2.72259308e-006, 4.73860473e-006, 1.00043583)
  2572. p11.CanCollide = false
  2573. p11.Locked = true
  2574. p11.BottomSurface = Enum.SurfaceType.Smooth
  2575. p11.TopSurface = Enum.SurfaceType.Smooth
  2576. b6 = Instance.new("SpecialMesh", p11)
  2577. b6.MeshType = Enum.MeshType.Sphere
  2578. b6.Name = "Mesh"
  2579. p12 = Instance.new("Part", m)
  2580. p12.BrickColor = BrickColor.new("Institutional white")
  2581. p12.Material = Enum.Material.Neon
  2582. p12.FormFactor = Enum.FormFactor.Custom
  2583. p12.Size = Vector3.new(0.200000048, 1.49999976, 0.200000048)
  2584. p12.CFrame = CFrame.new(67.558609, 3.39274073, -14.2704687, -0.766450763, -0.643119991, -2.33134415e-006, 0.642759323, -0.765998006, 4.5598149e-006, 5.20550884e-006, -1.92419975e-006, 1.00044346)
  2585. p12.CanCollide = false
  2586. p12.Locked = true
  2587. p12.BottomSurface = Enum.SurfaceType.Smooth
  2588. p12.TopSurface = Enum.SurfaceType.Smooth
  2589. p13 = Instance.new("Part", m)
  2590. p13.BrickColor = BrickColor.new("Really black")
  2591. p13.Material = Enum.Material.Neon
  2592. p13.FormFactor = Enum.FormFactor.Custom
  2593. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2594. p13.CFrame = CFrame.new(67.0482101, 2.79927826, -14.2705812, 1.00053358, -6.43730164e-006, -2.36118058e-006, -8.5234642e-006, 0.999945402, 4.64126742e-006, -2.78064022e-006, 4.90151251e-006, 1.00045109)
  2595. p13.CanCollide = false
  2596. p13.Locked = true
  2597. p13.BottomSurface = Enum.SurfaceType.Smooth
  2598. p13.TopSurface = Enum.SurfaceType.Smooth
  2599. b7 = Instance.new("SpecialMesh", p13)
  2600. b7.MeshType = Enum.MeshType.Sphere
  2601. b7.Name = "Mesh"
  2602. p14 = Instance.new("WedgePart", m)
  2603. p14.BrickColor = BrickColor.new("Institutional white")
  2604. p14.Material = Enum.Material.Neon
  2605. p14.Name = "Wedge"
  2606. p14.FormFactor = Enum.FormFactor.Custom
  2607. p14.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2608. p14.CFrame = CFrame.new(66.8462448, 2.3492887, -14.7586241, 1.00054216, -6.55656913e-006, -2.38459074e-006, -8.61293847e-006, 0.999944568, 4.66311894e-006, -2.81690609e-006, 5.04259924e-006, 1.00045872)
  2609. p14.CanCollide = false
  2610. p14.Locked = true
  2611. p14.TopSurface = Enum.SurfaceType.Smooth
  2612. b8 = Instance.new("SpecialMesh", p14)
  2613. b8.MeshType = Enum.MeshType.Wedge
  2614. b8.Name = "Mesh"
  2615. b8.Scale = Vector3.new(0.200000003, 1, 1)
  2616. p15 = Instance.new("WedgePart", m)
  2617. p15.BrickColor = BrickColor.new("Institutional white")
  2618. p15.Material = Enum.Material.Neon
  2619. p15.Name = "Wedge"
  2620. p15.FormFactor = Enum.FormFactor.Custom
  2621. p15.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2622. p15.CFrame = CFrame.new(68.0474777, 2.34926867, -14.7587423, 1.00055075, -6.67583618e-006, -2.41442808e-006, -8.73221416e-006, 0.999943614, 4.74457238e-006, -2.84674707e-006, 5.12405404e-006, 1.00046635)
  2623. p15.CanCollide = false
  2624. p15.Locked = true
  2625. p15.TopSurface = Enum.SurfaceType.Smooth
  2626. b9 = Instance.new("SpecialMesh", p15)
  2627. b9.MeshType = Enum.MeshType.Wedge
  2628. b9.Name = "Mesh"
  2629. b9.Scale = Vector3.new(0.200000003, 1, 1)
  2630. p16 = Instance.new("WedgePart", m)
  2631. p16.BrickColor = BrickColor.new("Institutional white")
  2632. p16.Material = Enum.Material.Neon
  2633. p16.Name = "Wedge"
  2634. p16.FormFactor = Enum.FormFactor.Custom
  2635. p16.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2636. p16.CFrame = CFrame.new(67.4477234, 2.34926438, -14.7588549, 1.00055933, -6.79510413e-006, -2.44426587e-006, -8.85149075e-006, 0.99994266, 4.82602672e-006, -2.8765885e-006, 5.20550975e-006, 1.00047398)
  2637. p16.CanCollide = false
  2638. p16.Locked = true
  2639. p16.TopSurface = Enum.SurfaceType.Smooth
  2640. b10 = Instance.new("SpecialMesh", p16)
  2641. b10.MeshType = Enum.MeshType.Wedge
  2642. b10.Name = "Mesh"
  2643. b10.Scale = Vector3.new(0.200000003, 1, 1)
  2644. w1 = Instance.new("Weld", p1)
  2645. w1.Name = "Part_Weld"
  2646. w1.Part0 = p1
  2647. w1.C0 = CFrame.new(-67.2025909, -3.50003719, 14.2622871, 1, -8.94065977e-008, 5.79734944e-008, 8.94065977e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2648. w1.Part1 = p2
  2649. w1.C1 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2650. w2 = Instance.new("Weld", p2)
  2651. w2.Name = "Part_Weld"
  2652. w2.Part0 = p2
  2653. w2.C0 = CFrame.new(-67.6028976, -2.80003333, 14.2623405, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2654. w2.Part1 = p3
  2655. w2.C1 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2656. w3 = Instance.new("Weld", p3)
  2657. w3.Name = "Part_Weld"
  2658. w3.Part0 = p3
  2659. w3.C0 = CFrame.new(45.023777, 49.5125847, 14.2622843, -0.707106769, 0.707106769, -6.37114681e-008, -0.707106769, -0.707106769, 1.37820813e-008, -3.53054119e-008, 5.47962173e-008, 1)
  2660. w3.Part1 = p4
  2661. w3.C1 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2662. w4 = Instance.new("Weld", p4)
  2663. w4.Name = "Part_Weld"
  2664. w4.Part0 = p4
  2665. w4.C0 = CFrame.new(-66.5026016, -2.80003667, 14.2622871, 1, -8.94065835e-008, 5.79734944e-008, 8.94065835e-008, 1, -2.98022034e-008, -5.79734909e-008, 2.98022087e-008, 1)
  2666. w4.Part1 = p5
  2667. w4.C1 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2668. w5 = Instance.new("Weld", p5)
  2669. w5.Name = "Part_Weld"
  2670. w5.Part0 = p5
  2671. w5.C0 = CFrame.new(62.4776497, -26.4635353, 14.2623405, -0.906311512, -0.422618151, -5.2200086e-008, 0.422620177, -0.906307399, -4.14251318e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2672. w5.Part1 = p6
  2673. w5.C1 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2674. w6 = Instance.new("Weld", p6)
  2675. w6.Name = "Part_Weld"
  2676. w6.Part0 = p6
  2677. w6.C0 = CFrame.new(-66.5025787, -2.21426678, 14.2622843, 1, 1.90734295e-006, 3.53052521e-008, -1.90734295e-006, 1, -5.47961676e-008, -3.53053551e-008, 5.47961001e-008, 1)
  2678. w6.Part1 = p7
  2679. w6.C1 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2680. w7 = Instance.new("Weld", p7)
  2681. w7.Name = "Part_Weld"
  2682. w7.Part0 = p7
  2683. w7.C0 = CFrame.new(-67.202919, -2.00003123, 13.1623335, 1.00000453, -2.38418579e-007, 2.98023295e-008, 8.94069672e-008, 0.999999642, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2684. w7.Part1 = p8
  2685. w7.C1 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2686. w8 = Instance.new("Weld", p8)
  2687. w8.Name = "Wedge_Weld"
  2688. w8.Part0 = p8
  2689. w8.C0 = CFrame.new(50.0020561, 44.8201294, 14.2623405, -0.766047955, 0.642787397, 1.54832112e-008, -0.642790377, -0.766044199, -6.48163692e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2690. w8.Part1 = p9
  2691. w8.C1 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2692. w9 = Instance.new("Weld", p9)
  2693. w9.Name = "Part_Weld"
  2694. w9.Part0 = p9
  2695. w9.C0 = CFrame.new(67.3029327, -5.90784931, -9.1200285, -1.00000453, 3.57627869e-007, -9.07683528e-008, 2.33116921e-007, 0.906307459, -0.422619879, 7.83834153e-009, -0.42261824, -0.906311214)
  2696. w9.Part1 = p10
  2697. w9.C1 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2698. w10 = Instance.new("Weld", p10)
  2699. w10.Name = "Part_Weld"
  2700. w10.Part0 = p10
  2701. w10.C0 = CFrame.new(-68.0029068, -2.00003219, 14.2623405, 1.00000441, -2.08616257e-007, 2.98023135e-008, 5.96046448e-008, 0.999999642, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2702. w10.Part1 = p11
  2703. w10.C1 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2704. w11 = Instance.new("Weld", p11)
  2705. w11.Name = "Part_Weld"
  2706. w11.Part0 = p11
  2707. w11.C0 = CFrame.new(-66.5028687, -1.60003603, 14.2623405, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2708. w11.Part1 = p12
  2709. w11.C1 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2710. w12 = Instance.new("Weld", p12)
  2711. w12.Name = "Part_Weld"
  2712. w12.Part0 = p12
  2713. w12.C0 = CFrame.new(50.8226891, 44.4644012, 14.2623415, -0.766047835, 0.642787337, 1.03502398e-008, -0.642790318, -0.76604414, -5.86991185e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2714. w12.Part1 = p13
  2715. w12.C1 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2716. w13 = Instance.new("Weld", p13)
  2717. w13.Name = "Wedge_Weld"
  2718. w13.Part0 = p13
  2719. w13.C0 = CFrame.new(-67.0028915, -0.800035119, 14.2623415, 1.00000429, -2.08616257e-007, 2.980231e-008, 1.1920929e-007, 0.999999642, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2720. w13.Part1 = p14
  2721. w13.C1 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2722. w14 = Instance.new("Weld", p14)
  2723. w14.Name = "Wedge_Weld"
  2724. w14.Part0 = p14
  2725. w14.C0 = CFrame.new(-66.8004532, -0.350028068, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2726. w14.Part1 = p15
  2727. w14.C1 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2728. w15 = Instance.new("Weld", p15)
  2729. w15.Name = "Wedge_Weld"
  2730. w15.Part0 = p15
  2731. w15.C0 = CFrame.new(-68.0004578, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2732. w15.Part1 = p16
  2733. w15.C1 = CFrame.new(-67.4004517, -0.350028008, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2734. m.Parent = rleg
  2735. m:MakeJoints()
  2736. ----------------------------------------------------
  2737. local cor6 = Instance.new("Part", rleg.RightLeg)
  2738. cor6.Name = "Thingy"
  2739. cor6.Locked = true
  2740. cor6.BottomSurface = 0
  2741. cor6.CanCollide = false
  2742. cor6.Size = Vector3.new(2, 1, 1)
  2743. cor6.Transparency = 1
  2744. cor6.TopSurface = 0
  2745. corw2 = Instance.new("Weld", cor6)
  2746. corw2.Part0 = rleg
  2747. corw2.Part1 = cor6
  2748. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2749. corw2.C1 = CFrame.new(0, 0, 0)
  2750. weld2 = Instance.new("Weld", rleg.RightLeg)
  2751. weld2.Part0 = cor6
  2752. weld2.Part1 = p7
  2753. weld2.C0 = CFrame.new(0, 0, 0)
  2754. ----------------------------------------------------
  2755. local m = Instance.new("Model")
  2756. m.Name = "LeftLeg"
  2757. p1 = Instance.new("WedgePart", m)
  2758. p1.BrickColor = BrickColor.new("Institutional white")
  2759. p1.Material = Enum.Material.Neon
  2760. p1.Name = "Wedge"
  2761. p1.FormFactor = Enum.FormFactor.Custom
  2762. p1.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2763. p1.CFrame = CFrame.new(64.3107605, 2.34980536, -14.7520046, 1.00008786, -7.1526415e-007, 2.00803143e-007, -2.2649931e-006, 0.999990404, 5.36453001e-007, -1.27237047e-006, 7.81809263e-007, 1.00007522)
  2764. p1.CanCollide = false
  2765. p1.Locked = true
  2766. p1.TopSurface = Enum.SurfaceType.Smooth
  2767. b1 = Instance.new("SpecialMesh", p1)
  2768. b1.MeshType = Enum.MeshType.Wedge
  2769. b1.Name = "Mesh"
  2770. b1.Scale = Vector3.new(0.200000003, 1, 1)
  2771. p2 = Instance.new("WedgePart", m)
  2772. p2.BrickColor = BrickColor.new("Institutional white")
  2773. p2.Material = Enum.Material.Neon
  2774. p2.Name = "Wedge"
  2775. p2.FormFactor = Enum.FormFactor.Custom
  2776. p2.Size = Vector3.new(1, 1.19999981, 4)
  2777. p2.CFrame = CFrame.new(64.9138336, 3.49979234, -10.7640553, -1.00009644, -6.38643314e-007, 1.81689501e-007, 2.53323037e-006, 0.906298041, -0.422614515, 1.23479219e-006, -0.422652602, -0.906383216)
  2778. p2.CanCollide = false
  2779. p2.Locked = true
  2780. p2.TopSurface = Enum.SurfaceType.Smooth
  2781. b2 = Instance.new("SpecialMesh", p2)
  2782. b2.MeshType = Enum.MeshType.Wedge
  2783. b2.Name = "Mesh"
  2784. b2.Scale = Vector3.new(0.600000024, 1, 1)
  2785. p3 = Instance.new("Part", m)
  2786. p3.BrickColor = BrickColor.new("Really black")
  2787. p3.Material = Enum.Material.Metal
  2788. p3.Name = "Main"
  2789. p3.FormFactor = Enum.FormFactor.Custom
  2790. p3.Size = Vector3.new(2.20000005, 4.19999981, 2.20000005)
  2791. p3.CFrame = CFrame.new(65.0144501, 3.99976897, -13.1643734, 1.00010526, -9.43461771e-007, 1.5135204e-007, -2.48442234e-006, 0.999988973, 7.74860382e-007, -1.32394814e-006, 8.94069672e-007, 1.00009048)
  2792. p3.CanCollide = false
  2793. p3.Locked = true
  2794. p3.BottomSurface = Enum.SurfaceType.Smooth
  2795. p3.TopSurface = Enum.SurfaceType.Smooth
  2796. p4 = Instance.new("Part", m)
  2797. p4.BrickColor = BrickColor.new("Really black")
  2798. p4.Material = Enum.Material.Neon
  2799. p4.FormFactor = Enum.FormFactor.Custom
  2800. p4.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2801. p4.CFrame = CFrame.new(64.8149185, 4.09976244, -14.2645903, 1.00011396, -1.07351866e-006, 1.23178822e-007, -2.62327239e-006, 0.999988258, 8.64272579e-007, -1.33881622e-006, 1.01328953e-006, 1.00009811)
  2802. p4.CanCollide = false
  2803. p4.Locked = true
  2804. p4.BottomSurface = Enum.SurfaceType.Smooth
  2805. p4.TopSurface = Enum.SurfaceType.Smooth
  2806. b3 = Instance.new("SpecialMesh", p4)
  2807. b3.MeshType = Enum.MeshType.Sphere
  2808. b3.Name = "Mesh"
  2809. p5 = Instance.new("WedgePart", m)
  2810. p5.BrickColor = BrickColor.new("Institutional white")
  2811. p5.Material = Enum.Material.Neon
  2812. p5.Name = "Wedge"
  2813. p5.FormFactor = Enum.FormFactor.Custom
  2814. p5.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2815. p5.CFrame = CFrame.new(64.9130707, 2.34976578, -14.7524614, 1.00012243, -1.19274011e-006, 9.97973828e-008, -2.74250215e-006, 0.999987364, 8.94081438e-007, -1.37342522e-006, 1.15432931e-006, 1.00010574)
  2816. p5.CanCollide = false
  2817. p5.Locked = true
  2818. p5.TopSurface = Enum.SurfaceType.Smooth
  2819. b4 = Instance.new("SpecialMesh", p5)
  2820. b4.MeshType = Enum.MeshType.Wedge
  2821. b4.Name = "Mesh"
  2822. b4.Scale = Vector3.new(0.200000003, 1, 1)
  2823. p6 = Instance.new("Part", m)
  2824. p6.BrickColor = BrickColor.new("Institutional white")
  2825. p6.Material = Enum.Material.Neon
  2826. p6.FormFactor = Enum.FormFactor.Custom
  2827. p6.Size = Vector3.new(0.200000048, 1.29999971, 0.200000048)
  2828. p6.CFrame = CFrame.new(65.1539307, 3.56787443, -14.2648125, -0.81925869, 0.573652625, 6.3568308e-008, -0.573566198, -0.819142461, 1.03511331e-006, 4.69596898e-007, -1.7646264e-006, 1.00011337)
  2829. p6.CanCollide = false
  2830. p6.Locked = true
  2831. p6.BottomSurface = Enum.SurfaceType.Smooth
  2832. p6.TopSurface = Enum.SurfaceType.Smooth
  2833. p7 = Instance.new("Part", m)
  2834. p7.BrickColor = BrickColor.new("Institutional white")
  2835. p7.Material = Enum.Material.Neon
  2836. p7.FormFactor = Enum.FormFactor.Custom
  2837. p7.Size = Vector3.new(0.200000048, 0.999999642, 0.200000048)
  2838. p7.CFrame = CFrame.new(64.9899063, 4.4266243, -14.2649202, 0.86614728, 0.500068843, 4.87115699e-008, -0.499995351, 0.866011381, 1.14634361e-006, -1.86828663e-006, 3.82691809e-007, 1.000121)
  2839. p7.CanCollide = false
  2840. p7.Locked = true
  2841. p7.BottomSurface = Enum.SurfaceType.Smooth
  2842. p7.TopSurface = Enum.SurfaceType.Smooth
  2843. p8 = Instance.new("Part", m)
  2844. p8.BrickColor = BrickColor.new("Really black")
  2845. p8.Material = Enum.Material.Neon
  2846. p8.FormFactor = Enum.FormFactor.Custom
  2847. p8.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2848. p8.CFrame = CFrame.new(65.2172623, 4.89969873, -14.2650318, 1.00014877, -1.43051147e-006, 2.05365609e-008, -3.09944153e-006, 0.99998486, 1.2357583e-006, -1.44150738e-006, 1.38478742e-006, 1.00012863)
  2849. p8.CanCollide = false
  2850. p8.Locked = true
  2851. p8.BottomSurface = Enum.SurfaceType.Smooth
  2852. p8.TopSurface = Enum.SurfaceType.Smooth
  2853. b5 = Instance.new("SpecialMesh", p8)
  2854. b5.MeshType = Enum.MeshType.Sphere
  2855. b5.Name = "Mesh"
  2856. p9 = Instance.new("Part", m)
  2857. p9.BrickColor = BrickColor.new("Really black")
  2858. p9.Material = Enum.Material.Neon
  2859. p9.FormFactor = Enum.FormFactor.Custom
  2860. p9.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2861. p9.CFrame = CFrame.new(65.517868, 2.99971151, -14.2651463, 1.00015736, -1.5520751e-006, -9.27031252e-009, -3.21633729e-006, 0.999984026, 1.32517368e-006, -1.46969478e-006, 1.46621869e-006, 1.00013626)
  2862. p9.CanCollide = false
  2863. p9.Locked = true
  2864. p9.BottomSurface = Enum.SurfaceType.Smooth
  2865. p9.TopSurface = Enum.SurfaceType.Smooth
  2866. b6 = Instance.new("SpecialMesh", p9)
  2867. b6.MeshType = Enum.MeshType.Sphere
  2868. b6.Name = "Mesh"
  2869. p10 = Instance.new("Part", m)
  2870. p10.BrickColor = BrickColor.new("Institutional white")
  2871. p10.Material = Enum.Material.Neon
  2872. p10.FormFactor = Enum.FormFactor.Custom
  2873. p10.Size = Vector3.new(0.200000048, 1.09999967, 0.200000048)
  2874. p10.CFrame = CFrame.new(64.79879, 5.1497221, -14.2652512, -0.642893076, 0.766172707, -3.7446263e-008, -0.766029418, -0.64277941, 1.40660427e-006, -2.27817864e-007, -2.14863894e-006, 1.00014389)
  2875. p10.CanCollide = false
  2876. p10.Locked = true
  2877. p10.BottomSurface = Enum.SurfaceType.Smooth
  2878. p10.TopSurface = Enum.SurfaceType.Smooth
  2879. p11 = Instance.new("Part", m)
  2880. p11.BrickColor = BrickColor.new("Institutional white")
  2881. p11.Material = Enum.Material.Neon
  2882. p11.FormFactor = Enum.FormFactor.Custom
  2883. p11.Size = Vector3.new(0.200000048, 0.699999809, 0.200000048)
  2884. p11.CFrame = CFrame.new(65.2189484, 5.30325174, -14.2653618, 1.00017476, -1.78813934e-006, -6.56227002e-008, -3.4570694e-006, 0.999982595, 1.49602079e-006, -1.52770292e-006, 1.64505627e-006, 1.00015152)
  2885. p11.CanCollide = false
  2886. p11.Locked = true
  2887. p11.BottomSurface = Enum.SurfaceType.Smooth
  2888. p11.TopSurface = Enum.SurfaceType.Smooth
  2889. p12 = Instance.new("WedgePart", m)
  2890. p12.BrickColor = BrickColor.new("Institutional white")
  2891. p12.Material = Enum.Material.Neon
  2892. p12.Name = "Wedge"
  2893. p12.FormFactor = Enum.FormFactor.Custom
  2894. p12.Size = Vector3.new(1, 0.699999809, 1.29999995)
  2895. p12.CFrame = CFrame.new(65.5171509, 2.34969687, -14.7532635, 1.00018334, -1.89246384e-006, -8.90070169e-008, -3.54650388e-006, 0.999981821, 1.52583425e-006, -1.56231545e-006, 1.78610321e-006, 1.00015914)
  2896. p12.CanCollide = false
  2897. p12.Locked = true
  2898. p12.TopSurface = Enum.SurfaceType.Smooth
  2899. b7 = Instance.new("SpecialMesh", p12)
  2900. b7.MeshType = Enum.MeshType.Wedge
  2901. b7.Name = "Mesh"
  2902. b7.Scale = Vector3.new(0.200000003, 1, 1)
  2903. p13 = Instance.new("Part", m)
  2904. p13.BrickColor = BrickColor.new("Really black")
  2905. p13.Material = Enum.Material.Neon
  2906. p13.FormFactor = Enum.FormFactor.Custom
  2907. p13.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2908. p13.CFrame = CFrame.new(64.3198929, 5.59963703, -14.2655821, 1.00019193, -1.97098893e-006, -1.23608402e-007, -3.67657594e-006, 0.999981046, 1.66687016e-006, -1.58571254e-006, 1.81590929e-006, 1.00016677)
  2909. p13.CanCollide = false
  2910. p13.Locked = true
  2911. p13.BottomSurface = Enum.SurfaceType.Smooth
  2912. p13.TopSurface = Enum.SurfaceType.Smooth
  2913. b8 = Instance.new("SpecialMesh", p13)
  2914. b8.MeshType = Enum.MeshType.Sphere
  2915. b8.Name = "Mesh"
  2916. p14 = Instance.new("Part", m)
  2917. p14.BrickColor = BrickColor.new("Really black")
  2918. p14.Material = Enum.Material.Neon
  2919. p14.FormFactor = Enum.FormFactor.Custom
  2920. p14.Size = Vector3.new(0.400000006, 0.400000006, 0.400000006)
  2921. p14.CFrame = CFrame.new(65.2206192, 5.79961872, -14.2656937, 1.00020039, -2.10105645e-006, -1.51786239e-007, -3.75511786e-006, 0.99998033, 1.7562885e-006, -1.6139021e-006, 1.90533035e-006, 1.0001744)
  2922. p14.CanCollide = false
  2923. p14.Locked = true
  2924. p14.BottomSurface = Enum.SurfaceType.Smooth
  2925. p14.TopSurface = Enum.SurfaceType.Smooth
  2926. b9 = Instance.new("SpecialMesh", p14)
  2927. b9.MeshType = Enum.MeshType.Sphere
  2928. b9.Name = "Mesh"
  2929. w1 = Instance.new("Weld", p1)
  2930. w1.Name = "Wedge_Weld"
  2931. w1.Part0 = p1
  2932. w1.C0 = CFrame.new(-64.3004303, -0.350028396, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2933. w1.Part1 = p2
  2934. w1.C1 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2935. w2 = Instance.new("Weld", p2)
  2936. w2.Name = "Part_Weld"
  2937. w2.Part0 = p2
  2938. w2.C0 = CFrame.new(64.9028854, -5.90785694, -9.12002754, -1.00000429, 3.57627869e-007, -9.07683386e-008, 2.9341092e-007, 0.906307459, -0.422619879, -5.58450353e-009, -0.42261821, -0.906311214)
  2939. w2.Part1 = p3
  2940. w2.C1 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2941. w3 = Instance.new("Weld", p3)
  2942. w3.Name = "Part_Weld"
  2943. w3.Part0 = p3
  2944. w3.C0 = CFrame.new(-65.0029144, -2.00002885, 13.1623335, 1.00000453, -2.19451294e-007, 2.98023295e-008, 6.97858056e-008, 0.999999702, 5.96046448e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2945. w3.Part1 = p4
  2946. w3.C1 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2947. w4 = Instance.new("Weld", p4)
  2948. w4.Name = "Wedge_Weld"
  2949. w4.Part0 = p4
  2950. w4.C0 = CFrame.new(-64.8028488, -2.10003614, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2951. w4.Part1 = p5
  2952. w4.C1 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2953. w5 = Instance.new("Weld", p5)
  2954. w5.Name = "Part_Weld"
  2955. w5.Part0 = p5
  2956. w5.C0 = CFrame.new(-64.9004364, -0.350028336, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2957. w5.Part1 = p6
  2958. w5.C1 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2959. w6 = Instance.new("Weld", p6)
  2960. w6.Name = "Part_Weld"
  2961. w6.Part0 = p6
  2962. w6.C0 = CFrame.new(54.2596054, -36.0786095, 14.2623415, -0.819155633, -0.573575974, -5.40201484e-008, 0.573578835, -0.819151759, -2.51900261e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2963. w6.Part1 = p7
  2964. w6.C1 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2965. w7 = Instance.new("Weld", p7)
  2966. w7.Name = "Part_Weld"
  2967. w7.Part0 = p7
  2968. w7.C0 = CFrame.new(-55.0575066, -34.589859, 14.2623396, 0.866029263, -0.50000006, -3.99274924e-009, 0.500002325, 0.866025031, 6.65203004e-008, -4.46573551e-008, 5.96046448e-008, 1.00000381)
  2969. w7.Part1 = p8
  2970. w7.C1 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2971. w8 = Instance.new("Weld", p8)
  2972. w8.Name = "Part_Weld"
  2973. w8.Part0 = p8
  2974. w8.C0 = CFrame.new(-65.2028809, -2.90003395, 14.2623415, 1.00000429, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999642, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2975. w8.Part1 = p9
  2976. w8.C1 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2977. w9 = Instance.new("Weld", p9)
  2978. w9.Name = "Part_Weld"
  2979. w9.Part0 = p9
  2980. w9.C0 = CFrame.new(-65.5028763, -1.00002885, 14.2623425, 1.00000429, -2.06278372e-007, 2.98023135e-008, 8.70690755e-008, 0.999999523, 5.16191463e-008, -5.96046341e-008, 2.98023224e-008, 1.00000381)
  2981. w9.Part1 = p10
  2982. w9.C1 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2983. w10 = Instance.new("Weld", p10)
  2984. w10.Name = "Part_Weld"
  2985. w10.Part0 = p10
  2986. w10.C0 = CFrame.new(44.0550385, -47.6020889, 14.2623405, -0.642790556, -0.766044021, -6.48163621e-008, 0.766047776, -0.642787576, -1.54832289e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2987. w10.Part1 = p11
  2988. w10.C1 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2989. w11 = Instance.new("Weld", p11)
  2990. w11.Name = "Wedge_Weld"
  2991. w11.Part0 = p11
  2992. w11.C0 = CFrame.new(-65.2028656, -3.3036263, 14.2623405, 1.00000429, -1.93715096e-007, 2.98023153e-008, 1.1920929e-007, 0.999999702, 5.96046412e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  2993. w11.Part1 = p12
  2994. w11.C1 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2995. w12 = Instance.new("Weld", p12)
  2996. w12.Name = "Part_Weld"
  2997. w12.Part0 = p12
  2998. w12.C0 = CFrame.new(-65.5004425, -0.350028276, 14.7500486, 1.00000429, -2.08616257e-007, 2.33795703e-008, 8.94069672e-008, 0.999999523, 1.11224018e-007, -5.31818927e-008, -2.9802294e-008, 1.00000381)
  2999. w12.Part1 = p13
  3000. w12.C1 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3001. w13 = Instance.new("Weld", p13)
  3002. w13.Name = "Part_Weld"
  3003. w13.Part0 = p13
  3004. w13.C0 = CFrame.new(-64.3028641, -3.60003614, 14.2623415, 1.00000429, -2.19451294e-007, 2.98023153e-008, 1.30103487e-007, 0.999999702, 5.96046448e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3005. w13.Part1 = p14
  3006. w13.C1 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3007. w14 = Instance.new("Weld", p14)
  3008. w14.Name = "Wedge_Weld"
  3009. w14.Part0 = p14
  3010. w14.C0 = CFrame.new(-65.202858, -3.80003428, 14.2623415, 1.00000417, -2.08616257e-007, 2.98023117e-008, 8.94069672e-008, 0.999999583, 5.96046377e-008, -5.79734909e-008, 2.98023224e-008, 1.00000381)
  3011. m.Parent = lleg
  3012. m:MakeJoints()
  3013. ----------------------------------------------------
  3014. local cor7 = Instance.new("Part", lleg.LeftLeg)
  3015. cor7.Name = "Thingy"
  3016. cor7.Locked = true
  3017. cor7.BottomSurface = 0
  3018. cor7.CanCollide = false
  3019. cor7.Size = Vector3.new(2, 1, 1)
  3020. cor7.Transparency = 1
  3021. cor7.TopSurface = 0
  3022. corw2 = Instance.new("Weld", cor7)
  3023. corw2.Part0 = lleg
  3024. corw2.Part1 = cor7
  3025. corw2.C0 = CFrame.new(0, 0, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  3026. corw2.C1 = CFrame.new(0, 0, 0)
  3027. weld2 = Instance.new("Weld", lleg.LeftLeg)
  3028. weld2.Part0 = cor7
  3029. weld2.Part1 = p3
  3030. weld2.C0 = CFrame.new(0, 0, 0)
  3031. ----------------------------------------------------
  3032. function weld5(part0, part1, c0, c1)
  3033. weeld=Instance.new("Weld", part0)
  3034. weeld.Part0=part0
  3035. weeld.Part1=part1
  3036. weeld.C0=c0
  3037. weeld.C1=c1
  3038. return weeld
  3039. end
  3040. ----------------------------------------------------
  3041. function newRay(start,face,range,wat)
  3042. local rey=Ray.new(start.p,(face.p-start.p).Unit*range)
  3043. hit,pos=Workspace:FindPartOnRayWithIgnoreList(rey,wat)
  3044. return rey,hit,pos
  3045. end
  3046. ----------------------------------------------------
  3047. mod5 = Instance.new("Model",char)
  3048.  
  3049. function FindNearestTorso(Position,Distance,SinglePlayer)
  3050. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3051. local List = {}
  3052. for i,v in pairs(workspace:GetChildren())do
  3053. if v:IsA("Model")then
  3054. if v:findFirstChild("Torso")then
  3055. if v ~= char then
  3056. if(v.Torso.Position -Position).magnitude <= Distance then
  3057. table.insert(List,v)
  3058. end
  3059. end
  3060. end
  3061. end
  3062. end
  3063. return List
  3064. end
  3065.  
  3066. function Landing()
  3067. part=Instance.new('Part',mod5)
  3068. part.Anchored=true
  3069. part.CanCollide=false
  3070. part.FormFactor='Custom'
  3071. part.Size=Vector3.new(.2,.2,.2)
  3072. part.CFrame=root.CFrame*CFrame.new(0,-2,0)
  3073. part.Transparency=.7
  3074. part.BrickColor=BrickColor.new('Really black')
  3075. part2=part:clone()
  3076. part2.Parent = mod5
  3077. part2.BrickColor=BrickColor.new('Institutional white')
  3078. mesh=Instance.new('SpecialMesh',part)
  3079. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3080. mesh.Scale=Vector3.new(10,5,10)
  3081. mesh2=mesh:clone()
  3082. mesh2.Parent=part2
  3083. mesh2.Scale=Vector3.new(12, 6, 12)
  3084.  
  3085. for i,v in pairs(FindNearestTorso(torso.CFrame.p,30))do
  3086. if v:FindFirstChild('Humanoid') then
  3087. v.Humanoid:TakeDamage(math.random(20,30))
  3088. v.Humanoid.PlatformStand = true
  3089. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 30
  3090. end
  3091. end
  3092.  
  3093. coroutine.resume(coroutine.create(function()
  3094. for i=0,3.8,0.05 do
  3095. wait()
  3096. part.CFrame=part.CFrame
  3097. part.Transparency=i
  3098. part2.CFrame=part2.CFrame
  3099. part2.Transparency=i
  3100. mesh.Scale=mesh.Scale+Vector3.new(1,0.2,1)
  3101. mesh2.Scale=mesh2.Scale+Vector3.new(1.2,0.3,1.2)
  3102. end
  3103. part.Parent = nil
  3104. end))
  3105. end
  3106. ----------------------------------------------------
  3107. mod4 = Instance.new("Model",char)
  3108.  
  3109. ptez = {0.7, 0.8, 0.9, 1}
  3110.  
  3111. function FindNearestTorso(Position,Distance,SinglePlayer)
  3112. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3113. local List = {}
  3114. for i,v in pairs(workspace:GetChildren())do
  3115. if v:IsA("Model")then
  3116. if v:findFirstChild("Torso")then
  3117. if v ~= char then
  3118. if(v.Torso.Position -Position).magnitude <= Distance then
  3119. table.insert(List,v)
  3120. end
  3121. end
  3122. end
  3123. end
  3124. end
  3125. return List
  3126. end
  3127.  
  3128. function GroundPound()
  3129. part=Instance.new('Part',mod4)
  3130. part.Anchored=true
  3131. part.CanCollide=false
  3132. part.FormFactor='Custom'
  3133. part.Size=Vector3.new(.2,.2,.2)
  3134. part.CFrame=root.CFrame*CFrame.new(0,-5.8,-2.4)*CFrame.Angles(math.rad(90),0,0)
  3135. part.Transparency=.7
  3136. part.BrickColor=BrickColor.new('Really black')
  3137. mesh=Instance.new('SpecialMesh',part)
  3138. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3139. mesh.Scale=Vector3.new(3,3,3)
  3140. part2=Instance.new('Part',mod4)
  3141. part2.Anchored=true
  3142. part2.CanCollide=false
  3143. part2.FormFactor='Custom'
  3144. part2.Size=Vector3.new(.2,.2,.2)
  3145. part2.CFrame=root.CFrame*CFrame.new(0,-5,-2.6)
  3146. part2.Transparency=.7
  3147. part2.BrickColor=BrickColor.new('Really red')
  3148. mesh2=Instance.new('SpecialMesh',part2)
  3149. mesh2.MeshId='http://www.roblox.com/asset/?id=20329976'
  3150. mesh2.Scale=Vector3.new(3,1.5,3)
  3151. x = Instance.new("Sound",char)
  3152. x.SoundId = "http://www.roblox.com/asset/?id=142070127"
  3153. x.Pitch = ptez[math.random(1,#ptez)]
  3154. x.Volume = 1
  3155. wait(.1)
  3156. x:Play()
  3157. for i,v in pairs(FindNearestTorso(torso.CFrame.p,12))do
  3158. if v:FindFirstChild('Humanoid') then
  3159. v.Humanoid:TakeDamage(math.random(8,15))
  3160. end
  3161. end
  3162. coroutine.resume(coroutine.create(function()
  3163. for i=0,0.62,0.13 do
  3164. wait()
  3165. part.CFrame=part.CFrame
  3166. part.Transparency=i
  3167. mesh.Scale=mesh.Scale+Vector3.new(0.4,0.4,0.4)
  3168. part2.CFrame=part2.CFrame
  3169. part2.Transparency=i
  3170. mesh2.Scale=mesh2.Scale+Vector3.new(0.4,0.2,0.4)
  3171. end
  3172. part.Parent=nil
  3173. part2.Parent=nil
  3174. x:Destroy()
  3175. end))
  3176. end
  3177. ----------------------------------------------------
  3178. mod=Instance.new('Model',char)
  3179.  
  3180. function charge()
  3181. hed.Velocity=hed.CFrame.lookVector*200
  3182. part=Instance.new('Part',mod)
  3183. part.Anchored=true
  3184. part.CanCollide=false
  3185. part.FormFactor='Custom'
  3186. part.Size=Vector3.new(.2,.2,.2)
  3187. part.CFrame=hed.CFrame*CFrame.Angles(math.rad(90),0,0)
  3188. part.Transparency=.7
  3189. part.BrickColor=BrickColor.new('Black')
  3190. mesh=Instance.new('SpecialMesh',part)
  3191. mesh.MeshId='http://www.roblox.com/asset/?id=20329976'
  3192. mesh.Scale=Vector3.new(10,5,10)
  3193. part2=part:clone()
  3194. part2.Parent=mod
  3195. part2.BrickColor=BrickColor.new('Bright red')
  3196. mesh2=mesh:clone()
  3197. mesh2.Parent=part2
  3198. mesh2.Scale=Vector3.new(20,10,20)
  3199. part3=part2:clone()
  3200. part3.Parent = mod
  3201. part3.BrickColor=BrickColor.new('Really black')
  3202. mesh3=mesh2:clone()
  3203. mesh2.Parent=part3
  3204. mesh3.Scale=Vector3.new(30,15,30)
  3205. coroutine.resume(coroutine.create(function()
  3206. for i=0,1,0.1 do
  3207. wait()
  3208. part.CFrame=part.CFrame
  3209. part.Transparency=i
  3210. mesh.Scale=mesh.Scale+Vector3.new(1,1,1)
  3211. part2.CFrame=part2.CFrame
  3212. part2.Transparency=i
  3213. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3214. part3.CFrame=part3.CFrame
  3215. part3.Transparency=i
  3216. mesh3.Scale=mesh3.Scale+Vector3.new(1,1,1)
  3217. end
  3218. part.Parent=nil
  3219. part2.Parent=nil
  3220. part3.Parent = nil
  3221. end))
  3222. end
  3223. ----------------------------------------------------
  3224. function FindNearestTorso(Position,Distance,SinglePlayer)
  3225. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  3226. local List = {}
  3227. for i,v in pairs(workspace:GetChildren())do
  3228. if v:IsA("Model")then
  3229. if v:findFirstChild("Torso")then
  3230. if v ~= char then
  3231. if(v.Torso.Position -Position).magnitude <= Distance then
  3232. table.insert(List,v)
  3233. end
  3234. end
  3235. end
  3236. end
  3237. end
  3238. return List
  3239. end
  3240.  
  3241. mod3 = Instance.new("Model",rleg)
  3242.  
  3243. function Stomp()
  3244. part=Instance.new('Part',mod3)
  3245. part.Anchored=true
  3246. part.CanCollide=false
  3247. part.FormFactor='Custom'
  3248. part.Size=Vector3.new(.2,.2,.2)
  3249. part.CFrame=rleg.CFrame*CFrame.new(0,-2.4,0)*CFrame.Angles(math.rad(90),0,0)
  3250. part.Transparency=.7
  3251. part.BrickColor=BrickColor.new('Bright green')
  3252. mesh=Instance.new('SpecialMesh',part)
  3253. mesh.MeshId='http://www.roblox.com/asset/?id=3270017'
  3254. mesh.Scale=Vector3.new(25,25,25)
  3255. part2=part:clone()
  3256. part2.Parent=mod3
  3257. part2.BrickColor=BrickColor.new('Bright green')
  3258. mesh2=mesh:clone()
  3259. mesh2.Parent=part2
  3260. mesh2.Scale=Vector3.new(15,15,15)
  3261. part3=part:clone()
  3262. part3.Parent=mod3
  3263. part3.TopSurface=0
  3264. part3.BottomSurface=0
  3265. part3.CFrame=rleg.CFrame*CFrame.new(0,-3,0)
  3266. mesh3=Instance.new('SpecialMesh',part3)
  3267. mesh3.MeshType = 3
  3268. mesh3.Scale=Vector3.new(12,12,12)
  3269. for i,v in pairs(FindNearestTorso(torso.CFrame.p,50))do
  3270. if v:FindFirstChild('Humanoid') then
  3271. v.Humanoid:TakeDamage(math.random(20,60))
  3272. v.Humanoid.PlatformStand = true
  3273. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  3274. end
  3275. end
  3276. coroutine.resume(coroutine.create(function()
  3277. for i=0,3.8,0.05 do
  3278. wait()
  3279. part.CFrame=part.CFrame
  3280. part.Transparency=i
  3281. mesh.Scale=mesh.Scale+Vector3.new(2.8,2.8,2.8)
  3282. part2.CFrame=part2.CFrame
  3283. part2.Transparency=i
  3284. mesh2.Scale=mesh2.Scale+Vector3.new(1,1,1)
  3285. part3.CFrame=part3.CFrame
  3286. part3.Transparency=i
  3287. mesh3.Scale=mesh3.Scale+Vector3.new(1.5,1.5,1.5)
  3288. end
  3289. end))
  3290. end
  3291. ----------------------------------------------------
  3292.  
  3293. local acos = math.acos
  3294. local sqrt = math.sqrt
  3295. local Vec3 = Vector3.new
  3296. local fromAxisAngle = CFrame.fromAxisAngle
  3297.  
  3298. local function toAxisAngle(CFr)
  3299. local X,Y,Z,R00,R01,R02,R10,R11,R12,R20,R21,R22 = CFr:components()
  3300. local Angle = math.acos((R00+R11+R22-1)/2)
  3301. local A = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3302. A = A == 0 and 0.00001 or A
  3303. local B = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3304. B = B == 0 and 0.00001 or B
  3305. local C = (R21-R12)^2+(R02-R20)^2+(R10-R01)^2
  3306. C = C == 0 and 0.00001 or C
  3307. local x = (R21-R12)/sqrt(A)
  3308. local y = (R02-R20)/sqrt(B)
  3309. local z = (R10-R01)/sqrt(C)
  3310. return Vec3(x,y,z),Angle
  3311. end
  3312.  
  3313. function ApplyTrig(Num,Func)
  3314. local Min,Max = Func(0),Func(1)
  3315. local i = Func(Num)
  3316. return (i-Min)/(Max-Min)
  3317. --[[if Func == "sin" then
  3318. return (math.sin((1-Num)*math.pi)+1)/2
  3319. elseif Func == "cos" then
  3320. return (math.cos((1-Num)*math.pi)+1)/2
  3321. end]]
  3322. end
  3323.  
  3324. function LerpCFrame(CFrame1,CFrame2,Num)
  3325. local Vec,Ang = toAxisAngle(CFrame1:inverse()*CFrame2)
  3326. return CFrame1*fromAxisAngle(Vec,Ang*Num) + (CFrame2.p-CFrame1.p)*Num
  3327. end
  3328.  
  3329. function Crater(Torso,Radius)
  3330. Spawn(function()
  3331. local Ray = Ray.new(Torso.Position,Vector3.new(0,-1,0)*10)
  3332. local Ignore = {}
  3333. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3334. if v.Character ~= nil then
  3335. Ignore[#Ignore+1] = v.Character
  3336. end
  3337. end
  3338. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(Ray,Ignore)
  3339. if Hit == nil then return end
  3340. local Parts = {}
  3341. for i = 1,360,10 do
  3342. local P = Instance.new("Part",Torso.Parent)
  3343. P.Anchored = true
  3344. P.FormFactor = "Custom"
  3345. P.BrickColor = Hit.BrickColor
  3346. P.Material = Hit.Material
  3347. P.TopSurface = "Smooth"
  3348. P.BottomSurface = "Smooth"
  3349. P.Size = Vector3.new(5,10,10)*(math.random(80,100)/100)
  3350. 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)))
  3351. 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}
  3352. if math.random(0,5) == 0 then -- rubble
  3353. local P = Instance.new("Part",Torso.Parent)
  3354. P.Anchored = true
  3355. P.FormFactor = "Custom"
  3356. P.BrickColor = Hit.BrickColor
  3357. P.Material = Hit.Material
  3358. P.TopSurface = "Smooth"
  3359. P.BottomSurface = "Smooth"
  3360. P.Size = Vector3.new(2,2,2)*(math.random(80,100)/100)
  3361. 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)))
  3362. 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}
  3363. end
  3364. end
  3365. for i = 0,1,0.05 do
  3366. for i2,v in pairs(Parts) do
  3367. v[1].CFrame = LerpCFrame(v[2],v[3],ApplyTrig(i,math.cos))
  3368. end
  3369. wait(0.02)
  3370. end
  3371. for i,v in pairs(Parts) do
  3372. if v[1].Size.X > 2.1 then
  3373. v[1].CFrame = v[1].CFrame+Vector3.new(0,2,0)
  3374. end
  3375. v[1].Anchored = false
  3376. end
  3377. for i = 0,1,0.05 do
  3378. for i2,v in pairs(Parts) do
  3379. v[1].Transparency = i
  3380. if i == 1 then
  3381. v[1]:Destroy()
  3382. elseif i >= 0.25 then
  3383. v[1].CanCollide = false
  3384. end
  3385. end
  3386. wait(0.02)
  3387. end
  3388. Parts = nil
  3389. end)
  3390. end
  3391.  
  3392. ----------------------------------------------------
  3393. mouse.KeyDown:connect(function(key)
  3394. if key == "r" then
  3395. larm.BrickColor = BrickColor.new("Bright red")
  3396. rarm.BrickColor = BrickColor.new("Bright red")
  3397. if Debounces.CanAttack == true then
  3398. Debounces.CanAttack = false
  3399. Debounces.on = true
  3400. Debounces.NoIdl = true
  3401. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3402. hit = ht.Parent
  3403. if ht and hit:IsA("Model") then
  3404. if hit:FindFirstChild("Humanoid") then
  3405. if hit.Name ~= p.Name then
  3406. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3407. Debounces.Slashed = true]]--
  3408. hit:FindFirstChild("Humanoid"):TakeDamage(10)
  3409. wait(1)
  3410. --Debounces.Slashed = false
  3411. --end
  3412. end
  3413. end
  3414. elseif ht and hit:IsA("Hat") then
  3415. if hit.Parent.Name ~= p.Name then
  3416. if hit.Parent:FindFirstChild("Humanoid") then
  3417. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3418. Debounces.Slashed = true]]--
  3419. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(10)
  3420. wait(1)
  3421. --Debounces.Slashed = false
  3422. end
  3423. end
  3424. end
  3425. end)
  3426. q = Instance.new("Sound",hed)
  3427. q.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3428. q.Pitch = 0.85
  3429. q.Looped = false
  3430. q1 = Instance.new("Sound",hed)
  3431. q1.SoundId = "http://www.roblox.com/asset/?id=134012322"
  3432. q1.Pitch = 0.85
  3433. q1.Looped = false
  3434. q:Play()
  3435. q1:Play()
  3436. for i = 1,20 do
  3437. 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.2)
  3438. 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.2)
  3439. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3440. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 4, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3441. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 1) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3442. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .6) * CFrame.Angles(math.rad(-60), 0, math.rad(0)), 0.2)
  3443. 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.25)
  3444. if Debounces.on == false then break end
  3445. rs:wait(.6)
  3446. end
  3447. n = Instance.new("Sound",hed)
  3448. n.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3449. n.Pitch = 0.94
  3450. n.Looped = false
  3451. n1 = Instance.new("Sound",hed)
  3452. n1.SoundId = "http://www.roblox.com/asset/?id=168514932"
  3453. n1.Pitch = 0.94
  3454. n1.Looped = false
  3455. n:Play()
  3456. n1:Play()
  3457. b = Instance.new("Sound",hed)
  3458. b.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3459. b.Pitch = 0.94
  3460. b.Looped = false
  3461. b1 = Instance.new("Sound",hed)
  3462. b1.SoundId = "http://www.roblox.com/asset/?id=168586586"
  3463. b1.Pitch = 0.94
  3464. b1.Looped = false
  3465. b:Play()
  3466. b1:Play()
  3467. for i = 1,26 do
  3468. 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.25)
  3469. 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.25)
  3470. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)),0.25)
  3471. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.1, 0) * CFrame.Angles(math.rad(-40), math.rad(0), 0), 0.25)
  3472. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -1) * CFrame.Angles(math.rad(50), 0, math.rad(0)), 0.25)
  3473. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, .4) * CFrame.Angles(math.rad(-10), 0, math.rad(0)), 0.25)
  3474. 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.25)
  3475. if Debounces.on == false then break end
  3476. rs:wait(1)
  3477. end
  3478. wait(.5)
  3479. to:disconnect()
  3480. q:Destroy()
  3481. q1:Destroy()
  3482. n:Destroy()
  3483. n1:Destroy()
  3484. larm.BrickColor = BrickColor.new("Really black")
  3485. rarm.BrickColor = BrickColor.new("Really black")
  3486. if Debounces.CanAttack == false then
  3487. Debounces.CanAttack = true
  3488. Debounces.on = false
  3489. Debounces.NoIdl = false
  3490. end
  3491. end
  3492. end
  3493. end)
  3494. ----------------------------------------------------
  3495. mouse.KeyDown:connect(function(key)
  3496. if key == "q" then
  3497. larm.BrickColor = BrickColor.new("Bright red")
  3498. rarm.BrickColor = BrickColor.new("Bright red")
  3499. if Debounces.CanAttack == true then
  3500. Debounces.CanAttack = false
  3501. Debounces.on = true
  3502. Debounces.NoIdl = true
  3503. to = char.Absolution.Thingy2.Touched:connect(function(ht)
  3504. hit = ht.Parent
  3505. if ht and hit:IsA("Model") then
  3506. if hit:FindFirstChild("Humanoid") then
  3507. if hit.Name ~= p.Name then
  3508. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3509. Debounces.Slashed = true]]--
  3510. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3511. wait(1)
  3512. --Debounces.Slashed = false
  3513. --end
  3514. end
  3515. end
  3516. elseif ht and hit:IsA("Hat") then
  3517. if hit.Parent.Name ~= p.Name then
  3518. if hit.Parent:FindFirstChild("Humanoid") then
  3519. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3520. Debounces.Slashed = true]]--
  3521. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3522. wait(1)
  3523. --Debounces.Slashed = false
  3524. end
  3525. end
  3526. end
  3527. end)
  3528. for i = 1, 20 do
  3529. 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)
  3530. 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)
  3531. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-60),0), 0.5)
  3532. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(70), 0), 0.5)
  3533. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3534. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3535. 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)
  3536. if Debounces.on == false then break end
  3537. rs:wait(2)
  3538. end
  3539. z = Instance.new("Sound",hed)
  3540. z.SoundId = "rbxassetid://160069154"
  3541. z.Looped = false
  3542. z.Pitch = .9
  3543. z1 = Instance.new("Sound",hed)
  3544. z1.SoundId = "rbxassetid://160069154"
  3545. z1.Looped = false
  3546. z1.Pitch = .9
  3547. wait(0.01)
  3548. z:Play()
  3549. z1:Play()
  3550. for i = 1, 20 do
  3551. 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)
  3552. 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)
  3553. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(30),0), 0.5)
  3554. 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)
  3555. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -2) * CFrame.Angles(math.rad(-10), 0, 0), 0.5)
  3556. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, .6) * CFrame.Angles(math.rad(-65), 0, 0), 0.5)
  3557. 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)
  3558. if Debounces.on == false then break end
  3559. rs:wait(2)
  3560. end
  3561. for i = 1, 20 do
  3562. 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)
  3563. 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)
  3564. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(10),0), 0.5)
  3565. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-10), 0), 0.5)
  3566. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.5)
  3567. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.5)
  3568. 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)
  3569. if Debounces.on == false then break end
  3570. rs:wait(2)
  3571. end
  3572. z = Instance.new("Sound",hed)
  3573. z.SoundId = "rbxassetid://168586621"
  3574. z.Looped = false
  3575. z.Pitch = 1
  3576. z1 = Instance.new("Sound",hed)
  3577. z1.SoundId = "rbxassetid://168586621"
  3578. z1.Looped = false
  3579. z1.Pitch = 1
  3580. wait(0.01)
  3581. z:Play()
  3582. z1:Play()
  3583. for i = 1, 20 do
  3584. 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)
  3585. 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)
  3586. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2) * CFrame.Angles(math.rad(-14),math.rad(-40),0), 0.5)
  3587. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.5)
  3588. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-20), 0, math.rad(-10)), 0.5)
  3589. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(20), 0, math.rad(10)), 0.5)
  3590. 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)
  3591. if Debounces.on == false then break end
  3592. rs:wait(2)
  3593. end
  3594. to:disconnect()
  3595. larm.BrickColor = BrickColor.new("Really black")
  3596. rarm.BrickColor = BrickColor.new("Really black")
  3597. if Debounces.CanAttack == false then
  3598. Debounces.CanAttack = true
  3599. Debounces.on = false
  3600. Debounces.NoIdl = false
  3601. end
  3602. end
  3603. end
  3604. end)
  3605. ----------------------------------------------------
  3606. Sit = false
  3607. mouse.KeyDown:connect(function(key)
  3608. if key == "v" then
  3609. if Sit == false then
  3610. Sit = true
  3611. hum.WalkSpeed = 0.001
  3612. stanceToggle = "Sitting"
  3613. elseif Sit == true then
  3614. Sit = false
  3615. hum.WalkSpeed = 7
  3616. stanceToggle = "Normal"
  3617. end
  3618. end
  3619. end)
  3620. ----------------------------------------------------
  3621. mouse.KeyDown:connect(function(key)
  3622. if key == "t" then
  3623. if Debounces.CanAttack == true then
  3624. Debounces.CanAttack = false
  3625. Debounces.on = true
  3626. Debounces.NoIdl = true
  3627. for i = 1, 20 do
  3628. 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.2)
  3629. 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.2)
  3630. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)),0.2)
  3631. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(30), math.rad(0), 0), 0.2)
  3632. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .6) * CFrame.Angles(math.rad(-30), 0, math.rad(0)), 0.2)
  3633. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.2) * CFrame.Angles(math.rad(0), 0, math.rad(0)), 0.2)
  3634. 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)
  3635. if Debounces.on == false then break end
  3636. rs:wait(2.6)
  3637. end
  3638. Spawn(function()
  3639. local Parts = {}
  3640. for Y = -5,5 do
  3641. local P = Instance.new("Part",char)
  3642. P.Anchored = true
  3643. P.FormFactor = "Custom"
  3644. P.CanCollide = false
  3645. P.Size = Vector3.new(10,20,10)
  3646. P.TopSurface = "SmoothNoOutlines"
  3647. P.BottomSurface = "SmoothNoOutlines"
  3648. P.BrickColor = BrickColor.new("Institutional white")
  3649. P.Material = "Neon"
  3650. P.Name = tostring(Y)
  3651. local i = (Y+5)/(10)
  3652. i = 1-math.cos(math.pi*i-(math.pi/2))
  3653. P.CFrame = char.HumanoidRootPart.CFrame*CFrame.new(0,Y,-15+(i*1.5))*CFrame.Angles(math.rad(Y*5),0,0)
  3654. --[[P.Touched:connect(function(ht)
  3655. local hit = ht.Parent
  3656. if hit:FindFirstChild("Humanoid") then
  3657. hit.Humanoid:TakeDamage(math.random(20,50))
  3658. end
  3659. end)]]--
  3660. s = Instance.new("Sound",P)
  3661. s.SoundId = "rbxassetid://228343271"
  3662. s.Volume = 10
  3663. s.Pitch = 0.75
  3664. s:Play()
  3665. P.Touched:connect(function(ht)
  3666. hit = ht.Parent
  3667. if ht and hit:IsA("Model") then
  3668. if hit:FindFirstChild("Humanoid") then
  3669. if hit.Name ~= p.Name then
  3670. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3671. Debounces.Slashed = true]]--
  3672. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(1,3))
  3673. hit:FindFirstChild("Humanoid").PlatformStand = true
  3674. wait(1)
  3675. --Debounces.Slashed = false
  3676. --end
  3677. end
  3678. end
  3679. elseif ht and hit:IsA("Hat") then
  3680. if hit.Parent.Name ~= p.Name then
  3681. if hit.Parent:FindFirstChild("Humanoid") then
  3682. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3683. Debounces.Slashed = true]]--
  3684. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(math.random (1,3))
  3685. hit:FindFirstChild("Humanoid").PlatformStand = true
  3686. wait(1)
  3687. --Debounces.Slashed = false
  3688. --end
  3689. end
  3690. end
  3691. end
  3692. end)
  3693. Parts[#Parts+1] = P
  3694. end
  3695. local BREAKIT = false
  3696. local CParts = {}
  3697. local Rocks = {}
  3698. local LastPos = nil
  3699. for i = 1,70 do
  3700. for i2,v in pairs(Parts) do
  3701. v.CFrame = v.CFrame*CFrame.new(0,0,-8)
  3702. local cf = v.CFrame
  3703. v.Size = v.Size+Vector3.new(0.8,0.70,0)
  3704. v.CFrame = cf
  3705. v.Transparency = v.Transparency+0.02
  3706. if v.Transparency >= 0.975 then BREAKIT = true end
  3707. if v.Name == "0" then
  3708. local Ignore = {}
  3709. for i,v in pairs(game:GetService("Players"):GetPlayers()) do
  3710. if v.Character ~= nil then
  3711. Ignore[#Ignore+1] = v.Character
  3712. end
  3713. end
  3714. local ray = Ray.new(v.Position+Vector3.new(0,20,0),Vector3.new(0,-400,0))
  3715. local Hit,Pos,SurfaceNorm = Workspace:FindPartOnRayWithIgnoreList(ray,Ignore)
  3716. if Hit ~= nil then
  3717. if #Rocks == 0 then
  3718. for i = 1,5 do
  3719. local P = Instance.new("Part",char)
  3720. Rocks[#Rocks+1] = P
  3721. P.Anchored = true
  3722. P.FormFactor = "Custom"
  3723. P.BrickColor = Hit.BrickColor
  3724. P.Material = Hit.Material
  3725. P.TopSurface = "Smooth"
  3726. P.BottomSurface = "Smooth"
  3727. P.Size = Vector3.new(10,10,10)*(math.random(500,900)/100)
  3728. end
  3729. end
  3730. for i,P in pairs(Rocks) do
  3731. 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)))
  3732. end
  3733. local P = Instance.new("Part",char)
  3734. CParts[#CParts+1] = {P,tick()}
  3735. P.Anchored = true
  3736. P.FormFactor = "Custom"
  3737. P.BrickColor = Hit.BrickColor
  3738. P.Material = Hit.Material
  3739. P.TopSurface = "Smooth"
  3740. P.BottomSurface = "Smooth"
  3741. P.Size = Vector3.new(10,10,10)*(math.random(100,300)/100)
  3742. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3743. Pos = Pos.p
  3744. 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)))
  3745. local P = P:Clone()
  3746. CParts[#CParts+1] = {P,tick()}
  3747. P.Parent = char
  3748. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(-v.Size.X,0,0)
  3749. Pos = Pos.p
  3750. 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)))
  3751. if LastPos ~= nil then
  3752. local P = P:Clone()
  3753. CParts[#CParts+1] = {P,tick()}
  3754. P.Parent = char
  3755. P.BrickColor = BrickColor.new("Institutional white")
  3756. Pos = CFrame.new(Pos)*(v.CFrame-v.Position)*CFrame.new(v.Size.X/2,0,0)
  3757. Pos = Pos.p
  3758. local CFr = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3759. P.Size = Vector3.new(v.Size.X-0.25,1,(CFr.p-LastPos.p).Magnitude+0.25)
  3760. --P.Velocity = Vector3.new(0,-1000,0)
  3761. P.CFrame = CFrame.new(CFr.p,LastPos.p)*CFrame.new(0,0,-((CFr.p-LastPos.p).Magnitude+0.25)/2)
  3762. end
  3763. LastPos = (CFrame.new(Pos)*(v.CFrame-v.Position))-Vector3.new(0,0.4,0)
  3764. end
  3765. end
  3766. end
  3767. if BREAKIT then break end
  3768. wait(0.002)
  3769. end
  3770. for i,v in pairs(Rocks) do
  3771. CParts[#CParts+1] = {v,tick()}
  3772. end
  3773. for i,v in pairs(Parts) do
  3774. v:Destroy()
  3775. end
  3776. Parts = nil
  3777. while true do
  3778. local t = tick()
  3779. local p = nil
  3780. for i,v in pairs(CParts) do
  3781. if t-v[2] > 4 then
  3782. v[1].Transparency = v[1].Transparency+0.05
  3783. if v[1].Transparency >= 1 then
  3784. v[1]:Destroy()
  3785. CParts[i] = nil
  3786. end
  3787. end
  3788. p = v
  3789. end
  3790. if p == nil then break end
  3791. wait(0.002)
  3792. end
  3793. for i,v in pairs(CParts) do
  3794. v:Destroy()
  3795. end
  3796. CParts = {}
  3797. end)
  3798. for i = 1, 20 do
  3799. 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)
  3800. 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)
  3801. 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)
  3802. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.4)
  3803. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1, -1.4) * CFrame.Angles(math.rad(40), 0, math.rad(0)), 0.4)
  3804. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.6, -.9) * CFrame.Angles(math.rad(10), 0, math.rad(0)), 0.4)
  3805. 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)
  3806. if Debounces.on == false then break end
  3807. rs:wait(2)
  3808. end
  3809. if Debounces.CanAttack == false then
  3810. Debounces.CanAttack = true
  3811. Debounces.on = false
  3812. Debounces.NoIdl = false
  3813. end
  3814. end
  3815. end
  3816. end)
  3817. ----------------------------------------------------
  3818. mouse.KeyDown:connect(function(key)
  3819. if key == "e" then
  3820. larm.BrickColor = BrickColor.new("Bright red")
  3821. rarm.BrickColor = BrickColor.new("Bright red")
  3822. if Debounces.CanAttack == true then
  3823. Debounces.CanAttack = false
  3824. Debounces.on = true
  3825. Debounces.NoIdl = true
  3826. for i = 1, 18 do
  3827. 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)
  3828. 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)
  3829. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3830. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3831. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3832. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3833. 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)
  3834. if Debounces.on == false then break end
  3835. rs:wait(4)
  3836. end
  3837. 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))
  3838. local rng = Instance.new("Part", char.Absolution.Handle)
  3839. rng.Anchored = true
  3840. rng.BrickColor = BrickColor.new("Really black")
  3841. rng.CanCollide = true
  3842. rng.FormFactor = 3
  3843. rng.Name = "Ring"
  3844. rng.Size = Vector3.new(1, 1, 1)
  3845. rng.CanCollide = false
  3846. rng.Transparency = 0.35
  3847. rng.TopSurface = 0
  3848. rng.BottomSurface = 0
  3849. rng.CFrame = HandCF
  3850. local rngm = Instance.new("SpecialMesh", rng)
  3851. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3852. rngm.Scale = Vector3.new(1, 1, 2)
  3853. x = Instance.new("Sound", hed)
  3854. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3855. x.Looped = false
  3856. x.Pitch = .7
  3857. x.Volume = 1
  3858. x1 = Instance.new("Sound", hed)
  3859. x1.SoundId = "http://www.roblox.com/asset/?id=169445602"
  3860. x1.Looped = false
  3861. x1.Pitch = .7
  3862. x1.Volume = 1
  3863. x:Play()
  3864. x1:Play()
  3865. rngto = rng.Touched:connect(function(ht)
  3866. hit = ht.Parent
  3867. if ht and hit:IsA("Model") then
  3868. if hit:FindFirstChild("Humanoid") then
  3869. if hit.Name ~= p.Name then
  3870. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  3871. Debounces.Slashed = true]]--
  3872. hit:FindFirstChild("Humanoid"):TakeDamage(4)
  3873. hit:FindFirstChild("Humanoid").PlatformStand = true
  3874. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3875. --Debounces.Slashed = false
  3876. --end
  3877. end
  3878. end
  3879. elseif ht and hit:IsA("Hat") then
  3880. if hit.Parent.Name ~= p.Name then
  3881. if hit.Parent:FindFirstChild("Humanoid") then
  3882. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  3883. Debounces.Slashed = true]]--
  3884. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(4)
  3885. hit:FindFirstChild("Humanoid").PlatformStand = true
  3886. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -120
  3887. --Debounces.Slashed = false
  3888. end
  3889. end
  3890. end
  3891. end)
  3892. coroutine.wrap(function()
  3893. for i = 1, 60, 2 do
  3894. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  3895. rng.Size = rngm.Scale
  3896. rng.CFrame = HandCF
  3897. rng.Transparency = i/60
  3898. wait()
  3899. end
  3900. wait()
  3901. rng:Destroy()
  3902. end)()
  3903. for i = 1, 18 do
  3904. 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)
  3905. 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)
  3906. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0) * CFrame.Angles(math.rad(-14),math.rad(0),0), 0.4)
  3907. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.4)
  3908. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.4)
  3909. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.4)
  3910. 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)
  3911. if Debounces.on == false then break end
  3912. rs:wait(2.4)
  3913. end
  3914. larm.BrickColor = BrickColor.new("Really black")
  3915. rarm.BrickColor = BrickColor.new("Really black")
  3916. x:Destroy()
  3917. x1:Destroy()
  3918. if Debounces.CanAttack == false then
  3919. Debounces.CanAttack = true
  3920. Debounces.on = false
  3921. Debounces.NoIdl = false
  3922. end
  3923. end
  3924. end
  3925. end)
  3926. ----------------------------------------------------
  3927. mouse.KeyDown:connect(function(key)
  3928. if key == "y" then
  3929. if Debounces.CanAttack == true then
  3930. Debounces.CanAttack = false
  3931. Debounces.on = true
  3932. Debounces.NoIdl = true
  3933. for i = 1, 15 do
  3934. 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)
  3935. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-89)), 0.6)
  3936. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(90),0), 0.2)
  3937. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(-90), 0), 0.2)
  3938. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  3939. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  3940. 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)
  3941. if Debounces.on == false then break end
  3942. rs:wait(2.7)
  3943. end
  3944. x = Instance.new("Sound",char)
  3945. x.SoundId = "rbxassetid://228343271"
  3946. x.Pitch = 1
  3947. x.Volume = .8
  3948. wait(.1)
  3949. x:Play()
  3950. Debounces.on = false
  3951. Debounces.Here = false
  3952. shot = shot + 1
  3953. local rng = Instance.new("Part", char)
  3954. rng.Anchored = true
  3955. rng.BrickColor = BrickColor.new("Institutional white")
  3956. rng.CanCollide = false
  3957. rng.FormFactor = 3
  3958. rng.Name = "Ring"
  3959. rng.Size = Vector3.new(1, 1, 1)
  3960. rng.Transparency = 0.35
  3961. rng.TopSurface = 0
  3962. rng.BottomSurface = 0
  3963. rng2 = rng:clone()
  3964. rng3 = rng2:clone()
  3965. rng4 = rng2:clone()
  3966. local rngm = Instance.new("SpecialMesh", rng)
  3967. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  3968. rngm.Scale = Vector3.new(10, 10, 1)
  3969. rngm2 = rngm:clone()
  3970. rngm2.Scale = Vector3.new(5, 5, 3)
  3971. rngm3=rngm2:clone()
  3972. rngm3.Parent = rng3
  3973. rngm3.Scale = Vector3.new(8, 8, 1)
  3974. rngm4 = rngm2:clone()
  3975. rngm4.Parent = rng4
  3976. rngm4.Scale = Vector3.new(6, 6, 1)
  3977. local bem = Instance.new("Part", char)
  3978. bem.Anchored = true
  3979. bem.BrickColor = BrickColor.new("Really black")
  3980. bem.CanCollide = false
  3981. bem.FormFactor = 3
  3982. bem.Name = "Beam" .. shot
  3983. bem.Size = Vector3.new(1, 1, 1)
  3984. bem.Transparency = 0.35
  3985. bem.TopSurface = 0
  3986. bem.BottomSurface = 0
  3987. local bemm = Instance.new("SpecialMesh", bem)
  3988. bemm.MeshType = 4
  3989. bemm.Scale = Vector3.new(1, 4, 4)
  3990. local out = Instance.new("Part", char)
  3991. out.Anchored = true
  3992. out.BrickColor = BrickColor.new("Really black")
  3993. out.CanCollide = false
  3994. out.FormFactor = 3
  3995. out.Name = "Out"
  3996. out.Size = Vector3.new(4, 4, 4)
  3997. out.Transparency = 0.35
  3998. out.TopSurface = 0
  3999. out.BottomSurface = 0
  4000. local outm = Instance.new("SpecialMesh", out)
  4001. outm.MeshId = "http://www.roblox.com/asset/?id=1033714"
  4002. outm.Scale = Vector3.new(4, 4, 4)
  4003. local bnd = Instance.new("Part", char)
  4004. bnd.Anchored = true
  4005. bnd.BrickColor = BrickColor.new("Institutional white")
  4006. bnd.CanCollide = false
  4007. bnd.FormFactor = 3
  4008. bnd.Name = "Bend"
  4009. bnd.Size = Vector3.new(1, 1, 1)
  4010. bnd.Transparency = 1
  4011. bnd.TopSurface = 0
  4012. bnd.BottomSurface = 0
  4013. local bndm = Instance.new("SpecialMesh", bnd)
  4014. bndm.MeshType = 3
  4015. bndm.Scale = Vector3.new(8, 8, 8)
  4016. out.CFrame = larm.CFrame * CFrame.new(0, -2.7, 0)
  4017. bem.CFrame = out.CFrame * CFrame.new(0, -2.5, 0) * CFrame.Angles(0, 0, math.rad(90))
  4018. bnd.CFrame = bem.CFrame * CFrame.new(0, 0, 0)
  4019. rng.CFrame = out.CFrame * CFrame.Angles(math.rad(90), 0, 0)
  4020. rng3.CFrame = rng.CFrame * CFrame.new(0, -.5, 0)
  4021. rng4.CFrame = rng.CFrame * CFrame.new(0, -1, 0)
  4022. Debounces.Shewt = true
  4023. coroutine.wrap(function()
  4024. for i = 1, 20, 0.2 do
  4025. rngm.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4026. rngm3.Scale = Vector3.new(8 + i*3, 8 + i*3, 1)
  4027. rngm4.Scale = Vector3.new(6 + i*4, 6 + i*4, 1)
  4028. rng.Transparency = i/20
  4029. rng3.Transparency = 1/24
  4030. rng4.Transparency = i/26
  4031. wait()
  4032. end
  4033. wait()
  4034. rng:Destroy()
  4035. end)()
  4036. if Debounces.Shewt == true then
  4037. char:WaitForChild("Beam" .. shot).Touched:connect(function(ht)
  4038. hit = ht.Parent
  4039. if hit:IsA("Model") and hit:findFirstChild("Humanoid") then
  4040. if HasntTouched(hit.Name) == true and deb == false then
  4041. deb = true
  4042. coroutine.wrap(function()
  4043. hit:FindFirstChild("Humanoid").PlatformStand = true
  4044. hit:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4045. hit:FindFirstChild("Humanoid"):TakeDamage(math.random(24,73))
  4046. end)()
  4047. table.insert(Touche, hit.Name)
  4048. deb = false
  4049. end
  4050. elseif hit:IsA("Hat") and hit.Parent:findFirstChild("Humanoid") then
  4051. if HasntTouched(hit.Parent.Name) == true and deb == false then
  4052. deb = true
  4053. coroutine.wrap(function()
  4054. hit.Parent:FindFirstChild("Humanoid").PlatformStand = true
  4055. hit.Parent:FindFirstChild("Torso").Velocity = char.Head.CFrame.lookVector * 180
  4056. wait(1)
  4057. hit.Parent:FindFirstChild("Humanoid").PlatformStand = false
  4058. end)()
  4059. table.insert(Touche, hit.Parent.Name)
  4060. deb = false
  4061. for i, v in pairs(Touche) do
  4062. print(v)
  4063. end
  4064. end
  4065. end
  4066. end)
  4067. end
  4068. for i = 0, 260, 8 do
  4069. bem.Size = Vector3.new(i, 2, 2)
  4070. bem.CFrame = larm.CFrame * CFrame.new(0, -4.2 -(i/2), 0) * CFrame.Angles(0, 0, math.rad(90))
  4071. bnd.CFrame = bem.CFrame * CFrame.new(-i/2, 0, 1.2)
  4072. bnd.Size = Vector3.new(1,1,1)
  4073. bndm.Scale = Vector3.new(8,8,8)
  4074. if i % 10 == 0 then
  4075. local newRng = rng2:Clone()
  4076. newRng.Parent = char
  4077. newRng.CFrame = larm.CFrame * CFrame.new(0, -4.2-i, 0) * CFrame.Angles(math.rad(90), 0, 0)
  4078. local newRngm = rngm2:clone()
  4079. newRngm.Parent=newRng
  4080. coroutine.wrap(function()
  4081. for i = 1, 10, 0.2 do
  4082. newRngm.Scale = Vector3.new(8 + i*2, 8 + i*2, 3)
  4083. newRng.Transparency = i/10
  4084. wait()
  4085. end
  4086. wait()
  4087. newRng:Destroy()
  4088. end)()
  4089. end
  4090. wait()
  4091. end
  4092. wait()
  4093. Debounces.Shewt = false
  4094. bem:Destroy()
  4095. out:Destroy()
  4096. bnd:Destroy()
  4097. Debounces.Ready = false
  4098. for i, v in pairs(Touche) do
  4099. table.remove(Touche, i)
  4100. end
  4101. wait()
  4102. table.insert(Touche, char.Name)
  4103. Debounces.NoIdl = false
  4104. if Debounces.CanAttack == false then
  4105. Debounces.CanAttack = true
  4106. end
  4107. end
  4108. end
  4109. end)
  4110. ----------------------------------------------------
  4111. sidz = {"231917888", "231917845", "231917806"}
  4112. ptz = {0.65, 0.7, 0.75, 0.8, 0.95, 1}
  4113. mouse.KeyDown:connect(function(key)
  4114. if key == "f" then
  4115. larm.BrickColor = BrickColor.new("Bright red")
  4116. rarm.BrickColor = BrickColor.new("Bright red")
  4117. if Debounces.CanAttack == true then
  4118. Debounces.CanAttack = false
  4119. Debounces.on = true
  4120. Debounces.NoIdl = true
  4121. for i = 1, 20 do
  4122. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4123. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4124. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4125. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4126. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4127. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4128. 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)
  4129. if Debounces.on == false then break end
  4130. rs:wait(6)
  4131. end
  4132. z = Instance.new("Sound",char)
  4133. z.SoundId = "rbxassetid://"..sidz[math.random(1,#sidz)]
  4134. z.Pitch = ptz[math.random(1,#ptz)]
  4135. z.Volume = 1
  4136. z1 = Instance.new("Sound",char)
  4137. z1.SoundId = z.SoundId
  4138. z1.Pitch = z.Pitch
  4139. z1.Volume = 1
  4140. z:Play()
  4141. z1:Play()
  4142. Stomp()
  4143. for i = 1, 20 do
  4144. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4145. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4146. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.3)
  4147. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, -.6) * CFrame.Angles(math.rad(-30), math.rad(0), 0), 0.3)
  4148. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4149. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2.8, -1.4) * CFrame.Angles(math.rad(30), 0, math.rad(0)), 0.3)
  4150. 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)
  4151. if Debounces.on == false then break end
  4152. rs:wait(2.5)
  4153. end
  4154. if Debounces.CanAttack == false then
  4155. Debounces.CanAttack = true
  4156. Debounces.on = false
  4157. Debounces.NoIdl = false
  4158. larm.BrickColor = BrickColor.new("Really black")
  4159. rarm.BrickColor = BrickColor.new("Really black")
  4160. end
  4161. end
  4162. end
  4163. end)
  4164. ----------------------------------------------------
  4165. mouse.KeyDown:connect(function(key)
  4166. if key == "g" then
  4167. larm.BrickColor = BrickColor.new("Bright red")
  4168. rarm.BrickColor = BrickColor.new("Bright red")
  4169. if Debounces.CanAttack == true then
  4170. Debounces.CanAttack = false
  4171. Debounces.on = true
  4172. Debounces.NoIdl = true
  4173. chrg = lleg.Touched:connect(function(ht)
  4174. hit = ht.Parent
  4175. if ht and hit:IsA("Model") then
  4176. if hit:FindFirstChild("Humanoid") then
  4177. if hit.Name ~= p.Name then
  4178. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4179. Debounces.Slashed = true]]--
  4180. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4181. hit:FindFirstChild("Humanoid").PlatformStand = true
  4182. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4183. --Debounces.Slashed = false
  4184. --end
  4185. end
  4186. end
  4187. elseif ht and hit:IsA("Hat") then
  4188. if hit.Parent.Name ~= p.Name then
  4189. if hit.Parent:FindFirstChild("Humanoid") then
  4190. --[[ if Debounces.Slashing == true and Debounces.Slashed == false then
  4191. Debounces.Slashed = true]]--
  4192. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4193. hit:FindFirstChild("Humanoid").PlatformStand = true
  4194. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4195. --Debounces.Slashed = false
  4196. end
  4197. end
  4198. end
  4199. end)
  4200. for i = 1, 14 do
  4201. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9, 0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.2)
  4202. 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.2)
  4203. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, -.2)*CFrame.Angles(math.rad(0),math.rad(90),math.rad(0)), 0.2)
  4204. 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.2)
  4205. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-.8, -3, 0) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(15)), 0.2)
  4206. 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.2)
  4207. 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)
  4208. if Debounces.on == false then break end
  4209. rs:wait(3)
  4210. end
  4211. charge()
  4212. z = Instance.new("Sound",char)
  4213. z.SoundId = "rbxassetid://200632875"
  4214. z.Volume = 1
  4215. z.Pitch = .8
  4216. z1 = Instance.new("Sound",char)
  4217. z1.SoundId = "rbxassetid://200632875"
  4218. z1.Volume = 1
  4219. z1.Pitch = .9
  4220. z:Play()
  4221. z1:Play()
  4222. wait(1)
  4223. z:Destroy()
  4224. z1:Destroy()
  4225. chrg:disconnect()
  4226. if Debounces.CanAttack == false then
  4227. Debounces.CanAttack = true
  4228. Debounces.on = false
  4229. Debounces.NoIdl = false
  4230. larm.BrickColor = BrickColor.new("Really black")
  4231. rarm.BrickColor = BrickColor.new("Really black")
  4232. end
  4233. end
  4234. end
  4235. end)
  4236. ----------------------------------------------------
  4237. pt = {0.7, 0.8, 0.9}
  4238. mouse.KeyDown:connect(function(key)
  4239. if key == "h" then
  4240. if Debounces.CanJoke == true then
  4241. Debounces.CanJoke = false
  4242. u = Instance.new("Sound")
  4243. u.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4244. u.Parent = char
  4245. u.Looped = false
  4246. u.Pitch = pt[math.random(1,#pt)]
  4247. u.Volume = 1
  4248. u2 = Instance.new("Sound")
  4249. u2.SoundId = "http://www.roblox.com/asset/?id=138199573"
  4250. u2.Parent = char
  4251. u2.Looped = false
  4252. u2.Pitch = u.Pitch
  4253. u2.Volume = 1
  4254. wait(.01)
  4255. u:Play()
  4256. u2:Play()
  4257. wait(6)
  4258. u:Destroy()
  4259. u2:Destroy()
  4260. if Debounces.CanJoke == false then
  4261. Debounces.CanJoke = true
  4262. end
  4263. end
  4264. end
  4265. end)
  4266. ----------------------------------------------------
  4267. mouse.KeyDown:connect(function(key)
  4268. if key == "j" then
  4269. if Debounces.CanJoke == true then
  4270. Debounces.CanJoke = false
  4271. z = Instance.new("Sound",char)
  4272. z.SoundId = "rbxassetid://135017755"
  4273. z.Pitch = .76
  4274. z.Volume = 1
  4275. wait()
  4276. z:Play()
  4277. wait(6)
  4278. z:Destroy()
  4279. if Debounces.CanJoke == false then
  4280. Debounces.CanJoke = true
  4281. end
  4282. end
  4283. end
  4284. end)
  4285. ----------------------------------------------------
  4286. mouse.KeyDown:connect(function(key)
  4287. if key == "k" then
  4288. if Debounces.CanJoke == true then
  4289. Debounces.CanJoke = false
  4290. z = Instance.new("Sound",char)
  4291. z.SoundId = "rbxassetid://135017578"
  4292. z.Pitch = .76
  4293. z.Volume = 1
  4294. wait()
  4295. z:Play()
  4296. wait(4)
  4297. z:Destroy()
  4298. if Debounces.CanJoke == false then
  4299. Debounces.CanJoke = true
  4300. end
  4301. end
  4302. end
  4303. end)
  4304. ----------------------------------------------------
  4305. mouse.KeyDown:connect(function(key)
  4306. if key == "x" then
  4307. if Debounces.CanAttack == true then
  4308. Debounces.CanAttack = false
  4309. Debounces.NoIdl = true
  4310. Debounces.on = true
  4311. Debounces.ks = true
  4312. for i = 1, 10 do
  4313. 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)
  4314. 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.2)
  4315. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.4)*CFrame.Angles(math.rad(-26),math.rad(0),0), 0.2)
  4316. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-10), math.rad(0), 0), 0.2)
  4317. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  4318. 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.2)
  4319. 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)
  4320. if Debounces.on == false then break end
  4321. rs:wait(1)
  4322. end
  4323. z = Instance.new("Sound",hed)
  4324. z.SoundId = "rbxassetid://169445092"
  4325. z.Volume = 1
  4326. wait(0.1)
  4327. z:Play()
  4328. kik = rleg.Touched:connect(function(ht)
  4329. hit = ht.Parent
  4330. if ht and hit:IsA("Model") then
  4331. if hit:FindFirstChild("Humanoid") then
  4332. if hit.Name ~= p.Name then
  4333. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4334. Debounces.Slashed = true]]--
  4335. if Debounces.ks==true then
  4336. z = Instance.new("Sound",hed)
  4337. z.SoundId = "rbxassetid://169380525"
  4338. z.Volume = 1
  4339. z:Play()
  4340. Debounces.ks=false
  4341. end
  4342. hit:FindFirstChild("Humanoid"):TakeDamage(2)
  4343. hit:FindFirstChild("Humanoid").PlatformStand = true
  4344. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4345. --Debounces.Slashed = false
  4346. --end
  4347. end
  4348. end
  4349. elseif ht and hit:IsA("Hat") then
  4350. if hit.Parent.Name ~= p.Name then
  4351. if hit.Parent:FindFirstChild("Humanoid") then
  4352. --[[if Debounces.Slashing == true and Debounces.Slashed == false then
  4353. Debounces.Slashed = true]]--
  4354. hit.Parent:FindFirstChild("Humanoid"):TakeDamage(2)
  4355. hit:FindFirstChild("Humanoid").PlatformStand = true
  4356. hit:FindFirstChild("Torso").Velocity = hit:FindFirstChild("Torso").CFrame.lookVector * -70
  4357. --Debounces.Slashed = false
  4358. --end
  4359. end
  4360. end
  4361. end
  4362. end)
  4363. for i = 1, 8 do
  4364. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(20)), 0.3)
  4365. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-20)), 0.3)
  4366. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,.2)*CFrame.Angles(math.rad(8),math.rad(0),0), 0.3)
  4367. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(16), math.rad(0), 0), 0.3)
  4368. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(0), math.rad(0)), 0.3)
  4369. 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.3)
  4370. 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)
  4371. if Debounces.on == false then break end
  4372. rs:wait(.7)
  4373. end
  4374. kik:disconnect()
  4375. if Debounces.CanAttack == false then
  4376. Debounces.CanAttack = true
  4377. Debounces.on = false
  4378. Debounces.NoIdl = false
  4379. end
  4380. end
  4381. end
  4382. end)
  4383. ----------------------------------------------------
  4384. mouse.KeyDown:connect(function(key)
  4385. if key == "c" then
  4386. if Debounces.CanAttack == true then
  4387. Debounces.CanAttack = false
  4388. Debounces.NoIdl = true
  4389. Debounces.on = true
  4390. SIDZ = {"231917744", "231917742"}
  4391. PTZ = {0.7, 0.8, 0.9, 1}
  4392. for i = 1, 20 do
  4393. wait()
  4394. for i,v in pairs(char.Absolution:children()) do
  4395. if v:IsA("Part") or v:IsA("WedgePart") then
  4396. v.Transparency = v.Transparency + 0.05
  4397. end
  4398. end
  4399. end
  4400. function FindNearestTorso(Position,Distance,SinglePlayer)
  4401. if SinglePlayer then return(SinglePlayer.Torso.CFrame.p -Position).magnitude < Distance end
  4402. local List = {}
  4403. for i,v in pairs(workspace:GetChildren())do
  4404. if v:IsA("Model")then
  4405. if v:findFirstChild("Torso")then
  4406. if v ~= char then
  4407. if(v.Torso.Position -Position).magnitude <= Distance then
  4408. table.insert(List,v)
  4409. end
  4410. end
  4411. end
  4412. end
  4413. end
  4414. return List
  4415. end
  4416. GroundPound()
  4417. for i = 1, 11 do
  4418. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4419. 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.4)
  4420. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4421. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4422. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4423. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4424. 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)
  4425. if Debounces.on == false then break end
  4426. rs:wait(1.4)
  4427. end
  4428. GroundPound()
  4429. for i = 1, 11 do
  4430. 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.4)
  4431. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4432. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4433. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4434. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4435. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4436. 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)
  4437. if Debounces.on == false then break end
  4438. rs:wait(1.4)
  4439. end
  4440. GroundPound()
  4441. for i = 1, 11 do
  4442. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4443. 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.4)
  4444. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4445. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4446. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4447. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4448. 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)
  4449. if Debounces.on == false then break end
  4450. rs:wait(1.4)
  4451. end
  4452. GroundPound()
  4453. for i = 1, 11 do
  4454. 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.4)
  4455. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4456. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4457. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4458. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4459. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4460. 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)
  4461. if Debounces.on == false then break end
  4462. rs:wait(1.4)
  4463. end
  4464. GroundPound()
  4465. for i = 1, 11 do
  4466. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(50)), 0.4)
  4467. 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.4)
  4468. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(20),0), 0.3)
  4469. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(-20), 0), 0.3)
  4470. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(-30)), 0.3)
  4471. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4472. 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)
  4473. if Debounces.on == false then break end
  4474. rs:wait(1.4)
  4475. end
  4476. GroundPound()
  4477. for i = 1, 11 do
  4478. 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.4)
  4479. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,1)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(-50)), 0.4)
  4480. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(-20),0), 0.3)
  4481. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.2, 0) * CFrame.Angles(math.rad(-80), math.rad(20), 0), 0.3)
  4482. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -2, -1) * CFrame.Angles(math.rad(80), 0, math.rad(10)), 0.3)
  4483. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -2, -.4) * CFrame.Angles(math.rad(80), 0, math.rad(30)), 0.3)
  4484. 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)
  4485. if Debounces.on == false then break end
  4486. rs:wait(1.4)
  4487. end
  4488. for i = 1, 24 do
  4489. 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.2)
  4490. 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.2)
  4491. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4492. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, 2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4493. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4494. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4495. 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)
  4496. if Debounces.on == false then break end
  4497. rs:wait(3)
  4498. end
  4499. for i,v in pairs(FindNearestTorso(torso.CFrame.p,25))do
  4500. if v:FindFirstChild('Humanoid') then
  4501. v.Humanoid:TakeDamage(math.random(20,60))
  4502. v.Humanoid.PlatformStand = true
  4503. v:FindFirstChild("Torso").Velocity = hed.CFrame.lookVector * 100
  4504. end
  4505. end
  4506. x = Instance.new("Sound",char)
  4507. x.SoundId = "rbxassetid://"..SIDZ[math.random(1,#SIDZ)]
  4508. x.Pitch = PTZ[math.random(1,#PTZ)]
  4509. x.Volume = 1
  4510. wait(0.1)
  4511. x:Play()
  4512. Crater(hed,20)
  4513. for i = 1, 20 do
  4514. 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)
  4515. 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)
  4516. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.6)
  4517. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -5, 0) * CFrame.Angles(math.rad(-90), math.rad(0), 0), 0.6)
  4518. 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)
  4519. 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)
  4520. 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)
  4521. if Debounces.on == false then break end
  4522. rs:wait(2)
  4523. end
  4524. if Debounces.CanAttack == false then
  4525. Debounces.CanAttack = true
  4526. Debounces.on = false
  4527. Debounces.NoIdl = false
  4528. for i = 1, 20 do
  4529. wait()
  4530. for i,v in pairs(char.Absolution:children()) do
  4531. if v:IsA("Part") or v:IsA("WedgePart") then
  4532. v.Transparency = v.Transparency - 0.05
  4533. end
  4534. end
  4535. end
  4536. end
  4537. end
  4538. end
  4539. end)
  4540. ----------------------------------------------------176349813
  4541. mouse.KeyDown:connect(function(key)
  4542. if key == "b" then
  4543. hum.WalkSpeed = 0.01
  4544. if Debounces.CanAttack == true then
  4545. Debounces.CanAttack = false
  4546. Debounces.NoIdl = true
  4547. Debounces.on = true
  4548. for i = 1, 30 do
  4549. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(-34)), 0.2)
  4550. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.4, 2.4, 0)*CFrame.Angles(math.rad(170),math.rad(0),math.rad(34)), 0.2)
  4551. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, .2)*CFrame.Angles(math.rad(16),math.rad(0),0), 0.2)
  4552. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(20), math.rad(0), 0), 0.2)
  4553. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4554. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1.4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4555. 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)
  4556. if Debounces.on == false then break end
  4557. rs:wait(6)
  4558. end
  4559. v = Instance.new("Sound")
  4560. v.SoundId = "rbxassetid://181384451"
  4561. v.Parent = char
  4562. v.Looped = false
  4563. v.Pitch = .94
  4564. v.Volume = 1
  4565. wait(.01)
  4566. v:Play()
  4567.  
  4568. if Daytime == true then
  4569. Daytime = false
  4570. l.TimeOfDay = 24
  4571. else
  4572. Daytime = true
  4573. l.TimeOfDay = 12
  4574. l.OutdoorAmbient = Color3.new(0.498039, 0.498039, 0.498039)
  4575. end
  4576.  
  4577. local Shockwave = function()
  4578. local rng1 = Instance.new("Part", char)
  4579. rng1.Anchored = true
  4580. rng1.BrickColor = BrickColor.new("Really black")
  4581. rng1.CanCollide = false
  4582. rng1.FormFactor = 3
  4583. rng1.Name = "Ring"
  4584. rng1.Size = Vector3.new(1, 1, 1)
  4585. rng1.Transparency = 0.35
  4586. rng1.TopSurface = 0
  4587. rng1.BottomSurface = 0
  4588. local rngm1 = Instance.new("SpecialMesh", rng)
  4589. rngm1.MeshId = "http://www.roblox.com/asset/?id=3270017"
  4590. rngm1.Scale = Vector3.new(10, 10, 1)
  4591. rng1.CFrame = CFrame.new(0, -2, 0) * CFrame.Angles(0, 0, 0)
  4592. local Wave = Instance.new("Part", game.Workspace--[[?]])
  4593. Wave.Name = "Shockwave"
  4594. Wave.BrickColor = BrickColor.new("Really black")
  4595. Wave.Size = Vector3.new(1, 1, 1)
  4596. Wave.Shape = "Ball"
  4597. Wave.CanCollide = false
  4598. Wave.Anchored = true
  4599. Wave.TopSurface = 0
  4600. Wave.BottomSurface = 0
  4601. Wave.Touched:connect(function(hit)
  4602. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4603. local Occlude = true
  4604. local NotOccludes = {
  4605. char.Name;
  4606. "Wings";
  4607. "Scythe";
  4608. "Thingy";
  4609. "Thingy2"; -- put all of the names in a table pls
  4610. }
  4611. for i,v in pairs(NotOccludes) do
  4612. if hit.Parent.Name == v then
  4613. Occlude = false
  4614. end
  4615. end
  4616. --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
  4617. if Occlude then
  4618. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4619. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4620. end
  4621. end
  4622. end)
  4623.  
  4624. Instance.new("SpecialMesh", Wave).MeshType = "Sphere"
  4625.  
  4626. coroutine.wrap(function()
  4627. for i = 1, 20, 0.2 do
  4628. rngm1.Scale = Vector3.new(10 + i*2, 10 + i*2, 1)
  4629. rng1.Transparency = i/20
  4630. wait()
  4631. end
  4632. wait()
  4633. rng1:Destroy()
  4634. end)()
  4635.  
  4636. Delay(0, function()
  4637.  
  4638. if Daytime == false then
  4639. for i = 1, 50, 1 do
  4640. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4641. Wave.CFrame = char.Torso.CFrame
  4642. local t = i / 50
  4643. Wave.Transparency = t
  4644. wait()
  4645. end
  4646. else
  4647. for i = 1, 50, 1 do
  4648. Wave.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4649. Wave.CFrame = char.Torso.CFrame
  4650. local t = i / 50
  4651. Wave.Transparency = t
  4652. wait()
  4653. end
  4654. end
  4655. Wave:Destroy()
  4656. end)
  4657. Delay(0, function()
  4658. while wait() do
  4659. if Wave ~= nil then
  4660. Wave.CFrame = char.Torso.CFrame
  4661. else
  4662. break
  4663. end
  4664. end
  4665. end)
  4666. end
  4667. Shockwave()
  4668. for i = 1, 30 do
  4669. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0, 3, 0)*CFrame.Angles(math.rad(20),math.rad(0), math.rad(0)),0.3)
  4670. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.3)
  4671. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(28)), 0.3)
  4672. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 0.9, .4)*CFrame.Angles(math.rad(-50),math.rad(0),math.rad(-28)), 0.3)
  4673. 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)
  4674. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3.2, .3) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4675. if Debounces.on == false then break end
  4676. rs:wait()
  4677. end
  4678. wait(2.4)
  4679. Debounces.NoIdl = false
  4680. hum.WalkSpeed = 5
  4681. Debounces.on = false
  4682. wait()
  4683. if Debounces.CanAttack == false then
  4684. Debounces.CanAttack = true
  4685. v:Destroy()
  4686. end
  4687. end
  4688. end
  4689. end)
  4690. ----------------------------------------------------
  4691. mouse.KeyDown:connect(function(key)
  4692. if key == "l" then
  4693. for i = 1, 20 do
  4694. wait()
  4695. for i,v in pairs(char.Absolution:children()) do
  4696. if v:IsA("Part") or v:IsA("WedgePart") then
  4697. v.Transparency = v.Transparency + 0.05
  4698. end
  4699. end
  4700. end
  4701. if Debounces.CanAttack == true then
  4702. Debounces.CanAttack = false
  4703. Debounces.NoIdl = true
  4704. Debounces.on = true
  4705. bv = Instance.new("BodyVelocity",torso)
  4706. bv.maxForce = Vector3.new(0,200000,0)
  4707. bv.P = 100000
  4708. bv.velocity = Vector3.new(0,500,0)
  4709. wait(2)
  4710. bv:Destroy()
  4711. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  4712. for i = 1, 20 do
  4713. 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)
  4714. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.6, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.3)
  4715. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(40)), 0.3)
  4716. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(2.5, .9, -.5) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(-40)), 0.3)
  4717. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4718. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -1) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  4719. 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)
  4720. if Debounces.on == false then break end
  4721. wait()
  4722. end
  4723. for i = 1, 360, 20 do wait()
  4724. torso.Weld.C1 = CFrame.new(0,0,0) * CFrame.Angles(math.rad(i),0,0)
  4725. end
  4726. end
  4727. torso.Weld.C1 = CFrame.new(0,-1.2,0)
  4728. local ry,ht,ps=nil,nil,nil
  4729. while ht==nil do
  4730. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  4731. wait()
  4732. end
  4733. z = Instance.new("Sound",char)
  4734. z.SoundId = "rbxassetid://245537790"
  4735. z.Pitch = 1
  4736. z.Volume = 1
  4737. wait(0.1)
  4738. z:Play()
  4739. local sp = Instance.new("Part", char)
  4740. sp.Name = "Energy"
  4741. sp.BrickColor = BrickColor.new("Really black")
  4742. sp.Size = Vector3.new(1, 1, 1)
  4743. sp.Shape = "Ball"
  4744. sp.CanCollide = false
  4745. sp.Anchored = true
  4746. sp.TopSurface = 0
  4747. sp.BottomSurface = 0
  4748. local spm = Instance.new("SpecialMesh",sp)
  4749. spm.MeshId = "rbxassetid://9982590"
  4750. spm.Scale = Vector3.new(3,3,3)
  4751. local sp2 = Instance.new("Part", char)
  4752. sp2.Name = "Energy2"
  4753. sp2.BrickColor = BrickColor.new("Really black")
  4754. sp2.Size = Vector3.new(1, 1, 1)
  4755. sp2.Shape = "Ball"
  4756. sp2.CanCollide = false
  4757. sp2.Anchored = true
  4758. sp2.TopSurface = 0
  4759. sp2.BottomSurface = 0
  4760. local spm2 = Instance.new("SpecialMesh",sp2)
  4761. spm2.MeshId = "rbxassetid://9982590"
  4762. spm2.Scale = Vector3.new(3,3,3)
  4763. sp.Touched:connect(function(hit)
  4764. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4765. local Occlude = true
  4766. local NotOccludes = {
  4767. char.Name;
  4768. "Wings";
  4769. "Scythe";
  4770. "Thingy";
  4771. "Thingy2"; -- put all of the names in a table pls
  4772. }
  4773. for i,v in pairs(NotOccludes) do
  4774. if hit.Parent.Name == v then
  4775. Occlude = false
  4776. end
  4777. end
  4778. --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
  4779. if Occlude then
  4780. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 80
  4781. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4782. end
  4783. end
  4784. end)
  4785. sp2.Touched:connect(function(hit)
  4786. if hit.Parent:findFirstChild("Humanoid") and hit.Parent:findFirstChild("Torso") then
  4787. local Occlude = true
  4788. local NotOccludes = {
  4789. char.Name;
  4790. "Wings";
  4791. "Scythe";
  4792. "Thingy";
  4793. "Thingy2"; -- put all of the names in a table pls
  4794. }
  4795. for i,v in pairs(NotOccludes) do
  4796. if hit.Parent.Name == v then
  4797. Occlude = false
  4798. end
  4799. end
  4800. --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
  4801. if Occlude then
  4802. hit.Parent:findFirstChild("Humanoid").Health = hit.Parent:findFirstChild("Humanoid").Health - 1
  4803. hit.Parent:findFirstChild("Torso").Velocity = hit.Parent:findFirstChild("Torso").CFrame.lookVector * -120
  4804. end
  4805. end
  4806. end)
  4807. for i = 1, 100, 1 do
  4808. sp.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4809. sp2.Size = Vector3.new(1 + i, 1 + i, 1 + i)
  4810. sp.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(i), math.rad(i), math.rad(-i))
  4811. sp2.CFrame = root.CFrame * CFrame.new(0,0,0) * CFrame.Angles(math.rad(-i), math.rad(-i), math.rad(i))
  4812. spm.Scale = sp.Size
  4813. spm2.Scale = sp2.Size
  4814. local t = i / 100
  4815. sp.Transparency = t
  4816. sp2.Transparency = t
  4817. wait()
  4818. end
  4819. sp:Destroy()
  4820. sp2:Destroy()
  4821. z:Destroy()
  4822. for i = 1, 20 do
  4823. wait()
  4824. for i,v in pairs(char.Absolution:children()) do
  4825. if v:IsA("Part") or v:IsA("WedgePart") then
  4826. v.Transparency = v.Transparency - 0.05
  4827. end
  4828. end
  4829. end
  4830. if Debounces.CanAttack == false then
  4831. Debounces.CanAttack = true
  4832. Debounces.NoIdl = false
  4833. Debounces.on = false
  4834. end
  4835. end
  4836. end
  4837. end)
  4838. ----------------------------------------------------
  4839. local orbt={}
  4840. local stlt={}
  4841. local chot={}
  4842. local cfxt={}
  4843. local pfxt={}
  4844. local cns=0
  4845. local cnOrb=nil
  4846. mouse.KeyDown:connect(function(key)
  4847. if key == "u" then
  4848. if Debounces.CanAttack == true then
  4849. Debounces.CanAttack = false
  4850. Debounces.NoIdl = true
  4851. Debounces.on = true
  4852. orbt={}
  4853. stlt={}
  4854. chot={}
  4855. cfxt={}
  4856. for i = 1, 20 do
  4857. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(70),math.rad(0),math.rad(30)), 0.2)
  4858. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,1.4,0)*CFrame.Angles(math.rad(170),math.rad(-20),math.rad(-30)), 0.2)
  4859. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(-40),0), 0.2)
  4860. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  4861. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, 0.4) * CFrame.Angles(math.rad(-20), math.rad(20), math.rad(-10)), 0.2)
  4862. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, -0.4) * CFrame.Angles(math.rad(20), math.rad(-10), math.rad(10)), 0.2)
  4863. 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)
  4864. if Debounces.on == false then end
  4865. rs:wait()
  4866. end
  4867. z = Instance.new("Sound",char)
  4868. z.SoundId = "rbxassetid://170053944"
  4869. z.Pitch = 1.07
  4870. z.Volume = 2
  4871. wait(0.1)
  4872. z:Play()
  4873. z2 = Instance.new("Sound",char)
  4874. z2.SoundId = "rbxassetid://489657591"
  4875. z2.Pitch = 2
  4876. z2.Volume = 2
  4877. wait(0.1)
  4878. z2:Play()
  4879. cnOrb=nwPrt(char,Vector3.new(10,10,10),larm.CFrame*CFrame.new(0,-3.4,-0.1),"Institutional white")
  4880.  
  4881. local txt = Instance.new("BillboardGui", cnOrb)
  4882. txt.Adornee = cnOrb
  4883. txt.Name = "_status"
  4884. txt.Size = UDim2.new(2, 0, 1.2, 0)
  4885. txt.StudsOffset = Vector3.new(-9, 75, 0)
  4886. local text = Instance.new("TextLabel", txt)
  4887. text.Size = UDim2.new(10, 0, 7, 0)
  4888. text.FontSize = "Size24"
  4889. text.TextScaled = true
  4890. text.TextTransparency = 0
  4891. text.BackgroundTransparency = 1
  4892. text.TextTransparency = 0
  4893. text.TextStrokeTransparency = 0
  4894. text.Font = "SciFi"
  4895. text.TextStrokeColor3 = Color3.new(0,0,0)
  4896.  
  4897. v=Instance.new("Part")
  4898. v.Name = "ColorBrick"
  4899. v.Parent=cnOrb
  4900. v.FormFactor="Symmetric"
  4901. v.Anchored=true
  4902. v.CanCollide=false
  4903. v.BottomSurface="Smooth"
  4904. v.TopSurface="Smooth"
  4905. v.Size=Vector3.new(10,5,3)
  4906. v.Transparency=1
  4907. v.CFrame=char.Torso.CFrame
  4908. v.BrickColor=BrickColor.new(CV)
  4909. v.Transparency=1
  4910. text.TextColor3 = Color3.new(1,1,1)
  4911. v.Shape="Block"
  4912. text.Text = "Scuti"
  4913.  
  4914. debris:AddItem(cnOrb,50)
  4915. cnOrb.Mesh.MeshType=3
  4916. table.insert(orbt,cnOrb)
  4917. table.insert(stlt,cnOrb)
  4918. local nt=0
  4919. for i=0,5,0.02 do
  4920. nt=nt+1
  4921. cns=i
  4922. if nt>=2 then
  4923. nt=0
  4924. local cho=nwPrt(mod3,Vector3.new(20,20,20),cnOrb.CFrame*CFrame.Angles(math.rad(math.random(-180,180)),math.rad(math.random(-180,180)),math.rad(math.random(-180,180)))*CFrame.new(0,5+cns,0),"Institutional white")
  4925. debris:AddItem(cho,1)
  4926. cho.Mesh.MeshType=3
  4927. table.insert(chot,cho)
  4928. end
  4929. cnOrb.CFrame=larm.CFrame*CFrame.new(0,-3.4-(cns/2),-0.1)
  4930. cnOrb.Mesh.Scale=Vector3.new(i,i,i)
  4931. wait()
  4932. end
  4933. for i = 1, 14 do
  4934. 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.6)
  4935. if Debounces.on == false then end
  4936. rs:wait()
  4937. end
  4938. coroutine.wrap(function()
  4939. for i = 1, 20 do
  4940. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(30)), 0.45)
  4941. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-2,.8,-.3)*CFrame.Angles(math.rad(70),math.rad(20),math.rad(50)), 0.6)
  4942. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(0),math.rad(20),0), 0.5)
  4943. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-40), math.rad(-20), 0), 0.5)
  4944. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.15, -3, -0.4) * CFrame.Angles(math.rad(60), math.rad(20), math.rad(-10)), 0.5)
  4945. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.15, -3, 0.4) * CFrame.Angles(math.rad(0), math.rad(-10), math.rad(10)), 0.5)
  4946. if Debounces.on == false then end
  4947. rs:wait()
  4948. end
  4949. end)()
  4950. wait(0.1)
  4951. stlt={}
  4952. local ry,ht,ps=newRay(root.CFrame*CFrame.new(0,0,-4),root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)*CFrame.new(0,0,-2),160,{char})
  4953. cnOrb.CFrame=root.CFrame*CFrame.new(0,0,-4)*CFrame.Angles(math.rad(-5),0,0)
  4954. local nt=0
  4955. for i=0,160,3 do
  4956. cnOrb.CFrame=cnOrb.CFrame*CFrame.new(0,0,-3)
  4957. nt=nt+1
  4958. if nt>=6 then
  4959. nt=0
  4960. local cfx=nwPrt(mod3,Vector3.new(10,10,10),cnOrb.CFrame*CFrame.new(0,0,2)*CFrame.Angles(math.rad(90),0,0),"Institutional white")
  4961. cfx.Mesh.MeshId="rbxassetid://20329976"
  4962. cfx.Transparency=0.4
  4963. table.insert(cfxt,cfx)
  4964. debris:AddItem(cfx,1)
  4965. end
  4966. if (cnOrb.Position-ps).magnitude<6 then
  4967. break
  4968. end
  4969. wait()
  4970. end
  4971. orbt={}
  4972.  
  4973. for i=0,1,0.1 do
  4974. local cs=cnOrb.Mesh.Scale
  4975. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  4976. wait()
  4977. end
  4978. local ofx=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  4979. ofx.Transparency=0.5
  4980. ofx.Mesh.MeshType=3
  4981. ofx.Mesh.Scale=Vector3.new(30,30,30)
  4982. for _,v in pairs(game:service"Players":GetChildren()) do
  4983. pcall(function()
  4984. for _,c in pairs(v.Character:GetChildren()) do
  4985. if v~=p and c:IsA("Part") and (cnOrb.CFrame.p-c.CFrame.p).magnitude<60 and (cnOrb.CFrame.p-c.CFrame.p).magnitude>50 then
  4986. local hrp=v.Character:FindFirstChild("HumanoidRootPart")
  4987. hrp.Velocity=CFrame.new(hrp.CFrame.p,(cnOrb.CFrame*CFrame.new(0,10,0)).p).lookVector*150
  4988. end
  4989. end
  4990. end)
  4991. end
  4992. for i=0,1,0.05 do
  4993. local cs=cnOrb.Mesh.Scale
  4994. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,0.1,i),Tween(cs.Y,0.1,i),Tween(cs.Z,0.1,i))
  4995. local ofs=ofx.Mesh.Scale
  4996. ofx.Mesh.Scale=Vector3.new(Tween(ofs.X,0.1,i),Tween(ofs.Y,0.1,i),Tween(ofs.Z,0.1,i))
  4997. ofx.Transparency=Tween(ofx.Transparency,1,i)
  4998. wait()
  4999. end
  5000. ofx:Destroy()
  5001. cnOrb.CFrame=CFrame.new(cnOrb.Position)*CFrame.new(0,10,0)
  5002. local cnfx=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5003. cnfx.Mesh.MeshType=3
  5004. cnOrb.Transparency=0.05
  5005. local cnr=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5006. cnr.Mesh.MeshType=3
  5007. local rn1=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame*CFrame.Angles(math.rad(90),0,0),"Institutional white")
  5008. rn1.Transparency=1
  5009. rn1.Mesh.MeshId="rbxassetid://3270017"
  5010. local rn2=nwPrt(cnOrb,Vector3.new(10,10,10),cnOrb.CFrame,"Institutional white")
  5011. rn2.Transparency=1
  5012. rn2.Mesh.MeshId="rbxassetid://3270017"
  5013. local rn3=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame*CFrame.Angles(math.rad(-90),0,0),"Institutional white")
  5014. rn3.Transparency=1
  5015. rn3.Mesh.MeshId="rbxassetid://3270017"
  5016. local rn4=nwPrt(cnOrb,Vector3.new(100,100,100),cnOrb.CFrame,"Institutional white")
  5017. rn4.Transparency=1
  5018. rn4.Mesh.MeshId="rbxassetid://3270017"
  5019. local rn5=nwPrt(cnOrb,Vector3.new(200,200,100),cnOrb.CFrame,"Institutional white")
  5020. rn5.Transparency=1
  5021. rn5.Mesh.MeshId="rbxassetid://3270017"
  5022. local rn6=nwPrt(cnOrb,Vector3.new(200,200,100),cnOrb.CFrame,"Institutional white")
  5023. rn6.Transparency=1
  5024. rn6.Mesh.MeshId="rbxassetid://3270017"
  5025. local nt=0
  5026. local cs=nil
  5027. z4 = Instance.new("Sound",char)
  5028. z4.SoundId = "rbxassetid://419447292"
  5029. z4.Pitch = 1
  5030. z4.Volume = 10
  5031. wait(0.1)
  5032. z4:Play()
  5033. z3 = Instance.new("Sound",char)
  5034. z3.SoundId = "rbxassetid://421328847"
  5035. z3.Pitch = 1
  5036. z3.Volume = 10
  5037. wait(0.1)
  5038. z3:Play()
  5039. for i=0,1,0.05 do
  5040. cs=cnOrb.Mesh.Scale
  5041. cnOrb.Mesh.Scale=Vector3.new(Tween(cs.X,100,i),Tween(cs.Y,100,i),Tween(cs.Z,100,i))
  5042. local fs=cnfx.Mesh.Scale
  5043. cnfx.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,120,i))
  5044. cnfx.Transparency=cnfx.Transparency+0.05
  5045. rn1.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  5046. rn2.Mesh.Scale=Vector3.new(Tween(fs.X,120,i),Tween(fs.Y,120,i),Tween(fs.Z,60,i))
  5047. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  5048. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(6),math.rad(3))
  5049. rn1.Transparency=Tween(rn1.Transparency,0.8,i)
  5050. rn2.Transparency=Tween(rn2.Transparency,0.8,i)
  5051. rn3.Mesh.Scale=Vector3.new(Tween(fs.X,1200,i),Tween(fs.Y,1200,i),Tween(fs.Z,600,i))
  5052. rn4.Mesh.Scale=Vector3.new(Tween(fs.X,1200,i),Tween(fs.Y,1200,i),Tween(fs.Z,600,i))
  5053. rn3.CFrame=rn3.CFrame*CFrame.Angles(math.rad(-10),math.rad(-6),math.rad(-3))
  5054. rn4.CFrame=rn4.CFrame*CFrame.Angles(math.rad(-10),math.rad(-6),math.rad(-3))
  5055. rn3.Transparency=Tween(rn1.Transparency,0.8,i)
  5056. rn4.Transparency=Tween(rn2.Transparency,0.8,i)
  5057. rn5.Transparency=Tween(rn2.Transparency,0.25,i)
  5058. rn5.CFrame=rn5.CFrame*CFrame.Angles(math.rad(-20),math.rad(-18),math.rad(-9))
  5059. rn5.Mesh.Scale=Vector3.new(Tween(fs.X,2400,i),Tween(fs.Y,2400,i),Tween(fs.Z,1200,i))
  5060. rn6.Transparency=Tween(rn2.Transparency,0.25,i)
  5061. rn6.CFrame=rn6.CFrame*CFrame.Angles(math.rad(20),math.rad(18),math.rad(9))
  5062. rn6.Mesh.Scale=Vector3.new(Tween(fs.X,2400,i),Tween(fs.Y,2400,i),Tween(fs.Z,1200,i))
  5063. local rs=cnr.Mesh.Scale
  5064. cnr.Mesh.Scale=Vector3.new(Tween(rs.X,10,i),Tween(rs.Y,10,i),Tween(rs.Z,10,i))
  5065. nt=nt+1
  5066. if nt>=6 then
  5067. local pls={}
  5068. for _,v in pairs(game.Players:GetChildren()) do
  5069. table.insert(pls,v)
  5070. end
  5071. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5072. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Institutional white")
  5073. pffx.Mesh.MeshId="rbxassetid://20329976"
  5074. pffx.Mesh.Scale=Vector3.new(cs.X,cs.Y/5,cs.Z)
  5075. debris:AddItem(pffx,2)
  5076. table.insert(pfxt,pffx)
  5077. nt=0
  5078. end
  5079. wait()
  5080. end
  5081. local int=0
  5082. coroutine.wrap(function()
  5083. for i=1,500 do
  5084. rn1.CFrame=rn1.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5085. rn2.CFrame=rn2.CFrame*CFrame.Angles(math.rad(10),math.rad(5),math.rad(5))
  5086. rn3.CFrame=rn3.CFrame*CFrame.Angles(math.rad(-10),math.rad(-5),math.rad(-5))
  5087. rn4.CFrame=rn4.CFrame*CFrame.Angles(math.rad(-10),math.rad(-5),math.rad(-5))
  5088. rn5.CFrame=rn5.CFrame*CFrame.Angles(math.rad(5),math.rad(5),math.rad(5))
  5089. rn6.CFrame=rn6.CFrame*CFrame.Angles(math.rad(-5),math.rad(-5),math.rad(-5))
  5090. nt=nt+1
  5091. int=int+1
  5092. local htd={p}
  5093. for _,v in pairs(game:service"Players":GetChildren()) do
  5094. pcall(function()
  5095. for _,c in pairs(v.Character:GetChildren()) do
  5096. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5097. v.Character:FindFirstChild("Humanoid").Health=v.Character:FindFirstChild("Humanoid").Health-2
  5098. v.Character:FindFirstChild("HumanoidRootPart").Velocity=Vector3.new(0,0,0)
  5099. table.insert(htd,v)
  5100. end
  5101. end
  5102. end)
  5103. end
  5104. htd={p}
  5105. if int>=6 then
  5106. for _,v in pairs(game:service"Players":GetChildren()) do
  5107. pcall(function()
  5108. for _,c in pairs(v.Character:GetChildren()) do
  5109. if c:IsA("Part") and not inT(v,htd) and (cnOrb.CFrame.p-c.CFrame.p).magnitude<50 then
  5110. table.insert(htd,v)
  5111. local hfx=nwPrt(mod3,Vector3.new(1,1,1),c.CFrame*CFrame.new(math.random(-2,2),math.random(-2,2),math.random(-2,2)),"Institutional white")
  5112. hfx.Mesh.Scale=Vector3.new(2,2,2)
  5113. hfx.Mesh.MeshType=3
  5114. debris:AddItem(hfx,2)
  5115. coroutine.wrap(function()
  5116. pcall(function()
  5117. for i=0,1,0.05 do
  5118. pcall(function()
  5119. local hs=hfx.Mesh.Scale
  5120. hfx.CFrame=Lerp(hfx.CFrame,cnOrb.CFrame,i)
  5121. hfx.Mesh.Scale=Vector3.new(Tween(hs.X,0.1,i),Tween(hs.Y,0.1,i),Tween(hs.Z,0.1,i))
  5122. end)
  5123. wait()
  5124. end
  5125. hfx:Destroy()
  5126. end)
  5127. end)()
  5128. end
  5129. end
  5130. end)
  5131. end
  5132. int=0
  5133. end
  5134. if nt>=4 then
  5135. local pls={}
  5136. for _,v in pairs(game.Players:GetChildren()) do
  5137. table.insert(pls,v)
  5138. end
  5139. local ry2,ht2,ps2=newRay(cnOrb.CFrame,cnOrb.CFrame*CFrame.new(0,-1,0),1000,pls)
  5140. local pffx=nwPrt(mod3,Vector3.new(1,1,1),CFrame.new(ps2)*CFrame.new(0,10,-12),"Institutional white")
  5141. pffx.Transparency=0.4
  5142. pffx.Mesh.MeshId="rbxassetid://20329976"
  5143. pffx.Mesh.Scale=Vector3.new(cs.X-10,cs.Y/5,cs.Z-10)
  5144. debris:AddItem(pffx,2)
  5145. table.insert(pfxt,pffx)
  5146. nt=0
  5147. end
  5148. wait()
  5149. end
  5150. cnOrb:Destroy()
  5151. cnfx:Destroy()
  5152. for _,v in pairs(mod3:GetChildren()) do
  5153. v:Destroy()
  5154. end
  5155. orbt={}
  5156. stlt={}
  5157. chot={}
  5158. cfxt={}
  5159. pfxt={}
  5160. end)()
  5161. if Debounces.CanAttack == false then
  5162. Debounces.CanAttack = true
  5163. Debounces.NoIdl = false
  5164. Debounces.on = false
  5165. end
  5166. end
  5167. end
  5168. end)
  5169. ----------------------------------------------------
  5170. mouse.KeyDown:connect(function(key)
  5171. if key == "m" then
  5172. if Debounces.CanAttack == true then
  5173. Debounces.CanAttack = false
  5174. Debounces.on = true
  5175. Debounces.NoIdl = true
  5176. --[[x = Instance.new("Sound",char)
  5177. x.SoundId = "http://www.roblox.com/asset/?id=169445572"
  5178. x.Looped = false
  5179. x.Pitch = 1.1
  5180. x.Volume = 1
  5181. x:Play()
  5182. x2 = Instance.new("Sound",char)
  5183. x2.SoundId = "http://www.roblox.com/asset/?id=169380495"
  5184. x2.Looped = false
  5185. x2.Pitch = .7
  5186. x2.Volume = 1
  5187. wait(.1)
  5188. x:Play()
  5189. x2:Play()
  5190. for i = 1, 20 do
  5191. 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)
  5192. 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)
  5193. 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)
  5194. 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)
  5195. 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)
  5196. 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)
  5197. 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)
  5198. if Debounces.on == false then break end
  5199. wait()
  5200. x:Destroy()
  5201. x2:Destroy()
  5202. end
  5203. wait(1)]]--
  5204. local rng = Instance.new("Part", char)
  5205. rng.Anchored = true
  5206. rng.BrickColor = BrickColor.new("Really black")
  5207. rng.CanCollide = false
  5208. rng.FormFactor = 3
  5209. rng.Name = "Ring"
  5210. rng.Size = Vector3.new(1, 1, 1)
  5211. rng.Transparency = 0.35
  5212. rng.TopSurface = 0
  5213. rng.BottomSurface = 0
  5214. rng.Position = torso.Position - Vector3.new(0,5,0)
  5215. rng.CFrame = rng.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  5216. local rngm = Instance.new("SpecialMesh", rng)
  5217. rngm.MeshId = "http://www.roblox.com/asset/?id=3270017"
  5218. rngm.Scale = Vector3.new(1, 1, 2)
  5219. x = Instance.new("Sound",char)
  5220. x.SoundId = "http://www.roblox.com/asset/?id=169445602"
  5221. x.Looped = false
  5222. x.Pitch = .7
  5223. x.Volume = 1
  5224. x:Play()
  5225. coroutine.wrap(function()
  5226. for i = 1, 60, 2 do
  5227. rngm.Scale = Vector3.new(2 + i*2, 2 + i*2, 1)
  5228. rng.Transparency = i/60
  5229. wait()
  5230. end
  5231. wait()
  5232. rng:Destroy()
  5233. end)()
  5234. hum.WalkSpeed = 100
  5235. BV = Instance.new("BodyVelocity", torso)
  5236. BV.maxForce = Vector3.new(0,200000,0)
  5237. BV.P = 240000
  5238. BV.velocity = Vector3.new(0,7000,0)
  5239. for i = 1, 20 do
  5240. 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)
  5241. 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)
  5242. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1, 0) * CFrame.Angles(math.rad(40), 0, math.rad(-20)), 0.7)
  5243. 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)
  5244. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -1.8, .2) * CFrame.Angles(math.rad(-10), 0, 0), 0.7)
  5245. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -1.5, -2) * CFrame.Angles(math.rad(0), 0, 0), 0.7)
  5246. 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)
  5247. if Debounces.on == false then break end
  5248. wait()
  5249. end
  5250. x:Destroy()
  5251. BV:Destroy()
  5252. --[[for i = 1, 30 do
  5253. 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)
  5254. 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)
  5255. 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)
  5256. 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)
  5257. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -.4, -1) * CFrame.Angles(math.rad(20), 0, 0), 0.3)
  5258. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -.8, -.6) * CFrame.Angles(math.rad(-30), 0, 0), 0.3)
  5259. if Debounces.on == false then break end
  5260. wait()
  5261. end]]--
  5262. if (torso.Velocity*Vector3.new(1, 1, 1)).magnitude > 1 then
  5263. for i = 1, 30 do
  5264. 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)
  5265. 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)
  5266. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(-120)), 0.3)
  5267. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 1.4, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(120)), 0.3)
  5268. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, .4) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.2)
  5269. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -2, -1) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2)
  5270. 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)
  5271. if Debounces.on == false then break end
  5272. wait()
  5273. end
  5274. end
  5275. Debounces.on = false
  5276. Debounces.NoIdl = false
  5277. local ry,ht,ps=nil,nil,nil
  5278. while ht==nil do
  5279. ry,ht,ps=newRay(root.CFrame*CFrame.new(0,-2,0),root.CFrame*CFrame.new(0,-3,0),4.1,{char})
  5280. wait()
  5281. end
  5282. z = Instance.new("Sound",char)
  5283. z.SoundId = "rbxassetid://142070127"
  5284. z.Volume = 1
  5285. wait(.1)
  5286. z:Play()
  5287. Landing()
  5288. hum.WalkSpeed = 8
  5289. if Debounces.CanAttack == false then
  5290. Debounces.CanAttack = true
  5291. end
  5292. end
  5293. end
  5294. end)
  5295. ----------------------------------------------------
  5296. Grab = false
  5297. mouse.KeyDown:connect(function(key)
  5298. if key == "z" then
  5299. Debounces.on = true
  5300. Debounces.NoIdl = true
  5301. if Grab == false then
  5302. gp = nil
  5303. con1=larm.Touched:connect(function(hit) -- this is grab
  5304. ht = hit.Parent
  5305. hum1=ht:FindFirstChild('Humanoid')
  5306. if hum1 ~= nil then
  5307. hum1.PlatformStand=true
  5308. gp = ht
  5309. Grab = true
  5310. asd=weld5(larm,ht:FindFirstChild("Torso"),CFrame.new(0,-3.3,0),CFrame.new(0,0,0))
  5311. asd.Parent = larm
  5312. asd.Name = "asd"
  5313. asd.C0=asd.C0*CFrame.Angles(math.rad(-90),0,0)
  5314. con1:disconnect()
  5315. elseif hum1 ~= nil then
  5316. con1:disconnect()
  5317. wait() return
  5318. end
  5319. end)
  5320. for i = 1, 18 do
  5321. 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)
  5322. 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)
  5323. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5324. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.8, 0) * CFrame.Angles(math.rad(-60), math.rad(0), 0), 0.2)
  5325. 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)
  5326. 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)
  5327. 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)
  5328. if Debounces.on == false then break end
  5329. wait()
  5330. end
  5331. con1:disconnect()
  5332. Debounces.on = false
  5333. Debounces.NoIdl = false
  5334. elseif Grab == true then
  5335. Grab = false
  5336. for i = 1, 20 do
  5337. 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)
  5338. 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)
  5339. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5340. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5341. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5342. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5343. 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)
  5344. if Debounces.on == false then end
  5345. wait()
  5346. end
  5347. if gp ~= nil then
  5348. for i,v in pairs(larm:GetChildren()) do
  5349. if v.Name == "asd" and v:IsA("Weld") then
  5350. v:Remove()
  5351. end
  5352. end
  5353. bv = Instance.new("BodyVelocity",gp:FindFirstChild("Torso"))
  5354. bv.maxForce = Vector3.new(400000, 400000, 400000)
  5355. bv.P = 125000
  5356. bv.velocity = char.Head.CFrame.lookVector * 200
  5357. for i = 1, 12 do
  5358. 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)
  5359. if Debounces.on == false then end
  5360. wait()
  5361. end--
  5362. ht=nil
  5363. Spawn(function()
  5364. wait(0.5)
  5365. bv:Destroy()
  5366. end)
  5367. Debounces.on = false
  5368. Debounces.NoIdl = false
  5369. elseif ht == nil then wait()
  5370. Grab = false
  5371. Debounces.on = false
  5372. Debounces.NoIdl = false
  5373. end
  5374. end
  5375. end
  5376. end)
  5377. ----------------------------------------------------
  5378. mouse.KeyDown:connect(function(key)
  5379. if string.byte(key) == 52 then
  5380. char.Humanoid.WalkSpeed = 21
  5381. end
  5382. end)
  5383. mouse.KeyUp:connect(function(key)
  5384. if string.byte(key) == 52 then
  5385. char.Humanoid.WalkSpeed = 5
  5386. end
  5387. end)
  5388. ----------------------------------------------------
  5389. Change = false
  5390. mouse.KeyDown:connect(function(key)
  5391. if key == "n" then
  5392. if Change == false then
  5393. Change = true
  5394. stanceToggle = "Normal2"
  5395. elseif Change == true then
  5396. Change = false
  5397. stanceToggle = "Normal"
  5398. end
  5399. end
  5400. end)
  5401. ----------------------------------------------------
  5402. local animpose = "Idle"
  5403. local lastanimpose = "Idle"
  5404. local sine = 0
  5405. local change = 1
  5406. local val = 0
  5407. local ffing = false
  5408. local och = 0
  5409. ----------------------------------------------------
  5410. game:GetService("RunService").RenderStepped:connect(function()
  5411. --[[if char.Humanoid.Jump == true then
  5412. jump = true
  5413. else
  5414. jump = false
  5415. end]]
  5416. char.Humanoid.FreeFalling:connect(function(f)
  5417. if f then
  5418. ffing = true
  5419. else
  5420. ffing = false
  5421. end
  5422. end)
  5423. sine = sine + change
  5424. if jumpn == true then
  5425. animpose = "Jumping"
  5426. elseif ffing == true then
  5427. animpose = "Freefalling"
  5428. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 2 then
  5429. animpose = "Idle"
  5430. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude < 20 then
  5431. animpose = "Walking"
  5432. elseif (torso.Velocity*Vector3.new(1, 0, 1)).magnitude > 20 then
  5433. animpose = "Running"
  5434. end
  5435. if animpose ~= lastanimpose then
  5436. sine = 0
  5437. if Debounces.NoIdl == false then
  5438. if animpose == "Idle" then
  5439. for i = 1, 2 do
  5440. 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)
  5441. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(-20)), 0.2)
  5442. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14),math.rad(0),0), 0.2)
  5443. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(0, math.rad(0), 0), 0.2)
  5444. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(-10)), 0.2)
  5445. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(0, 0, math.rad(10)), 0.2)
  5446. 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)
  5447. end
  5448. elseif animpose == "Walking" then
  5449. for i = 1, 2 do
  5450. 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)
  5451. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(0, math.rad(1), math.rad(-10)), 0.2)
  5452. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8), math.rad(0), math.rad(0)),0.2)
  5453. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.2, 0) * CFrame.Angles(math.rad(-4), 0, math.rad(0)), 0.2)
  5454. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5455. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3, -.05) * CFrame.Angles(math.rad(-18), 0, 0), .4)
  5456. 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)
  5457. end
  5458. elseif animpose == "Running" then
  5459. for i = 1, 2 do
  5460. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, 0.9, .5) * CFrame.Angles(math.rad(-10), math.rad(-40), math.rad(50)), 0.2)
  5461. 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)
  5462. 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)
  5463. 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)
  5464. 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)
  5465. 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)
  5466. 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)
  5467. end
  5468. rs:wait(2)
  5469. end
  5470. else
  5471. end
  5472. end
  5473. lastanimpose = animpose
  5474. if Debounces.NoIdl == false then
  5475. if animpose == "Idle" then
  5476. if stanceToggle == "Normal" then
  5477. change = 0.5
  5478. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(88+2*math.cos(sine/14)),math.rad(0),math.rad(20)), 0.2)
  5479. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(50),math.rad(-30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5480. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(40),0), 0.2)
  5481. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(-40), 0), 0.2)
  5482. 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)
  5483. 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)
  5484. 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)
  5485. elseif stanceToggle == "Sitting" then
  5486. 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)
  5487. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9, 0)*CFrame.Angles(math.rad(-36+1*math.cos(sine/14)), math.rad(0), math.rad(-30)), 0.2)
  5488. 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)
  5489. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -2.8, 0) * CFrame.Angles(math.rad(-10+1*math.cos(sine/14)), 0, math.rad(0)), 0.2)
  5490. 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)
  5491. 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)
  5492. 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)
  5493. elseif stanceToggle == "Normal2" then
  5494. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3,.9,0)*CFrame.Angles(math.rad(30+2*math.cos(sine/14)),math.rad(40),math.rad(40)), 0.2)
  5495. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3,.9+0.1*math.cos(sine/14),0)*CFrame.Angles(math.rad(-20),math.rad(30),math.rad(-40-2*math.cos(sine/14))), 0.2)
  5496. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,-.2)*CFrame.Angles(math.rad(-14+1*math.cos(sine/14)),math.rad(-40),0), 0.2)
  5497. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(0, math.rad(40), 0), 0.2)
  5498. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1.2, -3, 0) * CFrame.Angles(math.rad(-16), math.rad(-20), math.rad(-14)), 0.2)
  5499. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1.2, -3, 0) * CFrame.Angles(math.rad(10), math.rad(-30), math.rad(18)), 0.2)
  5500. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5501. end
  5502. elseif animpose == "Walking" then
  5503. if stanceToggle == "Normal" then
  5504. change = 1
  5505. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(90+2*math.cos(sine/7)), math.rad(0), math.rad(20)), 0.2)
  5506. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, math.rad(1) + -math.sin(sine/14)/2, math.rad(-30)), 0.2)
  5507. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0-8*math.cos(sine/14)), math.rad(0)),0.2)
  5508. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), math.rad(0+8*math.cos(sine/14)), math.rad(0)), 0.2)
  5509. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + -math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5510. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-12) + math.sin(sine/14)/2, math.rad(0-8*math.cos(sine/14)), 0), .4)
  5511. 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)
  5512. elseif stanceToggle == "Normal2" then
  5513. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(3, .9+.1*math.cos(sine/7), math.sin(sine/14)/2)*CFrame.Angles(-math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(20)), 0.2)
  5514. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-3, .9+.1*math.cos(sine/7), -math.sin(sine/14)/2)*CFrame.Angles(math.sin(sine/14)/4, -math.sin(sine/14)/2, math.rad(-20)), 0.2)
  5515. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,3,0)*CFrame.Angles(math.rad(-8+2*math.cos(sine/7)), math.rad(0), math.rad(0)),0.2)
  5516. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+0.1*math.cos(sine/7), 0) * CFrame.Angles(math.rad(-4+2*math.cos(sine/7)), 0, math.rad(0)), 0.2)
  5517. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-1, -3-0.3*math.cos(sine/14)/2, -.05 + math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + -math.sin(sine/14)/2.3, 0, 0), .4)
  5518. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(1, -3+0.3*math.cos(sine/14)/2, -.05 + -math.sin(sine/14)/2) * CFrame.Angles(math.rad(-18) + math.sin(sine/14)/2.3, 0, 0), .4)
  5519. cor.Weld.C0 = Lerp(cor.Weld.C0, CFrame.new(0, -1.9, -.9) * CFrame.Angles(math.rad(-90), math.rad(-90), math.rad(0)), 1)
  5520. end
  5521. elseif animpose == "Running" then
  5522. change = 1
  5523. 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)
  5524. 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)
  5525. 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)
  5526. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1+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)
  5527. 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)
  5528. 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)
  5529. 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)
  5530. end
  5531. end
  5532. och=och+1
  5533. for _,v in pairs(orbt) do
  5534. pcall(function()
  5535. v.Mesh.Scale=Vector3.new(cns+(0.2*math.cos(och/12)),cns+(0.2*math.cos(och/10)),cns+(0.2*math.cos(och/8)))
  5536. end)
  5537. end
  5538. for _,v in pairs(stlt) do
  5539. pcall(function()
  5540. v.CFrame=larm.CFrame*CFrame.new(0,-3.5-(cns/2),-0.1)
  5541. end)
  5542. end
  5543. for _,v in pairs(chot) do
  5544. pcall(function()
  5545. v.CFrame=Lerp(v.CFrame,cnOrb.CFrame,0.1)
  5546. v.Mesh.Scale=Vector3.new(Tween(v.Mesh.Scale.X,0,0.1),Tween(v.Mesh.Scale.Y,0,0.1),Tween(v.Mesh.Scale.Z,0,0.1))
  5547. end)
  5548. end
  5549. for _,v in pairs(cfxt) do
  5550. pcall(function()
  5551. local vs=v.Mesh.Scale
  5552. v.Mesh.Scale=Vector3.new(vs.x+0.5,vs.y+0.1,vs.z+0.5)
  5553. v.Transparency=v.Transparency+0.05
  5554. end)
  5555. end
  5556. for _,v in pairs(pfxt) do
  5557. pcall(function()
  5558. local vs=v.Mesh.Scale
  5559. v.Mesh.Scale=Vector3.new(vs.x+2,vs.y+0.5,vs.z+2)
  5560. v.Transparency=v.Transparency+0.025
  5561. end)
  5562. end
  5563. end)
  5564.  
  5565. -------------------------------------------------------------------------------------
  5566.  
  5567. local Color = ColorSequence.new(Color3.new(255,255,255), Color3.new(0,0,0))
  5568.  
  5569. local Num = .8
  5570.  
  5571. local Num2 = 6 -------------Mods:1,4,8,10,15,20-------------------------------------
  5572. local Size = 0.4
  5573. local Rate = 300
  5574. -------------------------------------------------------------------------------------
  5575. local Player = game:service'Players'.LocalPlayer
  5576. local Character = Player.Character
  5577. Torso = Character:WaitForChild'Torso'
  5578.  
  5579. local Wing1 = Instance.new("Part",Character)
  5580. Wing1.FormFactor = Enum.FormFactor.Custom
  5581. Wing1.Size = Vector3.new(.2, .2, .2)
  5582. Wing1.Name = "WIng_1"
  5583.  
  5584. local fire = Instance.new("ParticleEmitter", Wing1)
  5585. fire.VelocitySpread = 0
  5586. fire.Lifetime = NumberRange.new(2)
  5587. fire.Acceleration = Vector3.new(0, 2, 2)
  5588. fire.RotSpeed = NumberRange.new(10)
  5589. fire.Rate = Rate
  5590. fire.Rotation = NumberRange.new(1515)
  5591. fire.Name = "Fire"
  5592. fire.LightEmission = 0
  5593. fire.LockedToPart = true
  5594. fire.Texture = "http://www.roblox.com/asset/?id=42305693"
  5595. fire.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  5596. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5597.  
  5598. local Wing2 = Instance.new("Part",Character)
  5599. Wing2.FormFactor = Enum.FormFactor.Custom
  5600. Wing2.Size = Vector3.new(.2, .2, .2)
  5601. Wing2.Name = "WIng_2"
  5602.  
  5603. local fire = Instance.new("ParticleEmitter", Wing2)
  5604. fire.VelocitySpread = 0
  5605. fire.Lifetime = NumberRange.new(2)
  5606. fire.Acceleration = Vector3.new(0, 4, 4)
  5607. fire.RotSpeed = NumberRange.new(10)
  5608. fire.Rate = Rate
  5609. fire.Rotation = NumberRange.new(1515)
  5610. fire.Name = "Fire"
  5611. fire.LightEmission = 1
  5612. fire.LockedToPart = true
  5613. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  5614. fire.Color = ColorSequence.new(Color3.new(255,255,255), Color3.new(255,255,255))
  5615. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5616. local x,y,z = 0,-1,-6
  5617.  
  5618. Wld = function(a,b,cf)
  5619. local Weld = Instance.new('Weld',a)
  5620. Weld.Part0 = a
  5621. Weld.Part1 = b
  5622. Weld.C1 = cf
  5623. return Weld
  5624. end
  5625.  
  5626. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  5627. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(20),-math.rad(90)))
  5628.  
  5629.  
  5630. game:service'RunService'.Stepped:connect(function()
  5631. z = 6+math.sin(tick()*2)
  5632. y = -1+math.sin(tick()*Num)*Num2
  5633. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  5634. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  5635. end)
  5636. ------------------------------------------------------------------------------------------------
  5637. local Player = game:service'Players'.LocalPlayer
  5638. local Character = Player.Character
  5639. Torso = Character:WaitForChild'Torso'
  5640.  
  5641. local Wing1 = Instance.new("Part",Character)
  5642. Wing1.FormFactor = Enum.FormFactor.Custom
  5643. Wing1.Size = Vector3.new(.2, .2, .2)
  5644. Wing1.Name = "WIng_1"
  5645.  
  5646. local fire = Instance.new("ParticleEmitter", Wing1)
  5647. fire.VelocitySpread = 0
  5648. fire.Lifetime = NumberRange.new(2.5)
  5649. fire.Acceleration = Vector3.new(0, 4, 4)
  5650. fire.RotSpeed = NumberRange.new(10)
  5651. fire.Rate = Rate
  5652. fire.Rotation = NumberRange.new(1515)
  5653. fire.Name = "Fire"
  5654. fire.LightEmission = 0
  5655. fire.LockedToPart = true
  5656. fire.Texture = "http://www.roblox.com/asset/?id=42305693"
  5657. fire.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  5658. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5659.  
  5660. local Wing2 = Instance.new("Part",Character)
  5661. Wing2.FormFactor = Enum.FormFactor.Custom
  5662. Wing2.Size = Vector3.new(.2, .2, .2)
  5663. Wing2.Name = "WIng_2"
  5664.  
  5665. local fire = Instance.new("ParticleEmitter", Wing2)
  5666. fire.VelocitySpread = 0
  5667. fire.Lifetime = NumberRange.new(2.5)
  5668. fire.Acceleration = Vector3.new(0, 4, 4)
  5669. fire.RotSpeed = NumberRange.new(10)
  5670. fire.Rate = Rate
  5671. fire.Rotation = NumberRange.new(1515)
  5672. fire.Name = "Fire"
  5673. fire.LightEmission = 1
  5674. fire.LockedToPart = true
  5675. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  5676. fire.Color = ColorSequence.new(Color3.new(255,255,255), Color3.new(255,255,255))
  5677. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5678. local x,y,z = 0,-1,-6
  5679.  
  5680. Wld = function(a,b,cf)
  5681. local Weld = Instance.new('Weld',a)
  5682. Weld.Part0 = a
  5683. Weld.Part1 = b
  5684. Weld.C1 = cf
  5685. return Weld
  5686. end
  5687.  
  5688. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  5689. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(30),-math.rad(90)))
  5690.  
  5691. print'Loaded'
  5692.  
  5693. game:service'RunService'.Stepped:connect(function()
  5694. z = 6+math.sin(tick()*2)
  5695. y = -1+math.sin(tick()*Num)*Num2
  5696. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  5697. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  5698. end)
  5699.  
  5700. ------------------------------------------------------------------------------------------------
  5701. local Player = game:service'Players'.LocalPlayer
  5702. local Character = Player.Character
  5703. Torso = Character:WaitForChild'Torso'
  5704.  
  5705. local Wing1 = Instance.new("Part",Character)
  5706. Wing1.FormFactor = Enum.FormFactor.Custom
  5707. Wing1.Size = Vector3.new(.2, .2, .2)
  5708. Wing1.Name = "WIng_1"
  5709.  
  5710. local fire = Instance.new("ParticleEmitter", Wing1)
  5711. fire.VelocitySpread = 0
  5712. fire.Lifetime = NumberRange.new(2.8)
  5713. fire.Acceleration = Vector3.new(0, 4, 4)
  5714. fire.RotSpeed = NumberRange.new(10)
  5715. fire.Rate = Rate
  5716. fire.Rotation = NumberRange.new(1515)
  5717. fire.Name = "Fire"
  5718. fire.LightEmission = 0
  5719. fire.LockedToPart = true
  5720. fire.Texture = "http://www.roblox.com/asset/?id=42305693"
  5721. fire.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  5722. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5723.  
  5724. local Wing2 = Instance.new("Part",Character)
  5725. Wing2.FormFactor = Enum.FormFactor.Custom
  5726. Wing2.Size = Vector3.new(.2, .2, .2)
  5727. Wing2.Name = "WIng_2"
  5728.  
  5729. local fire = Instance.new("ParticleEmitter", Wing2)
  5730. fire.VelocitySpread = 0
  5731. fire.Lifetime = NumberRange.new(2.8)
  5732. fire.Acceleration = Vector3.new(0, 4, 4)
  5733. fire.RotSpeed = NumberRange.new(10)
  5734. fire.Rate = Rate
  5735. fire.Rotation = NumberRange.new(1515)
  5736. fire.Name = "Fire"
  5737. fire.LightEmission = 1
  5738. fire.LockedToPart = true
  5739. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  5740. fire.Color = ColorSequence.new(Color3.new(255,255,255), Color3.new(255,255,255))
  5741. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5742. local x,y,z = 0,-1,-6
  5743.  
  5744. Wld = function(a,b,cf)
  5745. local Weld = Instance.new('Weld',a)
  5746. Weld.Part0 = a
  5747. Weld.Part1 = b
  5748. Weld.C1 = cf
  5749. return Weld
  5750. end
  5751.  
  5752. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  5753. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(40),-math.rad(90)))
  5754.  
  5755. print'Loaded'
  5756.  
  5757. game:service'RunService'.Stepped:connect(function()
  5758. z = 6+math.sin(tick()*2)
  5759. y = -1+math.sin(tick()*Num)*Num2
  5760. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  5761. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  5762. end)
  5763.  
  5764. ------------------------------------------------------------------------------------------------
  5765. local Player = game:service'Players'.LocalPlayer
  5766. local Character = Player.Character
  5767. Torso = Character:WaitForChild'Torso'
  5768.  
  5769. local Wing1 = Instance.new("Part",Character)
  5770. Wing1.FormFactor = Enum.FormFactor.Custom
  5771. Wing1.Size = Vector3.new(.2, .2, .2)
  5772. Wing1.Name = "WIng_1"
  5773.  
  5774. local fire = Instance.new("ParticleEmitter", Wing1)
  5775. fire.VelocitySpread = 0
  5776. fire.Lifetime = NumberRange.new(3)
  5777. fire.Acceleration = Vector3.new(0, 4, 4)
  5778. fire.RotSpeed = NumberRange.new(10)
  5779. fire.Rate = Rate
  5780. fire.Rotation = NumberRange.new(1515)
  5781. fire.Name = "Fire"
  5782. fire.LightEmission = 0
  5783. fire.LockedToPart = true
  5784. fire.Texture = "http://www.roblox.com/asset/?id=42305693"
  5785. fire.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  5786. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5787.  
  5788. local Wing2 = Instance.new("Part",Character)
  5789. Wing2.FormFactor = Enum.FormFactor.Custom
  5790. Wing2.Size = Vector3.new(.2, .2, .2)
  5791. Wing2.Name = "WIng_2"
  5792.  
  5793. local fire = Instance.new("ParticleEmitter", Wing2)
  5794. fire.VelocitySpread = 0
  5795. fire.Lifetime = NumberRange.new(3)
  5796. fire.Acceleration = Vector3.new(0, 4, 4)
  5797. fire.RotSpeed = NumberRange.new(10)
  5798. fire.Rate = Rate
  5799. fire.Rotation = NumberRange.new(1515)
  5800. fire.Name = "Fire"
  5801. fire.LightEmission = 1
  5802. fire.LockedToPart = true
  5803. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  5804. fire.Color = ColorSequence.new(Color3.new(255,255,255), Color3.new(255,255,255))
  5805. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5806. local x,y,z = 0,-1,-6
  5807.  
  5808. Wld = function(a,b,cf)
  5809. local Weld = Instance.new('Weld',a)
  5810. Weld.Part0 = a
  5811. Weld.Part1 = b
  5812. Weld.C1 = cf
  5813. return Weld
  5814. end
  5815.  
  5816. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  5817. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(50),-math.rad(90)))
  5818.  
  5819. print'Loaded'
  5820.  
  5821. game:service'RunService'.Stepped:connect(function()
  5822. z = 6+math.sin(tick()*2)
  5823. y = -1+math.sin(tick()*Num)*Num2
  5824. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  5825. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  5826. end)
  5827.  
  5828. ------------------------------------------------------------------------------------------------
  5829. local Player = game:service'Players'.LocalPlayer
  5830. local Character = Player.Character
  5831. Torso = Character:WaitForChild'Torso'
  5832.  
  5833. local Wing1 = Instance.new("Part",Character)
  5834. Wing1.FormFactor = Enum.FormFactor.Custom
  5835. Wing1.Size = Vector3.new(.2, .2, .2)
  5836. Wing1.Name = "WIng_1"
  5837.  
  5838. local fire = Instance.new("ParticleEmitter", Wing1)
  5839. fire.VelocitySpread = 0
  5840. fire.Lifetime = NumberRange.new(3.1)
  5841. fire.Acceleration = Vector3.new(0, 4, 4)
  5842. fire.RotSpeed = NumberRange.new(10)
  5843. fire.Rate = Rate
  5844. fire.Rotation = NumberRange.new(1515)
  5845. fire.Name = "Fire"
  5846. fire.LightEmission = 0
  5847. fire.LockedToPart = true
  5848. fire.Texture = "http://www.roblox.com/asset/?id=42305693"
  5849. fire.Color = ColorSequence.new(Color3.new(0,0,0), Color3.new(0,0,0))
  5850. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5851.  
  5852. local Wing2 = Instance.new("Part",Character)
  5853. Wing2.FormFactor = Enum.FormFactor.Custom
  5854. Wing2.Size = Vector3.new(.2, .2, .2)
  5855. Wing2.Name = "WIng_2"
  5856.  
  5857. local fire = Instance.new("ParticleEmitter", Wing2)
  5858. fire.VelocitySpread = 0
  5859. fire.Lifetime = NumberRange.new(3.1)
  5860. fire.Acceleration = Vector3.new(0, 4, 4)
  5861. fire.RotSpeed = NumberRange.new(10)
  5862. fire.Rate = Rate
  5863. fire.Rotation = NumberRange.new(1515)
  5864. fire.Name = "Fire"
  5865. fire.LightEmission = 1
  5866. fire.LockedToPart = true
  5867. fire.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  5868. fire.Color = ColorSequence.new(Color3.new(255,255,255), Color3.new(255,255,255))
  5869. fire.Size = NumberSequence.new({NumberSequenceKeypoint.new(0, Size), NumberSequenceKeypoint.new(1, Size)})
  5870. local x,y,z = 0,-1,-6
  5871.  
  5872. Wld = function(a,b,cf)
  5873. local Weld = Instance.new('Weld',a)
  5874. Weld.Part0 = a
  5875. Weld.Part1 = b
  5876. Weld.C1 = cf
  5877. return Weld
  5878. end
  5879.  
  5880. local wld = Wld(Torso,Wing1,CFrame.new(0,0,-.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  5881. local wld2 = Wld(Torso,Wing2,CFrame.new(0,0,.5)*CFrame.Angles(-math.rad(90),-math.rad(60),-math.rad(90)))
  5882.  
  5883. print'Loaded'
  5884.  
  5885. game:service'RunService'.Stepped:connect(function()
  5886. z = 6+math.sin(tick()*2)
  5887. y = -1+math.sin(tick()*Num)*Num2
  5888. Wing1.Fire.Acceleration = Vector3.new(x,y,z)
  5889. Wing2.Fire.Acceleration = Vector3.new(x,y,-z)
  5890. end)
  5891.  
  5892. Player=game:GetService('Players').LocalPlayer
  5893. Character=Player.Character
  5894. Mouse=Player:GetMouse()
  5895. m=Instance.new('Model',Character)
  5896.  
  5897.  
  5898. local function weldBetween(a, b)
  5899. local weldd = Instance.new("ManualWeld")
  5900. weldd.Part0 = a
  5901. weldd.Part1 = b
  5902. weldd.C0 = CFrame.new()
  5903. weldd.C1 = b.CFrame:inverse() * a.CFrame
  5904. weldd.Parent = a
  5905. return weldd
  5906. end
  5907.  
  5908. it=Instance.new
  5909.  
  5910. function nooutline(part)
  5911. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  5912. end
  5913.  
  5914. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  5915. local fp=it("Part")
  5916. fp.formFactor=formfactor
  5917. fp.Parent=parent
  5918. fp.Reflectance=reflectance
  5919. fp.Transparency=transparency
  5920. fp.CanCollide=false
  5921. fp.Locked=true
  5922. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  5923. fp.Name=name
  5924. fp.Size=size
  5925. fp.Position=Character.Torso.Position
  5926. nooutline(fp)
  5927. fp.Material=material
  5928. fp:BreakJoints()
  5929. return fp
  5930. end
  5931.  
  5932. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  5933. local mesh=it(Mesh)
  5934. mesh.Parent=part
  5935. if Mesh=="SpecialMesh" then
  5936. mesh.MeshType=meshtype
  5937. mesh.MeshId=meshid
  5938. end
  5939. mesh.Offset=offset
  5940. mesh.Scale=scale
  5941. return mesh
  5942. end
  5943.  
  5944. function weld(parent,part0,part1,c0,c1)
  5945. local weld=it("Weld")
  5946. weld.Parent=parent
  5947. weld.Part0=part0
  5948. weld.Part1=part1
  5949. weld.C0=c0
  5950. weld.C1=c1
  5951. return weld
  5952. end
  5953.  
  5954. BladeEnd=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle",Vector3.new(0.333970994, 2.40790987, 0.825482368))
  5955. 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))
  5956. mesh("BlockMesh",BladeEnd,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  5957. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Blade",Vector3.new(0.333970994, 2.93125677, 0.825482368))
  5958. 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))
  5959. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  5960. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  5961. 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))
  5962. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  5963. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  5964. 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))
  5965. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.834210217))
  5966. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Blade",Vector3.new(0.333970994, 0.442278117, 0.333971083))
  5967. 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))
  5968. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  5969. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Blade",Vector3.new(0.333970994, 3.13969851, 0.398512334))
  5970. 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))
  5971. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 1))
  5972. Blade=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Blade",Vector3.new(0.333970994, 0.426588923, 0.333971083))
  5973. 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))
  5974. mesh("BlockMesh",Blade,"","",Vector3.new(0, 0, 0),Vector3.new(0.807545543, 1, 0.522144258))
  5975. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5976. 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))
  5977. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.884725809, 0.0892784372))
  5978. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5979. 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))
  5980. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  5981. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5982. 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))
  5983. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.616281807, 0.0892784372))
  5984. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5985. 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))
  5986. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.794125915, 0.0892784372))
  5987. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.452364713, 0.333971083))
  5988. 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))
  5989. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 1, 0.0892784372))
  5990. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5991. 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))
  5992. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.34112677, 0.0892784372))
  5993. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5994. 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))
  5995. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  5996. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  5997. 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))
  5998. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  5999. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6000. 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))
  6001. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.898145258, 0.12972711, 0.0892784372))
  6002. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.672227144, 1.760818))
  6003. 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))
  6004. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.774613976, 1, 1))
  6005. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 5.69591618, 0.333971083))
  6006. 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))
  6007. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.844456613, 1, 0.458388805))
  6008. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 8.72168827, 1.36339724))
  6009. 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))
  6010. mesh("BlockMesh",BladeNeon,"","",Vector3.new(0, 0, 0),Vector3.new(0.760567904, 1, 1))
  6011. BladeNeon=part(Enum.FormFactor.Symmetric,m,Enum.Material.Neon,0,0,"Really black","BladeNeon",Vector3.new(0.333970994, 0.681192338, 1.760818))
  6012. 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))
  6013. mesh("SpecialMesh",BladeNeon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.767835736, 1, 1))
  6014. Handle=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Handle",Vector3.new(0.333970994, 3.65670252, 0.333971083))
  6015. 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))
  6016. mesh("CylinderMesh",Handle,"","",Vector3.new(0, 0, 0),Vector3.new(0.677820504, 1, 0.80868715))
  6017. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6018. 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))
  6019. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.567087829))
  6020. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 1.90585577, 1.45080817))
  6021. 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))
  6022. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6023. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6024. 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))
  6025. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6026. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  6027. 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))
  6028. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  6029. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.730286956, 0.333971083))
  6030. 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))
  6031. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  6032. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.51886344, 0.333971083, 0.636532664))
  6033. 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))
  6034. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.842242956, 1))
  6035. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  6036. 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))
  6037. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6038. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.750458777, 0.333971083))
  6039. 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))
  6040. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 0.270477563))
  6041. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 2.43250322))
  6042. 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))
  6043. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  6044. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  6045. 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))
  6046. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  6047. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6048. 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))
  6049. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  6050. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  6051. 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))
  6052. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.869846582, 1, 1))
  6053. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6054. 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))
  6055. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 0.414765924))
  6056. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 1.23496354, 0.333971083))
  6057. 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))
  6058. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.637554169))
  6059. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6060. 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))
  6061. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 0.452999234, 0.452998996))
  6062. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  6063. 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))
  6064. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  6065. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.963326454))
  6066. 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))
  6067. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 0.827679455, 1))
  6068. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.530070603, 0.595068455))
  6069. 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))
  6070. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 1, 1))
  6071. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.452745259, 0.333971083))
  6072. 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))
  6073. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  6074. Handle2=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.356368661))
  6075. 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))
  6076. mesh("CylinderMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.788553476, 0.718087614, 1))
  6077. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  6078. 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))
  6079. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6080. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6081. 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))
  6082. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6083. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6084. 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))
  6085. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6086. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  6087. 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))
  6088. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6089. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6090. 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))
  6091. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6092. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6093. 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))
  6094. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 0.683390796, 0.723476529))
  6095. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  6096. 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))
  6097. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.847812057, 1, 1))
  6098. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  6099. 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))
  6100. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6101. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6102. 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))
  6103. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6104. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6105. 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))
  6106. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6107. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6108. 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))
  6109. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6110. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.66064626, 1.13885355))
  6111. 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))
  6112. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6113. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 1.71422374, 0.527387738))
  6114. 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))
  6115. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.861234307, 1, 1))
  6116. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.562836468))
  6117. 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))
  6118. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.859341383, 0.814899206, 1))
  6119. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.391848803, 0.756001353))
  6120. 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))
  6121. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.8276788, 1, 1))
  6122. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.397666305, 1.13997447))
  6123. 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))
  6124. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.798337698, 1, 1))
  6125. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.435768574, 1.13997447))
  6126. 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))
  6127. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.805115938, 1, 1))
  6128. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.477399707, 0.333971083))
  6129. 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))
  6130. mesh("BlockMesh",Handle2,"","",Vector3.new(0, 0, 0),Vector3.new(0.754998088, 1, 0.671109617))
  6131. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6132. 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))
  6133. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.781843007))
  6134. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6135. 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))
  6136. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 0.563732326))
  6137. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.652221978))
  6138. 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))
  6139. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.523465693, 1))
  6140. Handle2=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Handle2",Vector3.new(0.333970994, 0.333971083, 0.534553051))
  6141. 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))
  6142. mesh("SpecialMesh",Handle2,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.744931459, 0.671109915, 1))
  6143. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 1.76913583, 0.333971083))
  6144. 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))
  6145. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 1, 0.444966584))
  6146. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  6147. 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))
  6148. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  6149. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6150. 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))
  6151. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  6152. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  6153. 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))
  6154. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6155. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6156. 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))
  6157. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  6158. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  6159. 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))
  6160. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6161. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  6162. 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))
  6163. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  6164. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  6165. 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))
  6166. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  6167. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.403703302))
  6168. 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))
  6169. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 1))
  6170. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.615819991, 1.04920125))
  6171. 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))
  6172. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.837745428, 1, 1))
  6173. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6174. 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))
  6175. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.873242319))
  6176. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6177. 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))
  6178. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  6179. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6180. 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))
  6181. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  6182. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6183. 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))
  6184. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  6185. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6186. 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))
  6187. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  6188. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6189. 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))
  6190. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.761709809, 0.80868715))
  6191. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  6192. 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))
  6193. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  6194. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  6195. 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))
  6196. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6197. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  6198. 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))
  6199. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6200. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6201. 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))
  6202. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.526321769, 0.940353274))
  6203. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.53818208))
  6204. 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))
  6205. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 0.190766811, 1))
  6206. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  6207. 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))
  6208. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  6209. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  6210. 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))
  6211. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6212. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.36180529, 0.53818208))
  6213. 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))
  6214. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6215. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6216. 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))
  6217. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.402665645, 0.832176328, 0.80868715))
  6218. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  6219. 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))
  6220. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6221. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 2.02464533, 0.704451442))
  6222. 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))
  6223. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.834389985, 1, 1))
  6224. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.360684603, 0.53818208))
  6225. 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))
  6226. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.834055364, 1, 1))
  6227. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.333971083, 0.333971083))
  6228. 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))
  6229. mesh("BlockMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(0.851167679, 0.317635983, 0.314100146))
  6230. Neon=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.620843053, 0.333971083, 0.636532664))
  6231. 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))
  6232. mesh("CylinderMesh",Neon,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.832176328, 1))
  6233. Neon=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"Really black","Neon",Vector3.new(0.333970994, 0.633004189, 1.13885355))
  6234. 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))
  6235. mesh("SpecialMesh",Neon,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.790433347, 1, 1))
  6236.  
  6237. Player=game:GetService('Players').LocalPlayer
  6238. Character=Player.Character
  6239. Mouse=Player:GetMouse()
  6240. m=Instance.new('Model',Character)
  6241.  
  6242.  
  6243. local function weldBetween(a, b)
  6244. local weldd = Instance.new("ManualWeld")
  6245. weldd.Part0 = a
  6246. weldd.Part1 = b
  6247. weldd.C0 = CFrame.new()
  6248. weldd.C1 = b.CFrame:inverse() * a.CFrame
  6249. weldd.Parent = a
  6250. return weldd
  6251. end
  6252.  
  6253. it=Instance.new
  6254.  
  6255. function nooutline(part)
  6256. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  6257. end
  6258.  
  6259. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  6260. local fp=it("Part")
  6261. fp.formFactor=formfactor
  6262. fp.Parent=parent
  6263. fp.Reflectance=reflectance
  6264. fp.Transparency=transparency
  6265. fp.CanCollide=false
  6266. fp.Locked=true
  6267. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  6268. fp.Name=name
  6269. fp.Size=size
  6270. fp.Position=Character.Torso.Position
  6271. nooutline(fp)
  6272. fp.Material=material
  6273. fp:BreakJoints()
  6274. return fp
  6275. end
  6276.  
  6277. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6278. local mesh=it(Mesh)
  6279. mesh.Parent=part
  6280. if Mesh=="SpecialMesh" then
  6281. mesh.MeshType=meshtype
  6282. mesh.MeshId=meshid
  6283. end
  6284. mesh.Offset=offset
  6285. mesh.Scale=scale
  6286. return mesh
  6287. end
  6288.  
  6289. function weld(parent,part0,part1,c0,c1)
  6290. local weld=it("Weld")
  6291. weld.Parent=parent
  6292. weld.Part0=part0
  6293. weld.Part1=part1
  6294. weld.C0=c0
  6295. weld.C1=c1
  6296. return weld
  6297. end
  6298.  
  6299. Face=part(Enum.FormFactor.Brick,m,Enum.Material.Neon,0,0,"White","Handle",Vector3.new(2.39999938, 2.39999938, 2.39999938))
  6300. Face.Shape = "Ball"
  6301. 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))
  6302.  
  6303.  
  6304. Player=game:GetService('Players').LocalPlayer
  6305. Character=Player.Character
  6306. Mouse=Player:GetMouse()
  6307. m=Instance.new('Model',Character)
  6308.  
  6309.  
  6310. local function weldBetween(a, b)
  6311. local weldd = Instance.new("ManualWeld")
  6312. weldd.Part0 = a
  6313. weldd.Part1 = b
  6314. weldd.C0 = CFrame.new()
  6315. weldd.C1 = b.CFrame:inverse() * a.CFrame
  6316. weldd.Parent = a
  6317. return weldd
  6318. end
  6319.  
  6320. it=Instance.new
  6321.  
  6322. function nooutline(part)
  6323. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  6324. end
  6325.  
  6326. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  6327. local fp=it("Part")
  6328. fp.formFactor=formfactor
  6329. fp.Parent=parent
  6330. fp.Reflectance=reflectance
  6331. fp.Transparency=transparency
  6332. fp.CanCollide=false
  6333. fp.Locked=true
  6334. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  6335. fp.Name=name
  6336. fp.Size=size
  6337. fp.Position=Character.Torso.Position
  6338. nooutline(fp)
  6339. fp.Material=material
  6340. fp:BreakJoints()
  6341. return fp
  6342. end
  6343.  
  6344. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6345. local mesh=it(Mesh)
  6346. mesh.Parent=part
  6347. if Mesh=="SpecialMesh" then
  6348. mesh.MeshType=meshtype
  6349. mesh.MeshId=meshid
  6350. end
  6351. mesh.Offset=offset
  6352. mesh.Scale=scale
  6353. return mesh
  6354. end
  6355.  
  6356. function weld(parent,part0,part1,c0,c1)
  6357. local weld=it("Weld")
  6358. weld.Parent=parent
  6359. weld.Part0=part0
  6360. weld.Part1=part1
  6361. weld.C0=c0
  6362. weld.C1=c1
  6363. return weld
  6364. end
  6365.  
  6366. Back=part(Enum.FormFactor.Brick,m,Enum.Material.Slate,0,0,"White","Handle",Vector3.new(4.37000132, 3.20000124, 1.59000123))
  6367. 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))
  6368.  
  6369. local size = 40,40,40
  6370.  
  6371.  
  6372. Player=game:GetService('Players').LocalPlayer
  6373. Character=Player.Character
  6374. Mouse=Player:GetMouse()
  6375. m=Instance.new('Model',Character)
  6376.  
  6377.  
  6378. local function weldBetween(a, b)
  6379. local weldd = Instance.new("ManualWeld")
  6380. weldd.Part0 = a
  6381. weldd.Part1 = b
  6382. weldd.C0 = CFrame.new()
  6383. weldd.C1 = b.CFrame:inverse() * a.CFrame
  6384. weldd.Parent = a
  6385. return weldd
  6386. end
  6387.  
  6388. it=Instance.new
  6389.  
  6390. function nooutline(part)
  6391. part.TopSurface,part.BottomSurface,part.LeftSurface,part.RightSurface,part.FrontSurface,part.BackSurface = 10,10,10,10,10,10
  6392. end
  6393.  
  6394. function part(formfactor,parent,material,reflectance,transparency,brickcolor,name,size)
  6395. local fp=it("Part")
  6396. fp.formFactor=formfactor
  6397. fp.Parent=parent
  6398. fp.Reflectance=reflectance
  6399. fp.Transparency=transparency
  6400. fp.CanCollide=false
  6401. fp.Locked=true
  6402. fp.BrickColor=BrickColor.new(tostring(brickcolor))
  6403. fp.Name=name
  6404. fp.Size=size
  6405. fp.Position=Character.Torso.Position
  6406. nooutline(fp)
  6407. fp.Material=material
  6408. fp:BreakJoints()
  6409. return fp
  6410. end
  6411.  
  6412. function mesh(Mesh,part,meshtype,meshid,offset,scale)
  6413. local mesh=it(Mesh)
  6414. mesh.Parent=part
  6415. if Mesh=="SpecialMesh" then
  6416. mesh.MeshType=meshtype
  6417. mesh.MeshId=meshid
  6418. end
  6419. mesh.Offset=offset
  6420. mesh.Scale=scale
  6421. return mesh
  6422. end
  6423.  
  6424. function weld(parent,part0,part1,c0,c1)
  6425. local weld=it("Weld")
  6426. weld.Parent=parent
  6427. weld.Part0=part0
  6428. weld.Part1=part1
  6429. weld.C0=c0
  6430. weld.C1=c1
  6431. return weld
  6432. end
  6433.  
  6434. WIngs=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Really black","Handle",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  6435. 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))
  6436. mesh("BlockMesh",WIngs,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  6437. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6438. 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))
  6439. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6440. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6441. 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))
  6442. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6443. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6444. 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))
  6445. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6446. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6447. 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))
  6448. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6449. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6450. 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))
  6451. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6452. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6453. 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))
  6454. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6455. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6456. 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))
  6457. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6458. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6459. 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))
  6460. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6461. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6462. 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))
  6463. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6464. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6465. 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))
  6466. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6467. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6468. 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))
  6469. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6470. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6471. 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))
  6472. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6473. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.DiamondPlate,0,0,"Really black","Part",Vector3.new(0.526163042, 0.373031557, 0.931079745))
  6474. 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))
  6475. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.429282606, 1))
  6476. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6477. 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))
  6478. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6479. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6480. 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))
  6481. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6482. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6483. 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))
  6484. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6485. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6486. 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))
  6487. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6488. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6489. 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))
  6490. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6491. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6492. 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))
  6493. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6494. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6495. 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))
  6496. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6497. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6498. 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))
  6499. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6500. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6501. 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))
  6502. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6503. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6504. 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))
  6505. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6506. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6507. 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))
  6508. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6509. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6510. 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))
  6511. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6512. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6513. 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))
  6514. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6515. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6516. 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))
  6517. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6518. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6519. 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))
  6520. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6521. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6522. 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))
  6523. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6524. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6525. 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))
  6526. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6527. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6528. 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))
  6529. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6530. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6531. 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))
  6532. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6533. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6534. 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))
  6535. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6536. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6537. 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))
  6538. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6539. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6540. 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))
  6541. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6542. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6543. 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))
  6544. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6545. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6546. 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))
  6547. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6548. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6549. 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))
  6550. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6551. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6552. 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))
  6553. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6554. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6555. 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))
  6556. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6557. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6558. 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))
  6559. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6560. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6561. 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))
  6562. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6563. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6564. 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))
  6565. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6566. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6567. 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))
  6568. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6569. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6570. 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))
  6571. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6572. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6573. 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))
  6574. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6575. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6576. 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))
  6577. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6578. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6579. 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))
  6580. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6581. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6582. 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))
  6583. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6584. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.567338467, 0.701169252))
  6585. 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))
  6586. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6587. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.869309068, 0.701169252))
  6588. 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))
  6589. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.904563606, 1, 1))
  6590. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.92734933, 0.701169252))
  6591. 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))
  6592. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.659258127, 1, 1))
  6593. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.893329322, 0.679436445))
  6594. 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))
  6595. mesh("BlockMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(0.619396091, 1, 1))
  6596. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Really black","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  6597. 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))
  6598. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6599. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  6600. 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))
  6601. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  6602. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  6603. 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))
  6604. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6605. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  6606. 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))
  6607. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6608. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  6609. 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))
  6610. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6611. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6612. 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))
  6613. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6614. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6615. 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))
  6616. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6617. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6618. 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))
  6619. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6620. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  6621. 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))
  6622. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  6623. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  6624. 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))
  6625. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6626. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  6627. 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))
  6628. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  6629. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  6630. 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))
  6631. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  6632. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  6633. 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))
  6634. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6635. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  6636. 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))
  6637. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6638. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  6639. 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))
  6640. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6641. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6642. 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))
  6643. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6644. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6645. 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))
  6646. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6647. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6648. 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))
  6649. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6650. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6651. 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))
  6652. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6653. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6654. 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))
  6655. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6656. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6657. 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))
  6658. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6659. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6660. 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))
  6661. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6662. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6663. 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))
  6664. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6665. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6666. 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))
  6667. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6668. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6669. 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))
  6670. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6671. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6672. 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))
  6673. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6674. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6675. 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))
  6676. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6677. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6678. 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))
  6679. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6680. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  6681. 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))
  6682. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6683. Part=part(Enum.FormFactor.Brick,m,Enum.Material.DiamondPlate,0,0,"Really black","Part",Vector3.new(2.33570647, 0.518153846, 1.07062769))
  6684. 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))
  6685. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6686. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  6687. 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))
  6688. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  6689. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.502140284, 1.85872841))
  6690. 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))
  6691. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6692. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.507859409, 1.26050401))
  6693. 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))
  6694. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6695. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"Really black","Part",Vector3.new(2.33570647, 0.497564912, 2.28537822))
  6696. 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))
  6697. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6698. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6699. 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))
  6700. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6701. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6702. 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))
  6703. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6704. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6705. 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))
  6706. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6707. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6708. 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))
  6709. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6710. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6711. 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))
  6712. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6713. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6714. 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))
  6715. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6716. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6717. 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))
  6718. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6719. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6720. 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))
  6721. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6722. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6723. 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))
  6724. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6725. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6726. 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))
  6727. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6728. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6729. 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))
  6730. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6731. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.54303002, 0.373031557, 1.3668803))
  6732. 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))
  6733. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.901492953, 1))
  6734. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6735. 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))
  6736. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6737. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6738. 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))
  6739. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6740. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6741. 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))
  6742. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6743. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6744. 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))
  6745. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6746. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  6747. 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))
  6748. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6749. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  6750. 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))
  6751. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  6752. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6753. 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))
  6754. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6755. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  6756. 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))
  6757. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6758. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 1.76950121, 0.741203785))
  6759. 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))
  6760. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6761. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 2.33112097, 0.885326684))
  6762. 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))
  6763. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6764. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  6765. 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))
  6766. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  6767. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 1.67227566, 1.70316744))
  6768. 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))
  6769. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6770. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6771. 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))
  6772. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6773. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6774. 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))
  6775. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6776. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6777. 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))
  6778. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6779. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6780. 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))
  6781. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6782. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  6783. 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))
  6784. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  6785. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  6786. 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))
  6787. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  6788. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6789. 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))
  6790. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6791. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  6792. 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))
  6793. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6794. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  6795. 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))
  6796. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6797. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6798. 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))
  6799. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6800. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6801. 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))
  6802. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6803. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6804. 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))
  6805. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6806. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6807. 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))
  6808. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6809. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6810. 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))
  6811. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6812. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6813. 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))
  6814. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6815. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6816. 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))
  6817. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6818. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6819. 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))
  6820. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6821. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6822. 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))
  6823. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6824. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6825. 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))
  6826. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6827. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6828. 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))
  6829. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6830. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  6831. 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))
  6832. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6833. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6834. 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))
  6835. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6836. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6837. 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))
  6838. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6839. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6840. 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))
  6841. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6842. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6843. 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))
  6844. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6845. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6846. 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))
  6847. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6848. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6849. 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))
  6850. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6851. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.583352029, 0.373031557))
  6852. 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))
  6853. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 0.417018801))
  6854. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.613091588, 3.18786216))
  6855. 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))
  6856. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6857. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6858. 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))
  6859. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6860. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6861. 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))
  6862. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6863. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.969965518, 1.26393533))
  6864. 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))
  6865. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6866. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.584495842, 0.706888735))
  6867. 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))
  6868. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6869. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.539886534, 0.706888735))
  6870. 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))
  6871. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6872. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 1.83584321, 0.702313483))
  6873. 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))
  6874. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6875. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 0.725190163))
  6876. 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))
  6877. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.478343189, 1))
  6878. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.373031557, 1.03288114))
  6879. 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))
  6880. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 0.794172287, 1))
  6881. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 4.23216105, 1.09807956))
  6882. 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))
  6883. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6884. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 1.67227566, 1.75463974))
  6885. 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))
  6886. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6887. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.395764321, 1.10837412))
  6888. 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))
  6889. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6890. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(0.373031408, 0.380894542, 0.985983968))
  6891. 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))
  6892. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.892298341, 1, 1))
  6893. Part=part(Enum.FormFactor.Symmetric,m,Enum.Material.Slate,0,0,"White","Part",Vector3.new(0.373031408, 0.885322511, 0.706888735))
  6894. 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))
  6895. mesh("SpecialMesh",Part,Enum.MeshType.Wedge,"",Vector3.new(0, 0, 0),Vector3.new(0.656192005, 1, 1))
  6896. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  6897. 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))
  6898. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  6899. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  6900. 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))
  6901. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  6902. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  6903. 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))
  6904. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6905. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  6906. 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))
  6907. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  6908. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  6909. 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))
  6910. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  6911. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.28909934, 0.373031557, 1.23305202))
  6912. 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))
  6913. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.567265928, 1))
  6914. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.28909934, 0.543318033, 1.14497685))
  6915. 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))
  6916. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 1, 1))
  6917. Part=part(Enum.FormFactor.Brick,m,Enum.Material.SmoothPlastic,0,0,"White","Part",Vector3.new(1.44351673, 0.373031557, 1.23305202))
  6918. 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))
  6919. mesh("CylinderMesh",Part,"","",Vector3.new(0, 0, 0),Vector3.new(1, 0.904559135, 1))
  6920.  
  6921. gui=Instance.new("TextBox",bb)
  6922. gui.Text = "zenalor"
  6923. gui.Size = UDim2.new(0,266,0,90)
  6924. gui.Position=UDim2.new(0,94,0,-60)
  6925. gui.TextColor3 = Color3.new(255,255,255)
  6926. gui.BackgroundColor3=Color3.new(0,0,0)
  6927. gui.TextWrapped = true
  6928. gui.TextScaled = true
  6929. gui.TextXAlignment = "Left"
  6930. gui.TextYAlignment = "Top"
  6931. gui.Visible = false
  6932. gui.BorderColor3 = Color3.new(0,0,0)
  6933.  
  6934. gui1=Instance.new("TextButton",bb)
  6935. gui1.Position=UDim2.new(0,5,0,-66)
  6936. gui1.Size = UDim2.new(0,380,0,102)
  6937.  
  6938. gui1.TextColor3 = Color3.new(0,0,0)
  6939. gui1.BackgroundColor3=Color3.new(0,0,0)
  6940.  
  6941. gui1.Visible = false
  6942. img = Instance.new("ImageLabel",bb)
  6943. img.Size = UDim2.new(0,92,0,94)
  6944. img.Position = UDim2.new(0,15,0,-62)
  6945. img.Image = "rbxassetid://77960856"
  6946. img.BorderColor3 = Color3.new(0,0,0)
  6947. img.Visible = false
  6948. sid = "379851665"
  6949. asd = Instance.new("Sound",player.Character.Torso)
  6950. asd.SoundId = "http://www.roblox.com/asset/?id =565939471"
  6951.  
  6952. asd1 = Instance.new("Sound",player.Character.Torso)
  6953. asd1.SoundId = "http://www.roblox.com/asset/?id =379851665"
  6954.  
  6955. asd2 = Instance.new("Sound",player.Character.Torso)
  6956. asd2.SoundId = "http://www.roblox.com/asset/?id = 338228788"
  6957. asd2.Looped = true
  6958. asd3 = Instance.new("Sound",player.Character.Torso)
  6959. asd3.SoundId = "http://www.roblox.com/asset/?id = 316014309"
  6960. asd3.Looped = true
  6961. asd4 = Instance.new("Sound",player.Character.Torso)
  6962. asd4.SoundId = "http://www.roblox.com/asset/?id = 370435986"
  6963. asd4.Looped = true
  6964. asd5 = Instance.new("Sound",player.Character.Torso)
  6965. asd5.SoundId = "http://www.roblox.com/asset/?id = 379865908"
  6966. asd5.Looped = true
  6967. asd6 = Instance.new("Sound",player.Character.Torso)
  6968. asd6.SoundId = "http://www.roblox.com/asset/?id = 379865908"
  6969. asd7 = Instance.new("Sound",player.Character.Torso)
  6970. asd7.SoundId = "http://www.roblox.com/asset/?id = 379874748"
  6971. asd7.Looped = true
  6972. m.KeyDown:connect(function(k)
  6973.  
  6974. if k == string.char(50) then
  6975. if shoot == true then
  6976. shoot = false
  6977. b = Instance.new("Part",workspace)
  6978. b.CFrame = fl.CFrame * CFrame.new(0,0,1)
  6979. b.BrickColor = BrickColor.new("asd")
  6980. b.TopSurface = "Universal"
  6981. b.BottomSurface = "Universal"
  6982. b.LeftSurface = 0
  6983. b.RightSurface = 0
  6984. b.FrontSurface = 0
  6985. b.BackSurface = 0
  6986. b.FormFactor = 3
  6987. b.Size = Vector3.new(0.2,0.2,0.5)
  6988. b.Material = "Neon"
  6989. b.Anchored = false
  6990. b.CanCollide = false
  6991. b.Reflectance = 0
  6992.  
  6993. b.Velocity = CFrame.new(b.Position,player:GetMouse().Hit.p).lookVector * 200
  6994. b.Touched:connect(function(h)
  6995. if h.Parent.Name ==game.Players.LocalPlayer.Name then
  6996. x = h.Parent:findFirstChild("Humanoid")
  6997. x:TakeDamage(0)
  6998. else x = h.Parent:findFirstChild("Humanoid")
  6999. if x then
  7000.  
  7001. x:TakeDamage(15)
  7002.  
  7003.  
  7004.  
  7005. end end end)
  7006. wait(0.3)
  7007. b:Remove()
  7008. shoot = true
  7009.  
  7010.  
  7011.  
  7012.  
  7013. end
  7014. end
  7015. end)
  7016.  
  7017.  
  7018.  
  7019.  
  7020. function play(play)
  7021. asd:Play()
  7022.  
  7023. asd1:Play()
  7024. end
  7025. eye = Instance.new("Part",player.Character)
  7026. eye.BrickColor = BrickColor.new("Toothpaste")
  7027. eye.Material = "Neon"
  7028. eye.FormFactor = 3
  7029. eye.Shape = "Ball"
  7030. eye.Size = Vector3.new(0.37,0.37,0.1)
  7031. weld = Instance.new("Weld",eye)
  7032. weld.Part0 = eye
  7033. weld.Part1 = player.Character.Head
  7034. weld.C0 = CFrame.new(0.1,-0.2,0.45)
  7035. eye.Transparency = 1
  7036. -- listen for their chatting
  7037. player.Chatted:connect(function(message)
  7038. a = string.len(message)
  7039. gui.Text = "Zelanor"
  7040. gui.Visible = true
  7041. gui1.Visible = true
  7042. des = false
  7043. img.Visible = true
  7044. print(a)
  7045. if dot == false then
  7046. for i = 1,string.len(message) do wait(aa)
  7047. gui.Text =gui.Text..message:sub(i,i)
  7048. play()
  7049.  
  7050. end
  7051. end
  7052.  
  7053.  
  7054. des = true
  7055. end)
  7056. m.KeyDown:connect(function(k)
  7057. if k == "g" then
  7058. asd2:Play()
  7059. eye.Transparency = 1
  7060.  
  7061. end
  7062. end)
  7063.  
  7064.  
  7065.  
  7066. m.KeyDown:connect(function(k)
  7067. if k == "z" then
  7068. aa = 0.08
  7069. asd1.SoundId = "http://www.roblox.com/asset/?id =565939471"
  7070. asd.SoundId = "http://www.roblox.com/asset/?id =565939471"
  7071. img.Image = "rbxassetid://257911614"
  7072. end
  7073. end)
  7074. m.KeyDown:connect(function(k)
  7075. if k == "c" then
  7076. aa=0.075
  7077. asd1.SoundId = "http://www.roblox.com/asset/?id =565939471"
  7078. asd.SoundId = "http://www.roblox.com/asset/?id =565939471"
  7079. img.Image = "rbxassetid://164575692"
  7080. end
  7081. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement