Advertisement
Robert666121

SuitV3

Jul 7th, 2018
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 376.84 KB | None | 0 0
  1. plr = game:GetService("Players").LocalPlayer
  2. char = plr.Character
  3. hum = char.Humanoid
  4. local cam = game.Workspace.CurrentCamera
  5. local Controller = plr.PlayerScripts:WaitForChild("ControlScript")
  6. Camera = cam
  7. local CamInterrupt = false
  8. local TwoD = false
  9. local TargetInfo = {nil, nil}
  10. cam.CameraType = "Custom"
  11. t = char.Torso
  12. h = char.Head
  13. ra = char["Right Arm"]
  14. la = char["Left Arm"]
  15. rl = char["Right Leg"]
  16. ll = char["Left Leg"]
  17. tors = char.Torso
  18. lleg = char["Left Leg"]
  19. root = char.HumanoidRootPart
  20. hed = char.Head
  21. rleg = char["Right Leg"]
  22. rarm = char["Right Arm"]
  23. larm = char["Left Arm"]
  24. radian = math.rad
  25. random = math.random
  26. Vec3 = Vector3.new
  27. Inst = Instance.new
  28. cFrame = CFrame.new
  29. Euler = CFrame.fromEulerAnglesXYZ
  30. vt = Vector3.new
  31. bc = BrickColor.new
  32. br = BrickColor.random
  33. it = Instance.new
  34. cf = CFrame.new
  35. local eff = true
  36. local shielding = false
  37.  
  38. local Booleans = {
  39. CamFollow = true,
  40. GyroUse = true
  41. }
  42.  
  43. function lerp(object, newCFrame, alpha)
  44. return object:lerp(newCFrame, alpha)
  45. end
  46.  
  47. local Directer = Inst("BodyGyro", root)
  48. Directer.MaxTorque = Vec3(0, 0, 0)
  49. Directer.P = 600000
  50. local CPart = Inst("Part")
  51. CPart.Anchored = true
  52. CPart.CanCollide = false
  53. CPart.Locked = true
  54. CPart.Transparency = 1
  55.  
  56. local rainbowmode = false
  57. local chaosmode = false
  58.  
  59. kan = Instance.new("Sound",char)
  60. kan.Volume = 1.25
  61. kan.TimePosition = 0
  62. kan.PlaybackSpeed = 1
  63. kan.Pitch = 1
  64. kan.SoundId = "rbxassetid://0"
  65. kan.Name = "wrecked"
  66. kan.Looped = true
  67. kan:Play()
  68.  
  69. function newTheme(ID,timepos,pitch,vol)
  70. local kanz = kan
  71. --kanz:Stop()
  72. --kanz.Volume = vol
  73. --kanz.TimePosition = timepos
  74. kanz.PlaybackSpeed = pitch
  75. kanz.Pitch = pitch
  76. kanz.SoundId = ID
  77. kanz.Name = "wrecked"
  78. kanz.Looped = true
  79. kanz.Volume = 0.3
  80. --kanz:Play()
  81. --coroutine.resume(coroutine.create(function()
  82. --wait(0.05)
  83. --end))
  84. end
  85.  
  86. function newThemeCust(ID,timepos,pitch,vol)
  87. local kanz = kan
  88. kanz:Stop()
  89. kanz.Volume = vol
  90. kanz.TimePosition = timepos
  91. kanz.PlaybackSpeed = pitch
  92. kanz.Pitch = pitch
  93. kanz.SoundId = ID
  94. kanz.Name = "wrecked"
  95. kanz.Looped = true
  96. kanz:Play()
  97. coroutine.resume(coroutine.create(function()
  98. wait(0.05)
  99. end))
  100. end
  101.  
  102.  
  103.  
  104. function CameraShake(Times, Power, PlayerTarget)
  105. coroutine.resume(coroutine.create(function()
  106. FV = Instance.new("BoolValue", PlayerTarget)
  107. FV.Name = "CameraShake"
  108. for ShakeNum=1,Times do
  109. swait()
  110. local ef=Power
  111. if ef>=1 then
  112. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  113. else
  114. ef=Power*10
  115. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  116. end
  117. end
  118. Humanoid.CameraOffset = Vector3.new(0,0,0)
  119. FV:Destroy()
  120. end))
  121. end
  122.  
  123. function CameraEnshaking(Length,Intensity)
  124. coroutine.resume(coroutine.create(function()
  125. local intensity = 1*Intensity
  126. local rotM = 0.01*Intensity
  127. for i = 0, Length, 0.1 do
  128. swait()
  129. intensity = intensity - 0.05*Intensity/Length
  130. rotM = rotM - 0.0005*Intensity/Length
  131. hum.CameraOffset = Vec3(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity)))
  132. cam.CFrame = cam.CFrame * cFrame(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity))) * Euler(radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM)
  133. end
  134. Humanoid.CameraOffset = Vec3(0, 0, 0)
  135. end))
  136. end
  137. CamShake=function(Part,Distan,Power,Times)
  138. local de=Part.Position
  139. for i,v in pairs(workspace:children()) do
  140. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  141. for _,c in pairs(v:children()) do
  142. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  143. local Noob=v.Humanoid
  144. if Noob~=nil then
  145. coroutine.resume(coroutine.create(function()
  146. FV = Instance.new("BoolValue", Noob)
  147. FV.Name = "CameraShake"
  148. for ShakeNum=1,Times do
  149. swait()
  150. local ef=Power
  151. if ef>=1 then
  152. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  153. else
  154. ef=Power*10
  155. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  156. end
  157. end
  158. Humanoid.CameraOffset = Vector3.new(0,0,0)
  159. FV:Destroy()
  160. end))
  161. CameraShake(Times, Power, Noob)
  162. end
  163. end
  164. end
  165. end
  166. end
  167. end
  168.  
  169. function chatfunc(text,color)
  170. local chat = coroutine.wrap(function()
  171. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  172. Character:FindFirstChild("TalkingBillBoard"):destroy()
  173. end
  174. local naeeym2 = Instance.new("BillboardGui",Character)
  175. naeeym2.Size = UDim2.new(0,100,0,40)
  176. naeeym2.StudsOffset = Vector3.new(0,3,0)
  177. naeeym2.Adornee = Character.Head
  178. naeeym2.Name = "TalkingBillBoard"
  179. local tecks2 = Instance.new("TextLabel",naeeym2)
  180. tecks2.BackgroundTransparency = 1
  181. tecks2.BorderSizePixel = 0
  182. tecks2.Text = ""
  183. tecks2.Font = "SciFi"
  184. tecks2.TextSize = 30
  185. tecks2.TextStrokeTransparency = 0
  186. tecks2.TextColor3 = color
  187. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  188. tecks2.Size = UDim2.new(1,0,0.5,0)
  189. local tecks3 = Instance.new("TextLabel",naeeym2)
  190. tecks3.BackgroundTransparency = 1
  191. tecks3.BorderSizePixel = 0
  192. tecks3.Text = ""
  193. tecks3.Font = "SciFi"
  194. tecks3.TextSize = 30
  195. tecks3.TextStrokeTransparency = 0
  196. tecks3.TextColor3 = Color3.new(0,0,0)
  197. tecks3.TextStrokeColor3 = color
  198. tecks3.Size = UDim2.new(1,0,0.5,0)
  199. coroutine.resume(coroutine.create(function()
  200. while true do
  201. swait(1)
  202. plr.Character.wrecked.Volume = 0.3
  203. if chaosmode == true then
  204. tecks2.TextColor3 = BrickColor.random().Color
  205. tecks3.TextStrokeColor3 = BrickColor.random().Color
  206. end
  207. tecks2.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  208. tecks3.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  209. tecks2.Rotation = math.random(-5,5)
  210. tecks3.Rotation = math.random(-5,5)
  211. end
  212. end))
  213. for i = 1,string.len(text),1 do
  214. CFuncs["Sound"].Create("rbxassetid://274118116", char, 0.25, 0.115)
  215. tecks2.Text = string.sub(text,1,i)
  216. tecks3.Text = string.sub(text,1,i)
  217. swait(1)
  218. end
  219. wait(1)
  220. local randomrot = math.random(1,2)
  221. if randomrot == 1 then
  222. for i = 1, 50 do
  223. swait()
  224. tecks2.Rotation = tecks2.Rotation - .75
  225. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  226. tecks2.TextTransparency = tecks2.TextTransparency + .04
  227. tecks3.Rotation = tecks2.Rotation + .75
  228. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  229. tecks3.TextTransparency = tecks2.TextTransparency + .04
  230. end
  231. elseif randomrot == 2 then
  232. for i = 1, 50 do
  233. swait()
  234. tecks2.Rotation = tecks2.Rotation + .75
  235. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  236. tecks2.TextTransparency = tecks2.TextTransparency + .04
  237. tecks3.Rotation = tecks2.Rotation - .75
  238. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  239. tecks3.TextTransparency = tecks2.TextTransparency + .04
  240. end
  241. end
  242. naeeym2:Destroy()
  243. end)
  244. chat()
  245. end
  246.  
  247.  
  248. local Create = LoadLibrary("RbxUtility").Create
  249.  
  250. CFuncs = {
  251. ["Part"] = {
  252. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  253. local Part = Create("Part"){
  254. Parent = Parent,
  255. Reflectance = Reflectance,
  256. Transparency = Transparency,
  257. CanCollide = false,
  258. Locked = true,
  259. BrickColor = BrickColor.new(tostring(BColor)),
  260. Name = Name,
  261. Size = Size,
  262. Material = Material,
  263. }
  264. RemoveOutlines(Part)
  265. return Part
  266. end;
  267. };
  268.  
  269. ["Mesh"] = {
  270. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  271. local Msh = Create(Mesh){
  272. Parent = Part,
  273. Offset = OffSet,
  274. Scale = Scale,
  275. }
  276. if Mesh == "SpecialMesh" then
  277. Msh.MeshType = MeshType
  278. Msh.MeshId = MeshId
  279. end
  280. return Msh
  281. end;
  282. };
  283.  
  284. ["Mesh"] = {
  285. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  286. local Msh = Create(Mesh){
  287. Parent = Part,
  288. Offset = OffSet,
  289. Scale = Scale,
  290. }
  291. if Mesh == "SpecialMesh" then
  292. Msh.MeshType = MeshType
  293. Msh.MeshId = MeshId
  294. end
  295. return Msh
  296. end;
  297. };
  298.  
  299. ["Weld"] = {
  300. Create = function(Parent, Part0, Part1, C0, C1)
  301. local Weld = Create("Weld"){
  302. Parent = Parent,
  303. Part0 = Part0,
  304. Part1 = Part1,
  305. C0 = C0,
  306. C1 = C1,
  307. }
  308. return Weld
  309. end;
  310. };
  311.  
  312. ["Sound"] = {
  313. Create = function(id, par, vol, pit)
  314. coroutine.resume(coroutine.create(function()
  315. local S = Create("Sound"){
  316. Volume = vol,
  317. Name = "EffectSoundo",
  318. Pitch = pit or 1,
  319. SoundId = id,
  320. Parent = par or workspace,
  321. }
  322. wait()
  323. S:play()
  324. game:GetService("Debris"):AddItem(S, 10)
  325. end))
  326. end;
  327. };
  328.  
  329. ["LongSound"] = {
  330. Create = function(id, par, vol, pit)
  331. coroutine.resume(coroutine.create(function()
  332. local S = Create("Sound"){
  333. Volume = vol,
  334. Pitch = pit or 1,
  335. SoundId = id,
  336. Parent = par or workspace,
  337. }
  338. wait()
  339. S:play()
  340. game:GetService("Debris"):AddItem(S, 30)
  341. end))
  342. end;
  343. };
  344.  
  345. ["ParticleEmitter"] = {
  346. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  347. local fp = Create("ParticleEmitter"){
  348. Parent = Parent,
  349. Color = ColorSequence.new(Color1, Color2),
  350. LightEmission = LightEmission,
  351. Size = Size,
  352. Texture = Texture,
  353. Transparency = Transparency,
  354. ZOffset = ZOffset,
  355. Acceleration = Accel,
  356. Drag = Drag,
  357. LockedToPart = LockedToPart,
  358. VelocityInheritance = VelocityInheritance,
  359. EmissionDirection = EmissionDirection,
  360. Enabled = Enabled,
  361. Lifetime = LifeTime,
  362. Rate = Rate,
  363. Rotation = Rotation,
  364. RotSpeed = RotSpeed,
  365. Speed = Speed,
  366. VelocitySpread = VelocitySpread,
  367. }
  368. return fp
  369. end;
  370. };
  371.  
  372. CreateTemplate = {
  373.  
  374. };
  375. }
  376.  
  377.  
  378.  
  379. New = function(Object, Parent, Name, Data)
  380. local Object = Instance.new(Object)
  381. for Index, Value in pairs(Data or {}) do
  382. Object[Index] = Value
  383. end
  384. Object.Parent = Parent
  385. Object.Name = Name
  386. return Object
  387. end
  388. local halocolor = BrickColor.new("Black")
  389. local halocolor2 = BrickColor.new("Black")
  390. local starcolor = BrickColor.new("Black")plr = game:GetService("Players").LocalPlayer
  391. char = plr.Character
  392. hum = char.Humanoid
  393. local cam = game.Workspace.CurrentCamera
  394. local Controller = plr.PlayerScripts:WaitForChild("ControlScript")
  395. Camera = cam
  396. local CamInterrupt = false
  397. local TwoD = false
  398. local TargetInfo = {nil, nil}
  399. cam.CameraType = "Custom"
  400. t = char.Torso
  401. h = char.Head
  402. ra = char["Right Arm"]
  403. la = char["Left Arm"]
  404. rl = char["Right Leg"]
  405. ll = char["Left Leg"]
  406. tors = char.Torso
  407. lleg = char["Left Leg"]
  408. root = char.HumanoidRootPart
  409. hed = char.Head
  410. rleg = char["Right Leg"]
  411. rarm = char["Right Arm"]
  412. larm = char["Left Arm"]
  413. radian = math.rad
  414. random = math.random
  415. Vec3 = Vector3.new
  416. Inst = Instance.new
  417. cFrame = CFrame.new
  418. Euler = CFrame.fromEulerAnglesXYZ
  419. vt = Vector3.new
  420. bc = BrickColor.new
  421. br = BrickColor.random
  422. it = Instance.new
  423. cf = CFrame.new
  424. local eff = true
  425. local shielding = false
  426.  
  427. local Booleans = {
  428. CamFollow = true,
  429. GyroUse = true
  430. }
  431.  
  432. function lerp(object, newCFrame, alpha)
  433. return object:lerp(newCFrame, alpha)
  434. end
  435.  
  436. local Directer = Inst("BodyGyro", root)
  437. Directer.MaxTorque = Vec3(0, 0, 0)
  438. Directer.P = 600000
  439. local CPart = Inst("Part")
  440. CPart.Anchored = true
  441. CPart.CanCollide = false
  442. CPart.Locked = true
  443. CPart.Transparency = 1
  444.  
  445. local rainbowmode = false
  446. local chaosmode = false
  447.  
  448. kan = Instance.new("Sound",char)
  449. kan.Volume = 1.25
  450. kan.TimePosition = 0
  451. kan.PlaybackSpeed = 1
  452. kan.Pitch = 1
  453. kan.SoundId = "rbxassetid://0"
  454. kan.Name = "wrecked"
  455. kan.Looped = true
  456. kan:Play()
  457.  
  458. function newTheme(ID,timepos,pitch,vol)
  459. local kanz = kan
  460. --kanz:Stop()
  461. --kanz.Volume = vol
  462. --kanz.TimePosition = timepos
  463. kanz.PlaybackSpeed = pitch
  464. kanz.Pitch = pitch
  465. kanz.SoundId = ID
  466. kanz.Name = "wrecked"
  467. kanz.Looped = true
  468. kanz.Volume = 0.3
  469. --kanz:Play()
  470. --coroutine.resume(coroutine.create(function()
  471. --wait(0.05)
  472. --end))
  473. end
  474.  
  475. function newThemeCust(ID,timepos,pitch,vol)
  476. local kanz = kan
  477. kanz:Stop()
  478. kanz.Volume = vol
  479. kanz.TimePosition = timepos
  480. kanz.PlaybackSpeed = pitch
  481. kanz.Pitch = pitch
  482. kanz.SoundId = ID
  483. kanz.Name = "wrecked"
  484. kanz.Looped = true
  485. kanz:Play()
  486. coroutine.resume(coroutine.create(function()
  487. wait(0.05)
  488. end))
  489. end
  490.  
  491.  
  492.  
  493. function CameraShake(Times, Power, PlayerTarget)
  494. coroutine.resume(coroutine.create(function()
  495. FV = Instance.new("BoolValue", PlayerTarget)
  496. FV.Name = "CameraShake"
  497. for ShakeNum=1,Times do
  498. swait()
  499. local ef=Power
  500. if ef>=1 then
  501. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  502. else
  503. ef=Power*10
  504. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  505. end
  506. end
  507. Humanoid.CameraOffset = Vector3.new(0,0,0)
  508. FV:Destroy()
  509. end))
  510. end
  511.  
  512. function CameraEnshaking(Length,Intensity)
  513. coroutine.resume(coroutine.create(function()
  514. local intensity = 1*Intensity
  515. local rotM = 0.01*Intensity
  516. for i = 0, Length, 0.1 do
  517. swait()
  518. intensity = intensity - 0.05*Intensity/Length
  519. rotM = rotM - 0.0005*Intensity/Length
  520. hum.CameraOffset = Vec3(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity)))
  521. cam.CFrame = cam.CFrame * cFrame(radian(random(-intensity, intensity)), radian(random(-intensity, intensity)), radian(random(-intensity, intensity))) * Euler(radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM, radian(random(-intensity, intensity)) * rotM)
  522. end
  523. Humanoid.CameraOffset = Vec3(0, 0, 0)
  524. end))
  525. end
  526. CamShake=function(Part,Distan,Power,Times)
  527. local de=Part.Position
  528. for i,v in pairs(workspace:children()) do
  529. if v:IsA("Model") and v:findFirstChild("Humanoid") then
  530. for _,c in pairs(v:children()) do
  531. if c.ClassName=="Part" and (c.Position - de).magnitude < Distan then
  532. local Noob=v.Humanoid
  533. if Noob~=nil then
  534. coroutine.resume(coroutine.create(function()
  535. FV = Instance.new("BoolValue", Noob)
  536. FV.Name = "CameraShake"
  537. for ShakeNum=1,Times do
  538. swait()
  539. local ef=Power
  540. if ef>=1 then
  541. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef),math.random(-ef,ef),math.random(-ef,ef))
  542. else
  543. ef=Power*10
  544. Humanoid.CameraOffset = Vector3.new(math.random(-ef,ef)/10,math.random(-ef,ef)/10,math.random(-ef,ef)/10)
  545. end
  546. end
  547. Humanoid.CameraOffset = Vector3.new(0,0,0)
  548. FV:Destroy()
  549. end))
  550. CameraShake(Times, Power, Noob)
  551. end
  552. end
  553. end
  554. end
  555. end
  556. end
  557.  
  558. function chatfunc(text,color)
  559. local chat = coroutine.wrap(function()
  560. if Character:FindFirstChild("TalkingBillBoard")~= nil then
  561. Character:FindFirstChild("TalkingBillBoard"):destroy()
  562. end
  563. local naeeym2 = Instance.new("BillboardGui",Character)
  564. naeeym2.Size = UDim2.new(0,100,0,40)
  565. naeeym2.StudsOffset = Vector3.new(0,3,0)
  566. naeeym2.Adornee = Character.Head
  567. naeeym2.Name = "TalkingBillBoard"
  568. local tecks2 = Instance.new("TextLabel",naeeym2)
  569. tecks2.BackgroundTransparency = 1
  570. tecks2.BorderSizePixel = 0
  571. tecks2.Text = ""
  572. tecks2.Font = "SciFi"
  573. tecks2.TextSize = 30
  574. tecks2.TextStrokeTransparency = 0
  575. tecks2.TextColor3 = color
  576. tecks2.TextStrokeColor3 = Color3.new(0,0,0)
  577. tecks2.Size = UDim2.new(1,0,0.5,0)
  578. local tecks3 = Instance.new("TextLabel",naeeym2)
  579. tecks3.BackgroundTransparency = 1
  580. tecks3.BorderSizePixel = 0
  581. tecks3.Text = ""
  582. tecks3.Font = "SciFi"
  583. tecks3.TextSize = 30
  584. tecks3.TextStrokeTransparency = 0
  585. tecks3.TextColor3 = Color3.new(0,0,0)
  586. tecks3.TextStrokeColor3 = color
  587. tecks3.Size = UDim2.new(1,0,0.5,0)
  588. coroutine.resume(coroutine.create(function()
  589. while true do
  590. swait(1)
  591. plr.Character.wrecked.Volume = 0.3
  592. if chaosmode == true then
  593. tecks2.TextColor3 = BrickColor.random().Color
  594. tecks3.TextStrokeColor3 = BrickColor.random().Color
  595. end
  596. tecks2.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  597. tecks3.Position = UDim2.new(0,math.random(-5,5),0,math.random(-5,5))
  598. tecks2.Rotation = math.random(-5,5)
  599. tecks3.Rotation = math.random(-5,5)
  600. end
  601. end))
  602. for i = 1,string.len(text),1 do
  603. CFuncs["Sound"].Create("rbxassetid://274118116", char, 0.25, 0.115)
  604. tecks2.Text = string.sub(text,1,i)
  605. tecks3.Text = string.sub(text,1,i)
  606. swait(1)
  607. end
  608. wait(1)
  609. local randomrot = math.random(1,2)
  610. if randomrot == 1 then
  611. for i = 1, 50 do
  612. swait()
  613. tecks2.Rotation = tecks2.Rotation - .75
  614. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  615. tecks2.TextTransparency = tecks2.TextTransparency + .04
  616. tecks3.Rotation = tecks2.Rotation + .75
  617. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  618. tecks3.TextTransparency = tecks2.TextTransparency + .04
  619. end
  620. elseif randomrot == 2 then
  621. for i = 1, 50 do
  622. swait()
  623. tecks2.Rotation = tecks2.Rotation + .75
  624. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  625. tecks2.TextTransparency = tecks2.TextTransparency + .04
  626. tecks3.Rotation = tecks2.Rotation - .75
  627. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  628. tecks3.TextTransparency = tecks2.TextTransparency + .04
  629. end
  630. end
  631. naeeym2:Destroy()
  632. end)
  633. chat()
  634. end
  635.  
  636.  
  637. local Create = LoadLibrary("RbxUtility").Create
  638.  
  639. CFuncs = {
  640. ["Part"] = {
  641. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  642. local Part = Create("Part"){
  643. Parent = Parent,
  644. Reflectance = Reflectance,
  645. Transparency = Transparency,
  646. CanCollide = false,
  647. Locked = true,
  648. BrickColor = BrickColor.new(tostring(BColor)),
  649. Name = Name,
  650. Size = Size,
  651. Material = Material,
  652. }
  653. RemoveOutlines(Part)
  654. return Part
  655. end;
  656. };
  657.  
  658. ["Mesh"] = {
  659. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  660. local Msh = Create(Mesh){
  661. Parent = Part,
  662. Offset = OffSet,
  663. Scale = Scale,
  664. }
  665. if Mesh == "SpecialMesh" then
  666. Msh.MeshType = MeshType
  667. Msh.MeshId = MeshId
  668. end
  669. return Msh
  670. end;
  671. };
  672.  
  673. ["Mesh"] = {
  674. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  675. local Msh = Create(Mesh){
  676. Parent = Part,
  677. Offset = OffSet,
  678. Scale = Scale,
  679. }
  680. if Mesh == "SpecialMesh" then
  681. Msh.MeshType = MeshType
  682. Msh.MeshId = MeshId
  683. end
  684. return Msh
  685. end;
  686. };
  687.  
  688. ["Weld"] = {
  689. Create = function(Parent, Part0, Part1, C0, C1)
  690. local Weld = Create("Weld"){
  691. Parent = Parent,
  692. Part0 = Part0,
  693. Part1 = Part1,
  694. C0 = C0,
  695. C1 = C1,
  696. }
  697. return Weld
  698. end;
  699. };
  700.  
  701. ["Sound"] = {
  702. Create = function(id, par, vol, pit)
  703. coroutine.resume(coroutine.create(function()
  704. local S = Create("Sound"){
  705. Volume = vol,
  706. Name = "EffectSoundo",
  707. Pitch = pit or 1,
  708. SoundId = id,
  709. Parent = par or workspace,
  710. }
  711. wait()
  712. S:play()
  713. game:GetService("Debris"):AddItem(S, 10)
  714. end))
  715. end;
  716. };
  717.  
  718. ["LongSound"] = {
  719. Create = function(id, par, vol, pit)
  720. coroutine.resume(coroutine.create(function()
  721. local S = Create("Sound"){
  722. Volume = vol,
  723. Pitch = pit or 1,
  724. SoundId = id,
  725. Parent = par or workspace,
  726. }
  727. wait()
  728. S:play()
  729. game:GetService("Debris"):AddItem(S, 30)
  730. end))
  731. end;
  732. };
  733.  
  734. ["ParticleEmitter"] = {
  735. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  736. local fp = Create("ParticleEmitter"){
  737. Parent = Parent,
  738. Color = ColorSequence.new(Color1, Color2),
  739. LightEmission = LightEmission,
  740. Size = Size,
  741. Texture = Texture,
  742. Transparency = Transparency,
  743. ZOffset = ZOffset,
  744. Acceleration = Accel,
  745. Drag = Drag,
  746. LockedToPart = LockedToPart,
  747. VelocityInheritance = VelocityInheritance,
  748. EmissionDirection = EmissionDirection,
  749. Enabled = Enabled,
  750. Lifetime = LifeTime,
  751. Rate = Rate,
  752. Rotation = Rotation,
  753. RotSpeed = RotSpeed,
  754. Speed = Speed,
  755. VelocitySpread = VelocitySpread,
  756. }
  757. return fp
  758. end;
  759. };
  760.  
  761. CreateTemplate = {
  762.  
  763. };
  764. }
  765.  
  766.  
  767.  
  768. New = function(Object, Parent, Name, Data)
  769. local Object = Instance.new(Object)
  770. for Index, Value in pairs(Data or {}) do
  771. Object[Index] = Value
  772. end
  773. Object.Parent = Parent
  774. Object.Name = Name
  775. return Object
  776. end
  777. local halocolor = BrickColor.new("Black")
  778. local halocolor2 = BrickColor.new("Black")
  779. local starcolor = BrickColor.new("Black")
  780. local lunacolor = BrickColor.new("Black")
  781. local lunacolor2 = BrickColor.new("Black")
  782. local wepcolor = BrickColor.new("Black")
  783. local maincolor = BrickColor.new("Black")
  784. local m = Instance.new("Model",char)
  785. local m2 = Instance.new("Model",char)
  786. local m3 = Instance.new("Model",char)
  787. local mw1 = Instance.new("Model",char)
  788. local mw2 = Instance.new("Model",char)
  789.  
  790. local extrawingmod1 = Instance.new("Model",char)
  791. local extrawingmod2 = Instance.new("Model",char)
  792.  
  793. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  794. local p = Instance.new("Part")
  795. p.TopSurface = 0
  796. p.BottomSurface = 0
  797. p.Parent = parent
  798. p.Size = Vector3.new(0.1,0.1,0.1)
  799. p.Transparency = transparency
  800. p.Reflectance = reflectance
  801. p.CanCollide = false
  802. p.Locked = true
  803. p.BrickColor = brickcolor
  804. p.Material = material
  805. return p
  806. end
  807.  
  808. function CreateMesh(parent,meshtype,x1,y1,z1)
  809. local mesh = Instance.new("SpecialMesh",parent)
  810. mesh.MeshType = meshtype
  811. mesh.Scale = Vector3.new(x1*10,y1*10,z1*10)
  812. return mesh
  813. end
  814.  
  815. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  816. local mesh = Instance.new("SpecialMesh",parent)
  817. mesh.MeshType = "FileMesh"
  818. mesh.MeshId = meshid
  819. mesh.Scale = Vector3.new(x1,y1,z1)
  820. return mesh
  821. end
  822.  
  823.  
  824. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  825. local mesh = Instance.new("SpecialMesh",parent)
  826. mesh.MeshType = "FileMesh"
  827. mesh.MeshId = meshid
  828. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  829. mesh.Scale = Vector3.new(x1,y1,z1)
  830. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  831. return mesh
  832. end
  833.  
  834. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  835. local weld = Instance.new("Weld")
  836. weld.Parent = parent
  837. weld.Part0 = part0
  838. weld.Part1 = part1
  839. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  840. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  841. return weld
  842. end
  843.  
  844.  
  845. --------------
  846. local secondchar = Instance.new("Model",char)
  847. local GhostCol = BrickColor.new("Dark red")
  848. local sectors = CreateParta(secondchar,1,0,"Neon",GhostCol)
  849. CreateMesh(sectors,"Brick",2*8,2*8,1*8)
  850. local torsweld = CreateWeld(sectors,root,sectors,1,-1,-2,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  851.  
  852. local seclarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  853. CreateMesh(seclarm,"Brick",1*8,2*8,1*8)
  854. local larmsweld = CreateWeld(seclarm,sectors,seclarm,1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  855.  
  856. local secrarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  857. CreateMesh(secrarm,"Brick",1*8,2*8,1*8)
  858. local rarmsweld = CreateWeld(secrarm,sectors,secrarm,-1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  859.  
  860. local seclleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  861. CreateMesh(seclleg,"Brick",1*8,2*8,1*8)
  862. local llegsweld = CreateWeld(seclleg,sectors,seclleg,0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  863.  
  864. local secrleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  865. CreateMesh(secrleg,"Brick",1*8,2*8,1*8)
  866. local rlegsweld = CreateWeld(secrleg,sectors,secrleg,-0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  867.  
  868. local seched = CreateParta(secondchar,1,0,"Neon",GhostCol)
  869. CreateMesh(seched,"Brick",1*8,1*8,1*8)
  870. local hedsweld = CreateWeld(seched,sectors,seched,0,-1.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  871. --------------
  872. local sorb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  873. CreateWeld(sorb,rarm,sorb,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  874. local sorb2 = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  875. CreateWeld(sorb2,larm,sorb2,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  876.  
  877. local handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  878. CreateMesh(handle,"Brick",0,0,0)
  879. local handlexweld = CreateWeld(handlex,tors,handlex,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  880. local valuaring = 10
  881. for i = 0, 49 do
  882. valuaring = valuaring + 10
  883. rn = CreateParta(mw2,0,0,"Neon",halocolor)
  884. CreateMesh(rn,"Brick",0.25,0.1,0.1)
  885. CreateWeld(rn,handlex,rn,0,1,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  886. end
  887.  
  888. handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  889. CreateMesh(handle,"Brick",0,0,0)
  890. CreateWeld(handlex,tors,handlex,0,-3,-2.1,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  891. local valuaring = 10
  892. for i = 0, 49 do
  893. valuaring = valuaring + 10
  894. rn = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  895. CreateMesh(rn,"Brick",0.5,0.2,0.2)
  896. CreateWeld(rn,handlex,rn,0,2,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  897. end
  898.  
  899.  
  900. local handle = CreateParta(m,1,1,"Neon",maincolor)
  901. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  902. local handleweld = CreateWeld(handle,tors,handle,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  903.  
  904. --- Left wing.
  905.  
  906. local lwing1 = CreateParta(m,1,1,"Neon",maincolor)
  907. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  908. local lwing1weld = CreateWeld(lwing1,handle,lwing1,3,0,0,math.rad(5),math.rad(0),math.rad(12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  909.  
  910. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  911. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  912. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  913. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  914. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  915. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  916. A0 = Instance.new('Attachment',wed)
  917. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  918. CreateMesh(wed,"Wedge",0.05,0.5,3)
  919. CreateWeld(wed,lwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  920. A1 = Instance.new('Attachment',wed)
  921. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  922. CreateMesh(wed,"Wedge",0.05,3,0.5)
  923. CreateWeld(wed,lwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  924.  
  925. tl1 = Instance.new('Trail',wed)
  926. tl1.Attachment0 = A0
  927. tl1.Attachment1 = A1
  928. --tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  929. tl1.LightEmission = 1
  930. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  931. tl1.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  932. tl1.Lifetime = 0.6
  933.  
  934.  
  935. local lwing2 = CreateParta(m,1,1,"Neon",maincolor)
  936. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  937. local lwing2weld = CreateWeld(lwing2,handle,lwing2,4,1,0,math.rad(10),math.rad(0),math.rad(25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  938.  
  939. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  940. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  941. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  942. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  943. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  944. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  945. A0 = Instance.new('Attachment',wed)
  946. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  947. CreateMesh(wed,"Wedge",0.05,0.5,3)
  948. CreateWeld(wed,lwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  949. A1 = Instance.new('Attachment',wed)
  950. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  951. CreateMesh(wed,"Wedge",0.05,3,0.5)
  952. CreateWeld(wed,lwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  953.  
  954. tl2 = Instance.new('Trail',wed)
  955. tl2.Attachment0 = A0
  956. tl2.Attachment1 = A1
  957. --tl2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  958. tl2.LightEmission = 1
  959. tl2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  960. tl2.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  961. tl2.Lifetime = 0.6
  962.  
  963. local lwing3 = CreateParta(m,1,1,"Neon",maincolor)
  964. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  965. local lwing3weld = CreateWeld(lwing3,handle,lwing3,4.75,2,0,math.rad(15),math.rad(0),math.rad(37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  966.  
  967. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  968. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  969. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  970. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  971. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  972. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  973. A0 = Instance.new('Attachment',wed)
  974. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  975. CreateMesh(wed,"Wedge",0.05,0.5,3)
  976. CreateWeld(wed,lwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  977. A1 = Instance.new('Attachment',wed)
  978. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  979. CreateMesh(wed,"Wedge",0.05,3,0.5)
  980. CreateWeld(wed,lwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  981.  
  982. tl3 = Instance.new('Trail',wed)
  983. tl3.Attachment0 = A0
  984. tl3.Attachment1 = A1
  985. --tl3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  986. tl3.LightEmission = 1
  987. tl3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  988. tl3.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  989. tl3.Lifetime = 0.6
  990.  
  991. tl1.Enabled = false
  992. tl2.Enabled = false
  993. tl3.Enabled = false
  994. local lwing4 = CreateParta(m,1,1,"Neon",maincolor)
  995. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  996. local lwing4weld = CreateWeld(lwing4,handle,lwing4,5.75,3,0,math.rad(20),math.rad(0),math.rad(50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  997.  
  998. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  999. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1000. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1001. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1002. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1003. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1004. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1005. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1006. CreateWeld(wed,lwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1007. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1008. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1009. CreateWeld(wed,lwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1010.  
  1011. local lwing5 = CreateParta(m,1,1,"Neon",maincolor)
  1012. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1013. local lwing5weld = CreateWeld(lwing5,handle,lwing5,6.75,4,0,math.rad(25),math.rad(0),math.rad(62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1014.  
  1015. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1016. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1017. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1018. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1019. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1020. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1021. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1022. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1023. CreateWeld(wed,lwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1024. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1025. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1026. CreateWeld(wed,lwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1027.  
  1028. local lwing6 = CreateParta(m,1,1,"Neon",maincolor)
  1029. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1030. local lwing6weld = CreateWeld(lwing6,handle,lwing6,7.75,5,0,math.rad(30),math.rad(0),math.rad(75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1031.  
  1032. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1033. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1034. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1035. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1036. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1037. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1038. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1039. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1040. CreateWeld(wed,lwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1041. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  1042. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1043. CreateWeld(wed,lwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1044.  
  1045. -- Right wing.
  1046.  
  1047. local rwing1 = CreateParta(m,1,1,"Neon",maincolor)
  1048. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1049. local rwing1weld = CreateWeld(rwing1,handle,rwing1,-3,0,0,math.rad(5),math.rad(0),math.rad(-12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1050.  
  1051. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1052. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1053. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1054. A0 = Instance.new('Attachment',wed)
  1055. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1056. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1057. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1058. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1059. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1060. CreateWeld(wed,rwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1061. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1062. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1063. CreateWeld(wed,rwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1064. A1 = Instance.new('Attachment',wed)
  1065.  
  1066. tr1 = Instance.new('Trail',wed)
  1067. tr1.Attachment0 = A0
  1068. tr1.Attachment1 = A1
  1069. --tr1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  1070. tr1.LightEmission = 1
  1071. tr1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  1072. tr1.Color = ColorSequence.new(BrickColor.new('Black').Color)
  1073. tr1.Lifetime = 0.6
  1074.  
  1075. local rwing2 = CreateParta(m,1,1,"Neon",maincolor)
  1076. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1077. local rwing2weld = CreateWeld(rwing2,handle,rwing2,-4,1,0,math.rad(10),math.rad(0),math.rad(-25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1078.  
  1079. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1080. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1081. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1082. A0 = Instance.new('Attachment',wed)
  1083. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1084. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1085. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1086. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1087. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1088. CreateWeld(wed,rwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1089. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1090. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1091. CreateWeld(wed,rwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1092. A1 = Instance.new('Attachment',wed)
  1093.  
  1094. tr2 = Instance.new('Trail',wed)
  1095. tr2.Attachment0 = A0
  1096. tr2.Attachment1 = A1
  1097. --tr2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  1098. tr2.LightEmission = 1
  1099. tr2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  1100. tr2.Color = ColorSequence.new(BrickColor.new('Black').Color)
  1101. tr2.Lifetime = 0.6
  1102.  
  1103. local rwing3 = CreateParta(m,1,1,"Neon",maincolor)
  1104. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1105. local rwing3weld = CreateWeld(rwing3,handle,rwing3,-4.75,2,0,math.rad(15),math.rad(0),math.rad(-37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1106.  
  1107. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1108. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1109. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1110. A0 = Instance.new('Attachment',wed)
  1111. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1112. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1113. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1114. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1115. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1116. CreateWeld(wed,rwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1117. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  1118. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1119. CreateWeld(wed,rwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1120. A1 = Instance.new('Attachment',wed)
  1121.  
  1122. tr3 = Instance.new('Trail',wed)
  1123. tr3.Attachment0 = A0
  1124. tr3.Attachment1 = A1
  1125. --tr3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  1126. tr3.LightEmission = 1
  1127. tr3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  1128. tr3.Color = ColorSequence.new(BrickColor.new('Black').Color)
  1129. tr3.Lifetime = 0.6
  1130.  
  1131.  
  1132. local rwing4 = CreateParta(m,1,1,"Neon",maincolor)
  1133. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1134. local rwing4weld = CreateWeld(rwing4,handle,rwing4,-5.75,3,0,math.rad(20),math.rad(0),math.rad(-50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1135.  
  1136. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1137. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1138. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1139. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1140. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1141. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1142. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1143. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1144. CreateWeld(wed,rwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1145. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1146. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1147. CreateWeld(wed,rwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1148.  
  1149. local rwing5 = CreateParta(m,1,1,"Neon",maincolor)
  1150. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1151. local rwing5weld = CreateWeld(rwing5,handle,rwing5,-6.75,4,0,math.rad(25),math.rad(0),math.rad(-62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1152.  
  1153. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1154. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1155. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1156. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1157. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1158. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1159. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1160. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1161. CreateWeld(wed,rwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1162. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1163. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1164. CreateWeld(wed,rwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1165.  
  1166. local rwing6 = CreateParta(m,1,1,"Neon",maincolor)
  1167. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  1168. local rwing6weld = CreateWeld(rwing6,handle,rwing6,-7.75,3,0,math.rad(30),math.rad(0),math.rad(-75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1169.  
  1170. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1171. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1172. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1173. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1174. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  1175. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1176. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1177. CreateMesh(wed,"Wedge",0.05,0.5,3)
  1178. CreateWeld(wed,rwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1179. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  1180. CreateMesh(wed,"Wedge",0.05,3,0.5)
  1181. CreateWeld(wed,rwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1182.  
  1183. ---- HERES THE RING
  1184.  
  1185.  
  1186. --[[ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  1187. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  1188. CreateWeld(ran,larm,ran,0,0.15,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1189. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1190. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  1191. CreateWeld(ran,larm,ran,0,0.155,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1192. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1193. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  1194. CreateWeld(ran,larm,ran,0,0.155,-0.025,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1195.  
  1196.  
  1197. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1198. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  1199. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1200.  
  1201. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1202. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  1203. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1204.  
  1205.  
  1206.  
  1207. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  1208. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  1209. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1210.  
  1211. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  1212. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  1213. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1214.  
  1215. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  1216. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  1217. CreateWeld(gane,larm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1218.  
  1219. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1220. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  1221. CreateWeld(star,larm,star,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1222. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  1223. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  1224. CreateWeld(starl,larm,starl,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1225.  
  1226. --- second ring
  1227.  
  1228. ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  1229. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  1230. CreateWeld(ran,rarm,ran,0,0.15,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1231. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1232. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  1233. CreateWeld(ran,rarm,ran,0,0.155,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1234. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1235. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  1236. CreateWeld(ran,rarm,ran,0,0.155,-0.025,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1237.  
  1238. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1239. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  1240. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1241.  
  1242. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1243. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  1244. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1245.  
  1246.  
  1247.  
  1248. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  1249. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  1250. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1251.  
  1252. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  1253. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  1254. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1255.  
  1256. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  1257. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  1258. CreateWeld(gane,rarm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1259.  
  1260. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  1261. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  1262. CreateWeld(star,rarm,star,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  1263. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  1264. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  1265. CreateWeld(starl,rarm,starl,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))]]--
  1266.  
  1267.  
  1268.  
  1269. for i, v in pairs(m:GetChildren()) do
  1270. if v:IsA("Part") then
  1271. v.BrickColor = BrickColor.new("Black")
  1272. v.Material = "Glass"
  1273. end
  1274. end
  1275. for i, v in pairs(m2:GetChildren()) do
  1276. if v:IsA("Part") then
  1277. v.BrickColor = BrickColor.new("Black")
  1278. v.Material = "Granite"
  1279. end
  1280. end
  1281. for i, v in pairs(m3:GetChildren()) do
  1282. if v:IsA("Part") then
  1283. v.BrickColor = BrickColor.new("Dark red")
  1284. v.Material = "Neon"
  1285. end
  1286. end
  1287. for i, v in pairs(mw2:GetChildren()) do
  1288. if v:IsA("Part") then
  1289. v.BrickColor = BrickColor.new("Dark red")
  1290. v.Material = "Neon"
  1291. end
  1292. end
  1293. for i, v in pairs(mw1:GetChildren()) do
  1294. if v:IsA("Part") then
  1295. v.Transparency = 1
  1296. v.BrickColor = BrickColor.new("Dark red")
  1297. v.Material = "Neon"
  1298. end
  1299. end
  1300. for i, v in pairs(extrawingmod1:GetChildren()) do
  1301. if v:IsA("Part") then
  1302. v.Transparency = 1
  1303. v.BrickColor = BrickColor.new("Dark red")
  1304. v.Material = "Neon"
  1305. end
  1306. end
  1307. for i, v in pairs(extrawingmod2:GetChildren()) do
  1308. if v:IsA("Part") then
  1309. v.Transparency = 1
  1310. v.BrickColor = BrickColor.new("Dark red")
  1311. v.Material = "Neon"
  1312. end
  1313. end
  1314. local MAINRUINCOLOR = BrickColor.new("Black")
  1315. ------
  1316. --Thanks for using Build2Script Plugin by jarredbcv!
  1317. local player = "LocalPlayer"
  1318. local Character = game.Players[player].Character
  1319. local Torso = Character.Torso
  1320. local LeftArm = Character["Left Arm"]
  1321. local RightArm = Character["Right Arm"]
  1322. local LeftLeg = Character["Left Leg"]
  1323. local RightLeg = Character["Right Leg"]
  1324. local Head = Character.Head
  1325. local RootPart = Character.HumanoidRootPart
  1326.  
  1327. local m = Instance.new("Model")
  1328. m.Name = "VTX"
  1329. --[[m1 = Instance.new("Model")
  1330. m1.Name = "Torso"
  1331. m1.Parent = m
  1332. m2 = Instance.new("Model")
  1333. m2.Name = "Head"
  1334. m2.Parent = m
  1335. m3 = Instance.new("Model")
  1336. m3.Name = "RightArm"
  1337. m3.Parent = m
  1338. m4 = Instance.new("Model")
  1339. m4.Name = "LeftLeg"
  1340. m4.Parent = m
  1341. m5 = Instance.new("Model")
  1342. m5.Name = "RightLeg"
  1343. m5.Parent = m
  1344. m6 = Instance.new("Model")
  1345. m6.Name = "LeftArm"
  1346. m6.Parent = m--]]
  1347. p1 = Instance.new("Part", m)
  1348. p1.BrickColor = BrickColor.new("Black")
  1349. p1.Material = Enum.Material.SmoothPlastic
  1350. p1.Reflectance = 0.5
  1351. p1.Name = "DiamondMesh"
  1352. p1.CFrame = CFrame.new(4.43766785, 155.454346, 39.9999847, -4.37113883e-008, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -1, -4.3159529e-005, -4.37113883e-008)
  1353. p1.CanCollide = false
  1354. p1.FormFactor = Enum.FormFactor.Symmetric
  1355. p1.Elasticity = 0
  1356. p1.Size = Vector3.new(0.512455523, 0.512455463, 0.512455463)
  1357. b1 = Instance.new("SpecialMesh", p1)
  1358. b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  1359. b1.TextureId = ""
  1360. b1.MeshType = Enum.MeshType.FileMesh
  1361. b1.Name = "Mesh"
  1362. b1.Scale = Vector3.new(0.512455523, 0.230604947, 0.102491096)
  1363. --[[p2 = Instance.new("Part", m)
  1364. p2.BrickColor = BrickColor.new("Black")
  1365. p2.Name = "Torso"
  1366. p2.CFrame = CFrame.new(3.81999993, 156.276108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  1367. p2.CanCollide = false
  1368. p2.FormFactor = Enum.FormFactor.Symmetric
  1369. p2.Size = Vector3.new(2, 2, 1)
  1370. p2.BottomSurface = Enum.SurfaceType.Smooth
  1371. p2.TopSurface = Enum.SurfaceType.Smooth--]]
  1372. p2 = Torso
  1373. p3 = Instance.new("Part", m)
  1374. p3.BrickColor = BrickColor.new("Black")
  1375. p3.Material = Enum.Material.SmoothPlastic
  1376. p3.Name = "apart"
  1377. p3.CFrame = CFrame.new(3.18215108, 156.94046, 39.948761, 3.0473866e-005, -1, -3.05175763e-005, -3.05603571e-005, -3.05185094e-005, 1, -1, -3.04729328e-005, -3.05612884e-005)
  1378. p3.CanCollide = false
  1379. p3.FormFactor = Enum.FormFactor.Custom
  1380. p3.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1381. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1382. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1383. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1384. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1385. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. b2 = Instance.new("SpecialMesh", p3)
  1388. b2.MeshType = Enum.MeshType.Brick
  1389. b2.Name = "Mesh"
  1390. b2.Scale = Vector3.new(1, 1.01999998, 0.5)
  1391. p4 = Instance.new("Part", m)
  1392. p4.BrickColor = BrickColor.new("Dark red")
  1393. p4.Material = Enum.Material.Neon
  1394. p4.Name = "apart"
  1395. p4.CFrame = CFrame.new(4.59140301, 156.658615, 39.9999924, -1, 4.30663385e-005, 4.43833414e-010, 1.85536919e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  1396. p4.CanCollide = false
  1397. p4.FormFactor = Enum.FormFactor.Custom
  1398. p4.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1399. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1400. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1401. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1402. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. b3 = Instance.new("SpecialMesh", p4)
  1406. b3.MeshType = Enum.MeshType.Cylinder
  1407. b3.Name = "Mesh"
  1408. b3.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1409. p5 = Instance.new("Part", m)
  1410. p5.BrickColor = BrickColor.new("Black")
  1411. p5.Material = Enum.Material.SmoothPlastic
  1412. p5.Name = "apart"
  1413. p5.CFrame = CFrame.new(4.28393078, 155.428711, 39.9999886, -4.37102727e-008, 2.75157674e-012, 1, -4.3159529e-005, 1, -1.96809236e-012, -1, -4.3159529e-005, -4.37139782e-008)
  1414. p5.CanCollide = false
  1415. p5.FormFactor = Enum.FormFactor.Custom
  1416. p5.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1417. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1418. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1419. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1420. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1422. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1423. b4 = Instance.new("SpecialMesh", p5)
  1424. b4.MeshType = Enum.MeshType.Cylinder
  1425. b4.Name = "Mesh"
  1426. b4.Scale = Vector3.new(0.417481065, 1, 1)
  1427. p6 = Instance.new("Part", m)
  1428. p6.BrickColor = BrickColor.new("Black")
  1429. p6.Name = "apart"
  1430. p6.CFrame = CFrame.new(4.59140301, 157.171066, 39.9999886, -1, 4.30663385e-005, 4.43833775e-010, 1.85536952e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  1431. p6.CanCollide = false
  1432. p6.FormFactor = Enum.FormFactor.Custom
  1433. p6.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1434. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1435. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1436. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1439. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. b5 = Instance.new("SpecialMesh", p6)
  1441. b5.MeshType = Enum.MeshType.Cylinder
  1442. b5.Name = "Mesh"
  1443. b5.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1444. p7 = Instance.new("Part", m)
  1445. p7.BrickColor = BrickColor.new("Dark red")
  1446. p7.Material = Enum.Material.Neon
  1447. p7.Name = "apart"
  1448. p7.CFrame = CFrame.new(4.07894754, 156.453629, 39.974369, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
  1449. p7.CanCollide = false
  1450. p7.FormFactor = Enum.FormFactor.Custom
  1451. p7.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  1452. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1454. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1456. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1457. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. b6 = Instance.new("SpecialMesh", p7)
  1459. b6.MeshType = Enum.MeshType.Brick
  1460. b6.Name = "Mesh"
  1461. b6.Scale = Vector3.new(1.04999995, 0.899999976, 0.25)
  1462. p8 = Instance.new("Part", m)
  1463. p8.BrickColor = BrickColor.new("Black")
  1464. p8.Material = Enum.Material.SmoothPlastic
  1465. p8.Name = "apart"
  1466. p8.CFrame = CFrame.new(4.38642168, 155.428711, 39.9999886, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
  1467. p8.CanCollide = false
  1468. p8.FormFactor = Enum.FormFactor.Custom
  1469. p8.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1470. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1471. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1472. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1474. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1476. b7 = Instance.new("SpecialMesh", p8)
  1477. b7.MeshType = Enum.MeshType.Cylinder
  1478. b7.Name = "Mesh"
  1479. b7.Scale = Vector3.new(0.417481065, 1, 1)
  1480. p9 = Instance.new("Part", m)
  1481. p9.BrickColor = BrickColor.new("Dark red")
  1482. p9.Material = Enum.Material.Neon
  1483. p9.Name = "apart"
  1484. p9.CFrame = CFrame.new(4.59140301, 156.914856, 39.9999886, -1, 9.14653137e-005, 3.05217691e-005, 9.14681077e-005, 1, 9.14653137e-005, -3.05133999e-005, 9.14681077e-005, -1)
  1485. p9.CanCollide = false
  1486. p9.FormFactor = Enum.FormFactor.Custom
  1487. p9.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1488. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1489. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1490. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1491. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1492. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1493. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. b8 = Instance.new("SpecialMesh", p9)
  1495. b8.MeshType = Enum.MeshType.Brick
  1496. b8.Name = "Mesh"
  1497. b8.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  1498. p10 = Instance.new("Part", m)
  1499. p10.BrickColor = BrickColor.new("Black")
  1500. p10.Material = Enum.Material.SmoothPlastic
  1501. p10.Name = "apart"
  1502. p10.CFrame = CFrame.new(2.66969562, 157.811615, 40.8967972, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  1503. p10.CanCollide = false
  1504. p10.FormFactor = Enum.FormFactor.Custom
  1505. p10.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1506. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1507. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1508. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1509. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1510. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1511. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. b9 = Instance.new("SpecialMesh", p10)
  1513. b9.MeshType = Enum.MeshType.Brick
  1514. b9.Name = "Mesh"
  1515. b9.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  1516. p11 = Instance.new("Part", m)
  1517. p11.BrickColor = BrickColor.new("Dark red")
  1518. p11.Material = Enum.Material.Neon
  1519. p11.Name = "apart"
  1520. p11.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032066, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  1521. p11.CanCollide = false
  1522. p11.FormFactor = Enum.FormFactor.Custom
  1523. p11.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1524. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1525. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1526. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1527. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1528. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1529. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. b10 = Instance.new("SpecialMesh", p11)
  1531. b10.MeshType = Enum.MeshType.Brick
  1532. b10.Name = "Mesh"
  1533. b10.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  1534. p12 = Instance.new("Part", m)
  1535. p12.BrickColor = BrickColor.new("Black")
  1536. p12.Material = Enum.Material.SmoothPlastic
  1537. p12.Name = "apart"
  1538. p12.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032104, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  1539. p12.CanCollide = false
  1540. p12.FormFactor = Enum.FormFactor.Custom
  1541. p12.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1542. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1543. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1544. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1545. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1546. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. b11 = Instance.new("SpecialMesh", p12)
  1549. b11.MeshType = Enum.MeshType.Brick
  1550. b11.Name = "Mesh"
  1551. b11.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  1552. p13 = Instance.new("Part", m)
  1553. p13.BrickColor = BrickColor.new("Dark red")
  1554. p13.Material = Enum.Material.Neon
  1555. p13.Name = "apart"
  1556. p13.CFrame = CFrame.new(4.2839303, 155.428711, 40, -4.37154632e-008, -3.63797881e-012, 1, -4.31595254e-005, 1, 0, -1, -4.3159529e-005, -4.37144365e-008)
  1557. p13.CanCollide = false
  1558. p13.FormFactor = Enum.FormFactor.Custom
  1559. p13.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  1560. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1561. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1562. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1563. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1564. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1565. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. b12 = Instance.new("SpecialMesh", p13)
  1567. b12.MeshType = Enum.MeshType.Cylinder
  1568. b12.Name = "Mesh"
  1569. b12.Scale = Vector3.new(0.208740532, 1.00999999, 1.00999999)
  1570. p14 = Instance.new("Part", m)
  1571. p14.BrickColor = BrickColor.new("Black")
  1572. p14.Material = Enum.Material.SmoothPlastic
  1573. p14.Name = "apart"
  1574. p14.CFrame = CFrame.new(3.82271981, 155.428711, 40, 1, -3.63780295e-012, 4.07496259e-012, 1.88656274e-012, 1, -3.63797881e-012, -3.04822834e-012, 8.24700363e-020, 1)
  1575. p14.CanCollide = false
  1576. p14.FormFactor = Enum.FormFactor.Custom
  1577. p14.Size = Vector3.new(1.02491105, 0.245498881, 2.04982185)
  1578. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1579. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1580. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1581. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1582. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1583. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. b13 = Instance.new("SpecialMesh", p14)
  1585. b13.MeshType = Enum.MeshType.Brick
  1586. b13.Name = "Mesh"
  1587. b13.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  1588. p15 = Instance.new("Part", m)
  1589. p15.BrickColor = BrickColor.new("Dark red")
  1590. p15.Material = Enum.Material.Neon
  1591. p15.Name = "apart"
  1592. p15.CFrame = CFrame.new(4.59140301, 156.914841, 39.7437744, -1, 4.30663349e-005, 4.50222831e-010, 1.85340143e-009, 5.34494757e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  1593. p15.CanCollide = false
  1594. p15.FormFactor = Enum.FormFactor.Custom
  1595. p15.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1596. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1597. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1598. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1599. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1600. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1601. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1602. b14 = Instance.new("SpecialMesh", p15)
  1603. b14.MeshType = Enum.MeshType.Cylinder
  1604. b14.Name = "Mesh"
  1605. b14.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1606. p16 = Instance.new("Part", m)
  1607. p16.BrickColor = BrickColor.new("Dark red")
  1608. p16.Material = Enum.Material.Neon
  1609. p16.Name = "apart"
  1610. p16.CFrame = CFrame.new(2.66969585, 157.811615, 40.8968086, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738605e-005)
  1611. p16.CanCollide = false
  1612. p16.FormFactor = Enum.FormFactor.Custom
  1613. p16.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1614. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1615. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1616. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1617. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1618. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1619. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1620. b15 = Instance.new("SpecialMesh", p16)
  1621. b15.MeshType = Enum.MeshType.Brick
  1622. b15.Name = "Mesh"
  1623. b15.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  1624. p17 = Instance.new("Part", m)
  1625. p17.BrickColor = BrickColor.new("Black")
  1626. p17.Material = Enum.Material.SmoothPlastic
  1627. p17.Name = "apart"
  1628. p17.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  1629. p17.CanCollide = false
  1630. p17.FormFactor = Enum.FormFactor.Custom
  1631. p17.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1632. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1633. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1634. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1635. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1636. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1637. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. b16 = Instance.new("SpecialMesh", p17)
  1639. b16.MeshType = Enum.MeshType.Cylinder
  1640. b16.Name = "Mesh"
  1641. b16.Scale = Vector3.new(0.417480975, 1, 1)
  1642. p18 = Instance.new("Part", m)
  1643. p18.BrickColor = BrickColor.new("Dark red")
  1644. p18.Material = Enum.Material.Neon
  1645. p18.Name = "apart"
  1646. p18.CFrame = CFrame.new(4.59140301, 156.914825, 40.2562294, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  1647. p18.CanCollide = false
  1648. p18.FormFactor = Enum.FormFactor.Custom
  1649. p18.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1650. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1651. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1652. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1653. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1654. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1655. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1656. b17 = Instance.new("SpecialMesh", p18)
  1657. b17.MeshType = Enum.MeshType.Cylinder
  1658. b17.Name = "Mesh"
  1659. b17.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  1660. p19 = Instance.new("Part", m)
  1661. p19.BrickColor = BrickColor.new("Dark red")
  1662. p19.Material = Enum.Material.Neon
  1663. p19.Name = "apart"
  1664. p19.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  1665. p19.CanCollide = false
  1666. p19.FormFactor = Enum.FormFactor.Custom
  1667. p19.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  1668. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1669. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1670. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1671. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1672. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1673. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1674. b18 = Instance.new("SpecialMesh", p19)
  1675. b18.MeshType = Enum.MeshType.Brick
  1676. b18.Name = "Mesh"
  1677. b18.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  1678. p20 = Instance.new("Part", m)
  1679. p20.BrickColor = BrickColor.new("Black")
  1680. p20.Material = Enum.Material.SmoothPlastic
  1681. p20.Name = "apart"
  1682. p20.CFrame = CFrame.new(4.46329021, 156.914825, 40.0000191, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
  1683. p20.CanCollide = false
  1684. p20.FormFactor = Enum.FormFactor.Custom
  1685. p20.Size = Vector3.new(2.04982209, 0.256227732, 1.02491093)
  1686. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1687. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1688. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1689. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1690. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1691. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1692. b19 = Instance.new("SpecialMesh", p20)
  1693. b19.MeshType = Enum.MeshType.Torso
  1694. b19.Name = "Mesh"
  1695. p21 = Instance.new("Part", m)
  1696. p21.BrickColor = BrickColor.new("Black")
  1697. p21.Material = Enum.Material.SmoothPlastic
  1698. p21.Name = "apart"
  1699. p21.CFrame = CFrame.new(4.07894802, 156.453613, 39.9743843, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
  1700. p21.CanCollide = false
  1701. p21.FormFactor = Enum.FormFactor.Custom
  1702. p21.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  1703. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1704. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1705. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1706. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1707. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1708. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1709. b20 = Instance.new("SpecialMesh", p21)
  1710. b20.MeshType = Enum.MeshType.Brick
  1711. b20.Name = "Mesh"
  1712. b20.Scale = Vector3.new(1.03999996, 1.00999999, 1.00999999)
  1713. p22 = Instance.new("Part", m)
  1714. p22.BrickColor = BrickColor.new("Black")
  1715. p22.Material = Enum.Material.Neon
  1716. p22.Name = "apart"
  1717. p22.CFrame = CFrame.new(3.18215108, 156.940445, 39.9487801, 3.04738605e-005, -1, -3.05175818e-005, -3.05603644e-005, -3.05185094e-005, 1, -1, -3.0472931e-005, -3.05612739e-005)
  1718. p22.CanCollide = false
  1719. p22.FormFactor = Enum.FormFactor.Custom
  1720. p22.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  1721. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1722. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1723. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1724. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1725. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1726. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1727. b21 = Instance.new("SpecialMesh", p22)
  1728. b21.MeshType = Enum.MeshType.Brick
  1729. b21.Name = "Mesh"
  1730. b21.Scale = Vector3.new(1, 1.02999997, 0.25)
  1731. p23 = Instance.new("Part", m)
  1732. p23.BrickColor = BrickColor.new("Black")
  1733. p23.Material = Enum.Material.SmoothPlastic
  1734. p23.Name = "apart"
  1735. p23.CFrame = CFrame.new(3.82272005, 156.402344, 40.0000038, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  1736. p23.CanCollide = false
  1737. p23.FormFactor = Enum.FormFactor.Custom
  1738. p23.Size = Vector3.new(1.02491105, 2.04982185, 2.04982185)
  1739. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1740. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1741. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1742. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1743. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1744. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1745. p24 = Instance.new("Part", m)
  1746. p24.BrickColor = BrickColor.new("Black")
  1747. p24.Material = Enum.Material.SmoothPlastic
  1748. p24.Name = "apart"
  1749. p24.CFrame = CFrame.new(3.82272005, 155.172455, 39.4875526, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  1750. p24.CanCollide = false
  1751. p24.FormFactor = Enum.FormFactor.Custom
  1752. p24.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  1753. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1754. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1755. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1756. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1757. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1758. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1759. b22 = Instance.new("SpecialMesh", p24)
  1760. b22.MeshType = Enum.MeshType.Brick
  1761. b22.Name = "Mesh"
  1762. b22.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1763. p25 = Instance.new("Part", m)
  1764. p25.BrickColor = BrickColor.new("Black")
  1765. p25.Material = Enum.Material.SmoothPlastic
  1766. p25.Name = "apart"
  1767. p25.CFrame = CFrame.new(3.82272005, 155.172455, 40.512455, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  1768. p25.CanCollide = false
  1769. p25.FormFactor = Enum.FormFactor.Custom
  1770. p25.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  1771. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1772. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1773. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1774. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1775. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1776. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1777. b23 = Instance.new("SpecialMesh", p25)
  1778. b23.MeshType = Enum.MeshType.Brick
  1779. b23.Name = "Mesh"
  1780. b23.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1781. p26 = Instance.new("Part", m)
  1782. p26.BrickColor = BrickColor.new("Black")
  1783. p26.Material = Enum.Material.SmoothPlastic
  1784. p26.Name = "apart"
  1785. p26.CFrame = CFrame.new(2.66969609, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738514e-005)
  1786. p26.CanCollide = false
  1787. p26.FormFactor = Enum.FormFactor.Custom
  1788. p26.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1789. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1790. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1791. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1792. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1793. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1794. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1795. b24 = Instance.new("SpecialMesh", p26)
  1796. b24.MeshType = Enum.MeshType.Brick
  1797. b24.Name = "Mesh"
  1798. p27 = Instance.new("Part", m)
  1799. p27.BrickColor = BrickColor.new("Black")
  1800. p27.Material = Enum.Material.SmoothPlastic
  1801. p27.Name = "apart"
  1802. p27.CFrame = CFrame.new(3.82269621, 157.4785, 40.0000038, 5.34812571e-005, -1, -4.31585941e-005, 1, 5.34812607e-005, 1.38243195e-009, 9.4587449e-010, -4.31585941e-005, 1)
  1803. p27.CanCollide = false
  1804. p27.FormFactor = Enum.FormFactor.Custom
  1805. p27.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1806. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1807. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1808. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1809. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1810. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1811. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1812. b25 = Instance.new("SpecialMesh", p27)
  1813. b25.MeshType = Enum.MeshType.Cylinder
  1814. b25.Name = "Mesh"
  1815. b25.Scale = Vector3.new(0.417481065, 1, 1)
  1816. p28 = Instance.new("Part", m)
  1817. p28.BrickColor = BrickColor.new("Black")
  1818. p28.Material = Enum.Material.SmoothPlastic
  1819. p28.Name = "apart"
  1820. p28.CFrame = CFrame.new(3.18215108, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
  1821. p28.CanCollide = false
  1822. p28.FormFactor = Enum.FormFactor.Custom
  1823. p28.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  1824. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1825. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1826. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1828. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1829. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1830. b26 = Instance.new("SpecialMesh", p28)
  1831. b26.MeshType = Enum.MeshType.Wedge
  1832. b26.Name = "Mesh"
  1833. p29 = Instance.new("Part", m)
  1834. p29.BrickColor = BrickColor.new("Black")
  1835. p29.Material = Enum.Material.SmoothPlastic
  1836. p29.Name = "apart"
  1837. p29.CFrame = CFrame.new(3.82272005, 156.556107, 40.0000076, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
  1838. p29.CanCollide = false
  1839. p29.FormFactor = Enum.FormFactor.Custom
  1840. p29.Size = Vector3.new(1.02491105, 1.74234843, 1.84483957)
  1841. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1842. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1843. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1844. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1845. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1846. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1847. b27 = Instance.new("SpecialMesh", p29)
  1848. b27.MeshType = Enum.MeshType.Brick
  1849. b27.Name = "Mesh"
  1850. b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1851. p30 = Instance.new("Part", m)
  1852. p30.BrickColor = BrickColor.new("Black")
  1853. p30.Material = Enum.Material.SmoothPlastic
  1854. p30.Name = "apart"
  1855. p30.CFrame = CFrame.new(2.92592335, 156.914825, 39.1032219, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
  1856. p30.CanCollide = false
  1857. p30.FormFactor = Enum.FormFactor.Custom
  1858. p30.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  1859. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1860. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1861. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. b28 = Instance.new("SpecialMesh", p30)
  1866. b28.MeshType = Enum.MeshType.Wedge
  1867. b28.Name = "Mesh"
  1868. p31 = Instance.new("Part", m)
  1869. p31.BrickColor = BrickColor.new("Black")
  1870. p31.Material = Enum.Material.SmoothPlastic
  1871. p31.Name = "apart"
  1872. p31.CFrame = CFrame.new(2.92592359, 156.91481, 40.8968201, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
  1873. p31.CanCollide = false
  1874. p31.FormFactor = Enum.FormFactor.Custom
  1875. p31.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  1876. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1877. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1878. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1879. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1882. b29 = Instance.new("SpecialMesh", p31)
  1883. b29.MeshType = Enum.MeshType.Wedge
  1884. b29.Name = "Mesh"
  1885. p32 = Instance.new("Part", m)
  1886. p32.BrickColor = BrickColor.new("Black")
  1887. p32.Material = Enum.Material.SmoothPlastic
  1888. p32.Name = "apart"
  1889. p32.CFrame = CFrame.new(3.82272077, 156.556091, 40.9736748, 1, 3.05171161e-005, 3.05180401e-005, 3.05180401e-005, -1, -3.04301611e-005, 3.05171125e-005, 3.04310706e-005, -1)
  1890. p32.CanCollide = false
  1891. p32.FormFactor = Enum.FormFactor.Custom
  1892. p32.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  1893. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1895. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1896. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1897. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1898. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1899. b30 = Instance.new("SpecialMesh", p32)
  1900. b30.MeshType = Enum.MeshType.Wedge
  1901. b30.Name = "Mesh"
  1902. b30.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  1903. p33 = Instance.new("Part", m)
  1904. p33.BrickColor = BrickColor.new("Black")
  1905. p33.Material = Enum.Material.SmoothPlastic
  1906. p33.Name = "apart"
  1907. p33.CFrame = CFrame.new(2.66969681, 157.8116, 40.8968201, -3.05612957e-005, 1, -3.05175763e-005, -3.04729383e-005, -3.05185094e-005, -1, -1, -3.05603571e-005, 3.04738496e-005)
  1908. p33.CanCollide = false
  1909. p33.FormFactor = Enum.FormFactor.Custom
  1910. p33.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  1911. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1912. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1913. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1914. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1915. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1916. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1917. b31 = Instance.new("SpecialMesh", p33)
  1918. b31.MeshType = Enum.MeshType.Brick
  1919. b31.Name = "Mesh"
  1920. p34 = Instance.new("Part", m)
  1921. p34.BrickColor = BrickColor.new("Black")
  1922. p34.Material = Enum.Material.SmoothPlastic
  1923. p34.Name = "apart"
  1924. p34.CFrame = CFrame.new(3.82269669, 157.581009, 40.0000153, 5.34812571e-005, -1, -4.31585904e-005, 1, 5.34812607e-005, 1.38061296e-009, 9.47693479e-010, -4.31585977e-005, 1)
  1925. p34.CanCollide = false
  1926. p34.FormFactor = Enum.FormFactor.Custom
  1927. p34.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  1928. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1929. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1930. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1931. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1932. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1933. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1934. b32 = Instance.new("SpecialMesh", p34)
  1935. b32.MeshType = Enum.MeshType.Cylinder
  1936. b32.Name = "Mesh"
  1937. b32.Scale = Vector3.new(0.417481065, 0.899999976, 1)
  1938. p35 = Instance.new("Part", m)
  1939. p35.BrickColor = BrickColor.new("Black")
  1940. p35.Material = Enum.Material.SmoothPlastic
  1941. p35.Name = "apart"
  1942. p35.CFrame = CFrame.new(3.82272053, 155.633682, 40.4612274, 1, 3.05171161e-005, 3.05180365e-005, 3.05180401e-005, -1, -3.04301593e-005, 3.05171143e-005, 3.04310706e-005, -1)
  1943. p35.CanCollide = false
  1944. p35.FormFactor = Enum.FormFactor.Custom
  1945. p35.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  1946. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1947. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1948. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1949. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1950. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1951. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1952. b33 = Instance.new("SpecialMesh", p35)
  1953. b33.MeshType = Enum.MeshType.Wedge
  1954. b33.Name = "Mesh"
  1955. b33.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  1956. p36 = Instance.new("Part", m)
  1957. p36.BrickColor = BrickColor.new("Black")
  1958. p36.Material = Enum.Material.SmoothPlastic
  1959. p36.Name = "apart"
  1960. p36.CFrame = CFrame.new(3.82272053, 156.556107, 39.0263557, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
  1961. p36.CanCollide = false
  1962. p36.FormFactor = Enum.FormFactor.Custom
  1963. p36.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  1964. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1965. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1966. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1967. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1968. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1969. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1970. b34 = Instance.new("SpecialMesh", p36)
  1971. b34.MeshType = Enum.MeshType.Wedge
  1972. b34.Name = "Mesh"
  1973. b34.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  1974. p37 = Instance.new("Part", m)
  1975. p37.BrickColor = BrickColor.new("Black")
  1976. p37.Material = Enum.Material.SmoothPlastic
  1977. p37.Name = "apart"
  1978. p37.CFrame = CFrame.new(3.82272053, 155.633682, 39.5388374, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
  1979. p37.CanCollide = false
  1980. p37.FormFactor = Enum.FormFactor.Custom
  1981. p37.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  1982. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1983. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1984. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1985. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1986. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1987. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1988. b35 = Instance.new("SpecialMesh", p37)
  1989. b35.MeshType = Enum.MeshType.Wedge
  1990. b35.Name = "Mesh"
  1991. b35.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  1992. p38 = Instance.new("Part", m)
  1993. p38.BrickColor = BrickColor.new("Black")
  1994. p38.Material = Enum.Material.SmoothPlastic
  1995. p38.Name = "apart"
  1996. p38.CFrame = CFrame.new(3.18215156, 157.811584, 40.8968277, -3.05612957e-005, 1, -3.05175708e-005, -3.04729365e-005, -3.05185131e-005, -1, -1, -3.05603608e-005, 3.04738478e-005)
  1997. p38.CanCollide = false
  1998. p38.FormFactor = Enum.FormFactor.Custom
  1999. p38.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  2000. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2001. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2002. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2003. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2004. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2005. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2006. b36 = Instance.new("SpecialMesh", p38)
  2007. b36.MeshType = Enum.MeshType.Wedge
  2008. b36.Name = "Mesh"
  2009. p39 = Instance.new("Part", m)
  2010. p39.BrickColor = BrickColor.new("Black")
  2011. p39.Material = Enum.Material.SmoothPlastic
  2012. p39.Name = "apart"
  2013. p39.CFrame = CFrame.new(3.18215156, 156.940414, 39.9487991, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
  2014. p39.CanCollide = false
  2015. p39.FormFactor = Enum.FormFactor.Custom
  2016. p39.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  2017. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2018. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2019. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2020. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2021. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2022. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2023. b37 = Instance.new("SpecialMesh", p39)
  2024. b37.MeshType = Enum.MeshType.Brick
  2025. b37.Name = "Mesh"
  2026. b37.Scale = Vector3.new(1, 1.00999999, 1.00999999)
  2027. p40 = Instance.new("Part", m)
  2028. p40.BrickColor = BrickColor.new("Black")
  2029. p40.Material = Enum.Material.SmoothPlastic
  2030. p40.Name = "apart"
  2031. p40.CFrame = CFrame.new(3.18215179, 156.94043, 40.0000381, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
  2032. p40.CanCollide = false
  2033. p40.FormFactor = Enum.FormFactor.Custom
  2034. p40.Size = Vector3.new(1.53736663, 0.256227732, 0.973665357)
  2035. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2036. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2037. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2038. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2040. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2041. b38 = Instance.new("SpecialMesh", p40)
  2042. b38.MeshType = Enum.MeshType.Torso
  2043. b38.Name = "Mesh"
  2044. p41 = Instance.new("Part", m)
  2045. p41.BrickColor = BrickColor.new("Black")
  2046. p41.Material = Enum.Material.SmoothPlastic
  2047. p41.Name = "apart"
  2048. p41.CFrame = CFrame.new(4.43766689, 158.093491, 39.9999962, -1, 4.30663349e-005, 4.51109372e-010, 1.85900717e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.34494757e-005)
  2049. p41.CanCollide = false
  2050. p41.FormFactor = Enum.FormFactor.Custom
  2051. p41.Size = Vector3.new(0.409964442, 0.922419786, 0.922419786)
  2052. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2053. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2054. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2056. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. b39 = Instance.new("SpecialMesh", p41)
  2059. b39.MeshType = Enum.MeshType.Sphere
  2060. b39.Name = "Mesh"
  2061. p42 = Instance.new("Part", m)
  2062. p42.BrickColor = BrickColor.new("Black")
  2063. p42.Material = Enum.Material.SmoothPlastic
  2064. p42.Name = "apart"
  2065. p42.CFrame = CFrame.new(3.82272005, 158.093506, 39.2825584, -3.05612848e-005, -1, -3.05175745e-005, -3.05603535e-005, 3.05185167e-005, -1, 1, -3.05603608e-005, -3.05612921e-005)
  2066. p42.CanCollide = false
  2067. p42.FormFactor = Enum.FormFactor.Custom
  2068. p42.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  2069. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2075. b40 = Instance.new("SpecialMesh", p42)
  2076. b40.MeshType = Enum.MeshType.Sphere
  2077. b40.Name = "Mesh"
  2078. p43 = Instance.new("Part", m)
  2079. p43.BrickColor = BrickColor.new("Black")
  2080. p43.Material = Enum.Material.SmoothPlastic
  2081. p43.Name = "apart"
  2082. p43.CFrame = CFrame.new(4.3864212, 158.093475, 39.9999924, -1, 4.30663349e-005, 4.50970816e-010, 1.8563604e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.3449472e-005)
  2083. p43.CanCollide = false
  2084. p43.FormFactor = Enum.FormFactor.Custom
  2085. p43.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  2086. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2091. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2092. b41 = Instance.new("SpecialMesh", p43)
  2093. b41.MeshType = Enum.MeshType.Cylinder
  2094. b41.Name = "Mesh"
  2095. b41.Scale = Vector3.new(0.417480975, 1, 1)
  2096. p44 = Instance.new("Part", m)
  2097. p44.BrickColor = BrickColor.new("Black")
  2098. p44.Material = Enum.Material.SmoothPlastic
  2099. p44.Name = "apart"
  2100. p44.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
  2101. p44.CanCollide = false
  2102. p44.FormFactor = Enum.FormFactor.Custom
  2103. p44.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  2104. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2105. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2109. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2110. b42 = Instance.new("SpecialMesh", p44)
  2111. b42.MeshType = Enum.MeshType.Cylinder
  2112. b42.Name = "Mesh"
  2113. b42.Scale = Vector3.new(0.626221538, 1, 1)
  2114. p45 = Instance.new("Part", m)
  2115. p45.BrickColor = BrickColor.new("Dark red")
  2116. p45.Material = Enum.Material.Neon
  2117. p45.Name = "apart"
  2118. p45.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
  2119. p45.CanCollide = false
  2120. p45.FormFactor = Enum.FormFactor.Custom
  2121. p45.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  2122. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2128. b43 = Instance.new("SpecialMesh", p45)
  2129. b43.MeshType = Enum.MeshType.Cylinder
  2130. b43.Name = "Mesh"
  2131. b43.Scale = Vector3.new(0.313110769, 1.00999999, 1.00999999)
  2132. p46 = Instance.new("Part", m)
  2133. p46.BrickColor = BrickColor.new("Black")
  2134. p46.Material = Enum.Material.SmoothPlastic
  2135. p46.Name = "apart"
  2136. p46.CFrame = CFrame.new(3.82271981, 158.093491, 40.7174263, -3.05612884e-005, -1, -3.05175763e-005, -3.05603571e-005, 3.05185131e-005, -1, 1, -3.05603571e-005, -3.05612884e-005)
  2137. p46.CanCollide = false
  2138. p46.FormFactor = Enum.FormFactor.Custom
  2139. p46.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  2140. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2141. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2142. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2145. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2146. b44 = Instance.new("SpecialMesh", p46)
  2147. b44.MeshType = Enum.MeshType.Sphere
  2148. b44.Name = "Mesh"
  2149. p47 = Instance.new("Part", m)
  2150. p47.BrickColor = BrickColor.new("Black")
  2151. --[[p47.Name = "Head"
  2152. p47.CFrame = CFrame.new(3.81999993, 157.776108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2153. p47.CanCollide = false
  2154. p47.FormFactor = Enum.FormFactor.Symmetric
  2155. p47.Size = Vector3.new(2, 1, 1)
  2156. p47.BottomSurface = Enum.SurfaceType.Smooth
  2157. p47.TopSurface = Enum.SurfaceType.Smooth--]]
  2158. p47 = Head
  2159. p48 = Instance.new("Part", m)
  2160. p48.BrickColor = BrickColor.new("Dark red")
  2161. p48.Material = Enum.Material.Neon
  2162. p48.Name = "apart"
  2163. p48.CFrame = CFrame.new(3.05403709, 158.529068, 39.8975182, -3.05612884e-005, 1, -3.05166468e-005, 6.10798015e-005, -3.05147805e-005, -1, -1, -3.05631511e-005, -6.10788702e-005)
  2164. p48.CanCollide = false
  2165. p48.FormFactor = Enum.FormFactor.Custom
  2166. p48.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  2167. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2168. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2169. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2170. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2171. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2172. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2173. b45 = Instance.new("SpecialMesh", p48)
  2174. b45.MeshType = Enum.MeshType.Wedge
  2175. b45.Name = "Mesh"
  2176. b45.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  2177. p49 = Instance.new("Part", m)
  2178. p49.BrickColor = BrickColor.new("Black")
  2179. p49.Material = Enum.Material.SmoothPlastic
  2180. p49.Name = "apart"
  2181. p49.CFrame = CFrame.new(4.69389391, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
  2182. p49.CanCollide = false
  2183. p49.FormFactor = Enum.FormFactor.Custom
  2184. p49.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  2185. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2186. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2187. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2188. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2189. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2190. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2191. b46 = Instance.new("SpecialMesh", p49)
  2192. b46.MeshType = Enum.MeshType.Brick
  2193. b46.Name = "Mesh"
  2194. b46.Scale = Vector3.new(0.417481035, 1.00999999, 0.834961772)
  2195. p50 = Instance.new("Part", m)
  2196. p50.BrickColor = BrickColor.new("Black")
  2197. p50.Material = Enum.Material.SmoothPlastic
  2198. p50.Name = "apart"
  2199. p50.CFrame = CFrame.new(4.64264822, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
  2200. p50.CanCollide = false
  2201. p50.FormFactor = Enum.FormFactor.Custom
  2202. p50.Size = Vector3.new(0.245498881, 0.409964353, 0.307473242)
  2203. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2204. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2205. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2206. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2207. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2208. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2209. b47 = Instance.new("SpecialMesh", p50)
  2210. b47.MeshType = Enum.MeshType.Brick
  2211. b47.Name = "Mesh"
  2212. b47.Scale = Vector3.new(0.417481035, 1, 1)
  2213. p51 = Instance.new("Part", m)
  2214. p51.BrickColor = BrickColor.new("Dark red")
  2215. p51.Material = Enum.Material.Neon
  2216. p51.Name = "apart"
  2217. p51.CFrame = CFrame.new(3.05403709, 158.195969, 39.8974838, -0.000274701917, -0.99999994, -3.04719488e-005, 0.000183053358, -3.05222311e-005, 1, -0.99999994, 0.000274696329, 0.000183061755)
  2218. p51.CanCollide = false
  2219. p51.FormFactor = Enum.FormFactor.Custom
  2220. p51.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2221. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2222. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2223. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2224. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2225. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2226. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2227. b48 = Instance.new("SpecialMesh", p51)
  2228. b48.MeshType = Enum.MeshType.Wedge
  2229. b48.Name = "Mesh"
  2230. b48.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  2231. p52 = Instance.new("Part", m)
  2232. p52.BrickColor = BrickColor.new("Black")
  2233. p52.Material = Enum.Material.SmoothPlastic
  2234. p52.Name = "apart"
  2235. p52.CFrame = CFrame.new(3.2077713, 158.272842, 40.7174377, 0.000228409393, -0.965923071, 0.258828998, -0.000213359453, 0.258829027, 0.96592319, -0.99999994, -0.000275849539, -0.00014696976)
  2236. p52.CanCollide = false
  2237. p52.FormFactor = Enum.FormFactor.Custom
  2238. p52.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2239. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2240. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2241. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2242. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2243. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2244. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2245. b49 = Instance.new("SpecialMesh", p52)
  2246. b49.MeshType = Enum.MeshType.Wedge
  2247. b49.Name = "Mesh"
  2248. b49.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2249. p53 = Instance.new("Part", m)
  2250. p53.BrickColor = BrickColor.new("Black")
  2251. p53.Material = Enum.Material.SmoothPlastic
  2252. p53.Name = "apart"
  2253. p53.CFrame = CFrame.new(3.82271767, 158.093475, 39.9999886, -3.05612375e-005, -1, -3.04430723e-005, -3.05603317e-005, 3.0502677e-005, -1.00000012, 1, -3.05603717e-005, -3.05613357e-005)
  2254. p53.CanCollide = false
  2255. p53.FormFactor = Enum.FormFactor.Custom
  2256. p53.Size = Vector3.new(1.43487537, 0.512455463, 0.512455463)
  2257. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2258. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2259. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2260. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2261. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2262. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2263. b50 = Instance.new("SpecialMesh", p53)
  2264. b50.MeshType = Enum.MeshType.Cylinder
  2265. b50.Name = "Mesh"
  2266. p54 = Instance.new("Part", m)
  2267. p54.BrickColor = BrickColor.new("Black")
  2268. p54.Material = Enum.Material.SmoothPlastic
  2269. p54.Name = "apart"
  2270. p54.CFrame = CFrame.new(3.82271767, 158.093491, 39.4363022, 3.07936716e-008, -3.99507094e-011, 1, -1.00000012, -0.000152631663, -2.78741936e-008, 0.000152631561, -1, 2.18273732e-011)
  2271. p54.CanCollide = false
  2272. p54.FormFactor = Enum.FormFactor.Custom
  2273. p54.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  2274. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2275. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2276. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2277. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2278. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2279. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2280. b51 = Instance.new("SpecialMesh", p54)
  2281. b51.MeshType = Enum.MeshType.Torso
  2282. b51.Name = "Mesh"
  2283. b51.Scale = Vector3.new(1, 0.417480916, 1)
  2284. p55 = Instance.new("Part", m)
  2285. p55.BrickColor = BrickColor.new("Black")
  2286. p55.Material = Enum.Material.SmoothPlastic
  2287. p55.Name = "apart"
  2288. p55.CFrame = CFrame.new(3.05403447, 158.195984, 39.6669159, -0.000274701975, -0.99999994, -3.05464528e-005, 0.000183053344, -3.05380709e-005, 1.00000012, -1, 0.000274696329, 0.000183061798)
  2289. p55.CanCollide = false
  2290. p55.FormFactor = Enum.FormFactor.Custom
  2291. p55.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  2292. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2293. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2294. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2295. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2296. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2297. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2298. b52 = Instance.new("SpecialMesh", p55)
  2299. b52.MeshType = Enum.MeshType.Wedge
  2300. b52.Name = "Mesh"
  2301. p56 = Instance.new("Part", m)
  2302. p56.BrickColor = BrickColor.new("Black")
  2303. p56.Material = Enum.Material.SmoothPlastic
  2304. p56.Name = "apart"
  2305. p56.CFrame = CFrame.new(2.7465601, 158.529114, 39.8975143, -0.000274701975, -0.999999881, -3.05464528e-005, 0.000183053344, -3.05380672e-005, 1.00000012, -1, 0.0002746963, 0.000183061798)
  2306. p56.CanCollide = false
  2307. p56.FormFactor = Enum.FormFactor.Custom
  2308. p56.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2309. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2310. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2311. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2312. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2313. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2314. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2315. b53 = Instance.new("SpecialMesh", p56)
  2316. b53.MeshType = Enum.MeshType.Wedge
  2317. b53.Name = "Mesh"
  2318. b53.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  2319. p57 = Instance.new("Part", m)
  2320. p57.BrickColor = BrickColor.new("Black")
  2321. p57.Material = Enum.Material.SmoothPlastic
  2322. p57.Name = "apart"
  2323. p57.CFrame = CFrame.new(3.05403423, 158.529099, 40.1024895, -3.05613503e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989571e-005, -1.00000012, -1, -3.05630856e-005, -6.10789066e-005)
  2324. p57.CanCollide = false
  2325. p57.FormFactor = Enum.FormFactor.Custom
  2326. p57.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  2327. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2328. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2329. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2330. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2331. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2332. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2333. b54 = Instance.new("SpecialMesh", p57)
  2334. b54.MeshType = Enum.MeshType.Wedge
  2335. b54.Name = "Mesh"
  2336. b54.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  2337. p58 = Instance.new("Part", m)
  2338. p58.BrickColor = BrickColor.new("Black")
  2339. p58.Material = Enum.Material.SmoothPlastic
  2340. p58.Name = "apart"
  2341. p58.CFrame = CFrame.new(3.82271719, 158.093506, 40.5636864, -1.18223397e-007, 6.08786355e-011, 0.999999881, 1.00000012, -4.36484697e-008, 5.95373422e-008, 4.37539711e-008, 1, 6.57935928e-011)
  2342. p58.CanCollide = false
  2343. p58.FormFactor = Enum.FormFactor.Custom
  2344. p58.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  2345. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2346. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2347. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2348. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2349. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2350. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2351. b55 = Instance.new("SpecialMesh", p58)
  2352. b55.MeshType = Enum.MeshType.Torso
  2353. b55.Name = "Mesh"
  2354. b55.Scale = Vector3.new(1, 0.417480916, 1)
  2355. p59 = Instance.new("Part", m)
  2356. p59.BrickColor = BrickColor.new("Black")
  2357. p59.Material = Enum.Material.SmoothPlastic
  2358. p59.Name = "apart"
  2359. p59.CFrame = CFrame.new(3.82271719, 158.093506, 39.9999809, 5.34067403e-005, -0.999999881, -4.31585322e-005, 1.00000012, 5.34654391e-005, 1.43842538e-009, 9.74580416e-010, -4.31586632e-005, 1)
  2360. p59.CanCollide = false
  2361. p59.FormFactor = Enum.FormFactor.Custom
  2362. p59.Size = Vector3.new(1.02491105, 1.02491093, 1.02491093)
  2363. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2364. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2365. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2366. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2367. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2368. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2369. b56 = Instance.new("SpecialMesh", p59)
  2370. b56.MeshType = Enum.MeshType.Brick
  2371. b56.Name = "Mesh"
  2372. p60 = Instance.new("Part", m)
  2373. p60.BrickColor = BrickColor.new("Dark red")
  2374. p60.Material = Enum.Material.Neon
  2375. p60.Name = "apart"
  2376. p60.CFrame = CFrame.new(3.05403423, 158.529114, 40.1024895, -3.05613539e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989553e-005, -1.00000012, -1, -3.05630856e-005, -6.10789139e-005)
  2377. p60.CanCollide = false
  2378. p60.FormFactor = Enum.FormFactor.Custom
  2379. p60.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  2380. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2381. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2382. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2383. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2384. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2385. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2386. b57 = Instance.new("SpecialMesh", p60)
  2387. b57.MeshType = Enum.MeshType.Wedge
  2388. b57.Name = "Mesh"
  2389. b57.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  2390. p61 = Instance.new("Part", m)
  2391. p61.BrickColor = BrickColor.new("Black")
  2392. p61.Material = Enum.Material.SmoothPlastic
  2393. p61.Name = "apart"
  2394. p61.CFrame = CFrame.new(3.05403423, 158.19603, 39.89748, -0.000274701946, -0.999999821, -3.05464564e-005, 0.000183053315, -3.05380599e-005, 1.00000012, -0.99999994, 0.000274696271, 0.000183061798)
  2395. p61.CanCollide = false
  2396. p61.FormFactor = Enum.FormFactor.Custom
  2397. p61.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2398. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2399. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2400. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2401. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2402. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2404. b58 = Instance.new("SpecialMesh", p61)
  2405. b58.MeshType = Enum.MeshType.Wedge
  2406. b58.Name = "Mesh"
  2407. b58.Scale = Vector3.new(0.417481065, 1, 1)
  2408. p62 = Instance.new("Part", m)
  2409. p62.BrickColor = BrickColor.new("Black")
  2410. p62.Material = Enum.Material.SmoothPlastic
  2411. p62.Name = "apart"
  2412. p62.CFrame = CFrame.new(3.20776844, 158.272903, 40.7686882, 0.000228409335, -0.965923011, 0.258828908, -0.000213359541, 0.258829057, 0.965923309, -0.99999994, -0.000275849598, -0.000146969687)
  2413. p62.CanCollide = false
  2414. p62.FormFactor = Enum.FormFactor.Custom
  2415. p62.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2416. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2417. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2418. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2419. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2420. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2421. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2422. b59 = Instance.new("SpecialMesh", p62)
  2423. b59.MeshType = Enum.MeshType.Wedge
  2424. b59.Name = "Mesh"
  2425. b59.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2426. p63 = Instance.new("Part", m)
  2427. p63.BrickColor = BrickColor.new("Black")
  2428. p63.Material = Enum.Material.SmoothPlastic
  2429. p63.Name = "apart"
  2430. p63.CFrame = CFrame.new(3.05403471, 158.196045, 40.1024666, -0.000274702004, -0.999999821, -3.05771828e-005, 0.000183053315, -3.04877758e-005, 1.00000024, -1, 0.000274696242, 0.000183061857)
  2431. p63.CanCollide = false
  2432. p63.FormFactor = Enum.FormFactor.Custom
  2433. p63.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2434. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2435. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2436. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2437. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2438. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2439. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2440. b60 = Instance.new("SpecialMesh", p63)
  2441. b60.MeshType = Enum.MeshType.Wedge
  2442. b60.Name = "Mesh"
  2443. b60.Scale = Vector3.new(0.417481065, 1, 1)
  2444. p64 = Instance.new("Part", m)
  2445. p64.BrickColor = BrickColor.new("Black")
  2446. p64.Material = Enum.Material.SmoothPlastic
  2447. p64.Name = "apart"
  2448. p64.CFrame = CFrame.new(2.7465601, 158.529175, 40.3330841, -0.000274702004, -0.999999762, -3.05771828e-005, 0.000183053315, -3.0487774e-005, 1.00000024, -1, 0.000274696213, 0.000183061857)
  2449. p64.CanCollide = false
  2450. p64.FormFactor = Enum.FormFactor.Custom
  2451. p64.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  2452. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2453. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2455. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2456. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2457. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2458. b61 = Instance.new("SpecialMesh", p64)
  2459. b61.MeshType = Enum.MeshType.Wedge
  2460. b61.Name = "Mesh"
  2461. b61.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  2462. p65 = Instance.new("Part", m)
  2463. p65.BrickColor = BrickColor.new("Black")
  2464. p65.Material = Enum.Material.SmoothPlastic
  2465. p65.Name = "apart"
  2466. p65.CFrame = CFrame.new(2.74655938, 158.52919, 39.6668968, -0.000274702004, -0.999999702, -3.05771828e-005, 0.000183053315, -3.04877722e-005, 1.00000024, -1, 0.000274696184, 0.000183061857)
  2467. p65.CanCollide = false
  2468. p65.FormFactor = Enum.FormFactor.Custom
  2469. p65.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  2470. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2471. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2472. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2473. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2474. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2475. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2476. b62 = Instance.new("SpecialMesh", p65)
  2477. b62.MeshType = Enum.MeshType.Wedge
  2478. b62.Name = "Mesh"
  2479. b62.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  2480. p66 = Instance.new("Part", m)
  2481. p66.BrickColor = BrickColor.new("Black")
  2482. p66.Material = Enum.Material.SmoothPlastic
  2483. p66.Name = "apart"
  2484. p66.CFrame = CFrame.new(3.05403376, 158.196106, 40.3330727, -0.000274702004, -0.999999642, -3.05771828e-005, 0.000183053315, -3.04877703e-005, 1.00000024, -1, 0.000274696155, 0.000183061857)
  2485. p66.CanCollide = false
  2486. p66.FormFactor = Enum.FormFactor.Custom
  2487. p66.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  2488. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2489. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2490. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2491. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2492. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2493. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2494. b63 = Instance.new("SpecialMesh", p66)
  2495. b63.MeshType = Enum.MeshType.Wedge
  2496. b63.Name = "Mesh"
  2497. p67 = Instance.new("Part", m)
  2498. p67.BrickColor = BrickColor.new("Dark red")
  2499. p67.Material = Enum.Material.Neon
  2500. p67.Name = "apart"
  2501. p67.CFrame = CFrame.new(3.05403376, 158.196106, 40.1024437, -0.000274702004, -0.999999583, -3.05771828e-005, 0.000183053315, -3.04877685e-005, 1.00000024, -1, 0.000274696125, 0.000183061857)
  2502. p67.CanCollide = false
  2503. p67.FormFactor = Enum.FormFactor.Custom
  2504. p67.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2505. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2507. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2508. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2509. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2510. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. b64 = Instance.new("SpecialMesh", p67)
  2512. b64.MeshType = Enum.MeshType.Wedge
  2513. b64.Name = "Mesh"
  2514. b64.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  2515. p68 = Instance.new("Part", m)
  2516. p68.BrickColor = BrickColor.new("Black")
  2517. p68.Material = Enum.Material.SmoothPlastic
  2518. p68.Name = "apart"
  2519. p68.CFrame = CFrame.new(2.74655938, 158.529221, 40.1024551, -0.000274702004, -0.999999523, -3.05771828e-005, 0.000183053315, -3.04877667e-005, 1.00000024, -1, 0.000274696096, 0.000183061857)
  2520. p68.CanCollide = false
  2521. p68.FormFactor = Enum.FormFactor.Custom
  2522. p68.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2523. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2525. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2526. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2527. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2528. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2529. b65 = Instance.new("SpecialMesh", p68)
  2530. b65.MeshType = Enum.MeshType.Wedge
  2531. b65.Name = "Mesh"
  2532. b65.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  2533. p69 = Instance.new("Part", m)
  2534. p69.BrickColor = BrickColor.new("Black")
  2535. p69.Material = Enum.Material.SmoothPlastic
  2536. p69.Name = "apart"
  2537. p69.CFrame = CFrame.new(3.05403352, 158.529205, 40.3330612, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  2538. p69.CanCollide = false
  2539. p69.FormFactor = Enum.FormFactor.Custom
  2540. p69.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  2541. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2542. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2543. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2544. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2545. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2546. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. b66 = Instance.new("SpecialMesh", p69)
  2548. b66.MeshType = Enum.MeshType.Wedge
  2549. b66.Name = "Mesh"
  2550. b66.Scale = Vector3.new(1, 1, 0.626221359)
  2551. p70 = Instance.new("Part", m)
  2552. p70.BrickColor = BrickColor.new("Black")
  2553. p70.Material = Enum.Material.SmoothPlastic
  2554. p70.Name = "apart"
  2555. p70.CFrame = CFrame.new(3.05403328, 158.529221, 39.89748, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  2556. p70.CanCollide = false
  2557. p70.FormFactor = Enum.FormFactor.Custom
  2558. p70.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  2559. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2560. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2561. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2562. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2563. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2564. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2565. b67 = Instance.new("SpecialMesh", p70)
  2566. b67.MeshType = Enum.MeshType.Wedge
  2567. b67.Name = "Mesh"
  2568. b67.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  2569. p71 = Instance.new("Part", m)
  2570. p71.BrickColor = BrickColor.new("Dark red")
  2571. p71.Material = Enum.Material.Neon
  2572. p71.Name = "apart"
  2573. p71.CFrame = CFrame.new(3.82271624, 158.093628, 40.6661491, -3.05610884e-005, -0.999999523, -3.04123096e-005, -3.05602262e-005, 3.05529975e-005, -1.00000024, 1, -3.05606263e-005, -3.0561383e-005)
  2574. p71.CanCollide = false
  2575. p71.FormFactor = Enum.FormFactor.Custom
  2576. p71.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2577. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2578. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2579. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2580. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2581. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2582. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2583. b68 = Instance.new("SpecialMesh", p71)
  2584. b68.MeshType = Enum.MeshType.Cylinder
  2585. b68.Name = "Mesh"
  2586. b68.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  2587. p72 = Instance.new("Part", m)
  2588. p72.BrickColor = BrickColor.new("Black")
  2589. p72.Material = Enum.Material.SmoothPlastic
  2590. p72.Name = "apart"
  2591. p72.CFrame = CFrame.new(3.05403328, 158.529221, 39.6668777, -3.05614631e-005, 0.999999523, -3.04113764e-005, 6.10796851e-005, -3.05492686e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  2592. p72.CanCollide = false
  2593. p72.FormFactor = Enum.FormFactor.Custom
  2594. p72.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  2595. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2596. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2597. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2598. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2599. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2600. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2601. b69 = Instance.new("SpecialMesh", p72)
  2602. b69.MeshType = Enum.MeshType.Wedge
  2603. b69.Name = "Mesh"
  2604. b69.Scale = Vector3.new(1, 1, 0.626221359)
  2605. p73 = Instance.new("Part", m)
  2606. p73.BrickColor = BrickColor.new("Black")
  2607. p73.Material = Enum.Material.SmoothPlastic
  2608. p73.Name = "apart"
  2609. p73.CFrame = CFrame.new(3.20776749, 158.27298, 39.2312889, 0.000228409161, -0.965922713, 0.258828849, -0.000213359599, 0.258829117, 0.965923429, -1, -0.00027584983, -0.000146969658)
  2610. p73.CanCollide = false
  2611. p73.FormFactor = Enum.FormFactor.Custom
  2612. p73.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2613. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2614. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2615. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2616. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2617. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2618. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2619. b70 = Instance.new("SpecialMesh", p73)
  2620. b70.MeshType = Enum.MeshType.Wedge
  2621. b70.Name = "Mesh"
  2622. b70.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2623. p74 = Instance.new("Part", m)
  2624. p74.BrickColor = BrickColor.new("Black")
  2625. p74.Material = Enum.Material.SmoothPlastic
  2626. p74.Name = "apart"
  2627. p74.CFrame = CFrame.new(3.20777059, 158.27298, 39.282547, 0.000228409161, -0.965922713, 0.258828819, -0.000213359614, 0.258829117, 0.965923369, -1.00000012, -0.000275849859, -0.000146969644)
  2628. p74.CanCollide = false
  2629. p74.FormFactor = Enum.FormFactor.Custom
  2630. p74.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  2631. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2632. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2633. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2634. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2635. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2636. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2637. b71 = Instance.new("SpecialMesh", p74)
  2638. b71.MeshType = Enum.MeshType.Wedge
  2639. b71.Name = "Mesh"
  2640. b71.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  2641. p75 = Instance.new("Part", m)
  2642. p75.BrickColor = BrickColor.new("Dark red")
  2643. p75.Material = Enum.Material.Neon
  2644. p75.Name = "apart"
  2645. p75.CFrame = CFrame.new(3.82271242, 158.093628, 39.3337746, -3.05610592e-005, -0.999999583, -3.03685665e-005, -3.05602152e-005, 3.05473804e-005, -1.00000036, 1.00000024, -3.05606482e-005, -3.05614085e-005)
  2646. p75.CanCollide = false
  2647. p75.FormFactor = Enum.FormFactor.Custom
  2648. p75.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  2649. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2650. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2651. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2652. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2653. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2654. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. b72 = Instance.new("SpecialMesh", p75)
  2656. b72.MeshType = Enum.MeshType.Cylinder
  2657. b72.Name = "Mesh"
  2658. b72.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  2659. p76 = Instance.new("Part", m)
  2660. p76.BrickColor = BrickColor.new("Dark red")
  2661. p76.Material = Enum.Material.Neon
  2662. p76.Name = "apart"
  2663. p76.CFrame = CFrame.new(4.6938858, 158.093613, 39.999958, -0.999999583, 4.30660984e-005, 1.49448169e-007, 3.07118171e-008, 5.34493374e-005, -1.00000036, -4.30666332e-005, -1.00000024, -5.34495957e-005)
  2664. p76.CanCollide = false
  2665. p76.FormFactor = Enum.FormFactor.Custom
  2666. p76.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  2667. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2668. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2669. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2670. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2671. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2672. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2673. b73 = Instance.new("SpecialMesh", p76)
  2674. b73.MeshType = Enum.MeshType.Brick
  2675. b73.Name = "Mesh"
  2676. b73.Scale = Vector3.new(0.421655834, 1.01999998, 0.333984703)
  2677. p77 = Instance.new("Part", m)
  2678. p77.BrickColor = BrickColor.new("Dark red")
  2679. p77.Material = Enum.Material.Neon
  2680. p77.Name = "apart"
  2681. p77.CFrame = CFrame.new(2.74655533, 158.529221, 40.1024628, -0.000274702033, -0.999999523, -3.06209367e-005, 0.000183053286, -3.04933837e-005, 1.00000036, -1.00000012, 0.000274696125, 0.0001830619)
  2682. p77.CanCollide = false
  2683. p77.FormFactor = Enum.FormFactor.Custom
  2684. p77.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2685. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2687. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2689. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2690. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2691. b74 = Instance.new("SpecialMesh", p77)
  2692. b74.MeshType = Enum.MeshType.Wedge
  2693. b74.Name = "Mesh"
  2694. b74.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  2695. p78 = Instance.new("Part", m)
  2696. p78.BrickColor = BrickColor.new("Dark red")
  2697. p78.Material = Enum.Material.Neon
  2698. p78.Name = "apart"
  2699. p78.CFrame = CFrame.new(2.74655509, 158.529236, 39.8974838, -0.000274702033, -0.999999464, -3.06209367e-005, 0.000183053286, -3.04933819e-005, 1.00000036, -1.00000012, 0.000274696096, 0.0001830619)
  2700. p78.CanCollide = false
  2701. p78.FormFactor = Enum.FormFactor.Custom
  2702. p78.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  2703. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2704. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2705. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2706. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2707. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2708. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2709. b75 = Instance.new("SpecialMesh", p78)
  2710. b75.MeshType = Enum.MeshType.Wedge
  2711. b75.Name = "Mesh"
  2712. b75.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  2713. p79 = Instance.new("Part", m)
  2714. p79.BrickColor = BrickColor.new("Black")
  2715. p79.Material = Enum.Material.SmoothPlastic
  2716. p79.Name = "apart"
  2717. p79.CFrame = CFrame.new(3.82272029, 157.171036, 41.537384, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
  2718. p79.CanCollide = false
  2719. p79.FormFactor = Enum.FormFactor.Custom
  2720. p79.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2721. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2722. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2723. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2724. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2725. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2726. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2727. b76 = Instance.new("SpecialMesh", p79)
  2728. b76.MeshType = Enum.MeshType.Brick
  2729. b76.Name = "Mesh"
  2730. b76.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2731. p80 = Instance.new("Part", m)
  2732. p80.BrickColor = BrickColor.new("Black")
  2733. p80.Material = Enum.Material.SmoothPlastic
  2734. p80.Name = "apart"
  2735. p80.CFrame = CFrame.new(3.82272029, 157.350388, 41.9729614, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
  2736. p80.CanCollide = false
  2737. p80.FormFactor = Enum.FormFactor.Custom
  2738. p80.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2739. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2740. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2741. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2742. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2743. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2744. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2745. b77 = Instance.new("SpecialMesh", p80)
  2746. b77.MeshType = Enum.MeshType.Cylinder
  2747. b77.Name = "Mesh"
  2748. b77.Scale = Vector3.new(1.01999998, 1, 1)
  2749. p81 = Instance.new("Part", m)
  2750. p81.BrickColor = BrickColor.new("Black")
  2751. p81.Material = Enum.Material.SmoothPlastic
  2752. p81.Name = "apart"
  2753. p81.CFrame = CFrame.new(3.41275811, 157.555359, 42.3316841, 1, 1.11727404e-005, -4.16862822e-005, -4.16866351e-005, 0.500085592, -0.865975857, 1.11713871e-005, 0.865975857, 0.500085592)
  2754. p81.CanCollide = false
  2755. p81.FormFactor = Enum.FormFactor.Custom
  2756. p81.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2757. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2758. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2760. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2761. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2762. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2763. b78 = Instance.new("SpecialMesh", p81)
  2764. b78.MeshType = Enum.MeshType.Wedge
  2765. b78.Name = "Mesh"
  2766. b78.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2767. p82 = Instance.new("Part", m)
  2768. p82.BrickColor = BrickColor.new("Black")
  2769. p82.Material = Enum.Material.SmoothPlastic
  2770. p82.Name = "apart"
  2771. p82.CFrame = CFrame.new(3.82271981, 156.018005, 41.4092636, 1, 3.05180438e-005, -3.05171125e-005, -3.05171106e-005, 0.99999994, 3.05180401e-005, 3.05180401e-005, -3.05171106e-005, 0.99999994)
  2772. p82.CanCollide = false
  2773. p82.FormFactor = Enum.FormFactor.Custom
  2774. p82.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  2775. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2777. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2778. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2779. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2780. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2781. b79 = Instance.new("SpecialMesh", p82)
  2782. b79.MeshType = Enum.MeshType.Wedge
  2783. b79.Name = "Mesh"
  2784. b79.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2785. p83 = Instance.new("Part", m)
  2786. p83.BrickColor = BrickColor.new("Black")
  2787. p83.Material = Enum.Material.SmoothPlastic
  2788. p83.Name = "apart"
  2789. p83.CFrame = CFrame.new(3.82271981, 156.018005, 41.9217148, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  2790. p83.CanCollide = false
  2791. p83.FormFactor = Enum.FormFactor.Custom
  2792. p83.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2793. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2794. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2795. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2796. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2797. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2798. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2799. b80 = Instance.new("SpecialMesh", p83)
  2800. b80.MeshType = Enum.MeshType.Brick
  2801. b80.Name = "Mesh"
  2802. b80.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2803. p84 = Instance.new("Part", m)
  2804. p84.BrickColor = BrickColor.new("Black")
  2805. p84.Material = Enum.Material.SmoothPlastic
  2806. p84.Name = "apart"
  2807. p84.CFrame = CFrame.new(3.82271981, 155.633667, 41.5373764, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  2808. p84.CanCollide = false
  2809. p84.FormFactor = Enum.FormFactor.Custom
  2810. p84.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  2811. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2812. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2813. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2814. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2815. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2816. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2817. b81 = Instance.new("SpecialMesh", p84)
  2818. b81.MeshType = Enum.MeshType.Brick
  2819. b81.Name = "Mesh"
  2820. b81.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2821. p85 = Instance.new("Part", m)
  2822. p85.BrickColor = BrickColor.new("Black")
  2823. p85.Material = Enum.Material.SmoothPlastic
  2824. p85.Name = "apart"
  2825. p85.CFrame = CFrame.new(4.23268604, 157.555389, 42.331665, 1, 1.11727377e-005, -4.16862786e-005, -4.16866387e-005, 0.500085652, -0.865975916, 1.1171388e-005, 0.865975916, 0.500085652)
  2826. p85.CanCollide = false
  2827. p85.FormFactor = Enum.FormFactor.Custom
  2828. p85.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  2829. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2830. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2831. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2832. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2833. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2834. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2835. b82 = Instance.new("SpecialMesh", p85)
  2836. b82.MeshType = Enum.MeshType.Wedge
  2837. b82.Name = "Mesh"
  2838. b82.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  2839. p86 = Instance.new("Part", m)
  2840. p86.BrickColor = BrickColor.new("Black")
  2841. p86.Material = Enum.Material.SmoothPlastic
  2842. p86.Name = "apart"
  2843. p86.CFrame = CFrame.new(3.82272005, 156.402374, 41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2844. p86.CanCollide = false
  2845. p86.FormFactor = Enum.FormFactor.Custom
  2846. p86.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  2847. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2848. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2849. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2850. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2852. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2853. b83 = Instance.new("SpecialMesh", p86)
  2854. b83.MeshType = Enum.MeshType.Wedge
  2855. b83.Name = "Mesh"
  2856. b83.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2857. p87 = Instance.new("Part", m)
  2858. p87.BrickColor = BrickColor.new("Black")
  2859. p87.Material = Enum.Material.SmoothPlastic
  2860. p87.Name = "apart"
  2861. p87.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2862. p87.CanCollide = false
  2863. p87.FormFactor = Enum.FormFactor.Custom
  2864. p87.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  2865. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2866. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2867. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2869. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2870. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2871. b84 = Instance.new("SpecialMesh", p87)
  2872. b84.MeshType = Enum.MeshType.Brick
  2873. b84.Name = "Mesh"
  2874. b84.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  2875. p88 = Instance.new("Part", m)
  2876. p88.BrickColor = BrickColor.new("Black")
  2877. p88.Material = Enum.Material.SmoothPlastic
  2878. p88.Name = "apart"
  2879. p88.CFrame = CFrame.new(3.82272005, 157.350418, 41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2880. p88.CanCollide = false
  2881. p88.FormFactor = Enum.FormFactor.Custom
  2882. p88.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  2883. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2884. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2886. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2887. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2888. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. b85 = Instance.new("SpecialMesh", p88)
  2890. b85.MeshType = Enum.MeshType.Cylinder
  2891. b85.Name = "Mesh"
  2892. b85.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  2893. p89 = Instance.new("Part", m)
  2894. p89.BrickColor = BrickColor.new("Dark red")
  2895. p89.Material = Enum.Material.Neon
  2896. p89.Name = "apart"
  2897. p89.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2898. p89.CanCollide = false
  2899. p89.FormFactor = Enum.FormFactor.Custom
  2900. p89.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  2901. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2903. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2904. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2905. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2907. b86 = Instance.new("SpecialMesh", p89)
  2908. b86.MeshType = Enum.MeshType.Brick
  2909. b86.Name = "Mesh"
  2910. b86.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  2911. p90 = Instance.new("Part", m)
  2912. p90.BrickColor = BrickColor.new("Black")
  2913. p90.Material = Enum.Material.SmoothPlastic
  2914. p90.Name = "apart"
  2915. p90.CFrame = CFrame.new(3.82272005, 156.402374, 41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2916. p90.CanCollide = false
  2917. p90.FormFactor = Enum.FormFactor.Custom
  2918. p90.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2919. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2920. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2921. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2923. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. --[[p91 = Instance.new("Part", m)
  2926. p91.BrickColor = BrickColor.new("Bright orange")
  2927. p91.Name = "Right Arm"
  2928. p91.CFrame = CFrame.new(3.81999993, 156.276108, 41.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2929. p91.CanCollide = false
  2930. p91.FormFactor = Enum.FormFactor.Symmetric
  2931. p91.Size = Vector3.new(1, 2, 1)
  2932. p91.BottomSurface = Enum.SurfaceType.Smooth
  2933. p91.TopSurface = Enum.SurfaceType.Smooth--]]
  2934. p91 = RightArm
  2935. p92 = Instance.new("Part", m)
  2936. p92.BrickColor = BrickColor.new("Black")
  2937. p92.Material = Enum.Material.SmoothPlastic
  2938. p92.Name = "apart"
  2939. p92.CFrame = CFrame.new(3.82272005, 154.35257, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2940. p92.CanCollide = false
  2941. p92.FormFactor = Enum.FormFactor.Custom
  2942. p92.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  2943. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2944. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2945. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2946. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2947. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2948. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. --[[p93 = Instance.new("Part", m)
  2950. p93.BrickColor = BrickColor.new("Earth green")
  2951. p93.Name = "Left Leg"
  2952. p93.CFrame = CFrame.new(3.81999993, 154.276123, 39.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  2953. p93.CanCollide = false
  2954. p93.FormFactor = Enum.FormFactor.Symmetric
  2955. p93.Size = Vector3.new(1, 2, 1)
  2956. p93.BottomSurface = Enum.SurfaceType.Smooth
  2957. p93.TopSurface = Enum.SurfaceType.Smooth--]]
  2958. p93 = LeftLeg
  2959. p94 = Instance.new("Part", m)
  2960. p94.BrickColor = BrickColor.new("Black")
  2961. p94.Material = Enum.Material.SmoothPlastic
  2962. p94.Name = "apart"
  2963. p94.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2964. p94.CanCollide = false
  2965. p94.FormFactor = Enum.FormFactor.Custom
  2966. p94.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  2967. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2969. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2970. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2973. b87 = Instance.new("SpecialMesh", p94)
  2974. b87.MeshType = Enum.MeshType.Brick
  2975. b87.Name = "Mesh"
  2976. b87.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2977. p95 = Instance.new("Part", m)
  2978. p95.BrickColor = BrickColor.new("Black")
  2979. p95.Material = Enum.Material.SmoothPlastic
  2980. p95.Name = "apart"
  2981. p95.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2982. p95.CanCollide = false
  2983. p95.FormFactor = Enum.FormFactor.Custom
  2984. p95.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  2985. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2986. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2987. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2988. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2990. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2991. b88 = Instance.new("SpecialMesh", p95)
  2992. b88.MeshType = Enum.MeshType.Brick
  2993. b88.Name = "Mesh"
  2994. b88.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  2995. p96 = Instance.new("Part", m)
  2996. p96.BrickColor = BrickColor.new("Dark red")
  2997. p96.Material = Enum.Material.Neon
  2998. p96.Name = "apart"
  2999. p96.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3000. p96.CanCollide = false
  3001. p96.FormFactor = Enum.FormFactor.Custom
  3002. p96.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  3003. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3004. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3005. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3006. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3007. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3009. b89 = Instance.new("SpecialMesh", p96)
  3010. b89.MeshType = Enum.MeshType.Brick
  3011. b89.Name = "Mesh"
  3012. b89.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  3013. p97 = Instance.new("Part", m)
  3014. p97.BrickColor = BrickColor.new("Black")
  3015. p97.Material = Enum.Material.Neon
  3016. p97.Name = "apart"
  3017. p97.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3018. p97.CanCollide = false
  3019. p97.FormFactor = Enum.FormFactor.Custom
  3020. p97.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  3021. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3022. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3024. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3026. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3027. b90 = Instance.new("SpecialMesh", p97)
  3028. b90.MeshType = Enum.MeshType.Brick
  3029. b90.Name = "Mesh"
  3030. b90.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  3031. p98 = Instance.new("Part", m)
  3032. p98.BrickColor = BrickColor.new("Black")
  3033. p98.Material = Enum.Material.SmoothPlastic
  3034. p98.Name = "apart"
  3035. p98.CFrame = CFrame.new(3.56649303, 154.045105, 39.4362946, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
  3036. p98.CanCollide = false
  3037. p98.FormFactor = Enum.FormFactor.Custom
  3038. p98.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  3039. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3040. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3041. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3043. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3044. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3045. b91 = Instance.new("SpecialMesh", p98)
  3046. b91.MeshType = Enum.MeshType.Wedge
  3047. b91.Name = "Mesh"
  3048. b91.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3049. p99 = Instance.new("Part", m)
  3050. p99.BrickColor = BrickColor.new("Black")
  3051. p99.Material = Enum.Material.SmoothPlastic
  3052. p99.Name = "apart"
  3053. p99.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
  3054. p99.CanCollide = false
  3055. p99.FormFactor = Enum.FormFactor.Custom
  3056. p99.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  3057. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3058. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3059. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3060. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3061. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3062. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. b92 = Instance.new("SpecialMesh", p99)
  3064. b92.MeshType = Enum.MeshType.Torso
  3065. b92.Name = "Mesh"
  3066. b92.Scale = Vector3.new(1, 1, 1.01999998)
  3067. p100 = Instance.new("Part", m)
  3068. p100.BrickColor = BrickColor.new("Black")
  3069. p100.Material = Enum.Material.SmoothPlastic
  3070. p100.Name = "apart"
  3071. p100.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3072. p100.CanCollide = false
  3073. p100.FormFactor = Enum.FormFactor.Custom
  3074. p100.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  3075. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3076. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3077. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3078. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3079. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3080. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. b93 = Instance.new("SpecialMesh", p100)
  3082. b93.MeshType = Enum.MeshType.Brick
  3083. b93.Name = "Mesh"
  3084. b93.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  3085. p101 = Instance.new("Part", m)
  3086. p101.BrickColor = BrickColor.new("Black")
  3087. p101.Material = Enum.Material.SmoothPlastic
  3088. p101.Name = "apart"
  3089. p101.CFrame = CFrame.new(3.82272005, 153.378906, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3090. p101.CanCollide = false
  3091. p101.FormFactor = Enum.FormFactor.Custom
  3092. p101.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  3093. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3094. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3095. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3096. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3097. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3098. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3099. b94 = Instance.new("SpecialMesh", p101)
  3100. b94.MeshType = Enum.MeshType.Brick
  3101. b94.Name = "Mesh"
  3102. b94.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  3103. p102 = Instance.new("Part", m)
  3104. p102.BrickColor = BrickColor.new("Black")
  3105. p102.Material = Enum.Material.SmoothPlastic
  3106. p102.Name = "apart"
  3107. p102.CFrame = CFrame.new(3.82272005, 153.635132, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3108. p102.CanCollide = false
  3109. p102.FormFactor = Enum.FormFactor.Custom
  3110. p102.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  3111. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3113. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3114. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3115. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3116. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3117. b95 = Instance.new("SpecialMesh", p102)
  3118. b95.MeshType = Enum.MeshType.Brick
  3119. b95.Name = "Mesh"
  3120. b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3121. --[[p103 = Instance.new("Part", m)
  3122. p103.BrickColor = BrickColor.new("Black")
  3123. p103.Name = "Right Leg"
  3124. p103.CFrame = CFrame.new(3.81999993, 154.276123, 40.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  3125. p103.CanCollide = false
  3126. p103.FormFactor = Enum.FormFactor.Symmetric
  3127. p103.Size = Vector3.new(1, 2, 1)
  3128. p103.BottomSurface = Enum.SurfaceType.Smooth
  3129. p103.TopSurface = Enum.SurfaceType.Smooth--]]
  3130. p103 = RightLeg
  3131. p104 = Instance.new("Part", m)
  3132. p104.BrickColor = BrickColor.new("Black")
  3133. p104.Material = Enum.Material.SmoothPlastic
  3134. p104.Name = "apart"
  3135. p104.CFrame = CFrame.new(3.82272005, 154.35257, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3136. p104.CanCollide = false
  3137. p104.FormFactor = Enum.FormFactor.Custom
  3138. p104.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  3139. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3140. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3141. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3142. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3143. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3144. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. p105 = Instance.new("Part", m)
  3146. p105.BrickColor = BrickColor.new("Black")
  3147. p105.Material = Enum.Material.SmoothPlastic
  3148. p105.Name = "apart"
  3149. p105.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3150. p105.CanCollide = false
  3151. p105.FormFactor = Enum.FormFactor.Custom
  3152. p105.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  3153. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3154. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3155. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3156. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3157. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3158. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3159. b96 = Instance.new("SpecialMesh", p105)
  3160. b96.MeshType = Enum.MeshType.Brick
  3161. b96.Name = "Mesh"
  3162. b96.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  3163. p106 = Instance.new("Part", m)
  3164. p106.BrickColor = BrickColor.new("Black")
  3165. p106.Material = Enum.Material.SmoothPlastic
  3166. p106.Name = "apart"
  3167. p106.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3168. p106.CanCollide = false
  3169. p106.FormFactor = Enum.FormFactor.Custom
  3170. p106.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  3171. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3172. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3173. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3174. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3175. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3177. b97 = Instance.new("SpecialMesh", p106)
  3178. b97.MeshType = Enum.MeshType.Brick
  3179. b97.Name = "Mesh"
  3180. b97.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3181. p107 = Instance.new("Part", m)
  3182. p107.BrickColor = BrickColor.new("Black")
  3183. p107.Material = Enum.Material.SmoothPlastic
  3184. p107.Name = "apart"
  3185. p107.CFrame = CFrame.new(3.56649303, 154.045105, 40.5636902, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
  3186. p107.CanCollide = false
  3187. p107.FormFactor = Enum.FormFactor.Custom
  3188. p107.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  3189. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3190. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3191. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3192. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3194. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. b98 = Instance.new("SpecialMesh", p107)
  3196. b98.MeshType = Enum.MeshType.Wedge
  3197. b98.Name = "Mesh"
  3198. b98.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3199. p108 = Instance.new("Part", m)
  3200. p108.BrickColor = BrickColor.new("Black")
  3201. p108.Material = Enum.Material.SmoothPlastic
  3202. p108.Name = "apart"
  3203. p108.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
  3204. p108.CanCollide = false
  3205. p108.FormFactor = Enum.FormFactor.Custom
  3206. p108.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  3207. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3208. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3209. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3210. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3211. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3212. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3213. b99 = Instance.new("SpecialMesh", p108)
  3214. b99.MeshType = Enum.MeshType.Torso
  3215. b99.Name = "Mesh"
  3216. b99.Scale = Vector3.new(1, 1, 1.01999998)
  3217. p109 = Instance.new("Part", m)
  3218. p109.BrickColor = BrickColor.new("Black")
  3219. p109.Material = Enum.Material.SmoothPlastic
  3220. p109.Name = "apart"
  3221. p109.CFrame = CFrame.new(3.82272005, 153.635132, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3222. p109.CanCollide = false
  3223. p109.FormFactor = Enum.FormFactor.Custom
  3224. p109.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  3225. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3226. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3227. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3228. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3229. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3230. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3231. b100 = Instance.new("SpecialMesh", p109)
  3232. b100.MeshType = Enum.MeshType.Brick
  3233. b100.Name = "Mesh"
  3234. b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3235. p110 = Instance.new("Part", m)
  3236. p110.BrickColor = BrickColor.new("Black")
  3237. p110.Material = Enum.Material.SmoothPlastic
  3238. p110.Name = "apart"
  3239. p110.CFrame = CFrame.new(3.82272005, 153.378906, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3240. p110.CanCollide = false
  3241. p110.FormFactor = Enum.FormFactor.Custom
  3242. p110.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  3243. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3244. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3245. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3246. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3247. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3248. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3249. b101 = Instance.new("SpecialMesh", p110)
  3250. b101.MeshType = Enum.MeshType.Brick
  3251. b101.Name = "Mesh"
  3252. b101.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  3253. p111 = Instance.new("Part", m)
  3254. p111.BrickColor = BrickColor.new("Black")
  3255. p111.Material = Enum.Material.SmoothPlastic
  3256. p111.Name = "apart"
  3257. p111.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3258. p111.CanCollide = false
  3259. p111.FormFactor = Enum.FormFactor.Custom
  3260. p111.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  3261. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3262. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3263. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3264. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3265. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3266. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3267. b102 = Instance.new("SpecialMesh", p111)
  3268. b102.MeshType = Enum.MeshType.Brick
  3269. b102.Name = "Mesh"
  3270. b102.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  3271. p112 = Instance.new("Part", m)
  3272. p112.BrickColor = BrickColor.new("Dark red")
  3273. p112.Material = Enum.Material.Neon
  3274. p112.Name = "apart"
  3275. p112.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3276. p112.CanCollide = false
  3277. p112.FormFactor = Enum.FormFactor.Custom
  3278. p112.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  3279. p112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3280. p112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3281. p112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3282. p112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3283. p112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3284. p112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3285. b103 = Instance.new("SpecialMesh", p112)
  3286. b103.MeshType = Enum.MeshType.Brick
  3287. b103.Name = "Mesh"
  3288. b103.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  3289. p113 = Instance.new("Part", m)
  3290. p113.BrickColor = BrickColor.new("Dark red")
  3291. p113.Material = Enum.Material.Neon
  3292. p113.Name = "apart"
  3293. p113.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  3294. p113.CanCollide = false
  3295. p113.FormFactor = Enum.FormFactor.Custom
  3296. p113.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  3297. p113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3298. p113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3299. p113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3300. p113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3301. p113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3302. p113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3303. b104 = Instance.new("SpecialMesh", p113)
  3304. b104.MeshType = Enum.MeshType.Brick
  3305. b104.Name = "Mesh"
  3306. b104.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  3307. p114 = Instance.new("Part", m)
  3308. p114.BrickColor = BrickColor.new("Black")
  3309. p114.Material = Enum.Material.SmoothPlastic
  3310. p114.Name = "apart"
  3311. p114.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270462, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
  3312. p114.CanCollide = false
  3313. p114.FormFactor = Enum.FormFactor.Custom
  3314. p114.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  3315. p114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3316. p114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3317. p114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3318. p114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3319. p114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3320. p114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3321. b105 = Instance.new("SpecialMesh", p114)
  3322. b105.MeshType = Enum.MeshType.Cylinder
  3323. b105.Name = "Mesh"
  3324. b105.Scale = Vector3.new(1.01999998, 1, 1)
  3325. p115 = Instance.new("Part", m)
  3326. p115.BrickColor = BrickColor.new("Black")
  3327. p115.Material = Enum.Material.SmoothPlastic
  3328. p115.Name = "apart"
  3329. p115.CFrame = CFrame.new(3.82272005, 157.171097, 38.4626236, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
  3330. p115.CanCollide = false
  3331. p115.FormFactor = Enum.FormFactor.Custom
  3332. p115.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  3333. p115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3334. p115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3335. p115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. p115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3337. p115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3338. p115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3339. b106 = Instance.new("SpecialMesh", p115)
  3340. b106.MeshType = Enum.MeshType.Brick
  3341. b106.Name = "Mesh"
  3342. b106.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3343. --[[p116 = Instance.new("Part", m)
  3344. p116.BrickColor = BrickColor.new("Black")
  3345. p116.Name = "Left Arm"
  3346. p116.CFrame = CFrame.new(3.81999993, 156.276138, 38.5000076, -4.37103154e-008, -2.72848411e-012, -1, 0, 1, 0, 1, 0, -4.37175913e-008)
  3347. p116.CanCollide = false
  3348. p116.FormFactor = Enum.FormFactor.Symmetric
  3349. p116.Size = Vector3.new(1, 2, 1)
  3350. p116.BottomSurface = Enum.SurfaceType.Smooth
  3351. p116.TopSurface = Enum.SurfaceType.Smooth--]]
  3352. p116 = LeftArm
  3353. p117 = Instance.new("Part", m)
  3354. p117.BrickColor = BrickColor.new("Black")
  3355. p117.Material = Enum.Material.SmoothPlastic
  3356. p117.Name = "apart"
  3357. p117.CFrame = CFrame.new(4.232687, 157.55545, 37.668335, -1, 4.16358271e-005, 1.11714198e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424664e-005, -0.865983546, -0.500072539)
  3358. p117.CanCollide = false
  3359. p117.FormFactor = Enum.FormFactor.Custom
  3360. p117.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  3361. p117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3362. p117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3363. p117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3364. p117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3365. p117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3366. p117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3367. b107 = Instance.new("SpecialMesh", p117)
  3368. b107.MeshType = Enum.MeshType.Wedge
  3369. b107.Name = "Mesh"
  3370. b107.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  3371. p118 = Instance.new("Part", m)
  3372. p118.BrickColor = BrickColor.new("Black")
  3373. p118.Material = Enum.Material.SmoothPlastic
  3374. p118.Name = "apart"
  3375. p118.CFrame = CFrame.new(3.82272029, 156.018066, 38.0782814, 1, -2.6537661e-012, 0, -8.34776692e-013, 1, 0, 3.63797881e-012, 0, 1)
  3376. p118.CanCollide = false
  3377. p118.FormFactor = Enum.FormFactor.Custom
  3378. p118.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  3379. p118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3380. p118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3381. p118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3382. p118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3383. p118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3384. p118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3385. b108 = Instance.new("SpecialMesh", p118)
  3386. b108.MeshType = Enum.MeshType.Brick
  3387. b108.Name = "Mesh"
  3388. b108.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3389. p119 = Instance.new("Part", m)
  3390. p119.BrickColor = BrickColor.new("Black")
  3391. p119.Material = Enum.Material.SmoothPlastic
  3392. p119.Name = "apart"
  3393. p119.CFrame = CFrame.new(3.82272029, 156.402405, 38.0782814, -1, 3.04301539e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171197e-005, 3.04310852e-005, -1)
  3394. p119.CanCollide = false
  3395. p119.FormFactor = Enum.FormFactor.Custom
  3396. p119.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  3397. p119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3398. p119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3399. p119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3400. p119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3401. p119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3402. p119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. b109 = Instance.new("SpecialMesh", p119)
  3404. b109.MeshType = Enum.MeshType.Wedge
  3405. b109.Name = "Mesh"
  3406. b109.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3407. p120 = Instance.new("Part", m)
  3408. p120.BrickColor = BrickColor.new("Black")
  3409. p120.Material = Enum.Material.SmoothPlastic
  3410. p120.Name = "apart"
  3411. p120.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270424, 1, -9.09494702e-013, 9.09494702e-013, -9.09494702e-013, 1, 0, 1.36424205e-012, 0, 1)
  3412. p120.CanCollide = false
  3413. p120.FormFactor = Enum.FormFactor.Custom
  3414. p120.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  3415. p120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3416. p120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3417. p120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3418. p120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3419. p120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3420. p120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3421. b110 = Instance.new("SpecialMesh", p120)
  3422. b110.MeshType = Enum.MeshType.Cylinder
  3423. b110.Name = "Mesh"
  3424. b110.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  3425. p121 = Instance.new("Part", m)
  3426. p121.BrickColor = BrickColor.new("Black")
  3427. p121.Material = Enum.Material.SmoothPlastic
  3428. p121.Name = "apart"
  3429. p121.CFrame = CFrame.new(3.41275764, 157.555435, 37.6683273, -1, 4.16358271e-005, 1.1171418e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424627e-005, -0.865983546, -0.500072539)
  3430. p121.CanCollide = false
  3431. p121.FormFactor = Enum.FormFactor.Custom
  3432. p121.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  3433. p121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3434. p121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3435. p121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3436. p121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3437. p121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3438. p121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3439. b111 = Instance.new("SpecialMesh", p121)
  3440. b111.MeshType = Enum.MeshType.Wedge
  3441. b111.Name = "Mesh"
  3442. b111.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  3443. p122 = Instance.new("Part", m)
  3444. p122.BrickColor = BrickColor.new("Black")
  3445. p122.Material = Enum.Material.SmoothPlastic
  3446. p122.Name = "apart"
  3447. p122.CFrame = CFrame.new(3.82272029, 156.018051, 38.590744, -1, 3.04301557e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171179e-005, 3.04310852e-005, -1)
  3448. p122.CanCollide = false
  3449. p122.FormFactor = Enum.FormFactor.Custom
  3450. p122.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  3451. p122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3452. p122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. p122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3454. p122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3455. p122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3456. p122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3457. b112 = Instance.new("SpecialMesh", p122)
  3458. b112.MeshType = Enum.MeshType.Wedge
  3459. b112.Name = "Mesh"
  3460. b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3461. p123 = Instance.new("Part", m)
  3462. p123.BrickColor = BrickColor.new("Black")
  3463. p123.Material = Enum.Material.SmoothPlastic
  3464. p123.Name = "apart"
  3465. p123.CFrame = CFrame.new(3.82272005, 155.633713, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3466. p123.CanCollide = false
  3467. p123.FormFactor = Enum.FormFactor.Custom
  3468. p123.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  3469. p123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3470. p123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3471. p123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3472. p123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. p123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3474. p123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. b113 = Instance.new("SpecialMesh", p123)
  3476. b113.MeshType = Enum.MeshType.Brick
  3477. b113.Name = "Mesh"
  3478. b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3479. p124 = Instance.new("Part", m)
  3480. p124.BrickColor = BrickColor.new("Dark red")
  3481. p124.Material = Enum.Material.Neon
  3482. p124.Name = "apart"
  3483. p124.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3484. p124.CanCollide = false
  3485. p124.FormFactor = Enum.FormFactor.Custom
  3486. p124.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  3487. p124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3488. p124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3489. p124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3490. p124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. p124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3492. p124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3493. b114 = Instance.new("SpecialMesh", p124)
  3494. b114.MeshType = Enum.MeshType.Brick
  3495. b114.Name = "Mesh"
  3496. b114.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  3497. p125 = Instance.new("Part", m)
  3498. p125.BrickColor = BrickColor.new("Black")
  3499. p125.Material = Enum.Material.SmoothPlastic
  3500. p125.Name = "apart"
  3501. p125.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3502. p125.CanCollide = false
  3503. p125.FormFactor = Enum.FormFactor.Custom
  3504. p125.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  3505. p125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3506. p125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3507. p125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3508. p125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3509. p125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3510. p125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3511. b115 = Instance.new("SpecialMesh", p125)
  3512. b115.MeshType = Enum.MeshType.Brick
  3513. b115.Name = "Mesh"
  3514. b115.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  3515. p126 = Instance.new("Part", m)
  3516. p126.BrickColor = BrickColor.new("Black")
  3517. p126.Material = Enum.Material.SmoothPlastic
  3518. p126.Name = "apart"
  3519. p126.CFrame = CFrame.new(3.82272005, 156.40239, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3520. p126.CanCollide = false
  3521. p126.FormFactor = Enum.FormFactor.Custom
  3522. p126.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  3523. p126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3524. p126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3525. p126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3526. p126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3527. p126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3528. p126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3529. w1 = Instance.new("Weld", p1)
  3530. w1.Name = "Torso_Weld"
  3531. w1.Part0 = p1
  3532. w1.C0 = CFrame.new(40.0074806, -173.696487, -4.43766594, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3533. w1.Part1 = p2
  3534. w1.C1 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3535. w2 = Instance.new("Weld", p2)
  3536. w2.Name = "apart_Weld"
  3537. w2.Part0 = p2
  3538. w2.C0 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3539. w2.Part1 = p3
  3540. w2.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3541. w3 = Instance.new("Weld", p3)
  3542. w3.Name = "apart_Weld"
  3543. w3.Part0 = p3
  3544. w3.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3545. w3.Part1 = p4
  3546. w3.C1 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3547. w4 = Instance.new("Weld", p4)
  3548. w4.Name = "apart_Weld"
  3549. w4.Part0 = p4
  3550. w4.C0 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3551. w4.Part1 = p5
  3552. w4.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3553. w5 = Instance.new("Weld", p5)
  3554. w5.Name = "apart_Weld"
  3555. w5.Part0 = p5
  3556. w5.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3557. w5.Part1 = p6
  3558. w5.C1 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3559. w6 = Instance.new("Weld", p6)
  3560. w6.Name = "apart_Weld"
  3561. w6.Part0 = p6
  3562. w6.C0 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3563. w6.Part1 = p7
  3564. w6.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3565. w7 = Instance.new("Weld", p7)
  3566. w7.Name = "apart_Weld"
  3567. w7.Part0 = p7
  3568. w7.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3569. w7.Part1 = p8
  3570. w7.C1 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3571. w8 = Instance.new("Weld", p8)
  3572. w8.Name = "apart_Weld"
  3573. w8.Part0 = p8
  3574. w8.C0 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3575. w8.Part1 = p9
  3576. w8.C1 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
  3577. w9 = Instance.new("Weld", p9)
  3578. w9.Name = "apart_Weld"
  3579. w9.Part0 = p9
  3580. w9.C0 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
  3581. w9.Part1 = p10
  3582. w9.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3583. w10 = Instance.new("Weld", p10)
  3584. w10.Name = "apart_Weld"
  3585. w10.Part0 = p10
  3586. w10.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3587. w10.Part1 = p11
  3588. w10.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3589. w11 = Instance.new("Weld", p11)
  3590. w11.Name = "apart_Weld"
  3591. w11.Part0 = p11
  3592. w11.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3593. w11.Part1 = p12
  3594. w11.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3595. w12 = Instance.new("Weld", p12)
  3596. w12.Name = "apart_Weld"
  3597. w12.Part0 = p12
  3598. w12.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3599. w12.Part1 = p13
  3600. w12.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3601. w13 = Instance.new("Weld", p13)
  3602. w13.Name = "apart_Weld"
  3603. w13.Part0 = p13
  3604. w13.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  3605. w13.Part1 = p14
  3606. w13.C1 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3607. w14 = Instance.new("Weld", p14)
  3608. w14.Name = "apart_Weld"
  3609. w14.Part0 = p14
  3610. w14.C0 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3611. w14.Part1 = p15
  3612. w14.C1 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3613. w15 = Instance.new("Weld", p15)
  3614. w15.Name = "apart_Weld"
  3615. w15.Part0 = p15
  3616. w15.C0 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3617. w15.Part1 = p16
  3618. w15.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3619. w16 = Instance.new("Weld", p16)
  3620. w16.Name = "apart_Weld"
  3621. w16.Part0 = p16
  3622. w16.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3623. w16.Part1 = p17
  3624. w16.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3625. w17 = Instance.new("Weld", p17)
  3626. w17.Name = "apart_Weld"
  3627. w17.Part0 = p17
  3628. w17.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3629. w17.Part1 = p18
  3630. w17.C1 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3631. w18 = Instance.new("Weld", p18)
  3632. w18.Name = "apart_Weld"
  3633. w18.Part0 = p18
  3634. w18.C0 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3635. w18.Part1 = p19
  3636. w18.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3637. w19 = Instance.new("Weld", p19)
  3638. w19.Name = "apart_Weld"
  3639. w19.Part0 = p19
  3640. w19.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3641. w19.Part1 = p20
  3642. w19.C1 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3643. w20 = Instance.new("Weld", p20)
  3644. w20.Name = "apart_Weld"
  3645. w20.Part0 = p20
  3646. w20.C0 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3647. w20.Part1 = p21
  3648. w20.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3649. w21 = Instance.new("Weld", p21)
  3650. w21.Name = "apart_Weld"
  3651. w21.Part0 = p21
  3652. w21.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3653. w21.Part1 = p22
  3654. w21.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3655. w22 = Instance.new("Weld", p22)
  3656. w22.Name = "apart_Weld"
  3657. w22.Part0 = p22
  3658. w22.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3659. w22.Part1 = p23
  3660. w22.C1 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3661. w23 = Instance.new("Weld", p23)
  3662. w23.Name = "apart_Weld"
  3663. w23.Part0 = p23
  3664. w23.C0 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3665. w23.Part1 = p24
  3666. w23.C1 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3667. w24 = Instance.new("Weld", p24)
  3668. w24.Name = "apart_Weld"
  3669. w24.Part0 = p24
  3670. w24.C0 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3671. w24.Part1 = p25
  3672. w24.C1 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3673. w25 = Instance.new("Weld", p25)
  3674. w25.Name = "apart_Weld"
  3675. w25.Part0 = p25
  3676. w25.C0 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3677. w25.Part1 = p26
  3678. w25.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3679. w26 = Instance.new("Weld", p26)
  3680. w26.Name = "apart_Weld"
  3681. w26.Part0 = p26
  3682. w26.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3683. w26.Part1 = p27
  3684. w26.C1 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3685. w27 = Instance.new("Weld", p27)
  3686. w27.Name = "apart_Weld"
  3687. w27.Part0 = p27
  3688. w27.C0 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3689. w27.Part1 = p28
  3690. w27.C1 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3691. w28 = Instance.new("Weld", p28)
  3692. w28.Name = "apart_Weld"
  3693. w28.Part0 = p28
  3694. w28.C0 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3695. w28.Part1 = p29
  3696. w28.C1 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3697. w29 = Instance.new("Weld", p29)
  3698. w29.Name = "apart_Weld"
  3699. w29.Part0 = p29
  3700. w29.C0 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3701. w29.Part1 = p30
  3702. w29.C1 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3703. w30 = Instance.new("Weld", p30)
  3704. w30.Name = "apart_Weld"
  3705. w30.Part0 = p30
  3706. w30.C0 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3707. w30.Part1 = p31
  3708. w30.C1 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3709. w31 = Instance.new("Weld", p31)
  3710. w31.Name = "apart_Weld"
  3711. w31.Part0 = p31
  3712. w31.C0 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  3713. w31.Part1 = p32
  3714. w31.C1 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3715. w32 = Instance.new("Weld", p32)
  3716. w32.Name = "apart_Weld"
  3717. w32.Part0 = p32
  3718. w32.C0 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3719. w32.Part1 = p33
  3720. w32.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3721. w33 = Instance.new("Weld", p33)
  3722. w33.Name = "apart_Weld"
  3723. w33.Part0 = p33
  3724. w33.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3725. w33.Part1 = p34
  3726. w33.C1 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3727. w34 = Instance.new("Weld", p34)
  3728. w34.Name = "apart_Weld"
  3729. w34.Part0 = p34
  3730. w34.C0 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3731. w34.Part1 = p35
  3732. w34.C1 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3733. w35 = Instance.new("Weld", p35)
  3734. w35.Name = "apart_Weld"
  3735. w35.Part0 = p35
  3736. w35.C0 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  3737. w35.Part1 = p36
  3738. w35.C1 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3739. w36 = Instance.new("Weld", p36)
  3740. w36.Name = "apart_Weld"
  3741. w36.Part0 = p36
  3742. w36.C0 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3743. w36.Part1 = p37
  3744. w36.C1 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3745. w37 = Instance.new("Weld", p37)
  3746. w37.Name = "apart_Weld"
  3747. w37.Part0 = p37
  3748. w37.C0 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  3749. w37.Part1 = p38
  3750. w37.C1 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3751. w38 = Instance.new("Weld", p38)
  3752. w38.Name = "apart_Weld"
  3753. w38.Part0 = p38
  3754. w38.C0 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  3755. w38.Part1 = p39
  3756. w38.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3757. w39 = Instance.new("Weld", p39)
  3758. w39.Name = "apart_Weld"
  3759. w39.Part0 = p39
  3760. w39.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3761. w39.Part1 = p40
  3762. w39.C1 = CFrame.new(40.0052567, 3.18871641, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  3763. w40 = Instance.new("Weld", p41)
  3764. w40.Name = "apart_Weld"
  3765. w40.Part0 = p41
  3766. w40.C0 = CFrame.new(4.43938923, 39.9903679, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3767. w40.Part1 = p42
  3768. w40.C1 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3769. w41 = Instance.new("Weld", p42)
  3770. w41.Name = "apart_Weld"
  3771. w41.Part0 = p42
  3772. w41.C0 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3773. w41.Part1 = p43
  3774. w41.C1 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3775. w42 = Instance.new("Weld", p43)
  3776. w42.Name = "apart_Weld"
  3777. w42.Part0 = p43
  3778. w42.C0 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3779. w42.Part1 = p44
  3780. w42.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3781. w43 = Instance.new("Weld", p44)
  3782. w43.Name = "apart_Weld"
  3783. w43.Part0 = p44
  3784. w43.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3785. w43.Part1 = p45
  3786. w43.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3787. w44 = Instance.new("Weld", p45)
  3788. w44.Name = "apart_Weld"
  3789. w44.Part0 = p45
  3790. w44.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  3791. w44.Part1 = p46
  3792. w44.C1 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3793. w45 = Instance.new("Weld", p46)
  3794. w45.Name = "Head_Weld"
  3795. w45.Part0 = p46
  3796. w45.C0 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3797. w45.Part1 = p47
  3798. w45.C1 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3799. w46 = Instance.new("Weld", p47)
  3800. w46.Name = "apart_Weld"
  3801. w46.Part0 = p47
  3802. w46.C0 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  3803. w46.Part1 = p48
  3804. w46.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3805. w47 = Instance.new("Weld", p48)
  3806. w47.Name = "apart_Weld"
  3807. w47.Part0 = p48
  3808. w47.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3809. w47.Part1 = p49
  3810. w47.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3811. w48 = Instance.new("Weld", p49)
  3812. w48.Name = "apart_Weld"
  3813. w48.Part0 = p49
  3814. w48.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3815. w48.Part1 = p50
  3816. w48.C1 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3817. w49 = Instance.new("Weld", p50)
  3818. w49.Name = "apart_Weld"
  3819. w49.Part0 = p50
  3820. w49.C0 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3821. w49.Part1 = p51
  3822. w49.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3823. w50 = Instance.new("Weld", p51)
  3824. w50.Name = "apart_Weld"
  3825. w50.Part0 = p51
  3826. w50.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3827. w50.Part1 = p52
  3828. w50.C1 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3829. w51 = Instance.new("Weld", p52)
  3830. w51.Name = "apart_Weld"
  3831. w51.Part0 = p52
  3832. w51.C0 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3833. w51.Part1 = p53
  3834. w51.C1 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3835. w52 = Instance.new("Weld", p53)
  3836. w52.Name = "apart_Weld"
  3837. w52.Part0 = p53
  3838. w52.C0 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3839. w52.Part1 = p54
  3840. w52.C1 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
  3841. w53 = Instance.new("Weld", p54)
  3842. w53.Name = "apart_Weld"
  3843. w53.Part0 = p54
  3844. w53.C0 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
  3845. w53.Part1 = p55
  3846. w53.C1 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3847. w54 = Instance.new("Weld", p55)
  3848. w54.Name = "apart_Weld"
  3849. w54.Part0 = p55
  3850. w54.C0 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3851. w54.Part1 = p56
  3852. w54.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3853. w55 = Instance.new("Weld", p56)
  3854. w55.Name = "apart_Weld"
  3855. w55.Part0 = p56
  3856. w55.C0 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3857. w55.Part1 = p57
  3858. w55.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3859. w56 = Instance.new("Weld", p57)
  3860. w56.Name = "apart_Weld"
  3861. w56.Part0 = p57
  3862. w56.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3863. w56.Part1 = p58
  3864. w56.C1 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  3865. w57 = Instance.new("Weld", p58)
  3866. w57.Name = "apart_Weld"
  3867. w57.Part0 = p58
  3868. w57.C0 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  3869. w57.Part1 = p59
  3870. w57.C1 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3871. w58 = Instance.new("Weld", p59)
  3872. w58.Name = "apart_Weld"
  3873. w58.Part0 = p59
  3874. w58.C0 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  3875. w58.Part1 = p60
  3876. w58.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3877. w59 = Instance.new("Weld", p60)
  3878. w59.Name = "apart_Weld"
  3879. w59.Part0 = p60
  3880. w59.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3881. w59.Part1 = p61
  3882. w59.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3883. w60 = Instance.new("Weld", p61)
  3884. w60.Name = "apart_Weld"
  3885. w60.Part0 = p61
  3886. w60.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3887. w60.Part1 = p62
  3888. w60.C1 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3889. w61 = Instance.new("Weld", p62)
  3890. w61.Name = "apart_Weld"
  3891. w61.Part0 = p62
  3892. w61.C0 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3893. w61.Part1 = p63
  3894. w61.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3895. w62 = Instance.new("Weld", p63)
  3896. w62.Name = "apart_Weld"
  3897. w62.Part0 = p63
  3898. w62.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3899. w62.Part1 = p64
  3900. w62.C1 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3901. w63 = Instance.new("Weld", p64)
  3902. w63.Name = "apart_Weld"
  3903. w63.Part0 = p64
  3904. w63.C0 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3905. w63.Part1 = p65
  3906. w63.C1 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3907. w64 = Instance.new("Weld", p65)
  3908. w64.Name = "apart_Weld"
  3909. w64.Part0 = p65
  3910. w64.C0 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3911. w64.Part1 = p66
  3912. w64.C1 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3913. w65 = Instance.new("Weld", p66)
  3914. w65.Name = "apart_Weld"
  3915. w65.Part0 = p66
  3916. w65.C0 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3917. w65.Part1 = p67
  3918. w65.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3919. w66 = Instance.new("Weld", p67)
  3920. w66.Name = "apart_Weld"
  3921. w66.Part0 = p67
  3922. w66.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3923. w66.Part1 = p68
  3924. w66.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3925. w67 = Instance.new("Weld", p68)
  3926. w67.Name = "apart_Weld"
  3927. w67.Part0 = p68
  3928. w67.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3929. w67.Part1 = p69
  3930. w67.C1 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3931. w68 = Instance.new("Weld", p69)
  3932. w68.Name = "apart_Weld"
  3933. w68.Part0 = p69
  3934. w68.C0 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3935. w68.Part1 = p70
  3936. w68.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3937. w69 = Instance.new("Weld", p70)
  3938. w69.Name = "apart_Weld"
  3939. w69.Part0 = p70
  3940. w69.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3941. w69.Part1 = p71
  3942. w69.C1 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3943. w70 = Instance.new("Weld", p71)
  3944. w70.Name = "apart_Weld"
  3945. w70.Part0 = p71
  3946. w70.C0 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3947. w70.Part1 = p72
  3948. w70.C1 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3949. w71 = Instance.new("Weld", p72)
  3950. w71.Name = "apart_Weld"
  3951. w71.Part0 = p72
  3952. w71.C0 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  3953. w71.Part1 = p73
  3954. w71.C1 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3955. w72 = Instance.new("Weld", p73)
  3956. w72.Name = "apart_Weld"
  3957. w72.Part0 = p73
  3958. w72.C0 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3959. w72.Part1 = p74
  3960. w72.C1 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3961. w73 = Instance.new("Weld", p74)
  3962. w73.Name = "apart_Weld"
  3963. w73.Part0 = p74
  3964. w73.C0 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  3965. w73.Part1 = p75
  3966. w73.C1 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3967. w74 = Instance.new("Weld", p75)
  3968. w74.Name = "apart_Weld"
  3969. w74.Part0 = p75
  3970. w74.C0 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  3971. w74.Part1 = p76
  3972. w74.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3973. w75 = Instance.new("Weld", p76)
  3974. w75.Name = "apart_Weld"
  3975. w75.Part0 = p76
  3976. w75.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  3977. w75.Part1 = p77
  3978. w75.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3979. w76 = Instance.new("Weld", p77)
  3980. w76.Name = "apart_Weld"
  3981. w76.Part0 = p77
  3982. w76.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3983. w76.Part1 = p78
  3984. w76.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  3985. w77 = Instance.new("Weld", p79)
  3986. w77.Name = "apart_Weld"
  3987. w77.Part0 = p79
  3988. w77.C0 = CFrame.new(-3.82272005, -175.414932, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3989. w77.Part1 = p80
  3990. w77.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3991. w78 = Instance.new("Weld", p80)
  3992. w78.Name = "apart_Weld"
  3993. w78.Part0 = p80
  3994. w78.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  3995. w78.Part1 = p81
  3996. w78.C1 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  3997. w79 = Instance.new("Weld", p81)
  3998. w79.Name = "apart_Weld"
  3999. w79.Part0 = p81
  4000. w79.C0 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  4001. w79.Part1 = p82
  4002. w79.C1 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
  4003. w80 = Instance.new("Weld", p82)
  4004. w80.Name = "apart_Weld"
  4005. w80.Part0 = p82
  4006. w80.C0 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
  4007. w80.Part1 = p83
  4008. w80.C1 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4009. w81 = Instance.new("Weld", p83)
  4010. w81.Name = "apart_Weld"
  4011. w81.Part0 = p83
  4012. w81.C0 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4013. w81.Part1 = p84
  4014. w81.C1 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4015. w82 = Instance.new("Weld", p84)
  4016. w82.Name = "apart_Weld"
  4017. w82.Part0 = p84
  4018. w82.C0 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4019. w82.Part1 = p85
  4020. w82.C1 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  4021. w83 = Instance.new("Weld", p85)
  4022. w83.Name = "apart_Weld"
  4023. w83.Part0 = p85
  4024. w83.C0 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  4025. w83.Part1 = p86
  4026. w83.C1 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4027. w84 = Instance.new("Weld", p86)
  4028. w84.Name = "apart_Weld"
  4029. w84.Part0 = p86
  4030. w84.C0 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4031. w84.Part1 = p87
  4032. w84.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4033. w85 = Instance.new("Weld", p87)
  4034. w85.Name = "apart_Weld"
  4035. w85.Part0 = p87
  4036. w85.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4037. w85.Part1 = p88
  4038. w85.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4039. w86 = Instance.new("Weld", p88)
  4040. w86.Name = "apart_Weld"
  4041. w86.Part0 = p88
  4042. w86.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4043. w86.Part1 = p89
  4044. w86.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4045. w87 = Instance.new("Weld", p89)
  4046. w87.Name = "apart_Weld"
  4047. w87.Part0 = p89
  4048. w87.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4049. w87.Part1 = p90
  4050. w87.C1 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4051. w88 = Instance.new("Weld", p90)
  4052. w88.Name = "Right Arm_Weld"
  4053. w88.Part0 = p90
  4054. w88.C0 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4055. w88.Part1 = p91
  4056. w88.C1 = CFrame.new(-41.5, -174.519974, 3.82000184, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  4057. w89 = Instance.new("Weld", p92)
  4058. w89.Name = "Left Leg_Weld"
  4059. w89.Part0 = p92
  4060. w89.C0 = CFrame.new(-3.82272005, -172.59642, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4061. w89.Part1 = p93
  4062. w89.C1 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  4063. w90 = Instance.new("Weld", p93)
  4064. w90.Name = "apart_Weld"
  4065. w90.Part0 = p93
  4066. w90.C0 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  4067. w90.Part1 = p94
  4068. w90.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4069. w91 = Instance.new("Weld", p94)
  4070. w91.Name = "apart_Weld"
  4071. w91.Part0 = p94
  4072. w91.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4073. w91.Part1 = p95
  4074. w91.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4075. w92 = Instance.new("Weld", p95)
  4076. w92.Name = "apart_Weld"
  4077. w92.Part0 = p95
  4078. w92.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4079. w92.Part1 = p96
  4080. w92.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4081. w93 = Instance.new("Weld", p96)
  4082. w93.Name = "apart_Weld"
  4083. w93.Part0 = p96
  4084. w93.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4085. w93.Part1 = p97
  4086. w93.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4087. w94 = Instance.new("Weld", p97)
  4088. w94.Name = "apart_Weld"
  4089. w94.Part0 = p97
  4090. w94.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4091. w94.Part1 = p98
  4092. w94.C1 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  4093. w95 = Instance.new("Weld", p98)
  4094. w95.Name = "apart_Weld"
  4095. w95.Part0 = p98
  4096. w95.C0 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  4097. w95.Part1 = p99
  4098. w95.C1 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  4099. w96 = Instance.new("Weld", p99)
  4100. w96.Name = "apart_Weld"
  4101. w96.Part0 = p99
  4102. w96.C0 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  4103. w96.Part1 = p100
  4104. w96.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4105. w97 = Instance.new("Weld", p100)
  4106. w97.Name = "apart_Weld"
  4107. w97.Part0 = p100
  4108. w97.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4109. w97.Part1 = p101
  4110. w97.C1 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4111. w98 = Instance.new("Weld", p101)
  4112. w98.Name = "apart_Weld"
  4113. w98.Part0 = p101
  4114. w98.C0 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4115. w98.Part1 = p102
  4116. w98.C1 = CFrame.new(-3.82272005, -171.878983, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4117. w99 = Instance.new("Weld", p103)
  4118. w99.Name = "apart_Weld"
  4119. w99.Part0 = p103
  4120. w99.C0 = CFrame.new(-40.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  4121. w99.Part1 = p104
  4122. w99.C1 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4123. w100 = Instance.new("Weld", p104)
  4124. w100.Name = "apart_Weld"
  4125. w100.Part0 = p104
  4126. w100.C0 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4127. w100.Part1 = p105
  4128. w100.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4129. w101 = Instance.new("Weld", p105)
  4130. w101.Name = "apart_Weld"
  4131. w101.Part0 = p105
  4132. w101.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4133. w101.Part1 = p106
  4134. w101.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4135. w102 = Instance.new("Weld", p106)
  4136. w102.Name = "apart_Weld"
  4137. w102.Part0 = p106
  4138. w102.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4139. w102.Part1 = p107
  4140. w102.C1 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  4141. w103 = Instance.new("Weld", p107)
  4142. w103.Name = "apart_Weld"
  4143. w103.Part0 = p107
  4144. w103.C0 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  4145. w103.Part1 = p108
  4146. w103.C1 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  4147. w104 = Instance.new("Weld", p108)
  4148. w104.Name = "apart_Weld"
  4149. w104.Part0 = p108
  4150. w104.C0 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  4151. w104.Part1 = p109
  4152. w104.C1 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4153. w105 = Instance.new("Weld", p109)
  4154. w105.Name = "apart_Weld"
  4155. w105.Part0 = p109
  4156. w105.C0 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4157. w105.Part1 = p110
  4158. w105.C1 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4159. w106 = Instance.new("Weld", p110)
  4160. w106.Name = "apart_Weld"
  4161. w106.Part0 = p110
  4162. w106.C0 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4163. w106.Part1 = p111
  4164. w106.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4165. w107 = Instance.new("Weld", p111)
  4166. w107.Name = "apart_Weld"
  4167. w107.Part0 = p111
  4168. w107.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4169. w107.Part1 = p112
  4170. w107.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4171. w108 = Instance.new("Weld", p112)
  4172. w108.Name = "apart_Weld"
  4173. w108.Part0 = p112
  4174. w108.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4175. w108.Part1 = p113
  4176. w108.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4177. w109 = Instance.new("Weld", p114)
  4178. w109.Name = "apart_Weld"
  4179. w109.Part0 = p114
  4180. w109.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4181. w109.Part1 = p115
  4182. w109.C1 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4183. w110 = Instance.new("Weld", p115)
  4184. w110.Name = "Left Arm_Weld"
  4185. w110.Part0 = p115
  4186. w110.C0 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4187. w110.Part1 = p116
  4188. w110.C1 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  4189. w111 = Instance.new("Weld", p116)
  4190. w111.Name = "apart_Weld"
  4191. w111.Part0 = p116
  4192. w111.C0 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  4193. w111.Part1 = p117
  4194. w111.C1 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  4195. w112 = Instance.new("Weld", p117)
  4196. w112.Name = "apart_Weld"
  4197. w112.Part0 = p117
  4198. w112.C0 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  4199. w112.Part1 = p118
  4200. w112.C1 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4201. w113 = Instance.new("Weld", p118)
  4202. w113.Name = "apart_Weld"
  4203. w113.Part0 = p118
  4204. w113.C0 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4205. w113.Part1 = p119
  4206. w113.C1 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  4207. w114 = Instance.new("Weld", p119)
  4208. w114.Name = "apart_Weld"
  4209. w114.Part0 = p119
  4210. w114.C0 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  4211. w114.Part1 = p120
  4212. w114.C1 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4213. w115 = Instance.new("Weld", p120)
  4214. w115.Name = "apart_Weld"
  4215. w115.Part0 = p120
  4216. w115.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4217. w115.Part1 = p121
  4218. w115.C1 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  4219. w116 = Instance.new("Weld", p121)
  4220. w116.Name = "apart_Weld"
  4221. w116.Part0 = p121
  4222. w116.C0 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  4223. w116.Part1 = p122
  4224. w116.C1 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  4225. w117 = Instance.new("Weld", p122)
  4226. w117.Name = "apart_Weld"
  4227. w117.Part0 = p122
  4228. w117.C0 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  4229. w117.Part1 = p123
  4230. w117.C1 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4231. w118 = Instance.new("Weld", p123)
  4232. w118.Name = "apart_Weld"
  4233. w118.Part0 = p123
  4234. w118.C0 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4235. w118.Part1 = p124
  4236. w118.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4237. w119 = Instance.new("Weld", p124)
  4238. w119.Name = "apart_Weld"
  4239. w119.Part0 = p124
  4240. w119.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4241. w119.Part1 = p125
  4242. w119.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4243. w120 = Instance.new("Weld", p125)
  4244. w120.Name = "apart_Weld"
  4245. w120.Part0 = p125
  4246. w120.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4247. w120.Part1 = p126
  4248. w120.C1 = CFrame.new(-3.82272005, -174.64624, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4249. m.Parent = game:service("Workspace")
  4250. m:MakeJoints()
  4251.  
  4252. RightArm.Transparency=1
  4253. LeftArm.Transparency=1
  4254. LeftLeg.Transparency=1
  4255. RightLeg.Transparency=1
  4256. local lunacolor = BrickColor.new("Black")
  4257. local lunacolor2 = BrickColor.new("Black")
  4258. local wepcolor = BrickColor.new("Black")
  4259. local maincolor = BrickColor.new("Black")
  4260. local m = Instance.new("Model",char)
  4261. local m2 = Instance.new("Model",char)
  4262. local m3 = Instance.new("Model",char)
  4263. local mw1 = Instance.new("Model",char)
  4264. local mw2 = Instance.new("Model",char)
  4265.  
  4266. local extrawingmod1 = Instance.new("Model",char)
  4267. local extrawingmod2 = Instance.new("Model",char)
  4268.  
  4269. function CreateParta(parent,transparency,reflectance,material,brickcolor)
  4270. local p = Instance.new("Part")
  4271. p.TopSurface = 0
  4272. p.BottomSurface = 0
  4273. p.Parent = parent
  4274. p.Size = Vector3.new(0.1,0.1,0.1)
  4275. p.Transparency = transparency
  4276. p.Reflectance = reflectance
  4277. p.CanCollide = false
  4278. p.Locked = true
  4279. p.BrickColor = brickcolor
  4280. p.Material = material
  4281. return p
  4282. end
  4283.  
  4284. function CreateMesh(parent,meshtype,x1,y1,z1)
  4285. local mesh = Instance.new("SpecialMesh",parent)
  4286. mesh.MeshType = meshtype
  4287. mesh.Scale = Vector3.new(x1*10,y1*10,z1*10)
  4288. return mesh
  4289. end
  4290.  
  4291. function CreateSpecialMesh(parent,meshid,x1,y1,z1)
  4292. local mesh = Instance.new("SpecialMesh",parent)
  4293. mesh.MeshType = "FileMesh"
  4294. mesh.MeshId = meshid
  4295. mesh.Scale = Vector3.new(x1,y1,z1)
  4296. return mesh
  4297. end
  4298.  
  4299.  
  4300. function CreateSpecialGlowMesh(parent,meshid,x1,y1,z1)
  4301. local mesh = Instance.new("SpecialMesh",parent)
  4302. mesh.MeshType = "FileMesh"
  4303. mesh.MeshId = meshid
  4304. mesh.TextureId = "http://www.roblox.com/asset/?id=269748808"
  4305. mesh.Scale = Vector3.new(x1,y1,z1)
  4306. mesh.VertexColor = Vector3.new(parent.BrickColor.r, parent.BrickColor.g, parent.BrickColor.b)
  4307. return mesh
  4308. end
  4309.  
  4310. function CreateWeld(parent,part0,part1,C1X,C1Y,C1Z,C1Xa,C1Ya,C1Za,C0X,C0Y,C0Z,C0Xa,C0Ya,C0Za)
  4311. local weld = Instance.new("Weld")
  4312. weld.Parent = parent
  4313. weld.Part0 = part0
  4314. weld.Part1 = part1
  4315. weld.C1 = CFrame.new(C1X,C1Y,C1Z)*CFrame.Angles(C1Xa,C1Ya,C1Za)
  4316. weld.C0 = CFrame.new(C0X,C0Y,C0Z)*CFrame.Angles(C0Xa,C0Ya,C0Za)
  4317. return weld
  4318. end
  4319.  
  4320.  
  4321. --------------
  4322. local secondchar = Instance.new("Model",char)
  4323. local GhostCol = BrickColor.new("Dark red")
  4324. local sectors = CreateParta(secondchar,1,0,"Neon",GhostCol)
  4325. CreateMesh(sectors,"Brick",2*8,2*8,1*8)
  4326. local torsweld = CreateWeld(sectors,root,sectors,1,-1,-2,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4327.  
  4328. local seclarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  4329. CreateMesh(seclarm,"Brick",1*8,2*8,1*8)
  4330. local larmsweld = CreateWeld(seclarm,sectors,seclarm,1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4331.  
  4332. local secrarm = CreateParta(secondchar,1,0,"Neon",GhostCol)
  4333. CreateMesh(secrarm,"Brick",1*8,2*8,1*8)
  4334. local rarmsweld = CreateWeld(secrarm,sectors,secrarm,-1.5,0,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4335.  
  4336. local seclleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  4337. CreateMesh(seclleg,"Brick",1*8,2*8,1*8)
  4338. local llegsweld = CreateWeld(seclleg,sectors,seclleg,0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4339.  
  4340. local secrleg = CreateParta(secondchar,1,0,"Neon",GhostCol)
  4341. CreateMesh(secrleg,"Brick",1*8,2*8,1*8)
  4342. local rlegsweld = CreateWeld(secrleg,sectors,secrleg,-0.5,2,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4343.  
  4344. local seched = CreateParta(secondchar,1,0,"Neon",GhostCol)
  4345. CreateMesh(seched,"Brick",1*8,1*8,1*8)
  4346. local hedsweld = CreateWeld(seched,sectors,seched,0,-1.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4347. --------------
  4348. local sorb = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  4349. CreateWeld(sorb,rarm,sorb,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4350. local sorb2 = CreateParta(m,1,1,"SmoothPlastic",BrickColor.random())
  4351. CreateWeld(sorb2,larm,sorb2,0,1,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4352.  
  4353. local handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  4354. CreateMesh(handle,"Brick",0,0,0)
  4355. local handlexweld = CreateWeld(handlex,tors,handlex,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4356. local valuaring = 10
  4357. for i = 0, 49 do
  4358. valuaring = valuaring + 10
  4359. rn = CreateParta(mw2,0,0,"Neon",halocolor)
  4360. CreateMesh(rn,"Brick",0.25,0.1,0.1)
  4361. CreateWeld(rn,handlex,rn,0,1,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4362. end
  4363.  
  4364. handlex = CreateParta(mw2,1,1,"Neon",maincolor)
  4365. CreateMesh(handle,"Brick",0,0,0)
  4366. CreateWeld(handlex,tors,handlex,0,-3,-2.1,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4367. local valuaring = 10
  4368. for i = 0, 49 do
  4369. valuaring = valuaring + 10
  4370. rn = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4371. CreateMesh(rn,"Brick",0.5,0.2,0.2)
  4372. CreateWeld(rn,handlex,rn,0,2,0,math.rad(0),math.rad(0),math.rad(valuaring),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4373. end
  4374.  
  4375.  
  4376. local handle = CreateParta(m,1,1,"Neon",maincolor)
  4377. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4378. local handleweld = CreateWeld(handle,tors,handle,0,-1.5,-1.05,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4379.  
  4380. --- Left wing.
  4381.  
  4382. local lwing1 = CreateParta(m,1,1,"Neon",maincolor)
  4383. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4384. local lwing1weld = CreateWeld(lwing1,handle,lwing1,3,0,0,math.rad(5),math.rad(0),math.rad(12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4385.  
  4386. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4387. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4388. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4389. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4390. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4391. CreateWeld(wed,lwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4392. A0 = Instance.new('Attachment',wed)
  4393. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4394. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4395. CreateWeld(wed,lwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4396. A1 = Instance.new('Attachment',wed)
  4397. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4398. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4399. CreateWeld(wed,lwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4400.  
  4401. tl1 = Instance.new('Trail',wed)
  4402. tl1.Attachment0 = A0
  4403. tl1.Attachment1 = A1
  4404. --tl1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  4405. tl1.LightEmission = 1
  4406. tl1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  4407. tl1.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  4408. tl1.Lifetime = 0.6
  4409.  
  4410.  
  4411. local lwing2 = CreateParta(m,1,1,"Neon",maincolor)
  4412. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4413. local lwing2weld = CreateWeld(lwing2,handle,lwing2,4,1,0,math.rad(10),math.rad(0),math.rad(25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4414.  
  4415. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4416. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4417. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4418. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4419. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4420. CreateWeld(wed,lwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4421. A0 = Instance.new('Attachment',wed)
  4422. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4423. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4424. CreateWeld(wed,lwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4425. A1 = Instance.new('Attachment',wed)
  4426. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4427. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4428. CreateWeld(wed,lwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4429.  
  4430. tl2 = Instance.new('Trail',wed)
  4431. tl2.Attachment0 = A0
  4432. tl2.Attachment1 = A1
  4433. --tl2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  4434. tl2.LightEmission = 1
  4435. tl2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  4436. tl2.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  4437. tl2.Lifetime = 0.6
  4438.  
  4439. local lwing3 = CreateParta(m,1,1,"Neon",maincolor)
  4440. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4441. local lwing3weld = CreateWeld(lwing3,handle,lwing3,4.75,2,0,math.rad(15),math.rad(0),math.rad(37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4442.  
  4443. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4444. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4445. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4446. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4447. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4448. CreateWeld(wed,lwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4449. A0 = Instance.new('Attachment',wed)
  4450. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4451. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4452. CreateWeld(wed,lwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4453. A1 = Instance.new('Attachment',wed)
  4454. wed = CreateParta(mw1,0,0,"Neon",halocolor)
  4455. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4456. CreateWeld(wed,lwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4457.  
  4458. tl3 = Instance.new('Trail',wed)
  4459. tl3.Attachment0 = A0
  4460. tl3.Attachment1 = A1
  4461. --tl3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  4462. tl3.LightEmission = 1
  4463. tl3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  4464. tl3.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  4465. tl3.Lifetime = 0.6
  4466.  
  4467. tl1.Enabled = false
  4468. tl2.Enabled = false
  4469. tl3.Enabled = false
  4470. local lwing4 = CreateParta(m,1,1,"Neon",maincolor)
  4471. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4472. local lwing4weld = CreateWeld(lwing4,handle,lwing4,5.75,3,0,math.rad(20),math.rad(0),math.rad(50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4473.  
  4474. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4475. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4476. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4477. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4478. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4479. CreateWeld(wed,lwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4480. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4481. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4482. CreateWeld(wed,lwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4483. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4484. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4485. CreateWeld(wed,lwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4486.  
  4487. local lwing5 = CreateParta(m,1,1,"Neon",maincolor)
  4488. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4489. local lwing5weld = CreateWeld(lwing5,handle,lwing5,6.75,4,0,math.rad(25),math.rad(0),math.rad(62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4490.  
  4491. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4492. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4493. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4494. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4495. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4496. CreateWeld(wed,lwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4497. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4498. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4499. CreateWeld(wed,lwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4500. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4501. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4502. CreateWeld(wed,lwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4503.  
  4504. local lwing6 = CreateParta(m,1,1,"Neon",maincolor)
  4505. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4506. local lwing6weld = CreateWeld(lwing6,handle,lwing6,7.75,5,0,math.rad(30),math.rad(0),math.rad(75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4507.  
  4508. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4509. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4510. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4511. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4512. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4513. CreateWeld(wed,lwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4514. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4515. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4516. CreateWeld(wed,lwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4517. wed = CreateParta(extrawingmod1,0,0,"Neon",halocolor)
  4518. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4519. CreateWeld(wed,lwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4520.  
  4521. -- Right wing.
  4522.  
  4523. local rwing1 = CreateParta(m,1,1,"Neon",maincolor)
  4524. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4525. local rwing1weld = CreateWeld(rwing1,handle,rwing1,-3,0,0,math.rad(5),math.rad(0),math.rad(-12.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4526.  
  4527. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4528. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4529. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4530. A0 = Instance.new('Attachment',wed)
  4531. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4532. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4533. CreateWeld(wed,rwing1,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4534. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4535. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4536. CreateWeld(wed,rwing1,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4537. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4538. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4539. CreateWeld(wed,rwing1,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4540. A1 = Instance.new('Attachment',wed)
  4541.  
  4542. tr1 = Instance.new('Trail',wed)
  4543. tr1.Attachment0 = A0
  4544. tr1.Attachment1 = A1
  4545. --tr1.Texture = "http://www.roblox.com/asset/?id=1049219073"
  4546. tr1.LightEmission = 1
  4547. tr1.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  4548. tr1.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  4549. tr1.Lifetime = 0.6
  4550.  
  4551. local rwing2 = CreateParta(m,1,1,"Neon",maincolor)
  4552. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4553. local rwing2weld = CreateWeld(rwing2,handle,rwing2,-4,1,0,math.rad(10),math.rad(0),math.rad(-25),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4554.  
  4555. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4556. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4557. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4558. A0 = Instance.new('Attachment',wed)
  4559. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4560. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4561. CreateWeld(wed,rwing2,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4562. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4563. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4564. CreateWeld(wed,rwing2,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4565. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4566. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4567. CreateWeld(wed,rwing2,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4568. A1 = Instance.new('Attachment',wed)
  4569.  
  4570. tr2 = Instance.new('Trail',wed)
  4571. tr2.Attachment0 = A0
  4572. tr2.Attachment1 = A1
  4573. --tr2.Texture = "http://www.roblox.com/asset/?id=1049219073"
  4574. tr2.LightEmission = 1
  4575. tr2.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  4576. tr2.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  4577. tr2.Lifetime = 0.6
  4578.  
  4579. local rwing3 = CreateParta(m,1,1,"Neon",maincolor)
  4580. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4581. local rwing3weld = CreateWeld(rwing3,handle,rwing3,-4.75,2,0,math.rad(15),math.rad(0),math.rad(-37.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4582.  
  4583. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4584. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4585. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4586. A0 = Instance.new('Attachment',wed)
  4587. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4588. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4589. CreateWeld(wed,rwing3,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4590. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4591. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4592. CreateWeld(wed,rwing3,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4593. wed = CreateParta(mw2,0,0,"Neon",halocolor)
  4594. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4595. CreateWeld(wed,rwing3,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4596. A1 = Instance.new('Attachment',wed)
  4597.  
  4598. tr3 = Instance.new('Trail',wed)
  4599. tr3.Attachment0 = A0
  4600. tr3.Attachment1 = A1
  4601. --tr3.Texture = "http://www.roblox.com/asset/?id=1049219073"
  4602. tr3.LightEmission = 1
  4603. tr3.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0, 0),NumberSequenceKeypoint.new(1, 1)})
  4604. tr3.Color = ColorSequence.new(BrickColor.new('Dark red').Color)
  4605. tr3.Lifetime = 0.6
  4606.  
  4607.  
  4608. local rwing4 = CreateParta(m,1,1,"Neon",maincolor)
  4609. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4610. local rwing4weld = CreateWeld(rwing4,handle,rwing4,-5.75,3,0,math.rad(20),math.rad(0),math.rad(-50),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4611.  
  4612. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4613. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4614. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4615. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4616. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4617. CreateWeld(wed,rwing4,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4618. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4619. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4620. CreateWeld(wed,rwing4,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4621. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4622. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4623. CreateWeld(wed,rwing4,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4624.  
  4625. local rwing5 = CreateParta(m,1,1,"Neon",maincolor)
  4626. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4627. local rwing5weld = CreateWeld(rwing5,handle,rwing5,-6.75,4,0,math.rad(25),math.rad(0),math.rad(-62.5),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4628.  
  4629. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4630. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4631. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4632. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4633. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4634. CreateWeld(wed,rwing5,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4635. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4636. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4637. CreateWeld(wed,rwing5,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4638. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4639. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4640. CreateWeld(wed,rwing5,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4641.  
  4642. local rwing6 = CreateParta(m,1,1,"Neon",maincolor)
  4643. CreateMesh(handle,"Brick",0.5,0.5,0.5)
  4644. local rwing6weld = CreateWeld(rwing6,handle,rwing6,-7.75,3,0,math.rad(30),math.rad(0),math.rad(-75),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4645.  
  4646. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4647. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4648. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4649. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4650. CreateMesh(wed,"Wedge",0.05,0.5,0.5)
  4651. CreateWeld(wed,rwing6,wed,0,0,0.25,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4652. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4653. CreateMesh(wed,"Wedge",0.05,0.5,3)
  4654. CreateWeld(wed,rwing6,wed,0,-0.25,1.75,math.rad(0),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4655. wed = CreateParta(extrawingmod2,0,0,"Neon",halocolor)
  4656. CreateMesh(wed,"Wedge",0.05,3,0.5)
  4657. CreateWeld(wed,rwing6,wed,0,-1.75,0.25,math.rad(90),math.rad(90),math.rad(90),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4658.  
  4659. ---- HERES THE RING
  4660.  
  4661.  
  4662. --[[ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  4663. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  4664. CreateWeld(ran,larm,ran,0,0.15,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4665. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4666. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  4667. CreateWeld(ran,larm,ran,0,0.155,0,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4668. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4669. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  4670. CreateWeld(ran,larm,ran,0,0.155,-0.025,math.rad(0),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4671.  
  4672.  
  4673. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4674. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  4675. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4676.  
  4677. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4678. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  4679. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4680.  
  4681.  
  4682.  
  4683. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  4684. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  4685. CreateWeld(gan,larm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4686.  
  4687. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  4688. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  4689. CreateWeld(gan,larm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4690.  
  4691. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  4692. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  4693. CreateWeld(gane,larm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4694.  
  4695. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4696. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  4697. CreateWeld(star,larm,star,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4698. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  4699. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  4700. CreateWeld(starl,larm,starl,0,0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4701.  
  4702. --- second ring
  4703.  
  4704. ran = CreateParta(m2,0,0,"SmoothPlastic",wepcolor)
  4705. CreateMesh(ran,"Wedge",1.02,1.02,1.02)
  4706. CreateWeld(ran,rarm,ran,0,0.15,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4707. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4708. CreateMesh(ran,"Wedge",0.9,0.9,1.025)
  4709. CreateWeld(ran,rarm,ran,0,0.155,0,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4710. ran = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4711. CreateMesh(ran,"Wedge",1.025,0.9,0.9)
  4712. CreateWeld(ran,rarm,ran,0,0.155,-0.025,math.rad(0),math.rad(-90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4713.  
  4714. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4715. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  4716. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4717.  
  4718. gan = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4719. CreateMesh(gan,"Brick",1.075,0.1,1.075)
  4720. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4721.  
  4722.  
  4723.  
  4724. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  4725. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  4726. CreateWeld(gan,rarm,gan,0,0.5,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4727.  
  4728. gan = CreateParta(m2,0,0,"Neon",halocolor2)
  4729. CreateMesh(gan,"Brick",1.095,0.035,1.095)
  4730. CreateWeld(gan,rarm,gan,0,0.75,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4731.  
  4732. gane = CreateParta(m3,0,0,"SmoothPlastic",lunacolor2)
  4733. CreateMesh(gane,"Brick",1.0625,0.2,1.0625)
  4734. CreateWeld(gane,rarm,gane,0,0.6,0,math.rad(0),math.rad(0),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4735.  
  4736. star = CreateParta(m,0,0,"SmoothPlastic",wepcolor)
  4737. CreateSpecialMesh(star,"http://www.roblox.com/asset/?id=45428961",2.5,2.5,2.5)
  4738. CreateWeld(star,rarm,star,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))
  4739. starl = CreateParta(m3,0,0,"SmoothPlastic",starcolor)
  4740. CreateSpecialMesh(starl,"http://www.roblox.com/asset/?id=45428961",1.95,2.55,1.95)
  4741. CreateWeld(starl,rarm,starl,0,-0.475,0.6,math.rad(90),math.rad(90),math.rad(0),0,0,0,math.rad(0),math.rad(0),math.rad(0))]]--
  4742.  
  4743.  
  4744.  
  4745. for i, v in pairs(m:GetChildren()) do
  4746. if v:IsA("Part") then
  4747. v.BrickColor = BrickColor.new("Black")
  4748. v.Material = "Glass"
  4749. end
  4750. end
  4751. for i, v in pairs(m2:GetChildren()) do
  4752. if v:IsA("Part") then
  4753. v.BrickColor = BrickColor.new("Dark red")
  4754. v.Material = "Granite"
  4755. end
  4756. end
  4757. for i, v in pairs(m3:GetChildren()) do
  4758. if v:IsA("Part") then
  4759. v.BrickColor = BrickColor.new("Dark red")
  4760. v.Material = "Neon"
  4761. end
  4762. end
  4763. for i, v in pairs(mw2:GetChildren()) do
  4764. if v:IsA("Part") then
  4765. v.BrickColor = BrickColor.new("Dark red")
  4766. v.Material = "Neon"
  4767. end
  4768. end
  4769. for i, v in pairs(mw1:GetChildren()) do
  4770. if v:IsA("Part") then
  4771. v.Transparency = 1
  4772. v.BrickColor = BrickColor.new("Dark red")
  4773. v.Material = "Neon"
  4774. end
  4775. end
  4776. for i, v in pairs(extrawingmod1:GetChildren()) do
  4777. if v:IsA("Part") then
  4778. v.Transparency = 1
  4779. v.BrickColor = BrickColor.new("Dark red")
  4780. v.Material = "Neon"
  4781. end
  4782. end
  4783. for i, v in pairs(extrawingmod2:GetChildren()) do
  4784. if v:IsA("Part") then
  4785. v.Transparency = 1
  4786. v.BrickColor = BrickColor.new("Dark red")
  4787. v.Material = "Neon"
  4788. end
  4789. end
  4790. local MAINRUINCOLOR = BrickColor.new("Black")
  4791. ------
  4792. --Thanks for using Build2Script Plugin by jarredbcv!
  4793. local player = "LocalPlayer"
  4794. local Character = game.Players[player].Character
  4795. local Torso = Character.Torso
  4796. local LeftArm = Character["Left Arm"]
  4797. local RightArm = Character["Right Arm"]
  4798. local LeftLeg = Character["Left Leg"]
  4799. local RightLeg = Character["Right Leg"]
  4800. local Head = Character.Head
  4801. local RootPart = Character.HumanoidRootPart
  4802.  
  4803. local m = Instance.new("Model")
  4804. m.Name = "VTX"
  4805. --[[m1 = Instance.new("Model")
  4806. m1.Name = "Torso"
  4807. m1.Parent = m
  4808. m2 = Instance.new("Model")
  4809. m2.Name = "Head"
  4810. m2.Parent = m
  4811. m3 = Instance.new("Model")
  4812. m3.Name = "RightArm"
  4813. m3.Parent = m
  4814. m4 = Instance.new("Model")
  4815. m4.Name = "LeftLeg"
  4816. m4.Parent = m
  4817. m5 = Instance.new("Model")
  4818. m5.Name = "RightLeg"
  4819. m5.Parent = m
  4820. m6 = Instance.new("Model")
  4821. m6.Name = "LeftArm"
  4822. m6.Parent = m--]]
  4823. p1 = Instance.new("Part", m)
  4824. p1.BrickColor = BrickColor.new("Black")
  4825. p1.Material = Enum.Material.SmoothPlastic
  4826. p1.Reflectance = 0.5
  4827. p1.Name = "DiamondMesh"
  4828. p1.CFrame = CFrame.new(4.43766785, 155.454346, 39.9999847, -4.37113883e-008, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -1, -4.3159529e-005, -4.37113883e-008)
  4829. p1.CanCollide = false
  4830. p1.FormFactor = Enum.FormFactor.Symmetric
  4831. p1.Elasticity = 0
  4832. p1.Size = Vector3.new(0.512455523, 0.512455463, 0.512455463)
  4833. b1 = Instance.new("SpecialMesh", p1)
  4834. b1.MeshId = "http://www.roblox.com/Asset/?id=9756362"
  4835. b1.TextureId = ""
  4836. b1.MeshType = Enum.MeshType.FileMesh
  4837. b1.Name = "Mesh"
  4838. b1.Scale = Vector3.new(0.512455523, 0.230604947, 0.102491096)
  4839. --[[p2 = Instance.new("Part", m)
  4840. p2.BrickColor = BrickColor.new("Black")
  4841. p2.Name = "Torso"
  4842. p2.CFrame = CFrame.new(3.81999993, 156.276108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  4843. p2.CanCollide = false
  4844. p2.FormFactor = Enum.FormFactor.Symmetric
  4845. p2.Size = Vector3.new(2, 2, 1)
  4846. p2.BottomSurface = Enum.SurfaceType.Smooth
  4847. p2.TopSurface = Enum.SurfaceType.Smooth--]]
  4848. p2 = Torso
  4849. p3 = Instance.new("Part", m)
  4850. p3.BrickColor = BrickColor.new("Black")
  4851. p3.Material = Enum.Material.SmoothPlastic
  4852. p3.Name = "apart"
  4853. p3.CFrame = CFrame.new(3.18215108, 156.94046, 39.948761, 3.0473866e-005, -1, -3.05175763e-005, -3.05603571e-005, -3.05185094e-005, 1, -1, -3.04729328e-005, -3.05612884e-005)
  4854. p3.CanCollide = false
  4855. p3.FormFactor = Enum.FormFactor.Custom
  4856. p3.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  4857. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4858. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4859. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4860. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4861. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4862. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4863. b2 = Instance.new("SpecialMesh", p3)
  4864. b2.MeshType = Enum.MeshType.Brick
  4865. b2.Name = "Mesh"
  4866. b2.Scale = Vector3.new(1, 1.01999998, 0.5)
  4867. p4 = Instance.new("Part", m)
  4868. p4.BrickColor = BrickColor.new("Dark red")
  4869. p4.Material = Enum.Material.Neon
  4870. p4.Name = "apart"
  4871. p4.CFrame = CFrame.new(4.59140301, 156.658615, 39.9999924, -1, 4.30663385e-005, 4.43833414e-010, 1.85536919e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  4872. p4.CanCollide = false
  4873. p4.FormFactor = Enum.FormFactor.Custom
  4874. p4.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  4875. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4876. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4877. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4878. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4879. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4880. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4881. b3 = Instance.new("SpecialMesh", p4)
  4882. b3.MeshType = Enum.MeshType.Cylinder
  4883. b3.Name = "Mesh"
  4884. b3.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  4885. p5 = Instance.new("Part", m)
  4886. p5.BrickColor = BrickColor.new("Black")
  4887. p5.Material = Enum.Material.SmoothPlastic
  4888. p5.Name = "apart"
  4889. p5.CFrame = CFrame.new(4.28393078, 155.428711, 39.9999886, -4.37102727e-008, 2.75157674e-012, 1, -4.3159529e-005, 1, -1.96809236e-012, -1, -4.3159529e-005, -4.37139782e-008)
  4890. p5.CanCollide = false
  4891. p5.FormFactor = Enum.FormFactor.Custom
  4892. p5.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  4893. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4894. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4895. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4896. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4897. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4898. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4899. b4 = Instance.new("SpecialMesh", p5)
  4900. b4.MeshType = Enum.MeshType.Cylinder
  4901. b4.Name = "Mesh"
  4902. b4.Scale = Vector3.new(0.417481065, 1, 1)
  4903. p6 = Instance.new("Part", m)
  4904. p6.BrickColor = BrickColor.new("Black")
  4905. p6.Name = "apart"
  4906. p6.CFrame = CFrame.new(4.59140301, 157.171066, 39.9999886, -1, 4.30663385e-005, 4.43833775e-010, 1.85536952e-009, 5.3449472e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  4907. p6.CanCollide = false
  4908. p6.FormFactor = Enum.FormFactor.Custom
  4909. p6.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  4910. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4911. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4912. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4913. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4914. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4915. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4916. b5 = Instance.new("SpecialMesh", p6)
  4917. b5.MeshType = Enum.MeshType.Cylinder
  4918. b5.Name = "Mesh"
  4919. b5.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  4920. p7 = Instance.new("Part", m)
  4921. p7.BrickColor = BrickColor.new("Black")
  4922. p7.Material = Enum.Material.Neon
  4923. p7.Name = "apart"
  4924. p7.CFrame = CFrame.new(4.07894754, 156.453629, 39.974369, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
  4925. p7.CanCollide = false
  4926. p7.FormFactor = Enum.FormFactor.Custom
  4927. p7.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  4928. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4929. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4930. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4931. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4932. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4933. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4934. b6 = Instance.new("SpecialMesh", p7)
  4935. b6.MeshType = Enum.MeshType.Brick
  4936. b6.Name = "Mesh"
  4937. b6.Scale = Vector3.new(1.04999995, 0.899999976, 0.25)
  4938. p8 = Instance.new("Part", m)
  4939. p8.BrickColor = BrickColor.new("Black")
  4940. p8.Material = Enum.Material.SmoothPlastic
  4941. p8.Name = "apart"
  4942. p8.CFrame = CFrame.new(4.38642168, 155.428711, 39.9999886, 1, 2.75143797e-012, -2.37226807e-014, -8.16291479e-014, 1, 0, -3.6618486e-012, 0, 1)
  4943. p8.CanCollide = false
  4944. p8.FormFactor = Enum.FormFactor.Custom
  4945. p8.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  4946. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4947. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4948. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4949. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4950. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4951. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4952. b7 = Instance.new("SpecialMesh", p8)
  4953. b7.MeshType = Enum.MeshType.Cylinder
  4954. b7.Name = "Mesh"
  4955. b7.Scale = Vector3.new(0.417481065, 1, 1)
  4956. p9 = Instance.new("Part", m)
  4957. p9.BrickColor = BrickColor.new("Dark red")
  4958. p9.Material = Enum.Material.Neon
  4959. p9.Name = "apart"
  4960. p9.CFrame = CFrame.new(4.59140301, 156.914856, 39.9999886, -1, 9.14653137e-005, 3.05217691e-005, 9.14681077e-005, 1, 9.14653137e-005, -3.05133999e-005, 9.14681077e-005, -1)
  4961. p9.CanCollide = false
  4962. p9.FormFactor = Enum.FormFactor.Custom
  4963. p9.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  4964. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4965. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4966. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4967. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4968. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4969. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4970. b8 = Instance.new("SpecialMesh", p9)
  4971. b8.MeshType = Enum.MeshType.Brick
  4972. b8.Name = "Mesh"
  4973. b8.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  4974. p10 = Instance.new("Part", m)
  4975. p10.BrickColor = BrickColor.new("Black")
  4976. p10.Material = Enum.Material.SmoothPlastic
  4977. p10.Name = "apart"
  4978. p10.CFrame = CFrame.new(2.66969562, 157.811615, 40.8967972, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  4979. p10.CanCollide = false
  4980. p10.FormFactor = Enum.FormFactor.Custom
  4981. p10.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  4982. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4983. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4984. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4985. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4986. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4987. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4988. b9 = Instance.new("SpecialMesh", p10)
  4989. b9.MeshType = Enum.MeshType.Brick
  4990. b9.Name = "Mesh"
  4991. b9.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  4992. p11 = Instance.new("Part", m)
  4993. p11.BrickColor = BrickColor.new("Dark red")
  4994. p11.Material = Enum.Material.Neon
  4995. p11.Name = "apart"
  4996. p11.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032066, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  4997. p11.CanCollide = false
  4998. p11.FormFactor = Enum.FormFactor.Custom
  4999. p11.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  5000. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5001. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5002. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5003. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5004. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5005. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5006. b10 = Instance.new("SpecialMesh", p11)
  5007. b10.MeshType = Enum.MeshType.Brick
  5008. b10.Name = "Mesh"
  5009. b10.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  5010. p12 = Instance.new("Part", m)
  5011. p12.BrickColor = BrickColor.new("Black")
  5012. p12.Material = Enum.Material.SmoothPlastic
  5013. p12.Name = "apart"
  5014. p12.CFrame = CFrame.new(2.66969562, 157.811615, 39.1032104, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738642e-005)
  5015. p12.CanCollide = false
  5016. p12.FormFactor = Enum.FormFactor.Custom
  5017. p12.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  5018. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5019. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5020. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5021. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5023. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5024. b11 = Instance.new("SpecialMesh", p12)
  5025. b11.MeshType = Enum.MeshType.Brick
  5026. b11.Name = "Mesh"
  5027. b11.Scale = Vector3.new(0.5, 1.00999999, 1.00999999)
  5028. p13 = Instance.new("Part", m)
  5029. p13.BrickColor = BrickColor.new("Dark red")
  5030. p13.Material = Enum.Material.Neon
  5031. p13.Name = "apart"
  5032. p13.CFrame = CFrame.new(4.2839303, 155.428711, 40, -4.37154632e-008, -3.63797881e-012, 1, -4.31595254e-005, 1, 0, -1, -4.3159529e-005, -4.37144365e-008)
  5033. p13.CanCollide = false
  5034. p13.FormFactor = Enum.FormFactor.Custom
  5035. p13.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  5036. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5037. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5038. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5039. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5040. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5041. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5042. b12 = Instance.new("SpecialMesh", p13)
  5043. b12.MeshType = Enum.MeshType.Cylinder
  5044. b12.Name = "Mesh"
  5045. b12.Scale = Vector3.new(0.208740532, 1.00999999, 1.00999999)
  5046. p14 = Instance.new("Part", m)
  5047. p14.BrickColor = BrickColor.new("Black")
  5048. p14.Material = Enum.Material.SmoothPlastic
  5049. p14.Name = "apart"
  5050. p14.CFrame = CFrame.new(3.82271981, 155.428711, 40, 1, -3.63780295e-012, 4.07496259e-012, 1.88656274e-012, 1, -3.63797881e-012, -3.04822834e-012, 8.24700363e-020, 1)
  5051. p14.CanCollide = false
  5052. p14.FormFactor = Enum.FormFactor.Custom
  5053. p14.Size = Vector3.new(1.02491105, 0.245498881, 2.04982185)
  5054. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5055. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5056. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5057. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5058. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5059. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5060. b13 = Instance.new("SpecialMesh", p14)
  5061. b13.MeshType = Enum.MeshType.Brick
  5062. b13.Name = "Mesh"
  5063. b13.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  5064. p15 = Instance.new("Part", m)
  5065. p15.BrickColor = BrickColor.new("Dark red")
  5066. p15.Material = Enum.Material.Neon
  5067. p15.Name = "apart"
  5068. p15.CFrame = CFrame.new(4.59140301, 156.914841, 39.7437744, -1, 4.30663349e-005, 4.50222831e-010, 1.85340143e-009, 5.34494757e-005, -1, -4.30663349e-005, -1, -5.3449472e-005)
  5069. p15.CanCollide = false
  5070. p15.FormFactor = Enum.FormFactor.Custom
  5071. p15.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  5072. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5073. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5074. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5075. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5076. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5077. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5078. b14 = Instance.new("SpecialMesh", p15)
  5079. b14.MeshType = Enum.MeshType.Cylinder
  5080. b14.Name = "Mesh"
  5081. b14.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  5082. p16 = Instance.new("Part", m)
  5083. p16.BrickColor = BrickColor.new("Dark red")
  5084. p16.Material = Enum.Material.Neon
  5085. p16.Name = "apart"
  5086. p16.CFrame = CFrame.new(2.66969585, 157.811615, 40.8968086, -3.05612921e-005, 1, -3.05175745e-005, -3.04729328e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738605e-005)
  5087. p16.CanCollide = false
  5088. p16.FormFactor = Enum.FormFactor.Custom
  5089. p16.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  5090. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5091. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5092. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5093. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5094. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5095. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5096. b15 = Instance.new("SpecialMesh", p16)
  5097. b15.MeshType = Enum.MeshType.Brick
  5098. b15.Name = "Mesh"
  5099. b15.Scale = Vector3.new(0.25, 1.01999998, 1.01999998)
  5100. p17 = Instance.new("Part", m)
  5101. p17.BrickColor = BrickColor.new("Black")
  5102. p17.Material = Enum.Material.SmoothPlastic
  5103. p17.Name = "apart"
  5104. p17.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  5105. p17.CanCollide = false
  5106. p17.FormFactor = Enum.FormFactor.Custom
  5107. p17.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  5108. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5109. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5110. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5111. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5112. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5113. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5114. b16 = Instance.new("SpecialMesh", p17)
  5115. b16.MeshType = Enum.MeshType.Cylinder
  5116. b16.Name = "Mesh"
  5117. b16.Scale = Vector3.new(0.417480975, 1, 1)
  5118. p18 = Instance.new("Part", m)
  5119. p18.BrickColor = BrickColor.new("Dark red")
  5120. p18.Material = Enum.Material.Neon
  5121. p18.Name = "apart"
  5122. p18.CFrame = CFrame.new(4.59140301, 156.914825, 40.2562294, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  5123. p18.CanCollide = false
  5124. p18.FormFactor = Enum.FormFactor.Custom
  5125. p18.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  5126. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5127. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5128. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5129. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5130. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5131. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5132. b17 = Instance.new("SpecialMesh", p18)
  5133. b17.MeshType = Enum.MeshType.Cylinder
  5134. b17.Name = "Mesh"
  5135. b17.Scale = Vector3.new(0.421655804, 0.25, 0.25)
  5136. p19 = Instance.new("Part", m)
  5137. p19.BrickColor = BrickColor.new("Dark red")
  5138. p19.Material = Enum.Material.Neon
  5139. p19.Name = "apart"
  5140. p19.CFrame = CFrame.new(4.59140301, 156.914825, 40.0000038, -1, 4.30663349e-005, 4.51109372e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663349e-005, -1, -5.34494793e-005)
  5141. p19.CanCollide = false
  5142. p19.FormFactor = Enum.FormFactor.Custom
  5143. p19.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  5144. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5145. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5146. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5147. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5148. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5149. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5150. b18 = Instance.new("SpecialMesh", p19)
  5151. b18.MeshType = Enum.MeshType.Brick
  5152. b18.Name = "Mesh"
  5153. b18.Scale = Vector3.new(0.421655804, 0.5, 0.150000006)
  5154. p20 = Instance.new("Part", m)
  5155. p20.BrickColor = BrickColor.new("Black")
  5156. p20.Material = Enum.Material.SmoothPlastic
  5157. p20.Name = "apart"
  5158. p20.CFrame = CFrame.new(4.46329021, 156.914825, 40.0000191, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
  5159. p20.CanCollide = false
  5160. p20.FormFactor = Enum.FormFactor.Custom
  5161. p20.Size = Vector3.new(2.04982209, 0.256227732, 1.02491093)
  5162. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5163. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5166. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5167. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5168. b19 = Instance.new("SpecialMesh", p20)
  5169. b19.MeshType = Enum.MeshType.Torso
  5170. b19.Name = "Mesh"
  5171. p21 = Instance.new("Part", m)
  5172. p21.BrickColor = BrickColor.new("Black")
  5173. p21.Material = Enum.Material.SmoothPlastic
  5174. p21.Name = "apart"
  5175. p21.CFrame = CFrame.new(4.07894802, 156.453613, 39.9743843, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
  5176. p21.CanCollide = false
  5177. p21.FormFactor = Enum.FormFactor.Custom
  5178. p21.Size = Vector3.new(0.512455523, 1.94733071, 0.768683136)
  5179. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5180. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5181. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5182. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5183. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5184. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5185. b20 = Instance.new("SpecialMesh", p21)
  5186. b20.MeshType = Enum.MeshType.Brick
  5187. b20.Name = "Mesh"
  5188. b20.Scale = Vector3.new(1.03999996, 1.00999999, 1.00999999)
  5189. p22 = Instance.new("Part", m)
  5190. p22.BrickColor = BrickColor.new("Dark red")
  5191. p22.Material = Enum.Material.Neon
  5192. p22.Name = "apart"
  5193. p22.CFrame = CFrame.new(3.18215108, 156.940445, 39.9487801, 3.04738605e-005, -1, -3.05175818e-005, -3.05603644e-005, -3.05185094e-005, 1, -1, -3.0472931e-005, -3.05612739e-005)
  5194. p22.CanCollide = false
  5195. p22.FormFactor = Enum.FormFactor.Custom
  5196. p22.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  5197. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5198. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5199. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5200. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5201. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5202. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5203. b21 = Instance.new("SpecialMesh", p22)
  5204. b21.MeshType = Enum.MeshType.Brick
  5205. b21.Name = "Mesh"
  5206. b21.Scale = Vector3.new(1, 1.02999997, 0.25)
  5207. p23 = Instance.new("Part", m)
  5208. p23.BrickColor = BrickColor.new("Black")
  5209. p23.Material = Enum.Material.SmoothPlastic
  5210. p23.Name = "apart"
  5211. p23.CFrame = CFrame.new(3.82272005, 156.402344, 40.0000038, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  5212. p23.CanCollide = false
  5213. p23.FormFactor = Enum.FormFactor.Custom
  5214. p23.Size = Vector3.new(1.02491105, 2.04982185, 2.04982185)
  5215. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5217. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5218. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5219. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5220. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5221. p24 = Instance.new("Part", m)
  5222. p24.BrickColor = BrickColor.new("Black")
  5223. p24.Material = Enum.Material.SmoothPlastic
  5224. p24.Name = "apart"
  5225. p24.CFrame = CFrame.new(3.82272005, 155.172455, 39.4875526, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  5226. p24.CanCollide = false
  5227. p24.FormFactor = Enum.FormFactor.Custom
  5228. p24.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  5229. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5230. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5231. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5232. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5233. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5234. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5235. b22 = Instance.new("SpecialMesh", p24)
  5236. b22.MeshType = Enum.MeshType.Brick
  5237. b22.Name = "Mesh"
  5238. b22.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  5239. p25 = Instance.new("Part", m)
  5240. p25.BrickColor = BrickColor.new("Black")
  5241. p25.Material = Enum.Material.SmoothPlastic
  5242. p25.Name = "apart"
  5243. p25.CFrame = CFrame.new(3.82272005, 155.172455, 40.512455, 1, -3.63797881e-012, 4.97202279e-012, 0, 1, 7.27595761e-012, -2.30448993e-012, 1.45519152e-011, 1)
  5244. p25.CanCollide = false
  5245. p25.FormFactor = Enum.FormFactor.Custom
  5246. p25.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  5247. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5248. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5249. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5250. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5251. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5252. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5253. b23 = Instance.new("SpecialMesh", p25)
  5254. b23.MeshType = Enum.MeshType.Brick
  5255. b23.Name = "Mesh"
  5256. b23.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  5257. p26 = Instance.new("Part", m)
  5258. p26.BrickColor = BrickColor.new("Black")
  5259. p26.Material = Enum.Material.SmoothPlastic
  5260. p26.Name = "apart"
  5261. p26.CFrame = CFrame.new(2.66969609, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738514e-005)
  5262. p26.CanCollide = false
  5263. p26.FormFactor = Enum.FormFactor.Custom
  5264. p26.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  5265. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5266. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5267. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5268. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5269. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5270. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5271. b24 = Instance.new("SpecialMesh", p26)
  5272. b24.MeshType = Enum.MeshType.Brick
  5273. b24.Name = "Mesh"
  5274. p27 = Instance.new("Part", m)
  5275. p27.BrickColor = BrickColor.new("Black")
  5276. p27.Material = Enum.Material.SmoothPlastic
  5277. p27.Name = "apart"
  5278. p27.CFrame = CFrame.new(3.82269621, 157.4785, 40.0000038, 5.34812571e-005, -1, -4.31585941e-005, 1, 5.34812607e-005, 1.38243195e-009, 9.4587449e-010, -4.31585941e-005, 1)
  5279. p27.CanCollide = false
  5280. p27.FormFactor = Enum.FormFactor.Custom
  5281. p27.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  5282. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5283. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5284. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5285. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5286. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5287. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5288. b25 = Instance.new("SpecialMesh", p27)
  5289. b25.MeshType = Enum.MeshType.Cylinder
  5290. b25.Name = "Mesh"
  5291. b25.Scale = Vector3.new(0.417481065, 1, 1)
  5292. p28 = Instance.new("Part", m)
  5293. p28.BrickColor = BrickColor.new("Black")
  5294. p28.Material = Enum.Material.SmoothPlastic
  5295. p28.Name = "apart"
  5296. p28.CFrame = CFrame.new(3.18215108, 157.8116, 39.1032181, -3.05612921e-005, 1, -3.05175745e-005, -3.04729401e-005, -3.05185094e-005, -1, -1, -3.05603608e-005, 3.04738533e-005)
  5297. p28.CanCollide = false
  5298. p28.FormFactor = Enum.FormFactor.Custom
  5299. p28.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  5300. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5301. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5302. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5303. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5304. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5305. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5306. b26 = Instance.new("SpecialMesh", p28)
  5307. b26.MeshType = Enum.MeshType.Wedge
  5308. b26.Name = "Mesh"
  5309. p29 = Instance.new("Part", m)
  5310. p29.BrickColor = BrickColor.new("Black")
  5311. p29.Material = Enum.Material.SmoothPlastic
  5312. p29.Name = "apart"
  5313. p29.CFrame = CFrame.new(3.82272005, 156.556107, 40.0000076, 1, -3.63797881e-012, 4.9720783e-012, 0, 1, 7.27595761e-012, -2.30360175e-012, 1.27329258e-011, 1)
  5314. p29.CanCollide = false
  5315. p29.FormFactor = Enum.FormFactor.Custom
  5316. p29.Size = Vector3.new(1.02491105, 1.74234843, 1.84483957)
  5317. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5318. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5319. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5320. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5321. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5322. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5323. b27 = Instance.new("SpecialMesh", p29)
  5324. b27.MeshType = Enum.MeshType.Brick
  5325. b27.Name = "Mesh"
  5326. b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  5327. p30 = Instance.new("Part", m)
  5328. p30.BrickColor = BrickColor.new("Black")
  5329. p30.Material = Enum.Material.SmoothPlastic
  5330. p30.Name = "apart"
  5331. p30.CFrame = CFrame.new(2.92592335, 156.914825, 39.1032219, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
  5332. p30.CanCollide = false
  5333. p30.FormFactor = Enum.FormFactor.Custom
  5334. p30.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  5335. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5336. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5337. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5338. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5339. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5340. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5341. b28 = Instance.new("SpecialMesh", p30)
  5342. b28.MeshType = Enum.MeshType.Wedge
  5343. b28.Name = "Mesh"
  5344. p31 = Instance.new("Part", m)
  5345. p31.BrickColor = BrickColor.new("Black")
  5346. p31.Material = Enum.Material.SmoothPlastic
  5347. p31.Name = "apart"
  5348. p31.CFrame = CFrame.new(2.92592359, 156.91481, 40.8968201, -0.000152631605, -1, -3.05091999e-005, 6.0986782e-005, -3.05185058e-005, 1, -1, 0.000152629742, 6.09914605e-005)
  5349. p31.CanCollide = false
  5350. p31.FormFactor = Enum.FormFactor.Custom
  5351. p31.Size = Vector3.new(0.256227762, 0.768683195, 1.02491093)
  5352. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5353. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5354. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5355. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5356. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5357. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5358. b29 = Instance.new("SpecialMesh", p31)
  5359. b29.MeshType = Enum.MeshType.Wedge
  5360. b29.Name = "Mesh"
  5361. p32 = Instance.new("Part", m)
  5362. p32.BrickColor = BrickColor.new("Black")
  5363. p32.Material = Enum.Material.SmoothPlastic
  5364. p32.Name = "apart"
  5365. p32.CFrame = CFrame.new(3.82272077, 156.556091, 40.9736748, 1, 3.05171161e-005, 3.05180401e-005, 3.05180401e-005, -1, -3.04301611e-005, 3.05171125e-005, 3.04310706e-005, -1)
  5366. p32.CanCollide = false
  5367. p32.FormFactor = Enum.FormFactor.Custom
  5368. p32.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  5369. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5370. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5371. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5372. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5373. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5374. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5375. b30 = Instance.new("SpecialMesh", p32)
  5376. b30.MeshType = Enum.MeshType.Wedge
  5377. b30.Name = "Mesh"
  5378. b30.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  5379. p33 = Instance.new("Part", m)
  5380. p33.BrickColor = BrickColor.new("Black")
  5381. p33.Material = Enum.Material.SmoothPlastic
  5382. p33.Name = "apart"
  5383. p33.CFrame = CFrame.new(2.66969681, 157.8116, 40.8968201, -3.05612957e-005, 1, -3.05175763e-005, -3.04729383e-005, -3.05185094e-005, -1, -1, -3.05603571e-005, 3.04738496e-005)
  5384. p33.CanCollide = false
  5385. p33.FormFactor = Enum.FormFactor.Custom
  5386. p33.Size = Vector3.new(0.256227762, 0.256227732, 0.768683195)
  5387. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5388. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5389. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5390. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5391. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5392. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5393. b31 = Instance.new("SpecialMesh", p33)
  5394. b31.MeshType = Enum.MeshType.Brick
  5395. b31.Name = "Mesh"
  5396. p34 = Instance.new("Part", m)
  5397. p34.BrickColor = BrickColor.new("Black")
  5398. p34.Material = Enum.Material.SmoothPlastic
  5399. p34.Name = "apart"
  5400. p34.CFrame = CFrame.new(3.82269669, 157.581009, 40.0000153, 5.34812571e-005, -1, -4.31585904e-005, 1, 5.34812607e-005, 1.38061296e-009, 9.47693479e-010, -4.31585977e-005, 1)
  5401. p34.CanCollide = false
  5402. p34.FormFactor = Enum.FormFactor.Custom
  5403. p34.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  5404. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5405. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5406. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5407. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5408. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5409. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5410. b32 = Instance.new("SpecialMesh", p34)
  5411. b32.MeshType = Enum.MeshType.Cylinder
  5412. b32.Name = "Mesh"
  5413. b32.Scale = Vector3.new(0.417481065, 0.899999976, 1)
  5414. p35 = Instance.new("Part", m)
  5415. p35.BrickColor = BrickColor.new("Black")
  5416. p35.Material = Enum.Material.SmoothPlastic
  5417. p35.Name = "apart"
  5418. p35.CFrame = CFrame.new(3.82272053, 155.633682, 40.4612274, 1, 3.05171161e-005, 3.05180365e-005, 3.05180401e-005, -1, -3.04301593e-005, 3.05171143e-005, 3.04310706e-005, -1)
  5419. p35.CanCollide = false
  5420. p35.FormFactor = Enum.FormFactor.Custom
  5421. p35.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  5422. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5423. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5424. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5425. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5426. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5427. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5428. b33 = Instance.new("SpecialMesh", p35)
  5429. b33.MeshType = Enum.MeshType.Wedge
  5430. b33.Name = "Mesh"
  5431. b33.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  5432. p36 = Instance.new("Part", m)
  5433. p36.BrickColor = BrickColor.new("Black")
  5434. p36.Material = Enum.Material.SmoothPlastic
  5435. p36.Name = "apart"
  5436. p36.CFrame = CFrame.new(3.82272053, 156.556107, 39.0263557, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
  5437. p36.CanCollide = false
  5438. p36.FormFactor = Enum.FormFactor.Custom
  5439. p36.Size = Vector3.new(1.02491105, 1.74234843, 0.245498881)
  5440. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5441. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5442. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5443. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5444. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5445. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5446. b34 = Instance.new("SpecialMesh", p36)
  5447. b34.MeshType = Enum.MeshType.Wedge
  5448. b34.Name = "Mesh"
  5449. b34.Scale = Vector3.new(1.00999999, 1.00999999, 0.333984762)
  5450. p37 = Instance.new("Part", m)
  5451. p37.BrickColor = BrickColor.new("Black")
  5452. p37.Material = Enum.Material.SmoothPlastic
  5453. p37.Name = "apart"
  5454. p37.CFrame = CFrame.new(3.82272053, 155.633682, 39.5388374, -1, -3.04301484e-005, 3.05180511e-005, 3.04310906e-005, -1, 3.05171161e-005, 3.05171197e-005, 3.0518022e-005, 1)
  5455. p37.CanCollide = false
  5456. p37.FormFactor = Enum.FormFactor.Custom
  5457. p37.Size = Vector3.new(1.02491105, 0.245498881, 0.922419906)
  5458. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5459. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5460. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5461. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5462. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5463. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5464. b35 = Instance.new("SpecialMesh", p37)
  5465. b35.MeshType = Enum.MeshType.Wedge
  5466. b35.Name = "Mesh"
  5467. b35.Scale = Vector3.new(1.00999999, 0.421655744, 1)
  5468. p38 = Instance.new("Part", m)
  5469. p38.BrickColor = BrickColor.new("Black")
  5470. p38.Material = Enum.Material.SmoothPlastic
  5471. p38.Name = "apart"
  5472. p38.CFrame = CFrame.new(3.18215156, 157.811584, 40.8968277, -3.05612957e-005, 1, -3.05175708e-005, -3.04729365e-005, -3.05185131e-005, -1, -1, -3.05603608e-005, 3.04738478e-005)
  5473. p38.CanCollide = false
  5474. p38.FormFactor = Enum.FormFactor.Custom
  5475. p38.Size = Vector3.new(0.256227762, 0.768683195, 0.768683195)
  5476. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5477. p38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5478. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5479. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5480. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5481. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5482. b36 = Instance.new("SpecialMesh", p38)
  5483. b36.MeshType = Enum.MeshType.Wedge
  5484. b36.Name = "Mesh"
  5485. p39 = Instance.new("Part", m)
  5486. p39.BrickColor = BrickColor.new("Black")
  5487. p39.Material = Enum.Material.SmoothPlastic
  5488. p39.Name = "apart"
  5489. p39.CFrame = CFrame.new(3.18215156, 156.940414, 39.9487991, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
  5490. p39.CanCollide = false
  5491. p39.FormFactor = Enum.FormFactor.Custom
  5492. p39.Size = Vector3.new(0.819928885, 0.256227732, 0.973665357)
  5493. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5494. p39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5495. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5496. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5497. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5498. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5499. b37 = Instance.new("SpecialMesh", p39)
  5500. b37.MeshType = Enum.MeshType.Brick
  5501. b37.Name = "Mesh"
  5502. b37.Scale = Vector3.new(1, 1.00999999, 1.00999999)
  5503. p40 = Instance.new("Part", m)
  5504. p40.BrickColor = BrickColor.new("Black")
  5505. p40.Material = Enum.Material.SmoothPlastic
  5506. p40.Name = "apart"
  5507. p40.CFrame = CFrame.new(3.18215179, 156.94043, 40.0000381, 3.04738587e-005, -1, -3.05175854e-005, -3.05603608e-005, -3.05185022e-005, 1, -1, -3.0472931e-005, -3.05612703e-005)
  5508. p40.CanCollide = false
  5509. p40.FormFactor = Enum.FormFactor.Custom
  5510. p40.Size = Vector3.new(1.53736663, 0.256227732, 0.973665357)
  5511. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5512. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5513. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5514. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5515. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5516. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5517. b38 = Instance.new("SpecialMesh", p40)
  5518. b38.MeshType = Enum.MeshType.Torso
  5519. b38.Name = "Mesh"
  5520. p41 = Instance.new("Part", m)
  5521. p41.BrickColor = BrickColor.new("Black")
  5522. p41.Material = Enum.Material.SmoothPlastic
  5523. p41.Name = "apart"
  5524. p41.CFrame = CFrame.new(4.43766689, 158.093491, 39.9999962, -1, 4.30663349e-005, 4.51109372e-010, 1.85900717e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.34494757e-005)
  5525. p41.CanCollide = false
  5526. p41.FormFactor = Enum.FormFactor.Custom
  5527. p41.Size = Vector3.new(0.409964442, 0.922419786, 0.922419786)
  5528. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5529. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5530. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5531. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5532. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5533. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5534. b39 = Instance.new("SpecialMesh", p41)
  5535. b39.MeshType = Enum.MeshType.Sphere
  5536. b39.Name = "Mesh"
  5537. p42 = Instance.new("Part", m)
  5538. p42.BrickColor = BrickColor.new("Black")
  5539. p42.Material = Enum.Material.SmoothPlastic
  5540. p42.Name = "apart"
  5541. p42.CFrame = CFrame.new(3.82272005, 158.093506, 39.2825584, -3.05612848e-005, -1, -3.05175745e-005, -3.05603535e-005, 3.05185167e-005, -1, 1, -3.05603608e-005, -3.05612921e-005)
  5542. p42.CanCollide = false
  5543. p42.FormFactor = Enum.FormFactor.Custom
  5544. p42.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  5545. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5546. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5547. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5548. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5549. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5550. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5551. b40 = Instance.new("SpecialMesh", p42)
  5552. b40.MeshType = Enum.MeshType.Sphere
  5553. b40.Name = "Mesh"
  5554. p43 = Instance.new("Part", m)
  5555. p43.BrickColor = BrickColor.new("Black")
  5556. p43.Material = Enum.Material.SmoothPlastic
  5557. p43.Name = "apart"
  5558. p43.CFrame = CFrame.new(4.3864212, 158.093475, 39.9999924, -1, 4.30663349e-005, 4.50970816e-010, 1.8563604e-009, 5.34494684e-005, -1, -4.30663422e-005, -1, -5.3449472e-005)
  5559. p43.CanCollide = false
  5560. p43.FormFactor = Enum.FormFactor.Custom
  5561. p43.Size = Vector3.new(0.245498881, 0.922419786, 0.922419786)
  5562. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5563. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5564. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5565. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5566. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5567. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5568. b41 = Instance.new("SpecialMesh", p43)
  5569. b41.MeshType = Enum.MeshType.Cylinder
  5570. b41.Name = "Mesh"
  5571. b41.Scale = Vector3.new(0.417480975, 1, 1)
  5572. p44 = Instance.new("Part", m)
  5573. p44.BrickColor = BrickColor.new("Black")
  5574. p44.Material = Enum.Material.SmoothPlastic
  5575. p44.Name = "apart"
  5576. p44.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
  5577. p44.CanCollide = false
  5578. p44.FormFactor = Enum.FormFactor.Custom
  5579. p44.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  5580. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5581. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5582. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5583. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5584. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5585. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5586. b42 = Instance.new("SpecialMesh", p44)
  5587. b42.MeshType = Enum.MeshType.Cylinder
  5588. b42.Name = "Mesh"
  5589. b42.Scale = Vector3.new(0.626221538, 1, 1)
  5590. p45 = Instance.new("Part", m)
  5591. p45.BrickColor = BrickColor.new("Dark red")
  5592. p45.Material = Enum.Material.Neon
  5593. p45.Name = "apart"
  5594. p45.CFrame = CFrame.new(4.18143892, 158.093475, 39.9999886, -4.37157723e-008, -2.66764388e-012, -1, 1, -3.05612884e-005, -4.37103154e-008, -3.05612884e-005, -1, -2.66975331e-012)
  5595. p45.CanCollide = false
  5596. p45.FormFactor = Enum.FormFactor.Custom
  5597. p45.Size = Vector3.new(0.245498881, 1.02491093, 1.02491093)
  5598. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5599. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5600. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5601. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5602. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5603. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5604. b43 = Instance.new("SpecialMesh", p45)
  5605. b43.MeshType = Enum.MeshType.Cylinder
  5606. b43.Name = "Mesh"
  5607. b43.Scale = Vector3.new(0.313110769, 1.00999999, 1.00999999)
  5608. p46 = Instance.new("Part", m)
  5609. p46.BrickColor = BrickColor.new("Black")
  5610. p46.Material = Enum.Material.SmoothPlastic
  5611. p46.Name = "apart"
  5612. p46.CFrame = CFrame.new(3.82271981, 158.093491, 40.7174263, -3.05612884e-005, -1, -3.05175763e-005, -3.05603571e-005, 3.05185131e-005, -1, 1, -3.05603571e-005, -3.05612884e-005)
  5613. p46.CanCollide = false
  5614. p46.FormFactor = Enum.FormFactor.Custom
  5615. p46.Size = Vector3.new(0.307473212, 0.512455463, 0.512455463)
  5616. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5617. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5618. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5619. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5620. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5621. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5622. b44 = Instance.new("SpecialMesh", p46)
  5623. b44.MeshType = Enum.MeshType.Sphere
  5624. b44.Name = "Mesh"
  5625. p47 = Instance.new("Part", m)
  5626. p47.BrickColor = BrickColor.new("Black")
  5627. --[[p47.Name = "Head"
  5628. p47.CFrame = CFrame.new(3.81999993, 157.776108, 40, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  5629. p47.CanCollide = false
  5630. p47.FormFactor = Enum.FormFactor.Symmetric
  5631. p47.Size = Vector3.new(2, 1, 1)
  5632. p47.BottomSurface = Enum.SurfaceType.Smooth
  5633. p47.TopSurface = Enum.SurfaceType.Smooth--]]
  5634. p47 = Head
  5635. p48 = Instance.new("Part", m)
  5636. p48.BrickColor = BrickColor.new("Dark red")
  5637. p48.Material = Enum.Material.Neon
  5638. p48.Name = "apart"
  5639. p48.CFrame = CFrame.new(3.05403709, 158.529068, 39.8975182, -3.05612884e-005, 1, -3.05166468e-005, 6.10798015e-005, -3.05147805e-005, -1, -1, -3.05631511e-005, -6.10788702e-005)
  5640. p48.CanCollide = false
  5641. p48.FormFactor = Enum.FormFactor.Custom
  5642. p48.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  5643. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5644. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5645. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5646. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5647. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5648. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5649. b45 = Instance.new("SpecialMesh", p48)
  5650. b45.MeshType = Enum.MeshType.Wedge
  5651. b45.Name = "Mesh"
  5652. b45.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  5653. p49 = Instance.new("Part", m)
  5654. p49.BrickColor = BrickColor.new("Black")
  5655. p49.Material = Enum.Material.SmoothPlastic
  5656. p49.Name = "apart"
  5657. p49.CFrame = CFrame.new(4.69389391, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
  5658. p49.CanCollide = false
  5659. p49.FormFactor = Enum.FormFactor.Custom
  5660. p49.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  5661. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5662. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5663. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5664. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5665. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5666. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5667. b46 = Instance.new("SpecialMesh", p49)
  5668. b46.MeshType = Enum.MeshType.Brick
  5669. b46.Name = "Mesh"
  5670. b46.Scale = Vector3.new(0.417481035, 1.00999999, 0.834961772)
  5671. p50 = Instance.new("Part", m)
  5672. p50.BrickColor = BrickColor.new("Black")
  5673. p50.Material = Enum.Material.SmoothPlastic
  5674. p50.Name = "apart"
  5675. p50.CFrame = CFrame.new(4.64264822, 158.09346, 39.9999847, -1, 4.30663385e-005, 4.47471393e-010, 1.85536919e-009, 5.34494684e-005, -1, -4.30663385e-005, -1, -5.34494757e-005)
  5676. p50.CanCollide = false
  5677. p50.FormFactor = Enum.FormFactor.Custom
  5678. p50.Size = Vector3.new(0.245498881, 0.409964353, 0.307473242)
  5679. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5680. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5681. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5682. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5683. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5684. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5685. b47 = Instance.new("SpecialMesh", p50)
  5686. b47.MeshType = Enum.MeshType.Brick
  5687. b47.Name = "Mesh"
  5688. b47.Scale = Vector3.new(0.417481035, 1, 1)
  5689. p51 = Instance.new("Part", m)
  5690. p51.BrickColor = BrickColor.new("Dark red")
  5691. p51.Material = Enum.Material.Neon
  5692. p51.Name = "apart"
  5693. p51.CFrame = CFrame.new(3.05403709, 158.195969, 39.8974838, -0.000274701917, -0.99999994, -3.04719488e-005, 0.000183053358, -3.05222311e-005, 1, -0.99999994, 0.000274696329, 0.000183061755)
  5694. p51.CanCollide = false
  5695. p51.FormFactor = Enum.FormFactor.Custom
  5696. p51.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  5697. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5698. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5699. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5700. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5701. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5702. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5703. b48 = Instance.new("SpecialMesh", p51)
  5704. b48.MeshType = Enum.MeshType.Wedge
  5705. b48.Name = "Mesh"
  5706. b48.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  5707. p52 = Instance.new("Part", m)
  5708. p52.BrickColor = BrickColor.new("Black")
  5709. p52.Material = Enum.Material.SmoothPlastic
  5710. p52.Name = "apart"
  5711. p52.CFrame = CFrame.new(3.2077713, 158.272842, 40.7174377, 0.000228409393, -0.965923071, 0.258828998, -0.000213359453, 0.258829027, 0.96592319, -0.99999994, -0.000275849539, -0.00014696976)
  5712. p52.CanCollide = false
  5713. p52.FormFactor = Enum.FormFactor.Custom
  5714. p52.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  5715. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5716. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5717. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5718. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5719. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5720. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5721. b49 = Instance.new("SpecialMesh", p52)
  5722. b49.MeshType = Enum.MeshType.Wedge
  5723. b49.Name = "Mesh"
  5724. b49.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  5725. p53 = Instance.new("Part", m)
  5726. p53.BrickColor = BrickColor.new("Black")
  5727. p53.Material = Enum.Material.SmoothPlastic
  5728. p53.Name = "apart"
  5729. p53.CFrame = CFrame.new(3.82271767, 158.093475, 39.9999886, -3.05612375e-005, -1, -3.04430723e-005, -3.05603317e-005, 3.0502677e-005, -1.00000012, 1, -3.05603717e-005, -3.05613357e-005)
  5730. p53.CanCollide = false
  5731. p53.FormFactor = Enum.FormFactor.Custom
  5732. p53.Size = Vector3.new(1.43487537, 0.512455463, 0.512455463)
  5733. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5734. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5735. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5736. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5737. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5738. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5739. b50 = Instance.new("SpecialMesh", p53)
  5740. b50.MeshType = Enum.MeshType.Cylinder
  5741. b50.Name = "Mesh"
  5742. p54 = Instance.new("Part", m)
  5743. p54.BrickColor = BrickColor.new("Black")
  5744. p54.Material = Enum.Material.SmoothPlastic
  5745. p54.Name = "apart"
  5746. p54.CFrame = CFrame.new(3.82271767, 158.093491, 39.4363022, 3.07936716e-008, -3.99507094e-011, 1, -1.00000012, -0.000152631663, -2.78741936e-008, 0.000152631561, -1, 2.18273732e-011)
  5747. p54.CanCollide = false
  5748. p54.FormFactor = Enum.FormFactor.Custom
  5749. p54.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  5750. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5751. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5752. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5753. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5754. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5755. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5756. b51 = Instance.new("SpecialMesh", p54)
  5757. b51.MeshType = Enum.MeshType.Torso
  5758. b51.Name = "Mesh"
  5759. b51.Scale = Vector3.new(1, 0.417480916, 1)
  5760. p55 = Instance.new("Part", m)
  5761. p55.BrickColor = BrickColor.new("Black")
  5762. p55.Material = Enum.Material.SmoothPlastic
  5763. p55.Name = "apart"
  5764. p55.CFrame = CFrame.new(3.05403447, 158.195984, 39.6669159, -0.000274701975, -0.99999994, -3.05464528e-005, 0.000183053344, -3.05380709e-005, 1.00000012, -1, 0.000274696329, 0.000183061798)
  5765. p55.CanCollide = false
  5766. p55.FormFactor = Enum.FormFactor.Custom
  5767. p55.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  5768. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5769. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5770. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5771. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5772. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5773. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5774. b52 = Instance.new("SpecialMesh", p55)
  5775. b52.MeshType = Enum.MeshType.Wedge
  5776. b52.Name = "Mesh"
  5777. p56 = Instance.new("Part", m)
  5778. p56.BrickColor = BrickColor.new("Black")
  5779. p56.Material = Enum.Material.SmoothPlastic
  5780. p56.Name = "apart"
  5781. p56.CFrame = CFrame.new(2.7465601, 158.529114, 39.8975143, -0.000274701975, -0.999999881, -3.05464528e-005, 0.000183053344, -3.05380672e-005, 1.00000012, -1, 0.0002746963, 0.000183061798)
  5782. p56.CanCollide = false
  5783. p56.FormFactor = Enum.FormFactor.Custom
  5784. p56.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  5785. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5786. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5787. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5788. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5789. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5790. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5791. b53 = Instance.new("SpecialMesh", p56)
  5792. b53.MeshType = Enum.MeshType.Wedge
  5793. b53.Name = "Mesh"
  5794. b53.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  5795. p57 = Instance.new("Part", m)
  5796. p57.BrickColor = BrickColor.new("Black")
  5797. p57.Material = Enum.Material.SmoothPlastic
  5798. p57.Name = "apart"
  5799. p57.CFrame = CFrame.new(3.05403423, 158.529099, 40.1024895, -3.05613503e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989571e-005, -1.00000012, -1, -3.05630856e-005, -6.10789066e-005)
  5800. p57.CanCollide = false
  5801. p57.FormFactor = Enum.FormFactor.Custom
  5802. p57.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  5803. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5804. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5805. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5806. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5807. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5808. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5809. b54 = Instance.new("SpecialMesh", p57)
  5810. b54.MeshType = Enum.MeshType.Wedge
  5811. b54.Name = "Mesh"
  5812. b54.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  5813. p58 = Instance.new("Part", m)
  5814. p58.BrickColor = BrickColor.new("Black")
  5815. p58.Material = Enum.Material.SmoothPlastic
  5816. p58.Name = "apart"
  5817. p58.CFrame = CFrame.new(3.82271719, 158.093506, 40.5636864, -1.18223397e-007, 6.08786355e-011, 0.999999881, 1.00000012, -4.36484697e-008, 5.95373422e-008, 4.37539711e-008, 1, 6.57935928e-011)
  5818. p58.CanCollide = false
  5819. p58.FormFactor = Enum.FormFactor.Custom
  5820. p58.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  5821. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5822. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5823. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5824. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5825. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5826. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5827. b55 = Instance.new("SpecialMesh", p58)
  5828. b55.MeshType = Enum.MeshType.Torso
  5829. b55.Name = "Mesh"
  5830. b55.Scale = Vector3.new(1, 0.417480916, 1)
  5831. p59 = Instance.new("Part", m)
  5832. p59.BrickColor = BrickColor.new("Black")
  5833. p59.Material = Enum.Material.SmoothPlastic
  5834. p59.Name = "apart"
  5835. p59.CFrame = CFrame.new(3.82271719, 158.093506, 39.9999809, 5.34067403e-005, -0.999999881, -4.31585322e-005, 1.00000012, 5.34654391e-005, 1.43842538e-009, 9.74580416e-010, -4.31586632e-005, 1)
  5836. p59.CanCollide = false
  5837. p59.FormFactor = Enum.FormFactor.Custom
  5838. p59.Size = Vector3.new(1.02491105, 1.02491093, 1.02491093)
  5839. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5840. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5841. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5842. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5843. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5844. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5845. b56 = Instance.new("SpecialMesh", p59)
  5846. b56.MeshType = Enum.MeshType.Brick
  5847. b56.Name = "Mesh"
  5848. p60 = Instance.new("Part", m)
  5849. p60.BrickColor = BrickColor.new("Dark red")
  5850. p60.Material = Enum.Material.Neon
  5851. p60.Name = "apart"
  5852. p60.CFrame = CFrame.new(3.05403423, 158.529114, 40.1024895, -3.05613539e-005, 0.999999881, -3.04421301e-005, 6.10797433e-005, -3.04989553e-005, -1.00000012, -1, -3.05630856e-005, -6.10789139e-005)
  5853. p60.CanCollide = false
  5854. p60.FormFactor = Enum.FormFactor.Custom
  5855. p60.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  5856. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5857. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5858. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5859. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5860. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5861. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5862. b57 = Instance.new("SpecialMesh", p60)
  5863. b57.MeshType = Enum.MeshType.Wedge
  5864. b57.Name = "Mesh"
  5865. b57.Scale = Vector3.new(0.208740532, 1.00999999, 0.626221359)
  5866. p61 = Instance.new("Part", m)
  5867. p61.BrickColor = BrickColor.new("Black")
  5868. p61.Material = Enum.Material.SmoothPlastic
  5869. p61.Name = "apart"
  5870. p61.CFrame = CFrame.new(3.05403423, 158.19603, 39.89748, -0.000274701946, -0.999999821, -3.05464564e-005, 0.000183053315, -3.05380599e-005, 1.00000012, -0.99999994, 0.000274696271, 0.000183061798)
  5871. p61.CanCollide = false
  5872. p61.FormFactor = Enum.FormFactor.Custom
  5873. p61.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  5874. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5875. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5876. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5877. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5878. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5879. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5880. b58 = Instance.new("SpecialMesh", p61)
  5881. b58.MeshType = Enum.MeshType.Wedge
  5882. b58.Name = "Mesh"
  5883. b58.Scale = Vector3.new(0.417481065, 1, 1)
  5884. p62 = Instance.new("Part", m)
  5885. p62.BrickColor = BrickColor.new("Black")
  5886. p62.Material = Enum.Material.SmoothPlastic
  5887. p62.Name = "apart"
  5888. p62.CFrame = CFrame.new(3.20776844, 158.272903, 40.7686882, 0.000228409335, -0.965923011, 0.258828908, -0.000213359541, 0.258829057, 0.965923309, -0.99999994, -0.000275849598, -0.000146969687)
  5889. p62.CanCollide = false
  5890. p62.FormFactor = Enum.FormFactor.Custom
  5891. p62.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  5892. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5893. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5894. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5895. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5896. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5897. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5898. b59 = Instance.new("SpecialMesh", p62)
  5899. b59.MeshType = Enum.MeshType.Wedge
  5900. b59.Name = "Mesh"
  5901. b59.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  5902. p63 = Instance.new("Part", m)
  5903. p63.BrickColor = BrickColor.new("Black")
  5904. p63.Material = Enum.Material.SmoothPlastic
  5905. p63.Name = "apart"
  5906. p63.CFrame = CFrame.new(3.05403471, 158.196045, 40.1024666, -0.000274702004, -0.999999821, -3.05771828e-005, 0.000183053315, -3.04877758e-005, 1.00000024, -1, 0.000274696242, 0.000183061857)
  5907. p63.CanCollide = false
  5908. p63.FormFactor = Enum.FormFactor.Custom
  5909. p63.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  5910. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5911. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5912. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5913. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5914. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5915. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5916. b60 = Instance.new("SpecialMesh", p63)
  5917. b60.MeshType = Enum.MeshType.Wedge
  5918. b60.Name = "Mesh"
  5919. b60.Scale = Vector3.new(0.417481065, 1, 1)
  5920. p64 = Instance.new("Part", m)
  5921. p64.BrickColor = BrickColor.new("Black")
  5922. p64.Material = Enum.Material.SmoothPlastic
  5923. p64.Name = "apart"
  5924. p64.CFrame = CFrame.new(2.7465601, 158.529175, 40.3330841, -0.000274702004, -0.999999762, -3.05771828e-005, 0.000183053315, -3.0487774e-005, 1.00000024, -1, 0.000274696213, 0.000183061857)
  5925. p64.CanCollide = false
  5926. p64.FormFactor = Enum.FormFactor.Custom
  5927. p64.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  5928. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5929. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5930. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5931. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5932. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5933. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5934. b61 = Instance.new("SpecialMesh", p64)
  5935. b61.MeshType = Enum.MeshType.Wedge
  5936. b61.Name = "Mesh"
  5937. b61.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  5938. p65 = Instance.new("Part", m)
  5939. p65.BrickColor = BrickColor.new("Black")
  5940. p65.Material = Enum.Material.SmoothPlastic
  5941. p65.Name = "apart"
  5942. p65.CFrame = CFrame.new(2.74655938, 158.52919, 39.6668968, -0.000274702004, -0.999999702, -3.05771828e-005, 0.000183053315, -3.04877722e-005, 1.00000024, -1, 0.000274696184, 0.000183061857)
  5943. p65.CanCollide = false
  5944. p65.FormFactor = Enum.FormFactor.Custom
  5945. p65.Size = Vector3.new(0.358718932, 0.245498881, 0.245498881)
  5946. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5947. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5948. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5949. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5950. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5951. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5952. b62 = Instance.new("SpecialMesh", p65)
  5953. b62.MeshType = Enum.MeshType.Wedge
  5954. b62.Name = "Mesh"
  5955. b62.Scale = Vector3.new(1, 0.417480946, 0.626221359)
  5956. p66 = Instance.new("Part", m)
  5957. p66.BrickColor = BrickColor.new("Black")
  5958. p66.Material = Enum.Material.SmoothPlastic
  5959. p66.Name = "apart"
  5960. p66.CFrame = CFrame.new(3.05403376, 158.196106, 40.3330727, -0.000274702004, -0.999999642, -3.05771828e-005, 0.000183053315, -3.04877703e-005, 1.00000024, -1, 0.000274696155, 0.000183061857)
  5961. p66.CanCollide = false
  5962. p66.FormFactor = Enum.FormFactor.Custom
  5963. p66.Size = Vector3.new(0.358718932, 0.512455463, 0.512455463)
  5964. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5965. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5966. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5967. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5968. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5969. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5970. b63 = Instance.new("SpecialMesh", p66)
  5971. b63.MeshType = Enum.MeshType.Wedge
  5972. b63.Name = "Mesh"
  5973. p67 = Instance.new("Part", m)
  5974. p67.BrickColor = BrickColor.new("Dark red")
  5975. p67.Material = Enum.Material.Neon
  5976. p67.Name = "apart"
  5977. p67.CFrame = CFrame.new(3.05403376, 158.196106, 40.1024437, -0.000274702004, -0.999999583, -3.05771828e-005, 0.000183053315, -3.04877685e-005, 1.00000024, -1, 0.000274696125, 0.000183061857)
  5978. p67.CanCollide = false
  5979. p67.FormFactor = Enum.FormFactor.Custom
  5980. p67.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  5981. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5982. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5983. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5984. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5985. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5986. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5987. b64 = Instance.new("SpecialMesh", p67)
  5988. b64.MeshType = Enum.MeshType.Wedge
  5989. b64.Name = "Mesh"
  5990. b64.Scale = Vector3.new(0.208740532, 1.00999999, 1)
  5991. p68 = Instance.new("Part", m)
  5992. p68.BrickColor = BrickColor.new("Black")
  5993. p68.Material = Enum.Material.SmoothPlastic
  5994. p68.Name = "apart"
  5995. p68.CFrame = CFrame.new(2.74655938, 158.529221, 40.1024551, -0.000274702004, -0.999999523, -3.05771828e-005, 0.000183053315, -3.04877667e-005, 1.00000024, -1, 0.000274696096, 0.000183061857)
  5996. p68.CanCollide = false
  5997. p68.FormFactor = Enum.FormFactor.Custom
  5998. p68.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  5999. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6000. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6001. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6002. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6003. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6004. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6005. b65 = Instance.new("SpecialMesh", p68)
  6006. b65.MeshType = Enum.MeshType.Wedge
  6007. b65.Name = "Mesh"
  6008. b65.Scale = Vector3.new(0.417481065, 0.417480946, 0.626221359)
  6009. p69 = Instance.new("Part", m)
  6010. p69.BrickColor = BrickColor.new("Black")
  6011. p69.Material = Enum.Material.SmoothPlastic
  6012. p69.Name = "apart"
  6013. p69.CFrame = CFrame.new(3.05403352, 158.529205, 40.3330612, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  6014. p69.CanCollide = false
  6015. p69.FormFactor = Enum.FormFactor.Custom
  6016. p69.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  6017. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6018. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6019. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6020. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6021. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6022. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6023. b66 = Instance.new("SpecialMesh", p69)
  6024. b66.MeshType = Enum.MeshType.Wedge
  6025. b66.Name = "Mesh"
  6026. b66.Scale = Vector3.new(1, 1, 0.626221359)
  6027. p70 = Instance.new("Part", m)
  6028. p70.BrickColor = BrickColor.new("Black")
  6029. p70.Material = Enum.Material.SmoothPlastic
  6030. p70.Name = "apart"
  6031. p70.CFrame = CFrame.new(3.05403328, 158.529221, 39.89748, -3.05614631e-005, 0.999999523, -3.04113782e-005, 6.10796851e-005, -3.05492649e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  6032. p70.CanCollide = false
  6033. p70.FormFactor = Enum.FormFactor.Custom
  6034. p70.Size = Vector3.new(0.245498881, 0.512455463, 0.245498881)
  6035. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6036. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6037. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6038. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6039. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6040. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6041. b67 = Instance.new("SpecialMesh", p70)
  6042. b67.MeshType = Enum.MeshType.Wedge
  6043. b67.Name = "Mesh"
  6044. b67.Scale = Vector3.new(0.417481065, 1, 0.626221359)
  6045. p71 = Instance.new("Part", m)
  6046. p71.BrickColor = BrickColor.new("Dark red")
  6047. p71.Material = Enum.Material.Neon
  6048. p71.Name = "apart"
  6049. p71.CFrame = CFrame.new(3.82271624, 158.093628, 40.6661491, -3.05610884e-005, -0.999999523, -3.04123096e-005, -3.05602262e-005, 3.05529975e-005, -1.00000024, 1, -3.05606263e-005, -3.0561383e-005)
  6050. p71.CanCollide = false
  6051. p71.FormFactor = Enum.FormFactor.Custom
  6052. p71.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  6053. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6054. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6055. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6056. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6057. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6058. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6059. b68 = Instance.new("SpecialMesh", p71)
  6060. b68.MeshType = Enum.MeshType.Cylinder
  6061. b68.Name = "Mesh"
  6062. b68.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  6063. p72 = Instance.new("Part", m)
  6064. p72.BrickColor = BrickColor.new("Black")
  6065. p72.Material = Enum.Material.SmoothPlastic
  6066. p72.Name = "apart"
  6067. p72.CFrame = CFrame.new(3.05403328, 158.529221, 39.6668777, -3.05614631e-005, 0.999999523, -3.04113764e-005, 6.10796851e-005, -3.05492686e-005, -1.00000024, -1, -3.05628819e-005, -6.10789648e-005)
  6068. p72.CanCollide = false
  6069. p72.FormFactor = Enum.FormFactor.Custom
  6070. p72.Size = Vector3.new(0.358718932, 0.512455463, 0.245498881)
  6071. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6072. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6073. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6074. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6075. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6076. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6077. b69 = Instance.new("SpecialMesh", p72)
  6078. b69.MeshType = Enum.MeshType.Wedge
  6079. b69.Name = "Mesh"
  6080. b69.Scale = Vector3.new(1, 1, 0.626221359)
  6081. p73 = Instance.new("Part", m)
  6082. p73.BrickColor = BrickColor.new("Black")
  6083. p73.Material = Enum.Material.SmoothPlastic
  6084. p73.Name = "apart"
  6085. p73.CFrame = CFrame.new(3.20776749, 158.27298, 39.2312889, 0.000228409161, -0.965922713, 0.258828849, -0.000213359599, 0.258829117, 0.965923429, -1, -0.00027584983, -0.000146969658)
  6086. p73.CanCollide = false
  6087. p73.FormFactor = Enum.FormFactor.Custom
  6088. p73.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  6089. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6090. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6091. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6092. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6093. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6094. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6095. b70 = Instance.new("SpecialMesh", p73)
  6096. b70.MeshType = Enum.MeshType.Wedge
  6097. b70.Name = "Mesh"
  6098. b70.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  6099. p74 = Instance.new("Part", m)
  6100. p74.BrickColor = BrickColor.new("Black")
  6101. p74.Material = Enum.Material.SmoothPlastic
  6102. p74.Name = "apart"
  6103. p74.CFrame = CFrame.new(3.20777059, 158.27298, 39.282547, 0.000228409161, -0.965922713, 0.258828819, -0.000213359614, 0.258829117, 0.965923369, -1.00000012, -0.000275849859, -0.000146969644)
  6104. p74.CanCollide = false
  6105. p74.FormFactor = Enum.FormFactor.Custom
  6106. p74.Size = Vector3.new(0.245498881, 1.02491093, 0.245498881)
  6107. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6108. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6109. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6110. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6111. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6112. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6113. b71 = Instance.new("SpecialMesh", p74)
  6114. b71.MeshType = Enum.MeshType.Wedge
  6115. b71.Name = "Mesh"
  6116. b71.Scale = Vector3.new(0.208740532, 1, 0.626221359)
  6117. p75 = Instance.new("Part", m)
  6118. p75.BrickColor = BrickColor.new("Dark red")
  6119. p75.Material = Enum.Material.Neon
  6120. p75.Name = "apart"
  6121. p75.CFrame = CFrame.new(3.82271242, 158.093628, 39.3337746, -3.05610592e-005, -0.999999583, -3.03685665e-005, -3.05602152e-005, 3.05473804e-005, -1.00000036, 1.00000024, -3.05606482e-005, -3.05614085e-005)
  6122. p75.CanCollide = false
  6123. p75.FormFactor = Enum.FormFactor.Custom
  6124. p75.Size = Vector3.new(0.245498881, 0.512455463, 0.512455463)
  6125. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6126. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6127. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6128. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6129. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6130. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6131. b72 = Instance.new("SpecialMesh", p75)
  6132. b72.MeshType = Enum.MeshType.Cylinder
  6133. b72.Name = "Mesh"
  6134. b72.Scale = Vector3.new(0.208740488, 1.00999999, 1.00999999)
  6135. p76 = Instance.new("Part", m)
  6136. p76.BrickColor = BrickColor.new("Dark red")
  6137. p76.Material = Enum.Material.Neon
  6138. p76.Name = "apart"
  6139. p76.CFrame = CFrame.new(4.6938858, 158.093613, 39.999958, -0.999999583, 4.30660984e-005, 1.49448169e-007, 3.07118171e-008, 5.34493374e-005, -1.00000036, -4.30666332e-005, -1.00000024, -5.34495957e-005)
  6140. p76.CanCollide = false
  6141. p76.FormFactor = Enum.FormFactor.Custom
  6142. p76.Size = Vector3.new(0.245498881, 0.409964353, 0.245498881)
  6143. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6144. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6145. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6146. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6147. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6148. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6149. b73 = Instance.new("SpecialMesh", p76)
  6150. b73.MeshType = Enum.MeshType.Brick
  6151. b73.Name = "Mesh"
  6152. b73.Scale = Vector3.new(0.421655834, 1.01999998, 0.333984703)
  6153. p77 = Instance.new("Part", m)
  6154. p77.BrickColor = BrickColor.new("Dark red")
  6155. p77.Material = Enum.Material.Neon
  6156. p77.Name = "apart"
  6157. p77.CFrame = CFrame.new(2.74655533, 158.529221, 40.1024628, -0.000274702033, -0.999999523, -3.06209367e-005, 0.000183053286, -3.04933837e-005, 1.00000036, -1.00000012, 0.000274696125, 0.0001830619)
  6158. p77.CanCollide = false
  6159. p77.FormFactor = Enum.FormFactor.Custom
  6160. p77.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  6161. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6162. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6163. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6164. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6165. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6166. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6167. b74 = Instance.new("SpecialMesh", p77)
  6168. b74.MeshType = Enum.MeshType.Wedge
  6169. b74.Name = "Mesh"
  6170. b74.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  6171. p78 = Instance.new("Part", m)
  6172. p78.BrickColor = BrickColor.new("Dark red")
  6173. p78.Material = Enum.Material.Neon
  6174. p78.Name = "apart"
  6175. p78.CFrame = CFrame.new(2.74655509, 158.529236, 39.8974838, -0.000274702033, -0.999999464, -3.06209367e-005, 0.000183053286, -3.04933819e-005, 1.00000036, -1.00000012, 0.000274696096, 0.0001830619)
  6176. p78.CanCollide = false
  6177. p78.FormFactor = Enum.FormFactor.Custom
  6178. p78.Size = Vector3.new(0.245498881, 0.245498881, 0.245498881)
  6179. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6180. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6181. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6182. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6183. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6184. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6185. b75 = Instance.new("SpecialMesh", p78)
  6186. b75.MeshType = Enum.MeshType.Wedge
  6187. b75.Name = "Mesh"
  6188. b75.Scale = Vector3.new(0.208740532, 0.417480946, 0.632483602)
  6189. p79 = Instance.new("Part", m)
  6190. p79.BrickColor = BrickColor.new("Black")
  6191. p79.Material = Enum.Material.SmoothPlastic
  6192. p79.Name = "apart"
  6193. p79.CFrame = CFrame.new(3.82272029, 157.171036, 41.537384, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
  6194. p79.CanCollide = false
  6195. p79.FormFactor = Enum.FormFactor.Custom
  6196. p79.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  6197. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6198. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6199. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6200. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6201. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6202. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6203. b76 = Instance.new("SpecialMesh", p79)
  6204. b76.MeshType = Enum.MeshType.Brick
  6205. b76.Name = "Mesh"
  6206. b76.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6207. p80 = Instance.new("Part", m)
  6208. p80.BrickColor = BrickColor.new("Black")
  6209. p80.Material = Enum.Material.SmoothPlastic
  6210. p80.Name = "apart"
  6211. p80.CFrame = CFrame.new(3.82272029, 157.350388, 41.9729614, 1, 7.27595761e-012, 0, 0, 0.999999881, -2.98023224e-008, 0, 2.98023224e-008, 0.999999881)
  6212. p80.CanCollide = false
  6213. p80.FormFactor = Enum.FormFactor.Custom
  6214. p80.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  6215. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6216. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6217. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6218. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6219. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6220. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6221. b77 = Instance.new("SpecialMesh", p80)
  6222. b77.MeshType = Enum.MeshType.Cylinder
  6223. b77.Name = "Mesh"
  6224. b77.Scale = Vector3.new(1.01999998, 1, 1)
  6225. p81 = Instance.new("Part", m)
  6226. p81.BrickColor = BrickColor.new("Black")
  6227. p81.Material = Enum.Material.SmoothPlastic
  6228. p81.Name = "apart"
  6229. p81.CFrame = CFrame.new(3.41275811, 157.555359, 42.3316841, 1, 1.11727404e-005, -4.16862822e-005, -4.16866351e-005, 0.500085592, -0.865975857, 1.11713871e-005, 0.865975857, 0.500085592)
  6230. p81.CanCollide = false
  6231. p81.FormFactor = Enum.FormFactor.Custom
  6232. p81.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  6233. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6234. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6235. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6236. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6237. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6238. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6239. b78 = Instance.new("SpecialMesh", p81)
  6240. b78.MeshType = Enum.MeshType.Wedge
  6241. b78.Name = "Mesh"
  6242. b78.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  6243. p82 = Instance.new("Part", m)
  6244. p82.BrickColor = BrickColor.new("Black")
  6245. p82.Material = Enum.Material.SmoothPlastic
  6246. p82.Name = "apart"
  6247. p82.CFrame = CFrame.new(3.82271981, 156.018005, 41.4092636, 1, 3.05180438e-005, -3.05171125e-005, -3.05171106e-005, 0.99999994, 3.05180401e-005, 3.05180401e-005, -3.05171106e-005, 0.99999994)
  6248. p82.CanCollide = false
  6249. p82.FormFactor = Enum.FormFactor.Custom
  6250. p82.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  6251. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6252. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6253. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6254. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6255. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6256. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6257. b79 = Instance.new("SpecialMesh", p82)
  6258. b79.MeshType = Enum.MeshType.Wedge
  6259. b79.Name = "Mesh"
  6260. b79.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6261. p83 = Instance.new("Part", m)
  6262. p83.BrickColor = BrickColor.new("Black")
  6263. p83.Material = Enum.Material.SmoothPlastic
  6264. p83.Name = "apart"
  6265. p83.CFrame = CFrame.new(3.82271981, 156.018005, 41.9217148, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  6266. p83.CanCollide = false
  6267. p83.FormFactor = Enum.FormFactor.Custom
  6268. p83.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  6269. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6270. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6271. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6272. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6273. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6274. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6275. b80 = Instance.new("SpecialMesh", p83)
  6276. b80.MeshType = Enum.MeshType.Brick
  6277. b80.Name = "Mesh"
  6278. b80.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6279. p84 = Instance.new("Part", m)
  6280. p84.BrickColor = BrickColor.new("Black")
  6281. p84.Material = Enum.Material.SmoothPlastic
  6282. p84.Name = "apart"
  6283. p84.CFrame = CFrame.new(3.82271981, 155.633667, 41.5373764, 1, 0, 0, 0, 0.99999994, 0, 0, 0, 0.99999994)
  6284. p84.CanCollide = false
  6285. p84.FormFactor = Enum.FormFactor.Custom
  6286. p84.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  6287. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6288. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6289. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6290. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6291. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6292. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6293. b81 = Instance.new("SpecialMesh", p84)
  6294. b81.MeshType = Enum.MeshType.Brick
  6295. b81.Name = "Mesh"
  6296. b81.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6297. p85 = Instance.new("Part", m)
  6298. p85.BrickColor = BrickColor.new("Black")
  6299. p85.Material = Enum.Material.SmoothPlastic
  6300. p85.Name = "apart"
  6301. p85.CFrame = CFrame.new(4.23268604, 157.555389, 42.331665, 1, 1.11727377e-005, -4.16862786e-005, -4.16866387e-005, 0.500085652, -0.865975916, 1.1171388e-005, 0.865975916, 0.500085652)
  6302. p85.CanCollide = false
  6303. p85.FormFactor = Enum.FormFactor.Custom
  6304. p85.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  6305. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6306. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6307. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6308. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6309. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6310. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6311. b82 = Instance.new("SpecialMesh", p85)
  6312. b82.MeshType = Enum.MeshType.Wedge
  6313. b82.Name = "Mesh"
  6314. b82.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  6315. p86 = Instance.new("Part", m)
  6316. p86.BrickColor = BrickColor.new("Black")
  6317. p86.Material = Enum.Material.SmoothPlastic
  6318. p86.Name = "apart"
  6319. p86.CFrame = CFrame.new(3.82272005, 156.402374, 41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6320. p86.CanCollide = false
  6321. p86.FormFactor = Enum.FormFactor.Custom
  6322. p86.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  6323. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6324. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6325. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6326. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6327. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6328. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6329. b83 = Instance.new("SpecialMesh", p86)
  6330. b83.MeshType = Enum.MeshType.Wedge
  6331. b83.Name = "Mesh"
  6332. b83.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6333. p87 = Instance.new("Part", m)
  6334. p87.BrickColor = BrickColor.new("Black")
  6335. p87.Material = Enum.Material.SmoothPlastic
  6336. p87.Name = "apart"
  6337. p87.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6338. p87.CanCollide = false
  6339. p87.FormFactor = Enum.FormFactor.Custom
  6340. p87.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  6341. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6342. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6343. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6344. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6345. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6346. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6347. b84 = Instance.new("SpecialMesh", p87)
  6348. b84.MeshType = Enum.MeshType.Brick
  6349. b84.Name = "Mesh"
  6350. b84.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  6351. p88 = Instance.new("Part", m)
  6352. p88.BrickColor = BrickColor.new("Black")
  6353. p88.Material = Enum.Material.SmoothPlastic
  6354. p88.Name = "apart"
  6355. p88.CFrame = CFrame.new(3.82272005, 157.350418, 41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6356. p88.CanCollide = false
  6357. p88.FormFactor = Enum.FormFactor.Custom
  6358. p88.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  6359. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6360. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6361. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6362. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6363. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6364. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6365. b85 = Instance.new("SpecialMesh", p88)
  6366. b85.MeshType = Enum.MeshType.Cylinder
  6367. b85.Name = "Mesh"
  6368. b85.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  6369. p89 = Instance.new("Part", m)
  6370. p89.BrickColor = BrickColor.new("Dark red")
  6371. p89.Material = Enum.Material.Neon
  6372. p89.Name = "apart"
  6373. p89.CFrame = CFrame.new(3.82272005, 155.633698, 41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6374. p89.CanCollide = false
  6375. p89.FormFactor = Enum.FormFactor.Custom
  6376. p89.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  6377. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6378. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6379. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6380. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6381. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6382. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6383. b86 = Instance.new("SpecialMesh", p89)
  6384. b86.MeshType = Enum.MeshType.Brick
  6385. b86.Name = "Mesh"
  6386. b86.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  6387. p90 = Instance.new("Part", m)
  6388. p90.BrickColor = BrickColor.new("Black")
  6389. p90.Material = Enum.Material.SmoothPlastic
  6390. p90.Name = "apart"
  6391. p90.CFrame = CFrame.new(3.82272005, 156.402374, 41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6392. p90.CanCollide = false
  6393. p90.FormFactor = Enum.FormFactor.Custom
  6394. p90.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  6395. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6396. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6397. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6398. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6399. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6400. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6401. --[[p91 = Instance.new("Part", m)
  6402. p91.BrickColor = BrickColor.new("Bright orange")
  6403. p91.Name = "Right Arm"
  6404. p91.CFrame = CFrame.new(3.81999993, 156.276108, 41.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  6405. p91.CanCollide = false
  6406. p91.FormFactor = Enum.FormFactor.Symmetric
  6407. p91.Size = Vector3.new(1, 2, 1)
  6408. p91.BottomSurface = Enum.SurfaceType.Smooth
  6409. p91.TopSurface = Enum.SurfaceType.Smooth--]]
  6410. p91 = RightArm
  6411. p92 = Instance.new("Part", m)
  6412. p92.BrickColor = BrickColor.new("Black")
  6413. p92.Material = Enum.Material.SmoothPlastic
  6414. p92.Name = "apart"
  6415. p92.CFrame = CFrame.new(3.82272005, 154.35257, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6416. p92.CanCollide = false
  6417. p92.FormFactor = Enum.FormFactor.Custom
  6418. p92.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  6419. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6420. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6421. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6422. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6423. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6424. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6425. --[[p93 = Instance.new("Part", m)
  6426. p93.BrickColor = BrickColor.new("Earth green")
  6427. p93.Name = "Left Leg"
  6428. p93.CFrame = CFrame.new(3.81999993, 154.276123, 39.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  6429. p93.CanCollide = false
  6430. p93.FormFactor = Enum.FormFactor.Symmetric
  6431. p93.Size = Vector3.new(1, 2, 1)
  6432. p93.BottomSurface = Enum.SurfaceType.Smooth
  6433. p93.TopSurface = Enum.SurfaceType.Smooth--]]
  6434. p93 = LeftLeg
  6435. p94 = Instance.new("Part", m)
  6436. p94.BrickColor = BrickColor.new("Black")
  6437. p94.Material = Enum.Material.SmoothPlastic
  6438. p94.Name = "apart"
  6439. p94.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6440. p94.CanCollide = false
  6441. p94.FormFactor = Enum.FormFactor.Custom
  6442. p94.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  6443. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6444. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6445. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6446. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6447. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6448. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6449. b87 = Instance.new("SpecialMesh", p94)
  6450. b87.MeshType = Enum.MeshType.Brick
  6451. b87.Name = "Mesh"
  6452. b87.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6453. p95 = Instance.new("Part", m)
  6454. p95.BrickColor = BrickColor.new("Black")
  6455. p95.Material = Enum.Material.SmoothPlastic
  6456. p95.Name = "apart"
  6457. p95.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6458. p95.CanCollide = false
  6459. p95.FormFactor = Enum.FormFactor.Custom
  6460. p95.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  6461. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6462. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6463. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6464. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6465. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6466. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6467. b88 = Instance.new("SpecialMesh", p95)
  6468. b88.MeshType = Enum.MeshType.Brick
  6469. b88.Name = "Mesh"
  6470. b88.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  6471. p96 = Instance.new("Part", m)
  6472. p96.BrickColor = BrickColor.new("Dark red")
  6473. p96.Material = Enum.Material.Neon
  6474. p96.Name = "apart"
  6475. p96.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6476. p96.CanCollide = false
  6477. p96.FormFactor = Enum.FormFactor.Custom
  6478. p96.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  6479. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6480. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6481. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6482. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6483. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6484. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6485. b89 = Instance.new("SpecialMesh", p96)
  6486. b89.MeshType = Enum.MeshType.Brick
  6487. b89.Name = "Mesh"
  6488. b89.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  6489. p97 = Instance.new("Part", m)
  6490. p97.BrickColor = BrickColor.new("Dark red")
  6491. p97.Material = Enum.Material.Neon
  6492. p97.Name = "apart"
  6493. p97.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6494. p97.CanCollide = false
  6495. p97.FormFactor = Enum.FormFactor.Custom
  6496. p97.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  6497. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6498. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6499. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6500. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6501. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6502. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6503. b90 = Instance.new("SpecialMesh", p97)
  6504. b90.MeshType = Enum.MeshType.Brick
  6505. b90.Name = "Mesh"
  6506. b90.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  6507. p98 = Instance.new("Part", m)
  6508. p98.BrickColor = BrickColor.new("Black")
  6509. p98.Material = Enum.Material.SmoothPlastic
  6510. p98.Name = "apart"
  6511. p98.CFrame = CFrame.new(3.56649303, 154.045105, 39.4362946, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
  6512. p98.CanCollide = false
  6513. p98.FormFactor = Enum.FormFactor.Custom
  6514. p98.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  6515. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6516. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6517. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6518. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6519. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6520. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6521. b91 = Instance.new("SpecialMesh", p98)
  6522. b91.MeshType = Enum.MeshType.Wedge
  6523. b91.Name = "Mesh"
  6524. b91.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6525. p99 = Instance.new("Part", m)
  6526. p99.BrickColor = BrickColor.new("Black")
  6527. p99.Material = Enum.Material.SmoothPlastic
  6528. p99.Name = "apart"
  6529. p99.CFrame = CFrame.new(3.8483429, 153.558273, 39.4875336, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
  6530. p99.CanCollide = false
  6531. p99.FormFactor = Enum.FormFactor.Custom
  6532. p99.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  6533. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6534. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6535. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6536. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6537. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6538. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6539. b92 = Instance.new("SpecialMesh", p99)
  6540. b92.MeshType = Enum.MeshType.Torso
  6541. b92.Name = "Mesh"
  6542. b92.Scale = Vector3.new(1, 1, 1.01999998)
  6543. p100 = Instance.new("Part", m)
  6544. p100.BrickColor = BrickColor.new("Black")
  6545. p100.Material = Enum.Material.SmoothPlastic
  6546. p100.Name = "apart"
  6547. p100.CFrame = CFrame.new(3.82272005, 154.403824, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6548. p100.CanCollide = false
  6549. p100.FormFactor = Enum.FormFactor.Custom
  6550. p100.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  6551. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6552. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6553. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6554. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6555. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6556. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6557. b93 = Instance.new("SpecialMesh", p100)
  6558. b93.MeshType = Enum.MeshType.Brick
  6559. b93.Name = "Mesh"
  6560. b93.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  6561. p101 = Instance.new("Part", m)
  6562. p101.BrickColor = BrickColor.new("Black")
  6563. p101.Material = Enum.Material.SmoothPlastic
  6564. p101.Name = "apart"
  6565. p101.CFrame = CFrame.new(3.82272005, 153.378906, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6566. p101.CanCollide = false
  6567. p101.FormFactor = Enum.FormFactor.Custom
  6568. p101.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  6569. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6570. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6571. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6572. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6573. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6574. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6575. b94 = Instance.new("SpecialMesh", p101)
  6576. b94.MeshType = Enum.MeshType.Brick
  6577. b94.Name = "Mesh"
  6578. b94.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  6579. p102 = Instance.new("Part", m)
  6580. p102.BrickColor = BrickColor.new("Black")
  6581. p102.Material = Enum.Material.SmoothPlastic
  6582. p102.Name = "apart"
  6583. p102.CFrame = CFrame.new(3.82272005, 153.635132, 39.4875298, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6584. p102.CanCollide = false
  6585. p102.FormFactor = Enum.FormFactor.Custom
  6586. p102.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  6587. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6588. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6589. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6590. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6591. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6592. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6593. b95 = Instance.new("SpecialMesh", p102)
  6594. b95.MeshType = Enum.MeshType.Brick
  6595. b95.Name = "Mesh"
  6596. b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6597. --[[p103 = Instance.new("Part", m)
  6598. p103.BrickColor = BrickColor.new("Black")
  6599. p103.Name = "Right Leg"
  6600. p103.CFrame = CFrame.new(3.81999993, 154.276123, 40.5, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008)
  6601. p103.CanCollide = false
  6602. p103.FormFactor = Enum.FormFactor.Symmetric
  6603. p103.Size = Vector3.new(1, 2, 1)
  6604. p103.BottomSurface = Enum.SurfaceType.Smooth
  6605. p103.TopSurface = Enum.SurfaceType.Smooth--]]
  6606. p103 = RightLeg
  6607. p104 = Instance.new("Part", m)
  6608. p104.BrickColor = BrickColor.new("Black")
  6609. p104.Material = Enum.Material.SmoothPlastic
  6610. p104.Name = "apart"
  6611. p104.CFrame = CFrame.new(3.82272005, 154.35257, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6612. p104.CanCollide = false
  6613. p104.FormFactor = Enum.FormFactor.Custom
  6614. p104.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  6615. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6616. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6617. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6618. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6619. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6620. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6621. p105 = Instance.new("Part", m)
  6622. p105.BrickColor = BrickColor.new("Black")
  6623. p105.Material = Enum.Material.SmoothPlastic
  6624. p105.Name = "apart"
  6625. p105.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6626. p105.CanCollide = false
  6627. p105.FormFactor = Enum.FormFactor.Custom
  6628. p105.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  6629. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6630. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6631. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6632. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6633. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6634. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6635. b96 = Instance.new("SpecialMesh", p105)
  6636. b96.MeshType = Enum.MeshType.Brick
  6637. b96.Name = "Mesh"
  6638. b96.Scale = Vector3.new(1.01999998, 1.00999999, 0.5)
  6639. p106 = Instance.new("Part", m)
  6640. p106.BrickColor = BrickColor.new("Black")
  6641. p106.Material = Enum.Material.SmoothPlastic
  6642. p106.Name = "apart"
  6643. p106.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6644. p106.CanCollide = false
  6645. p106.FormFactor = Enum.FormFactor.Custom
  6646. p106.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  6647. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6648. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6649. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6650. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6651. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6652. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6653. b97 = Instance.new("SpecialMesh", p106)
  6654. b97.MeshType = Enum.MeshType.Brick
  6655. b97.Name = "Mesh"
  6656. b97.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6657. p107 = Instance.new("Part", m)
  6658. p107.BrickColor = BrickColor.new("Black")
  6659. p107.Material = Enum.Material.SmoothPlastic
  6660. p107.Name = "apart"
  6661. p107.CFrame = CFrame.new(3.56649303, 154.045105, 40.5636902, -4.37113883e-008, 0, -1, 9.29513355e-010, 1, -4.06303176e-017, 1, -9.29513355e-010, -4.37113883e-008)
  6662. p107.CanCollide = false
  6663. p107.FormFactor = Enum.FormFactor.Custom
  6664. p107.Size = Vector3.new(0.922420025, 0.409964412, 0.512455404)
  6665. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6666. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6667. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6668. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6669. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6670. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6671. b98 = Instance.new("SpecialMesh", p107)
  6672. b98.MeshType = Enum.MeshType.Wedge
  6673. b98.Name = "Mesh"
  6674. b98.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6675. p108 = Instance.new("Part", m)
  6676. p108.BrickColor = BrickColor.new("Black")
  6677. p108.Material = Enum.Material.SmoothPlastic
  6678. p108.Name = "apart"
  6679. p108.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, -4.37113883e-008, -2.16840434e-019, 1, -4.3159529e-005, 1, -1.88656317e-012, -1, -4.3159529e-005, -4.37113883e-008)
  6680. p108.CanCollide = false
  6681. p108.FormFactor = Enum.FormFactor.Custom
  6682. p108.Size = Vector3.new(0.922419965, 0.256227762, 0.973665476)
  6683. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6684. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6685. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6686. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6687. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6688. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6689. b99 = Instance.new("SpecialMesh", p108)
  6690. b99.MeshType = Enum.MeshType.Torso
  6691. b99.Name = "Mesh"
  6692. b99.Scale = Vector3.new(1, 1, 1.01999998)
  6693. p109 = Instance.new("Part", m)
  6694. p109.BrickColor = BrickColor.new("Black")
  6695. p109.Material = Enum.Material.SmoothPlastic
  6696. p109.Name = "apart"
  6697. p109.CFrame = CFrame.new(3.82272005, 153.635132, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6698. p109.CanCollide = false
  6699. p109.FormFactor = Enum.FormFactor.Custom
  6700. p109.Size = Vector3.new(1.02491105, 0.409964383, 1.02491093)
  6701. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6702. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6703. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6704. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6705. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6706. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6707. b100 = Instance.new("SpecialMesh", p109)
  6708. b100.MeshType = Enum.MeshType.Brick
  6709. b100.Name = "Mesh"
  6710. b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6711. p110 = Instance.new("Part", m)
  6712. p110.BrickColor = BrickColor.new("Black")
  6713. p110.Material = Enum.Material.SmoothPlastic
  6714. p110.Name = "apart"
  6715. p110.CFrame = CFrame.new(3.82272005, 153.378906, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6716. p110.CanCollide = false
  6717. p110.FormFactor = Enum.FormFactor.Custom
  6718. p110.Size = Vector3.new(1.02491105, 0.245498881, 1.02491093)
  6719. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6720. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6721. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6722. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6723. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6724. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6725. b101 = Instance.new("SpecialMesh", p110)
  6726. b101.MeshType = Enum.MeshType.Brick
  6727. b101.Name = "Mesh"
  6728. b101.Scale = Vector3.new(1.00999999, 0.421655744, 1.00999999)
  6729. p111 = Instance.new("Part", m)
  6730. p111.BrickColor = BrickColor.new("Black")
  6731. p111.Material = Enum.Material.SmoothPlastic
  6732. p111.Name = "apart"
  6733. p111.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6734. p111.CanCollide = false
  6735. p111.FormFactor = Enum.FormFactor.Custom
  6736. p111.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  6737. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6738. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6739. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6740. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6741. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6742. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6743. b102 = Instance.new("SpecialMesh", p111)
  6744. b102.MeshType = Enum.MeshType.Brick
  6745. b102.Name = "Mesh"
  6746. b102.Scale = Vector3.new(1.02999997, 1.00999999, 1.00999999)
  6747. p112 = Instance.new("Part", m)
  6748. p112.BrickColor = BrickColor.new("Dark red")
  6749. p112.Material = Enum.Material.Neon
  6750. p112.Name = "apart"
  6751. p112.CFrame = CFrame.new(3.8483429, 153.558273, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6752. p112.CanCollide = false
  6753. p112.FormFactor = Enum.FormFactor.Custom
  6754. p112.Size = Vector3.new(0.973665535, 0.256227732, 0.307473242)
  6755. p112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6756. p112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6757. p112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6758. p112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6759. p112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6760. p112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6761. b103 = Instance.new("SpecialMesh", p112)
  6762. b103.MeshType = Enum.MeshType.Brick
  6763. b103.Name = "Mesh"
  6764. b103.Scale = Vector3.new(1.03999996, 0.5, 1.00999999)
  6765. p113 = Instance.new("Part", m)
  6766. p113.BrickColor = BrickColor.new("Dark red")
  6767. p113.Material = Enum.Material.Neon
  6768. p113.Name = "apart"
  6769. p113.CFrame = CFrame.new(3.82272005, 154.403824, 40.5124359, 1, -2.16840434e-019, 0, -2.16840434e-019, 1, 8.24642978e-020, 0, 8.24642848e-020, 1)
  6770. p113.CanCollide = false
  6771. p113.FormFactor = Enum.FormFactor.Custom
  6772. p113.Size = Vector3.new(1.02491105, 1.12740207, 0.409964353)
  6773. p113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6774. p113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6775. p113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6776. p113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6777. p113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6778. p113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6779. b104 = Instance.new("SpecialMesh", p113)
  6780. b104.MeshType = Enum.MeshType.Brick
  6781. b104.Name = "Mesh"
  6782. b104.Scale = Vector3.new(1.02999997, 1.00999999, 0.25)
  6783. p114 = Instance.new("Part", m)
  6784. p114.BrickColor = BrickColor.new("Black")
  6785. p114.Material = Enum.Material.SmoothPlastic
  6786. p114.Name = "apart"
  6787. p114.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270462, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
  6788. p114.CanCollide = false
  6789. p114.FormFactor = Enum.FormFactor.Custom
  6790. p114.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  6791. p114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6792. p114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6793. p114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6794. p114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6795. p114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6796. p114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6797. b105 = Instance.new("SpecialMesh", p114)
  6798. b105.MeshType = Enum.MeshType.Cylinder
  6799. b105.Name = "Mesh"
  6800. b105.Scale = Vector3.new(1.01999998, 1, 1)
  6801. p115 = Instance.new("Part", m)
  6802. p115.BrickColor = BrickColor.new("Black")
  6803. p115.Material = Enum.Material.SmoothPlastic
  6804. p115.Name = "apart"
  6805. p115.CFrame = CFrame.new(3.82272005, 157.171097, 38.4626236, 1, -2.72848411e-012, 1.07291953e-012, 0, 1, 0, 6.20303808e-012, 0, 1)
  6806. p115.CanCollide = false
  6807. p115.FormFactor = Enum.FormFactor.Custom
  6808. p115.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  6809. p115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6810. p115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6811. p115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6812. p115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6813. p115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6814. p115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6815. b106 = Instance.new("SpecialMesh", p115)
  6816. b106.MeshType = Enum.MeshType.Brick
  6817. b106.Name = "Mesh"
  6818. b106.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6819. --[[p116 = Instance.new("Part", m)
  6820. p116.BrickColor = BrickColor.new("Black")
  6821. p116.Name = "Left Arm"
  6822. p116.CFrame = CFrame.new(3.81999993, 156.276138, 38.5000076, -4.37103154e-008, -2.72848411e-012, -1, 0, 1, 0, 1, 0, -4.37175913e-008)
  6823. p116.CanCollide = false
  6824. p116.FormFactor = Enum.FormFactor.Symmetric
  6825. p116.Size = Vector3.new(1, 2, 1)
  6826. p116.BottomSurface = Enum.SurfaceType.Smooth
  6827. p116.TopSurface = Enum.SurfaceType.Smooth--]]
  6828. p116 = LeftArm
  6829. p117 = Instance.new("Part", m)
  6830. p117.BrickColor = BrickColor.new("Black")
  6831. p117.Material = Enum.Material.SmoothPlastic
  6832. p117.Name = "apart"
  6833. p117.CFrame = CFrame.new(4.232687, 157.55545, 37.668335, -1, 4.16358271e-005, 1.11714198e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424664e-005, -0.865983546, -0.500072539)
  6834. p117.CanCollide = false
  6835. p117.FormFactor = Enum.FormFactor.Custom
  6836. p117.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  6837. p117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6838. p117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6839. p117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6840. p117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6841. p117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6842. p117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6843. b107 = Instance.new("SpecialMesh", p117)
  6844. b107.MeshType = Enum.MeshType.Wedge
  6845. b107.Name = "Mesh"
  6846. b107.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  6847. p118 = Instance.new("Part", m)
  6848. p118.BrickColor = BrickColor.new("Black")
  6849. p118.Material = Enum.Material.SmoothPlastic
  6850. p118.Name = "apart"
  6851. p118.CFrame = CFrame.new(3.82272029, 156.018066, 38.0782814, 1, -2.6537661e-012, 0, -8.34776692e-013, 1, 0, 3.63797881e-012, 0, 1)
  6852. p118.CanCollide = false
  6853. p118.FormFactor = Enum.FormFactor.Custom
  6854. p118.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  6855. p118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6856. p118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6857. p118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6858. p118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6859. p118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6860. p118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6861. b108 = Instance.new("SpecialMesh", p118)
  6862. b108.MeshType = Enum.MeshType.Brick
  6863. b108.Name = "Mesh"
  6864. b108.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6865. p119 = Instance.new("Part", m)
  6866. p119.BrickColor = BrickColor.new("Black")
  6867. p119.Material = Enum.Material.SmoothPlastic
  6868. p119.Name = "apart"
  6869. p119.CFrame = CFrame.new(3.82272029, 156.402405, 38.0782814, -1, 3.04301539e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171197e-005, 3.04310852e-005, -1)
  6870. p119.CanCollide = false
  6871. p119.FormFactor = Enum.FormFactor.Custom
  6872. p119.Size = Vector3.new(1.02491105, 0.512455463, 0.256227732)
  6873. p119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6874. p119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6875. p119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6876. p119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6877. p119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6878. p119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6879. b109 = Instance.new("SpecialMesh", p119)
  6880. b109.MeshType = Enum.MeshType.Wedge
  6881. b109.Name = "Mesh"
  6882. b109.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6883. p120 = Instance.new("Part", m)
  6884. p120.BrickColor = BrickColor.new("Black")
  6885. p120.Material = Enum.Material.SmoothPlastic
  6886. p120.Name = "apart"
  6887. p120.CFrame = CFrame.new(3.82272005, 157.350449, 38.0270424, 1, -9.09494702e-013, 9.09494702e-013, -9.09494702e-013, 1, 0, 1.36424205e-012, 0, 1)
  6888. p120.CanCollide = false
  6889. p120.FormFactor = Enum.FormFactor.Custom
  6890. p120.Size = Vector3.new(1.02491105, 0.256227732, 0.256227732)
  6891. p120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6892. p120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6893. p120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6894. p120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6895. p120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6896. p120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6897. b110 = Instance.new("SpecialMesh", p120)
  6898. b110.MeshType = Enum.MeshType.Cylinder
  6899. b110.Name = "Mesh"
  6900. b110.Scale = Vector3.new(1.02999997, 0.5, 0.5)
  6901. p121 = Instance.new("Part", m)
  6902. p121.BrickColor = BrickColor.new("Black")
  6903. p121.Material = Enum.Material.SmoothPlastic
  6904. p121.Name = "apart"
  6905. p121.CFrame = CFrame.new(3.41275764, 157.555435, 37.6683273, -1, 4.16358271e-005, 1.1171418e-005, 1.11466707e-005, 0.500072539, -0.865983546, -4.16424627e-005, -0.865983546, -0.500072539)
  6906. p121.CanCollide = false
  6907. p121.FormFactor = Enum.FormFactor.Custom
  6908. p121.Size = Vector3.new(0.245498881, 0.768683195, 0.245498881)
  6909. p121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6910. p121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6911. p121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6912. p121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6913. p121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6914. p121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6915. b111 = Instance.new("SpecialMesh", p121)
  6916. b111.MeshType = Enum.MeshType.Wedge
  6917. b111.Name = "Mesh"
  6918. b111.Scale = Vector3.new(0.417481035, 1, 0.626221299)
  6919. p122 = Instance.new("Part", m)
  6920. p122.BrickColor = BrickColor.new("Black")
  6921. p122.Material = Enum.Material.SmoothPlastic
  6922. p122.Name = "apart"
  6923. p122.CFrame = CFrame.new(3.82272029, 156.018051, 38.590744, -1, 3.04301557e-005, 3.05180438e-005, 3.04310852e-005, 1, 3.04301557e-005, -3.05171179e-005, 3.04310852e-005, -1)
  6924. p122.CanCollide = false
  6925. p122.FormFactor = Enum.FormFactor.Custom
  6926. p122.Size = Vector3.new(1.02491105, 0.256227732, 0.768683195)
  6927. p122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6928. p122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6929. p122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6930. p122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6931. p122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6932. p122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6933. b112 = Instance.new("SpecialMesh", p122)
  6934. b112.MeshType = Enum.MeshType.Wedge
  6935. b112.Name = "Mesh"
  6936. b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6937. p123 = Instance.new("Part", m)
  6938. p123.BrickColor = BrickColor.new("Black")
  6939. p123.Material = Enum.Material.SmoothPlastic
  6940. p123.Name = "apart"
  6941. p123.CFrame = CFrame.new(3.82272005, 155.633713, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6942. p123.CanCollide = false
  6943. p123.FormFactor = Enum.FormFactor.Custom
  6944. p123.Size = Vector3.new(1.02491105, 0.512455463, 1.02491093)
  6945. p123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6946. p123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6947. p123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6948. p123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6949. p123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6950. p123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6951. b113 = Instance.new("SpecialMesh", p123)
  6952. b113.MeshType = Enum.MeshType.Brick
  6953. b113.Name = "Mesh"
  6954. b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  6955. p124 = Instance.new("Part", m)
  6956. p124.BrickColor = BrickColor.new("Dark red")
  6957. p124.Material = Enum.Material.Neon
  6958. p124.Name = "apart"
  6959. p124.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6960. p124.CanCollide = false
  6961. p124.FormFactor = Enum.FormFactor.Custom
  6962. p124.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  6963. p124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6964. p124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6965. p124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6966. p124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6967. p124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6968. p124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6969. b114 = Instance.new("SpecialMesh", p124)
  6970. b114.MeshType = Enum.MeshType.Brick
  6971. b114.Name = "Mesh"
  6972. b114.Scale = Vector3.new(0.25, 1.02999997, 1.02999997)
  6973. p125 = Instance.new("Part", m)
  6974. p125.BrickColor = BrickColor.new("Black")
  6975. p125.Material = Enum.Material.SmoothPlastic
  6976. p125.Name = "apart"
  6977. p125.CFrame = CFrame.new(3.82272005, 155.633713, 38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6978. p125.CanCollide = false
  6979. p125.FormFactor = Enum.FormFactor.Custom
  6980. p125.Size = Vector3.new(1.02491105, 0.512455463, 0.973665357)
  6981. p125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  6982. p125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  6983. p125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  6984. p125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  6985. p125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  6986. p125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  6987. b115 = Instance.new("SpecialMesh", p125)
  6988. b115.MeshType = Enum.MeshType.Brick
  6989. b115.Name = "Mesh"
  6990. b115.Scale = Vector3.new(0.5, 1.01999998, 1.01999998)
  6991. p126 = Instance.new("Part", m)
  6992. p126.BrickColor = BrickColor.new("Black")
  6993. p126.Material = Enum.Material.SmoothPlastic
  6994. p126.Name = "apart"
  6995. p126.CFrame = CFrame.new(3.82272005, 156.40239, 38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  6996. p126.CanCollide = false
  6997. p126.FormFactor = Enum.FormFactor.Custom
  6998. p126.Size = Vector3.new(1.02491105, 2.04982185, 1.02491093)
  6999. p126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  7000. p126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  7001. p126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  7002. p126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  7003. p126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  7004. p126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  7005. w1 = Instance.new("Weld", p1)
  7006. w1.Name = "Torso_Weld"
  7007. w1.Part0 = p1
  7008. w1.C0 = CFrame.new(40.0074806, -173.696487, -4.43766594, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7009. w1.Part1 = p2
  7010. w1.C1 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7011. w2 = Instance.new("Weld", p2)
  7012. w2.Name = "apart_Weld"
  7013. w2.Part0 = p2
  7014. w2.C0 = CFrame.new(-40, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7015. w2.Part1 = p3
  7016. w2.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7017. w3 = Instance.new("Weld", p3)
  7018. w3.Name = "apart_Weld"
  7019. w3.Part0 = p3
  7020. w3.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7021. w3.Part1 = p4
  7022. w3.C1 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7023. w4 = Instance.new("Weld", p4)
  7024. w4.Name = "apart_Weld"
  7025. w4.Part0 = p4
  7026. w4.C0 = CFrame.new(4.59312534, 39.9904404, 174.904617, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7027. w4.Part1 = p5
  7028. w4.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7029. w5 = Instance.new("Weld", p5)
  7030. w5.Name = "apart_Weld"
  7031. w5.Part0 = p5
  7032. w5.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7033. w5.Part1 = p6
  7034. w5.C1 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7035. w6 = Instance.new("Weld", p6)
  7036. w6.Name = "apart_Weld"
  7037. w6.Part0 = p6
  7038. w6.C0 = CFrame.new(4.59312534, 39.9904099, 175.417068, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7039. w6.Part1 = p7
  7040. w6.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7041. w7 = Instance.new("Weld", p7)
  7042. w7.Name = "apart_Weld"
  7043. w7.Part0 = p7
  7044. w7.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7045. w7.Part1 = p8
  7046. w7.C1 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7047. w8 = Instance.new("Weld", p8)
  7048. w8.Name = "apart_Weld"
  7049. w8.Part0 = p8
  7050. w8.C0 = CFrame.new(-4.38642216, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7051. w8.Part1 = p9
  7052. w8.C1 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
  7053. w9 = Instance.new("Weld", p9)
  7054. w9.Name = "apart_Weld"
  7055. w9.Part0 = p9
  7056. w9.C0 = CFrame.new(4.57660246, -175.162796, 39.9838219, -1, 9.14681077e-005, -3.05134035e-005, 9.14653137e-005, 1, 9.14681077e-005, 3.05217691e-005, 9.14653137e-005, -1)
  7057. w9.Part1 = p10
  7058. w9.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7059. w10 = Instance.new("Weld", p10)
  7060. w10.Name = "apart_Weld"
  7061. w10.Part0 = p10
  7062. w10.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7063. w10.Part1 = p11
  7064. w10.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7065. w11 = Instance.new("Weld", p11)
  7066. w11.Name = "apart_Weld"
  7067. w11.Part0 = p11
  7068. w11.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7069. w11.Part1 = p12
  7070. w11.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7071. w12 = Instance.new("Weld", p12)
  7072. w12.Name = "apart_Weld"
  7073. w12.Part0 = p12
  7074. w12.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7075. w12.Part1 = p13
  7076. w12.C1 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7077. w13 = Instance.new("Weld", p13)
  7078. w13.Name = "apart_Weld"
  7079. w13.Part0 = p13
  7080. w13.C0 = CFrame.new(40.0074806, -173.670853, -4.28392887, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7081. w13.Part1 = p14
  7082. w13.C1 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7083. w14 = Instance.new("Weld", p14)
  7084. w14.Name = "apart_Weld"
  7085. w14.Part0 = p14
  7086. w14.C0 = CFrame.new(-3.82272005, -173.672577, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7087. w14.Part1 = p15
  7088. w14.C1 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7089. w15 = Instance.new("Weld", p15)
  7090. w15.Name = "apart_Weld"
  7091. w15.Part0 = p15
  7092. w15.C0 = CFrame.new(4.59311438, 39.7341995, 175.160828, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7093. w15.Part1 = p16
  7094. w15.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7095. w16 = Instance.new("Weld", p16)
  7096. w16.Name = "apart_Weld"
  7097. w16.Part0 = p16
  7098. w16.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7099. w16.Part1 = p17
  7100. w16.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7101. w17 = Instance.new("Weld", p17)
  7102. w17.Name = "apart_Weld"
  7103. w17.Part0 = p17
  7104. w17.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7105. w17.Part1 = p18
  7106. w17.C1 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7107. w18 = Instance.new("Weld", p18)
  7108. w18.Name = "apart_Weld"
  7109. w18.Part0 = p18
  7110. w18.C0 = CFrame.new(4.59313631, 40.2466507, 175.160858, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7111. w18.Part1 = p19
  7112. w18.C1 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7113. w19 = Instance.new("Weld", p19)
  7114. w19.Name = "apart_Weld"
  7115. w19.Part0 = p19
  7116. w19.C0 = CFrame.new(4.59312534, 39.9904251, 175.160843, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7117. w19.Part1 = p20
  7118. w19.C1 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7119. w20 = Instance.new("Weld", p20)
  7120. w20.Name = "apart_Weld"
  7121. w20.Part0 = p20
  7122. w20.C0 = CFrame.new(40.0054741, -4.45672226, 175.157623, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7123. w20.Part1 = p21
  7124. w20.C1 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7125. w21 = Instance.new("Weld", p21)
  7126. w21.Name = "apart_Weld"
  7127. w21.Part0 = p21
  7128. w21.C0 = CFrame.new(-4.07894802, -174.697495, -39.9743652, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7129. w21.Part1 = p22
  7130. w21.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7131. w22 = Instance.new("Weld", p22)
  7132. w22.Name = "apart_Weld"
  7133. w22.Part0 = p22
  7134. w22.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7135. w22.Part1 = p23
  7136. w22.C1 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7137. w23 = Instance.new("Weld", p23)
  7138. w23.Name = "apart_Weld"
  7139. w23.Part0 = p23
  7140. w23.C0 = CFrame.new(-3.82272005, -174.64624, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7141. w23.Part1 = p24
  7142. w23.C1 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7143. w24 = Instance.new("Weld", p24)
  7144. w24.Name = "apart_Weld"
  7145. w24.Part0 = p24
  7146. w24.C0 = CFrame.new(-3.82272005, -173.416351, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7147. w24.Part1 = p25
  7148. w24.C1 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7149. w25 = Instance.new("Weld", p25)
  7150. w25.Name = "apart_Weld"
  7151. w25.Part0 = p25
  7152. w25.C0 = CFrame.new(-3.82272005, -173.416351, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7153. w25.Part1 = p26
  7154. w25.C1 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7155. w26 = Instance.new("Weld", p26)
  7156. w26.Name = "apart_Weld"
  7157. w26.Part0 = p26
  7158. w26.C0 = CFrame.new(39.1086426, -2.66312814, 176.054382, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7159. w26.Part1 = p27
  7160. w26.C1 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  7161. w27 = Instance.new("Weld", p27)
  7162. w27.Name = "apart_Weld"
  7163. w27.Part0 = p27
  7164. w27.C0 = CFrame.new(-175.722595, 3.81502461, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  7165. w27.Part1 = p28
  7166. w27.C1 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7167. w28 = Instance.new("Weld", p28)
  7168. w28.Name = "apart_Weld"
  7169. w28.Part0 = p28
  7170. w28.C0 = CFrame.new(39.1086578, -3.17558312, 176.054398, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7171. w28.Part1 = p29
  7172. w28.C1 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7173. w29 = Instance.new("Weld", p29)
  7174. w29.Name = "apart_Weld"
  7175. w29.Part0 = p29
  7176. w29.C0 = CFrame.new(-3.82272005, -174.799988, -39.9999847, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7177. w29.Part1 = p30
  7178. w29.C1 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  7179. w30 = Instance.new("Weld", p30)
  7180. w30.Name = "apart_Weld"
  7181. w30.Part0 = p30
  7182. w30.C0 = CFrame.new(39.0929604, 2.92530036, -175.160995, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  7183. w30.Part1 = p31
  7184. w30.C1 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  7185. w31 = Instance.new("Weld", p31)
  7186. w31.Name = "apart_Weld"
  7187. w31.Part0 = p31
  7188. w31.C0 = CFrame.new(40.8865547, 2.92502666, -175.161102, -0.000152631605, 6.09867893e-005, -1, -1, -3.05185058e-005, 0.000152629742, -3.05091962e-005, 1, 6.09914459e-005)
  7189. w31.Part1 = p32
  7190. w31.C1 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  7191. w32 = Instance.new("Weld", p32)
  7192. w32.Name = "apart_Weld"
  7193. w32.Part0 = p32
  7194. w32.C0 = CFrame.new(-3.82930517, 174.798615, 40.9788513, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  7195. w32.Part1 = p33
  7196. w32.C1 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7197. w33 = Instance.new("Weld", p33)
  7198. w33.Name = "apart_Weld"
  7199. w33.Part0 = p33
  7200. w33.C0 = CFrame.new(40.9022369, -2.6630733, 176.054321, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7201. w33.Part1 = p34
  7202. w33.C1 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  7203. w34 = Instance.new("Weld", p34)
  7204. w34.Name = "apart_Weld"
  7205. w34.Part0 = p34
  7206. w34.C0 = CFrame.new(-175.825089, 3.81501913, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  7207. w34.Part1 = p35
  7208. w34.C1 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  7209. w35 = Instance.new("Weld", p35)
  7210. w35.Name = "apart_Weld"
  7211. w35.Part0 = p35
  7212. w35.C0 = CFrame.new(-3.8292613, 173.876205, 40.4663696, 1, 3.05180401e-005, 3.05171143e-005, 3.05171125e-005, -1, 3.0431087e-005, 3.05180438e-005, -3.04301557e-005, -1)
  7213. w35.Part1 = p36
  7214. w35.C1 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  7215. w36 = Instance.new("Weld", p36)
  7216. w36.Name = "apart_Weld"
  7217. w36.Part0 = p36
  7218. w36.C0 = CFrame.new(3.81620979, 174.79892, -39.0317726, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  7219. w36.Part1 = p37
  7220. w36.C1 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  7221. w37 = Instance.new("Weld", p37)
  7222. w37.Name = "apart_Weld"
  7223. w37.Part0 = p37
  7224. w37.C0 = CFrame.new(3.81622219, 173.87648, -39.5442276, -1, 3.0431087e-005, 3.05171143e-005, -3.04301557e-005, -1, 3.05180401e-005, 3.05180438e-005, 3.05171125e-005, 1)
  7225. w37.Part1 = p38
  7226. w37.C1 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7227. w38 = Instance.new("Weld", p38)
  7228. w38.Name = "apart_Weld"
  7229. w38.Part0 = p38
  7230. w38.C0 = CFrame.new(40.9022522, -3.17552829, 176.054337, -3.05612884e-005, -3.04729328e-005, -1, 1, -3.05185094e-005, -3.05603571e-005, -3.05175781e-005, -1, 3.0473866e-005)
  7231. w38.Part1 = p39
  7232. w38.C1 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7233. w39 = Instance.new("Weld", p39)
  7234. w39.Name = "apart_Weld"
  7235. w39.Part0 = p39
  7236. w39.C0 = CFrame.new(39.9540176, 3.18871474, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7237. w39.Part1 = p40
  7238. w39.C1 = CFrame.new(40.0052567, 3.18871641, -175.183014, 3.0473866e-005, -3.05603571e-005, -1, -1, -3.05185094e-005, -3.04729328e-005, -3.05175781e-005, 1, -3.05612884e-005)
  7239. w40 = Instance.new("Weld", p41)
  7240. w40.Name = "apart_Weld"
  7241. w40.Part0 = p41
  7242. w40.C0 = CFrame.new(4.43938923, 39.9903679, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7243. w40.Part1 = p42
  7244. w40.C1 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7245. w41 = Instance.new("Weld", p42)
  7246. w41.Name = "apart_Weld"
  7247. w41.Part0 = p42
  7248. w41.C0 = CFrame.new(-39.2770424, 3.8185389, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7249. w41.Part1 = p43
  7250. w41.C1 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7251. w42 = Instance.new("Weld", p43)
  7252. w42.Name = "apart_Weld"
  7253. w42.Part0 = p43
  7254. w42.C0 = CFrame.new(4.38814354, 39.9903717, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7255. w42.Part1 = p44
  7256. w42.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  7257. w43 = Instance.new("Weld", p44)
  7258. w43.Name = "apart_Weld"
  7259. w43.Part0 = p44
  7260. w43.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  7261. w43.Part1 = p45
  7262. w43.C1 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  7263. w44 = Instance.new("Weld", p45)
  7264. w44.Name = "apart_Weld"
  7265. w44.Part0 = p45
  7266. w44.C0 = CFrame.new(-176.336121, 40.0053749, 4.18144655, -4.37113883e-008, 1, -3.05612884e-005, 0, -3.05612884e-005, -1, -1, -4.37113883e-008, 1.3358764e-012)
  7267. w44.Part1 = p46
  7268. w44.C1 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7269. w45 = Instance.new("Weld", p46)
  7270. w45.Name = "Head_Weld"
  7271. w45.Part0 = p46
  7272. w45.C0 = CFrame.new(-40.7119179, 3.81858277, 176.338715, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7273. w45.Part1 = p47
  7274. w45.C1 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7275. w46 = Instance.new("Weld", p47)
  7276. w46.Name = "apart_Weld"
  7277. w46.Part0 = p47
  7278. w46.C0 = CFrame.new(-40, -176.019974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7279. w46.Part1 = p48
  7280. w46.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7281. w47 = Instance.new("Weld", p48)
  7282. w47.Name = "apart_Weld"
  7283. w47.Part0 = p48
  7284. w47.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7285. w47.Part1 = p49
  7286. w47.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7287. w48 = Instance.new("Weld", p49)
  7288. w48.Name = "apart_Weld"
  7289. w48.Part0 = p49
  7290. w48.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7291. w48.Part1 = p50
  7292. w48.C1 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7293. w49 = Instance.new("Weld", p50)
  7294. w49.Name = "apart_Weld"
  7295. w49.Part0 = p50
  7296. w49.C0 = CFrame.new(4.64437056, 39.9903603, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7297. w49.Part1 = p51
  7298. w49.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7299. w50 = Instance.new("Weld", p51)
  7300. w50.Name = "apart_Weld"
  7301. w50.Part0 = p51
  7302. w50.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7303. w50.Part1 = p52
  7304. w50.C1 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7305. w51 = Instance.new("Weld", p52)
  7306. w51.Name = "apart_Weld"
  7307. w51.Part0 = p52
  7308. w51.C0 = CFrame.new(40.7543678, -42.5779533, -171.325851, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7309. w51.Part1 = p53
  7310. w51.C1 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7311. w52 = Instance.new("Weld", p53)
  7312. w52.Name = "apart_Weld"
  7313. w52.Part0 = p53
  7314. w52.C0 = CFrame.new(-39.9944801, 3.81856084, 176.338684, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7315. w52.Part1 = p54
  7316. w52.C1 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
  7317. w53 = Instance.new("Weld", p54)
  7318. w53.Name = "apart_Weld"
  7319. w53.Part0 = p54
  7320. w53.C0 = CFrame.new(176.331329, 39.4632111, -3.82271242, -4.37113883e-008, -1, 0.000152631605, 0, -0.000152631605, -1, 1, -4.37113883e-008, 6.67173912e-012)
  7321. w53.Part1 = p55
  7322. w53.C1 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7323. w54 = Instance.new("Weld", p55)
  7324. w54.Name = "apart_Weld"
  7325. w54.Part0 = p55
  7326. w54.C0 = CFrame.new(39.6354523, 3.04852581, -176.447006, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7327. w54.Part1 = p56
  7328. w54.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7329. w55 = Instance.new("Weld", p56)
  7330. w55.Name = "apart_Weld"
  7331. w55.Part0 = p56
  7332. w55.C0 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7333. w55.Part1 = p57
  7334. w55.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7335. w56 = Instance.new("Weld", p57)
  7336. w56.Name = "apart_Weld"
  7337. w56.Part0 = p57
  7338. w56.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7339. w56.Part1 = p58
  7340. w56.C1 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  7341. w57 = Instance.new("Weld", p58)
  7342. w57.Name = "apart_Weld"
  7343. w57.Part0 = p58
  7344. w57.C0 = CFrame.new(-176.337341, -40.5636826, -3.82272768, -4.37113883e-008, 1, 4.37113883e-008, 0, -4.37113883e-008, 1, 1, 4.37113883e-008, 1.91068547e-015)
  7345. w57.Part1 = p59
  7346. w57.C1 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  7347. w58 = Instance.new("Weld", p59)
  7348. w58.Name = "apart_Weld"
  7349. w58.Part0 = p59
  7350. w58.C0 = CFrame.new(-176.33754, 3.81501579, -39.9998207, 5.34812607e-005, 1, 9.31994482e-010, -1, 5.34812607e-005, -4.31585977e-005, -4.31585977e-005, 1.37618184e-009, 1)
  7351. w58.Part1 = p60
  7352. w58.C1 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7353. w59 = Instance.new("Weld", p60)
  7354. w59.Name = "apart_Weld"
  7355. w59.Part0 = p60
  7356. w59.C0 = CFrame.new(40.0917892, -3.04741716, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7357. w59.Part1 = p61
  7358. w59.C1 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7359. w60 = Instance.new("Weld", p61)
  7360. w60.Name = "apart_Weld"
  7361. w60.Part0 = p61
  7362. w60.C0 = CFrame.new(39.8660278, 3.04846263, -176.447052, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7363. w60.Part1 = p62
  7364. w60.C1 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7365. w61 = Instance.new("Weld", p62)
  7366. w61.Name = "apart_Weld"
  7367. w61.Part0 = p62
  7368. w61.C0 = CFrame.new(40.8056221, -42.5779381, -171.325836, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7369. w61.Part1 = p63
  7370. w61.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7371. w62 = Instance.new("Weld", p63)
  7372. w62.Name = "apart_Weld"
  7373. w62.Part0 = p63
  7374. w62.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7375. w62.Part1 = p64
  7376. w62.C1 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7377. w63 = Instance.new("Weld", p64)
  7378. w63.Name = "apart_Weld"
  7379. w63.Part0 = p64
  7380. w63.C0 = CFrame.new(40.3014908, 2.74087882, -176.780243, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7381. w63.Part1 = p65
  7382. w63.C1 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7383. w64 = Instance.new("Weld", p65)
  7384. w64.Name = "apart_Weld"
  7385. w64.Part0 = p65
  7386. w64.C0 = CFrame.new(39.6353073, 2.74106169, -176.780121, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7387. w64.Part1 = p66
  7388. w64.C1 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7389. w65 = Instance.new("Weld", p66)
  7390. w65.Name = "apart_Weld"
  7391. w65.Part0 = p66
  7392. w65.C0 = CFrame.new(40.3016357, 3.04834294, -176.447128, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7393. w65.Part1 = p67
  7394. w65.C1 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7395. w66 = Instance.new("Weld", p67)
  7396. w66.Name = "apart_Weld"
  7397. w66.Part0 = p67
  7398. w66.C0 = CFrame.new(40.0710144, 3.04840636, -176.447083, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7399. w66.Part1 = p68
  7400. w66.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7401. w67 = Instance.new("Weld", p68)
  7402. w67.Name = "apart_Weld"
  7403. w67.Part0 = p68
  7404. w67.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7405. w67.Part1 = p69
  7406. w67.C1 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7407. w68 = Instance.new("Weld", p69)
  7408. w68.Name = "apart_Weld"
  7409. w68.Part0 = p69
  7410. w68.C0 = CFrame.new(40.3223953, -3.04741025, 176.775482, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7411. w68.Part1 = p70
  7412. w68.C1 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7413. w69 = Instance.new("Weld", p70)
  7414. w69.Name = "apart_Weld"
  7415. w69.Part0 = p70
  7416. w69.C0 = CFrame.new(39.8868141, -3.04742336, 176.775467, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7417. w69.Part1 = p71
  7418. w69.C1 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7419. w70 = Instance.new("Weld", p71)
  7420. w70.Name = "apart_Weld"
  7421. w70.Part0 = p71
  7422. w70.C0 = CFrame.new(-40.6606789, 3.81858134, 176.338699, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7423. w70.Part1 = p72
  7424. w70.C1 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7425. w71 = Instance.new("Weld", p72)
  7426. w71.Name = "apart_Weld"
  7427. w71.Part0 = p72
  7428. w71.C0 = CFrame.new(39.6562119, -3.04743052, 176.775452, -3.05612884e-005, 6.10798015e-005, -1, 1, -3.05147805e-005, -3.05631511e-005, -3.05166468e-005, -1, -6.10788702e-005)
  7429. w71.Part1 = p73
  7430. w71.C1 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7431. w72 = Instance.new("Weld", p73)
  7432. w72.Name = "apart_Weld"
  7433. w72.Part0 = p73
  7434. w72.C0 = CFrame.new(39.2682533, -42.5783615, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7435. w72.Part1 = p74
  7436. w72.C1 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7437. w73 = Instance.new("Weld", p74)
  7438. w73.Name = "apart_Weld"
  7439. w73.Part0 = p74
  7440. w73.C0 = CFrame.new(39.3195076, -42.5783463, -171.326065, 0.000228409437, -0.000213359424, -1, -0.965923131, 0.258829027, -0.000275849598, 0.258829057, 0.965923131, -0.000146969804)
  7441. w73.Part1 = p75
  7442. w73.C1 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7443. w74 = Instance.new("Weld", p75)
  7444. w74.Name = "apart_Weld"
  7445. w74.Part0 = p75
  7446. w74.C0 = CFrame.new(-39.3282967, 3.81854057, 176.338669, -3.05612884e-005, -3.05603571e-005, 1, -1, 3.05185131e-005, -3.05603571e-005, -3.05175781e-005, -1, -3.05612884e-005)
  7447. w74.Part1 = p76
  7448. w74.C1 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7449. w75 = Instance.new("Weld", p76)
  7450. w75.Name = "apart_Weld"
  7451. w75.Part0 = p76
  7452. w75.C0 = CFrame.new(4.69561625, 39.9903564, 176.339478, -1, 1.85528792e-009, -4.30663385e-005, 4.30663385e-005, 5.3449472e-005, -1, 4.46585241e-010, -1, -5.3449472e-005)
  7453. w75.Part1 = p77
  7454. w75.C1 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7455. w76 = Instance.new("Weld", p77)
  7456. w76.Name = "apart_Weld"
  7457. w76.Part0 = p77
  7458. w76.C0 = CFrame.new(40.0708847, 2.74094224, -176.780197, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7459. w76.Part1 = p78
  7460. w76.C1 = CFrame.new(39.8659096, 2.74099851, -176.780167, -0.000274701917, 0.000183053373, -0.99999994, -0.99999994, -3.05222311e-005, 0.000274696329, -3.0471947e-005, 1, 0.000183061755)
  7461. w77 = Instance.new("Weld", p79)
  7462. w77.Name = "apart_Weld"
  7463. w77.Part0 = p79
  7464. w77.C0 = CFrame.new(-3.82272005, -175.414932, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7465. w77.Part1 = p80
  7466. w77.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7467. w78 = Instance.new("Weld", p80)
  7468. w78.Name = "apart_Weld"
  7469. w78.Part0 = p80
  7470. w78.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7471. w78.Part1 = p81
  7472. w78.C1 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  7473. w79 = Instance.new("Weld", p81)
  7474. w79.Name = "apart_Weld"
  7475. w79.Part0 = p81
  7476. w79.C0 = CFrame.new(-3.40590239, -124.572937, 131.068604, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  7477. w79.Part1 = p82
  7478. w79.C1 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
  7479. w80 = Instance.new("Weld", p82)
  7480. w80.Name = "apart_Weld"
  7481. w80.Part0 = p82
  7482. w80.C0 = CFrame.new(-3.81866574, -174.260757, -41.4144592, 1, -3.05171125e-005, 3.05180438e-005, 3.05180438e-005, 1, -3.05171125e-005, -3.05171125e-005, 3.05180438e-005, 1)
  7483. w80.Part1 = p83
  7484. w80.C1 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7485. w81 = Instance.new("Weld", p83)
  7486. w81.Name = "apart_Weld"
  7487. w81.Part0 = p83
  7488. w81.C0 = CFrame.new(-3.82272005, -174.261902, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7489. w81.Part1 = p84
  7490. w81.C1 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7491. w82 = Instance.new("Weld", p84)
  7492. w82.Name = "apart_Weld"
  7493. w82.Part0 = p84
  7494. w82.C0 = CFrame.new(-3.82272005, -173.877563, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7495. w82.Part1 = p85
  7496. w82.C1 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  7497. w83 = Instance.new("Weld", p85)
  7498. w83.Name = "apart_Weld"
  7499. w83.Part0 = p85
  7500. w83.C0 = CFrame.new(-4.22583055, -124.572945, 131.068649, 1, -4.16866387e-005, 1.1171388e-005, 1.11727377e-005, 0.500085652, 0.865975916, -4.16862786e-005, -0.865975916, 0.500085652)
  7501. w83.Part1 = p86
  7502. w83.C1 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7503. w84 = Instance.new("Weld", p86)
  7504. w84.Name = "apart_Weld"
  7505. w84.Part0 = p86
  7506. w84.C0 = CFrame.new(-3.82272005, -174.64624, -41.9217072, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7507. w84.Part1 = p87
  7508. w84.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7509. w85 = Instance.new("Weld", p87)
  7510. w85.Name = "apart_Weld"
  7511. w85.Part0 = p87
  7512. w85.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7513. w85.Part1 = p88
  7514. w85.C1 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7515. w86 = Instance.new("Weld", p88)
  7516. w86.Name = "apart_Weld"
  7517. w86.Part0 = p88
  7518. w86.C0 = CFrame.new(-3.82272005, -175.594284, -41.9729462, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7519. w86.Part1 = p89
  7520. w86.C1 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7521. w87 = Instance.new("Weld", p89)
  7522. w87.Name = "apart_Weld"
  7523. w87.Part0 = p89
  7524. w87.C0 = CFrame.new(-3.82272005, -173.877563, -41.5629883, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7525. w87.Part1 = p90
  7526. w87.C1 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7527. w88 = Instance.new("Weld", p90)
  7528. w88.Name = "Right Arm_Weld"
  7529. w88.Part0 = p90
  7530. w88.C0 = CFrame.new(-3.82272005, -174.64624, -41.5373688, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7531. w88.Part1 = p91
  7532. w88.C1 = CFrame.new(-41.5, -174.519974, 3.82000184, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7533. w89 = Instance.new("Weld", p92)
  7534. w89.Name = "Left Leg_Weld"
  7535. w89.Part0 = p92
  7536. w89.C0 = CFrame.new(-3.82272005, -172.59642, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7537. w89.Part1 = p93
  7538. w89.C1 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7539. w90 = Instance.new("Weld", p93)
  7540. w90.Name = "apart_Weld"
  7541. w90.Part0 = p93
  7542. w90.C0 = CFrame.new(-39.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7543. w90.Part1 = p94
  7544. w90.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7545. w91 = Instance.new("Weld", p94)
  7546. w91.Name = "apart_Weld"
  7547. w91.Part0 = p94
  7548. w91.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7549. w91.Part1 = p95
  7550. w91.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7551. w92 = Instance.new("Weld", p95)
  7552. w92.Name = "apart_Weld"
  7553. w92.Part0 = p95
  7554. w92.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7555. w92.Part1 = p96
  7556. w92.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7557. w93 = Instance.new("Weld", p96)
  7558. w93.Name = "apart_Weld"
  7559. w93.Part0 = p96
  7560. w93.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7561. w93.Part1 = p97
  7562. w93.C1 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7563. w94 = Instance.new("Weld", p97)
  7564. w94.Name = "apart_Weld"
  7565. w94.Part0 = p97
  7566. w94.C0 = CFrame.new(-3.8483429, -171.802124, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7567. w94.Part1 = p98
  7568. w94.C1 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  7569. w95 = Instance.new("Weld", p98)
  7570. w95.Name = "apart_Weld"
  7571. w95.Part0 = p98
  7572. w95.C0 = CFrame.new(-39.4362946, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  7573. w95.Part1 = p99
  7574. w95.C1 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7575. w96 = Instance.new("Weld", p99)
  7576. w96.Name = "apart_Weld"
  7577. w96.Part0 = p99
  7578. w96.C0 = CFrame.new(39.4949493, -171.800415, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7579. w96.Part1 = p100
  7580. w96.C1 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7581. w97 = Instance.new("Weld", p100)
  7582. w97.Name = "apart_Weld"
  7583. w97.Part0 = p100
  7584. w97.C0 = CFrame.new(-3.82272005, -172.647675, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7585. w97.Part1 = p101
  7586. w97.C1 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7587. w98 = Instance.new("Weld", p101)
  7588. w98.Name = "apart_Weld"
  7589. w98.Part0 = p101
  7590. w98.C0 = CFrame.new(-3.82272005, -171.622757, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7591. w98.Part1 = p102
  7592. w98.C1 = CFrame.new(-3.82272005, -171.878983, -39.4875336, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7593. w99 = Instance.new("Weld", p103)
  7594. w99.Name = "apart_Weld"
  7595. w99.Part0 = p103
  7596. w99.C0 = CFrame.new(-40.5, -172.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7597. w99.Part1 = p104
  7598. w99.C1 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7599. w100 = Instance.new("Weld", p104)
  7600. w100.Name = "apart_Weld"
  7601. w100.Part0 = p104
  7602. w100.C0 = CFrame.new(-3.82272005, -172.59642, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7603. w100.Part1 = p105
  7604. w100.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7605. w101 = Instance.new("Weld", p105)
  7606. w101.Name = "apart_Weld"
  7607. w101.Part0 = p105
  7608. w101.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7609. w101.Part1 = p106
  7610. w101.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7611. w102 = Instance.new("Weld", p106)
  7612. w102.Name = "apart_Weld"
  7613. w102.Part0 = p106
  7614. w102.C0 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7615. w102.Part1 = p107
  7616. w102.C1 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  7617. w103 = Instance.new("Weld", p107)
  7618. w103.Name = "apart_Weld"
  7619. w103.Part0 = p107
  7620. w103.C0 = CFrame.new(-40.5636902, -172.288956, 3.5664947, -4.37113883e-008, 9.29513355e-010, 1, 0, 1, -9.29513355e-010, -1, -4.06303176e-017, -4.37113883e-008)
  7621. w103.Part1 = p108
  7622. w103.C1 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7623. w104 = Instance.new("Weld", p108)
  7624. w104.Name = "apart_Weld"
  7625. w104.Part0 = p108
  7626. w104.C0 = CFrame.new(40.5198517, -171.800369, -3.84834123, -4.37113883e-008, -4.3159529e-005, -1, 0, 1, -4.3159529e-005, 1, -1.88656295e-012, -4.37113883e-008)
  7627. w104.Part1 = p109
  7628. w104.C1 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7629. w105 = Instance.new("Weld", p109)
  7630. w105.Name = "apart_Weld"
  7631. w105.Part0 = p109
  7632. w105.C0 = CFrame.new(-3.82272005, -171.878983, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7633. w105.Part1 = p110
  7634. w105.C1 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7635. w106 = Instance.new("Weld", p110)
  7636. w106.Name = "apart_Weld"
  7637. w106.Part0 = p110
  7638. w106.C0 = CFrame.new(-3.82272005, -171.622757, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7639. w106.Part1 = p111
  7640. w106.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7641. w107 = Instance.new("Weld", p111)
  7642. w107.Name = "apart_Weld"
  7643. w107.Part0 = p111
  7644. w107.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7645. w107.Part1 = p112
  7646. w107.C1 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7647. w108 = Instance.new("Weld", p112)
  7648. w108.Name = "apart_Weld"
  7649. w108.Part0 = p112
  7650. w108.C0 = CFrame.new(-3.8483429, -171.802124, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7651. w108.Part1 = p113
  7652. w108.C1 = CFrame.new(-3.82272005, -172.647675, -40.5124359, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7653. w109 = Instance.new("Weld", p114)
  7654. w109.Name = "apart_Weld"
  7655. w109.Part0 = p114
  7656. w109.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7657. w109.Part1 = p115
  7658. w109.C1 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7659. w110 = Instance.new("Weld", p115)
  7660. w110.Name = "Left Arm_Weld"
  7661. w110.Part0 = p115
  7662. w110.C0 = CFrame.new(-3.82272005, -175.414932, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7663. w110.Part1 = p116
  7664. w110.C1 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7665. w111 = Instance.new("Weld", p116)
  7666. w111.Name = "apart_Weld"
  7667. w111.Part0 = p116
  7668. w111.C0 = CFrame.new(-38.5, -174.519974, 3.8200016, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008)
  7669. w111.Part1 = p117
  7670. w111.C1 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  7671. w112 = Instance.new("Weld", p117)
  7672. w112.Name = "apart_Weld"
  7673. w112.Part0 = p117
  7674. w112.C0 = CFrame.new(4.23229599, -55.2924156, 171.076126, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  7675. w112.Part1 = p118
  7676. w112.C1 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7677. w113 = Instance.new("Weld", p118)
  7678. w113.Name = "apart_Weld"
  7679. w113.Part0 = p118
  7680. w113.C0 = CFrame.new(-3.82272005, -174.261902, -38.0782776, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7681. w113.Part1 = p119
  7682. w113.C1 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  7683. w114 = Instance.new("Weld", p119)
  7684. w114.Name = "apart_Weld"
  7685. w114.Part0 = p119
  7686. w114.C0 = CFrame.new(3.81856751, -174.647522, 38.0728455, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  7687. w114.Part1 = p120
  7688. w114.C1 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7689. w115 = Instance.new("Weld", p120)
  7690. w115.Name = "apart_Weld"
  7691. w115.Part0 = p120
  7692. w115.C0 = CFrame.new(-3.82272005, -175.594284, -38.0270386, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7693. w115.Part1 = p121
  7694. w115.C1 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  7695. w116 = Instance.new("Weld", p121)
  7696. w116.Name = "apart_Weld"
  7697. w116.Part0 = p121
  7698. w116.C0 = CFrame.new(3.41236687, -55.2923851, 171.076141, -1, 1.11466697e-005, -4.16424627e-005, 4.16358271e-005, 0.500072539, -0.865983546, 1.11714171e-005, -0.865983546, -0.500072539)
  7699. w116.Part1 = p122
  7700. w116.C1 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  7701. w117 = Instance.new("Weld", p122)
  7702. w117.Name = "apart_Weld"
  7703. w117.Part0 = p122
  7704. w117.C0 = CFrame.new(3.81859493, -174.263199, 38.5853233, -1, 3.04310852e-005, -3.05171179e-005, 3.04301557e-005, 1, 3.04310852e-005, 3.05180438e-005, 3.04301557e-005, -1)
  7705. w117.Part1 = p123
  7706. w117.C1 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7707. w118 = Instance.new("Weld", p123)
  7708. w118.Name = "apart_Weld"
  7709. w118.Part0 = p123
  7710. w118.C0 = CFrame.new(-3.82272005, -173.877563, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7711. w118.Part1 = p124
  7712. w118.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7713. w119 = Instance.new("Weld", p124)
  7714. w119.Name = "apart_Weld"
  7715. w119.Part0 = p124
  7716. w119.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7717. w119.Part1 = p125
  7718. w119.C1 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7719. w120 = Instance.new("Weld", p125)
  7720. w120.Name = "apart_Weld"
  7721. w120.Part0 = p125
  7722. w120.C0 = CFrame.new(-3.82272005, -173.877563, -38.4369965, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7723. w120.Part1 = p126
  7724. w120.C1 = CFrame.new(-3.82272005, -174.64624, -38.462616, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  7725. m.Parent = game:service("Workspace")
  7726. m:MakeJoints()
  7727.  
  7728. RightArm.Transparency=1
  7729. LeftArm.Transparency=1
  7730. LeftLeg.Transparency=1
  7731. RightLeg.Transparency=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement