StrikerAndDai

Untitled

Jun 17th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 316.97 KB | None | 0 0
  1. --------------------------This is an Official script from Duelist--------------------------
  2. ---{-------------------- -------------------}---
  3. ---{-------------------- / \ -------------------}---
  4. ---{-------------------- II -------------------}---
  5. ---{-------------------- II -------------------}---
  6. ---{-------------------- II -------------------}---
  7. ---{-------------------- A========A -------------------}---
  8. ---{-------------------- II -------------------}---
  9. ---{-------------------- II -------------------}---
  10. ---{-------------------- W -------------------}---
  11. -------------------------------------------------------------------------------------------------------------
  12. wait(1 / 60)
  13. Effects = { }
  14. local Player = game.Players.localPlayer
  15. local Character = Player.Character
  16. local Humanoid = Character.Humanoid
  17. local mouse = Player:GetMouse()
  18. local m = Instance.new('Model', Character)
  19. m.Name = "WeaponModel"
  20. local laughing = false
  21. local LeftArm = Character["Left Arm"]
  22. local RightArm = Character["Right Arm"]
  23. local LeftLeg = Character["Left Leg"]
  24. local RightLeg = Character["Right Leg"]
  25. local Head = Character.Head
  26. local Torso = Character.Torso
  27. local cam = game.Workspace.CurrentCamera
  28. local RootPart = Character.HumanoidRootPart
  29. local RootJoint = RootPart.RootJoint
  30. local equipped = false
  31. local attack = false
  32. local Anim = 'Idle'
  33. local idle = 0
  34. local attacktype = 1
  35. local Torsovelocity = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  36. local velocity = RootPart.Velocity.y
  37. local sine = 0
  38. local change = 1
  39. local grabbed = false
  40. local cn = CFrame.new
  41. local mr = math.rad
  42. local angles = CFrame.Angles
  43. local ud = UDim2.new
  44. local c3 = Color3.new
  45.  
  46. Keys = {
  47. ["1"] = "Q",
  48. ["2"] = "E",
  49. ["3"] = "R",
  50. ["4"] = "F"
  51. }
  52.  
  53. Humanoid.Animator.Parent = nil
  54. Character.Animate.Parent = nil
  55.  
  56. local newMotor = function(part0, part1, c0, c1)
  57. local w = Instance.new('Motor', part0)
  58. w.Part0 = part0
  59. w.Part1 = part1
  60. w.C0 = c0
  61. w.C1 = c1
  62. return w
  63. end
  64.  
  65. function clerp(a, b, t)
  66. return a:lerp(b, t)
  67. end
  68.  
  69. RootCF = CFrame.fromEulerAnglesXYZ(-1.57, 0, 3.14)
  70. NeckCF = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  71.  
  72. local RW = newMotor(Torso, RightArm, CFrame.new(1.5, 0, 0), CFrame.new(0, 0, 0))
  73. local LW = newMotor(Torso, LeftArm, CFrame.new(-1.5, 0, 0), CFrame.new(0, 0, 0))
  74. local RH = newMotor(Torso, RightLeg, CFrame.new(.5, -2, 0), CFrame.new(0, 0, 0))
  75. local LH = newMotor(Torso, LeftLeg, CFrame.new(-.5, -2, 0), CFrame.new(0, 0, 0))
  76. RootJoint.C1 = CFrame.new(0, 0, 0)
  77. RootJoint.C0 = CFrame.new(0, 0, 0)
  78. Torso.Neck.C1 = CFrame.new(0, 0, 0)
  79. Torso.Neck.C0 = CFrame.new(0, 1.5, 0)
  80.  
  81. local rarmc1 = RW.C1
  82. local larmc1 = LW.C1
  83. local rlegc1 = RH.C1
  84. local llegc1 = LH.C1
  85.  
  86. local resetc1 = false
  87.  
  88. function PlayAnimationFromTable(table, speed, bool)
  89. RootJoint.C0 = clerp(RootJoint.C0, table[1], speed)
  90. Torso.Neck.C0 = clerp(Torso.Neck.C0, table[2], speed)
  91. RW.C0 = clerp(RW.C0, table[3], speed)
  92. LW.C0 = clerp(LW.C0, table[4], speed)
  93. RH.C0 = clerp(RH.C0, table[5], speed)
  94. LH.C0 = clerp(LH.C0, table[6], speed)
  95. if bool == true then
  96. if resetc1 == false then
  97. resetc1 = true
  98. RootJoint.C1 = RootJoint.C1
  99. Torso.Neck.C1 = Torso.Neck.C1
  100. RW.C1 = rarmc1
  101. LW.C1 = larmc1
  102. RH.C1 = rlegc1
  103. LH.C1 = llegc1
  104. end
  105. end
  106. end
  107.  
  108. --[[Credits to SazErenos for his Artificial Heartbeat]]--
  109.  
  110. ArtificialHB = Instance.new("BindableEvent", script)
  111. ArtificialHB.Name = "Heartbeat"
  112.  
  113. script:WaitForChild("Heartbeat")
  114.  
  115. frame = 1 / 35
  116. tf = 0
  117. allowframeloss = false
  118. tossremainder = false
  119. lastframe = tick()
  120. script.Heartbeat:Fire()
  121.  
  122. game:GetService("RunService").Heartbeat:connect(function(s, p)
  123. tf = tf + s
  124. if tf >= frame then
  125. if allowframeloss then
  126. script.Heartbeat:Fire()
  127. lastframe = tick()
  128. else
  129. for i = 1, math.floor(tf / frame) do
  130. script.Heartbeat:Fire()
  131. end
  132. lastframe = tick()
  133. end
  134. if tossremainder then
  135. tf = 0
  136. else
  137. tf = tf - frame * math.floor(tf / frame)
  138. end
  139. end
  140. end)
  141.  
  142. function swait(num)
  143. if num == 0 or num == nil then
  144. ArtificialHB.Event:wait()
  145. else
  146. for i = 0, num do
  147. ArtificialHB.Event:wait()
  148. end
  149. end
  150. end
  151.  
  152. local RbxUtility = LoadLibrary("RbxUtility")
  153. local Create = RbxUtility.Create
  154.  
  155. function RemoveOutlines(part)
  156. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  157. end
  158.  
  159. CFuncs = {
  160. ["Part"] = {
  161. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  162. local Part = Create("Part"){
  163. Parent = Parent,
  164. Reflectance = Reflectance,
  165. Transparency = Transparency,
  166. CanCollide = false,
  167. Locked = true,
  168. BrickColor = BrickColor.new(tostring(BColor)),
  169. Name = Name,
  170. Size = Size,
  171. Material = Material,
  172. }
  173. RemoveOutlines(Part)
  174. return Part
  175. end;
  176. };
  177.  
  178. ["Mesh"] = {
  179. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  180. local Msh = Create(Mesh){
  181. Parent = Part,
  182. Offset = OffSet,
  183. Scale = Scale,
  184. }
  185. if Mesh == "SpecialMesh" then
  186. Msh.MeshType = MeshType
  187. Msh.MeshId = MeshId
  188. end
  189. return Msh
  190. end;
  191. };
  192.  
  193. ["Mesh"] = {
  194. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  195. local Msh = Create(Mesh){
  196. Parent = Part,
  197. Offset = OffSet,
  198. Scale = Scale,
  199. }
  200. if Mesh == "SpecialMesh" then
  201. Msh.MeshType = MeshType
  202. Msh.MeshId = MeshId
  203. end
  204. return Msh
  205. end;
  206. };
  207.  
  208. ["Weld"] = {
  209. Create = function(Parent, Part0, Part1, C0, C1)
  210. local Weld = Create("Weld"){
  211. Parent = Parent,
  212. Part0 = Part0,
  213. Part1 = Part1,
  214. C0 = C0,
  215. C1 = C1,
  216. }
  217. return Weld
  218. end;
  219. };
  220.  
  221. ["Sound"] = {
  222. Create = function(id, par, vol, pit)
  223. coroutine.resume(coroutine.create(function()
  224. local S = Create("Sound"){
  225. Volume = vol,
  226. Pitch = pit or 1,
  227. SoundId = id,
  228. Parent = par or workspace,
  229. }
  230. wait()
  231. S:play()
  232. game:GetService("Debris"):AddItem(S, 6)
  233. end))
  234. end;
  235. };
  236.  
  237. ["ParticleEmitter"] = {
  238. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  239. local fp = Create("ParticleEmitter"){
  240. Parent = Parent,
  241. Color = ColorSequence.new(Color1, Color2),
  242. LightEmission = LightEmission,
  243. Size = Size,
  244. Texture = Texture,
  245. Transparency = Transparency,
  246. ZOffset = ZOffset,
  247. Acceleration = Accel,
  248. Drag = Drag,
  249. LockedToPart = LockedToPart,
  250. VelocityInheritance = VelocityInheritance,
  251. EmissionDirection = EmissionDirection,
  252. Enabled = Enabled,
  253. Lifetime = LifeTime,
  254. Rate = Rate,
  255. Rotation = Rotation,
  256. RotSpeed = RotSpeed,
  257. Speed = Speed,
  258. VelocitySpread = VelocitySpread,
  259. }
  260. return fp
  261. end;
  262. };
  263. }
  264.  
  265. function rayCast(Position, Direction, Range, Ignore)
  266. return game:service("Workspace"):FindPartOnRay(Ray.new(Position, Direction.unit * (Range or 999.999)), Ignore)
  267. end
  268.  
  269. local function GetNearest(obj, distance)
  270. local last, lastx = distance + 1
  271. for i, v in pairs(workspace:GetChildren()) do
  272. if v:IsA'Model' and v ~= Character and v:findFirstChild('Humanoid') and v:findFirstChild('Torso') and v:findFirstChild('Humanoid').Health > 0 then
  273. local t = v.Torso
  274. local dist = (t.Position - obj.Position).magnitude
  275. if dist <= distance then
  276. if dist < last then
  277. last = dist
  278. lastx = v
  279. end
  280. end
  281. end
  282. end
  283. return lastx
  284. end
  285.  
  286. --[[ Credits to Kert109 (Ninja_Deer) for the Damage function. Fenrier for the Magnitude Damage --not ma fav
  287. function Damage(hit, damage, cooldown, Color1, Color2, HSound, HPitch)
  288. for i, v in pairs(hit:GetChildren()) do
  289. if v:IsA("Humanoid") and hit.Name ~= Character.Name then
  290. local find = v:FindFirstChild("DebounceHit")
  291. if not find then
  292. if v.Parent:findFirstChild("Head") then
  293. local BillG = Create("BillboardGui"){
  294. Parent = v.Parent.Head,
  295. Size = UDim2.new(1, 0, 1, 0),
  296. Adornee = v.Parent.Head,
  297. StudsOffset = Vector3.new(math.random(-3, 3), math.random(3, 5), math.random(-3, 3)),
  298. }
  299. local TL = Create("TextLabel"){
  300. Parent = BillG,
  301. Size = UDim2.new(3, 3, 3, 3),
  302. BackgroundTransparency = 1,
  303. Text = tostring(damage).."-",
  304. TextColor3 = Color1.Color,
  305. TextStrokeColor3 = Color2.Color,
  306. TextStrokeTransparency = 0,
  307. TextXAlignment = Enum.TextXAlignment.Center,
  308. TextYAlignment = Enum.TextYAlignment.Center,
  309. FontSize = Enum.FontSize.Size18,
  310. Font = "ArialBold",
  311. }
  312. coroutine.resume(coroutine.create(function()
  313. swait(1)
  314. for i = 0, 1, .1 do
  315. swait(.1)
  316. BillG.StudsOffset = BillG.StudsOffset + Vector3.new(0, .1, 0)
  317. end
  318. BillG:Destroy()
  319. end))
  320. end
  321. v.Health = v.Health - damage
  322. local bool = Create("BoolValue"){
  323. Parent = v,
  324. Name = "DebounceHit",
  325. }
  326. if HSound ~= nil and HPitch ~= nil then
  327. CFuncs["Sound"].Create(HSound, hit, 1, HPitch)
  328. end
  329. game:GetService("Debris"):AddItem(bool, cooldown)
  330. end
  331. end
  332. end
  333. end
  334.  
  335. function MagnitudeDamage(Part, magni, mindam, maxdam, Color1, Color2, HSound, HPitch)
  336. for _, c in pairs(workspace:children()) do
  337. local hum = c:findFirstChild("Humanoid")
  338. if hum ~= nil then
  339. local head = c:findFirstChild("Torso")
  340. if head ~= nil then
  341. local targ = head.Position - Part.Position
  342. local mag = targ.magnitude
  343. if mag <= magni and c.Name ~= Player.Name then
  344. Damage(head.Parent, math.random(mindam, maxdam), 0.5, Color1, Color2, HSound, HPitch)
  345. end
  346. end
  347. end
  348. end
  349. end
  350. ]]
  351.  
  352. function makegui(cframe, text)
  353. local a = math.random(-10, 10) / 100
  354. local c = Instance.new("Part")
  355. c.Transparency = 1
  356. Instance.new("BodyGyro").Parent = c
  357. c.Parent = Character
  358. c.CFrame = CFrame.new(cframe.p + Vector3.new(0, 1.5, 0))
  359. local f = Instance.new("BodyPosition")
  360. f.P = 2000
  361. f.D = 100
  362. f.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  363. f.position = c.Position + Vector3.new(0, 3, 0)
  364. f.Parent = c
  365. game:GetService("Debris"):AddItem(c, .5 + 6)
  366. c.CanCollide = false
  367. c.Parent = workspace
  368. c.CanCollide = false
  369. local bg = Instance.new('BillboardGui', c)
  370. bg.Adornee = c
  371. bg.Size = UDim2.new(1, 0, 1, 0)
  372. bg.StudsOffset = Vector3.new(0, 0, 0)
  373. bg.AlwaysOnTop = false
  374. local tl = Instance.new('TextLabel', bg)
  375. tl.BackgroundTransparency = 1
  376. tl.Size = UDim2.new(1, 0, 1, 0)
  377. tl.Text = text
  378. tl.Font = 'SourceSansBold'
  379. tl.FontSize = 'Size42'
  380. tl.TextColor3 = BrickColor.new('Bright yellow').Color
  381. tl.TextStrokeTransparency = 0
  382. tl.TextScaled = true
  383. tl.TextWrapped = true
  384. coroutine.wrap(function()
  385. wait(2)
  386. for i = 1, 10 do
  387. swait()
  388. c.Transparency = 1
  389. tl.TextTransparency = tl.TextTransparency + .1
  390. if tl.TextTransparency == 1 then
  391. break
  392. end
  393. end
  394. tl:Destroy()
  395. end)()
  396. end
  397.  
  398. Damagefunc=function(hit,minim,maxim,knockback,Type,Property,Delay,KnockbackType,decreaseblock)
  399. if hit.Parent==nil then
  400. return
  401. end
  402. h=hit.Parent:FindFirstChild("Humanoid")
  403. for _,v in pairs(hit.Parent:children()) do
  404. if v:IsA("Humanoid") then
  405. h=v
  406. end
  407. end
  408. if hit.Parent.Parent:FindFirstChild("Torso")~=nil then
  409. h=hit.Parent.Parent:FindFirstChild("Humanoid")
  410. end
  411. if hit.Parent.className=="Hat" then
  412. hit=hit.Parent.Parent:findFirstChild("Head")
  413. end
  414. if h~=nil and hit.Parent.Name~=Character.Name and hit.Parent:FindFirstChild("Torso")~=nil then
  415. if hit.Parent:findFirstChild("DebounceHit")~=nil then if hit.Parent.DebounceHit.Value==true then return end end
  416. local blocked=false
  417. block=hit.Parent:findFirstChild("Block")
  418. if block~=nil then
  419. print(block.className)
  420. if block.className=="NumberValue" then
  421. if block.Value>0 then
  422. blocked=true
  423. if decreaseblock==nil then
  424. block.Value=block.Value-1
  425. end
  426. end
  427. end
  428. if block.className=="IntValue" then
  429. if block.Value>0 then
  430. blocked=true
  431. if decreaseblock~=nil then
  432. block.Value=block.Value-1
  433. end
  434. end
  435. end
  436. end
  437. local D = math.random(minim, maxim)
  438. if blocked==false then
  439. h.Health=h.Health-D
  440. makegui(hit.Parent.Head.CFrame,tostring(math.floor(D+.5)))
  441. else
  442. h.Health=h.Health-(D/2)
  443. makegui(hit.Parent.Head.CFrame,tostring(math.floor(D+.5)))
  444. end
  445. if Type=="Knockdown" then
  446. local humanoid=hit.Parent.Humanoid
  447. humanoid.PlatformStand=true
  448. coroutine.resume(coroutine.create(function(Humanoid)
  449. swait()
  450. Humanoid.PlatformStand=false
  451. end),humanoid)
  452. local angle=(hit.Position-(Property.Position+Vector3.new(0,0,0))).unit
  453. local bodvol=Instance.new("BodyVelocity")
  454. bodvol.velocity=angle*knockback
  455. bodvol.P=5000
  456. bodvol.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  457. bodvol.Parent=hit
  458. rl=Instance.new("BodyAngularVelocity")
  459. rl.P=3000
  460. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  461. rl.angularvelocity=Vector3.new(math.random(-10,10),math.random(-10,10),math.random(-10,10))
  462. rl.Parent=hit
  463. game:GetService("Debris"):AddItem(bodvol,.5)
  464. game:GetService("Debris"):AddItem(rl,.5)
  465. elseif Type=="Normal" then
  466. hitpitch = math.random(0.8, 1)
  467. CFuncs.Sound.Create("rbxassetid://199149221", hit, 1, hitpitch)
  468. vp=Instance.new("BodyVelocity")
  469. vp.P=500
  470. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  471. if KnockbackType==1 then
  472. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  473. elseif KnockbackType==2 then
  474. vp.velocity=Property.CFrame.lookVector*knockback
  475. end
  476. if knockback>0 then
  477. vp.Parent=hit.Parent.Torso
  478. end
  479. game:GetService("Debris"):AddItem(vp,.5)
  480. elseif Type=="Up" then
  481. local bodyVelocity=Instance.new("BodyVelocity")
  482. bodyVelocity.velocity=vt(0,60,0)
  483. bodyVelocity.P=5000
  484. bodyVelocity.maxForce=Vector3.new(8e+003, 8e+003, 8e+003)
  485. bodyVelocity.Parent=hit
  486. game:GetService("Debris"):AddItem(bodyVelocity,1)
  487. rl=Instance.new("BodyAngularVelocity")
  488. rl.P=3000
  489. rl.maxTorque=Vector3.new(500000,500000,500000)*50000000000000
  490. rl.angularvelocity=Vector3.new(math.random(-30,30),math.random(-30,30),math.random(-30,30))
  491. rl.Parent=hit
  492. game:GetService("Debris"):AddItem(rl,.5)
  493. elseif Type=="Snare" then
  494. wait()
  495. bp=Instance.new("BodyPosition")
  496. bp.P=2000
  497. bp.D=100
  498. bp.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  499. bp.position=hit.Parent.Torso.Position
  500. bp.Parent=hit.Parent.Torso
  501. game:GetService("Debris"):AddItem(bp,1)
  502. elseif Type=="Target" then
  503. CFuncs.Sound.Create("http://www.roblox.com/asset/?id=199144144",hit,1,math.random(150,200)/100)
  504. vp=Instance.new("BodyVelocity")
  505. vp.P=500
  506. vp.maxForce=Vector3.new(math.huge,0,math.huge)
  507. if KnockbackType==1 then
  508. vp.velocity=Property.CFrame.lookVector*knockback+Property.Velocity/1.05
  509. elseif KnockbackType==2 then
  510. vp.velocity=Property.CFrame.lookVector*knockback
  511. end
  512. if knockback>0 then
  513. vp.Parent=hit.Parent.Torso
  514. end
  515. game:GetService("Debris"):AddItem(vp,.5)
  516. end
  517. debounce=Instance.new("BoolValue")
  518. debounce.Name="DebounceHit"
  519. debounce.Parent=hit.Parent
  520. debounce.Value=true
  521. game:GetService("Debris"):AddItem(debounce,Delay)
  522. c=Instance.new("ObjectValue")
  523. c.Name="creator"
  524. c.Value=Player
  525. c.Parent=h
  526. game:GetService("Debris"):AddItem(c,.5)
  527. CRIT=false
  528. hitDeb=true
  529. AttackPos=6
  530. end
  531. end
  532.  
  533. function MagniDamage(Part,magni,mindam,maxdam,knock,Type)
  534. for _,c in pairs(workspace:children()) do
  535. local hum=c:findFirstChild("Humanoid")
  536. if hum~=nil then
  537. local head=c:findFirstChild("Torso")
  538. if head~=nil then
  539. local targ=head.Position-Part.Position
  540. local mag=targ.magnitude
  541. if mag<=magni and c.Name~=Player.Name then
  542. Damagefunc(head,mindam,maxdam,knock,Type,RootPart,.2,1,3,1)
  543. end
  544. end
  545. end
  546. end
  547. end
  548.  
  549. EffectModel = Instance.new("Model", Character)
  550. EffectModel.Name = "Effects"
  551.  
  552. Effects = {
  553. ["Block"] = {
  554. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  555. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  556. prt.Anchored = true
  557. prt.CFrame = cframe
  558. local msh = CFuncs["Mesh"].Create("BlockMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  559. game:GetService("Debris"):AddItem(prt, 10)
  560. if Type == 1 or Type == nil then
  561. table.insert(Effects, {
  562. prt,
  563. "Block1",
  564. delay,
  565. x3,
  566. y3,
  567. z3,
  568. msh
  569. })
  570. elseif Type == 2 then
  571. table.insert(Effects, {
  572. prt,
  573. "Block2",
  574. delay,
  575. x3,
  576. y3,
  577. z3,
  578. msh
  579. })
  580. end
  581. end;
  582. };
  583.  
  584. ["Sphere"] = {
  585. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  586. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  587. prt.Anchored = true
  588. prt.CFrame = cframe
  589. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  590. game:GetService("Debris"):AddItem(prt, 10)
  591. table.insert(Effects, {
  592. prt,
  593. "Cylinder",
  594. delay,
  595. x3,
  596. y3,
  597. z3,
  598. msh
  599. })
  600. end;
  601. };
  602.  
  603. ["Ring"] = {
  604. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  605. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  606. prt.Anchored = true
  607. prt.CFrame = cframe
  608. local msh = CFuncs["Mesh"].Create("CylinderMesh", prt, "", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  609. game:GetService("Debris"):AddItem(prt, 10)
  610. table.insert(Effects, {
  611. prt,
  612. "Cylinder",
  613. delay,
  614. x3,
  615. y3,
  616. z3,
  617. msh
  618. })
  619. end;
  620. };
  621.  
  622.  
  623. ["Wave"] = {
  624. Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay)
  625. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new())
  626. prt.Anchored = true
  627. prt.CFrame = cframe
  628. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "FileMesh", "rbxassetid://20329976", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  629. game:GetService("Debris"):AddItem(prt, 10)
  630. table.insert(Effects, {
  631. prt,
  632. "Cylinder",
  633. delay,
  634. x3,
  635. y3,
  636. z3,
  637. msh
  638. })
  639. end;
  640. };
  641.  
  642. ["Break"] = {
  643. Create = function(brickcolor, cframe, x1, y1, z1)
  644. local prt = CFuncs["Part"].Create(EffectModel, "SmoothPlastic", 0, 0, brickcolor, "Effect", Vector3.new(0.5, 0.5, 0.5))
  645. prt.Anchored = true
  646. prt.CFrame = cframe * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  647. local msh = CFuncs["Mesh"].Create("SpecialMesh", prt, "Sphere", "", Vector3.new(0, 0, 0), Vector3.new(x1, y1, z1))
  648. local num = math.random(10, 50) / 1000
  649. game:GetService("Debris"):AddItem(prt, 10)
  650. table.insert(Effects, {
  651. prt,
  652. "Shatter",
  653. num,
  654. prt.CFrame,
  655. math.random() - math.random(),
  656. 0,
  657. math.random(50, 100) / 100
  658. })
  659. end;
  660. };
  661. }
  662.  
  663. m.Name = "Rendier R-C15"
  664. m1 = Instance.new("Model")
  665. m1.Name = "ChainsawPart"
  666. m1.Parent = m
  667. p1 = Instance.new("Part", m1)
  668. p1.BrickColor = BrickColor.new("Dark stone grey")
  669. p1.Material = Enum.Material.Fabric
  670. p1.CFrame = CFrame.new(56.2297325, 2.61383605, -124.294426, -0.509489059, 0.0275912844, -0.860034645, 0.0420910046, 0.999088466, 0.00711741997, 0.859447122, -0.0325734727, -0.510185957)
  671. p1.Anchored = true
  672. p1.CanCollide = false
  673. p1.Size = Vector3.new(4.51804161, 0.693278253, 0.200000003)
  674. p1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  675. p1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  676. p1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  677. p1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  678. p1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  679. p1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  680. b1 = Instance.new("BlockMesh", p1)
  681. b1.Name = "Mesh"
  682. b1.Scale = Vector3.new(1, 1, 0.430899411)
  683. p2 = Instance.new("Part", m1)
  684. p2.BrickColor = BrickColor.new("Medium stone grey")
  685. p2.Material = Enum.Material.SmoothPlastic
  686. p2.CFrame = CFrame.new(55.0224533, 3.140136, -122.251991, 0.860044122, 0.0149191013, -0.5100016, -0.0071210009, 0.999826014, 0.0172394216, 0.510170043, -0.0111949397, 0.86000073)
  687. p2.Anchored = true
  688. p2.CanCollide = false
  689. p2.FormFactor = Enum.FormFactor.Symmetric
  690. p2.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  691. p2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  692. p2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  693. p2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  694. p2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  695. p2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  696. p2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  697. b2 = Instance.new("SpecialMesh", p2)
  698. b2.MeshType = Enum.MeshType.Wedge
  699. b2.Name = "Mesh"
  700. b2.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  701. p3 = Instance.new("Part", m1)
  702. p3.BrickColor = BrickColor.new("Medium stone grey")
  703. p3.Material = Enum.Material.SmoothPlastic
  704. p3.CFrame = CFrame.new(54.9071884, 2.96719909, -122.060028, -0.860044122, -0.424839824, 0.282551378, 0.0071210009, 0.543735027, 0.839226782, -0.510170043, 0.723784089, -0.464610755)
  705. p3.Anchored = true
  706. p3.CanCollide = false
  707. p3.FormFactor = Enum.FormFactor.Symmetric
  708. p3.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  709. p3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  710. p3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  711. p3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  712. p3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  713. p3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  714. p3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  715. b3 = Instance.new("SpecialMesh", p3)
  716. b3.MeshType = Enum.MeshType.Wedge
  717. b3.Name = "Mesh"
  718. b3.Scale = Vector3.new(0.439431667, 0.671946645, 1)
  719. p4 = Instance.new("Part", m1)
  720. p4.BrickColor = BrickColor.new("Medium stone grey")
  721. p4.Material = Enum.Material.SmoothPlastic
  722. p4.CFrame = CFrame.new(54.8866119, 2.96871805, -122.025368, -0.860044122, -0.499092191, 0.105977185, 0.0071210009, 0.195947051, 0.980588675, -0.510170043, 0.844104111, -0.164969072)
  723. p4.Anchored = true
  724. p4.CanCollide = false
  725. p4.FormFactor = Enum.FormFactor.Symmetric
  726. p4.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  727. p4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  728. p4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  729. p4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  730. p4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  731. p4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  732. p4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  733. b4 = Instance.new("SpecialMesh", p4)
  734. b4.MeshType = Enum.MeshType.Wedge
  735. b4.Name = "Mesh"
  736. b4.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  737. p5 = Instance.new("Part", m1)
  738. p5.BrickColor = BrickColor.new("Medium stone grey")
  739. p5.Material = Enum.Material.SmoothPlastic
  740. p5.CFrame = CFrame.new(54.9763336, 3.043468, -122.175529, 0.860044122, -0.235676274, -0.452527255, -0.0071210009, 0.881295264, -0.472512484, 0.510170043, 0.409603983, 0.756274521)
  741. p5.Anchored = true
  742. p5.CanCollide = false
  743. p5.FormFactor = Enum.FormFactor.Symmetric
  744. p5.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  745. p5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  746. p5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  747. p5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  748. p5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  749. p5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  750. p5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  751. b5 = Instance.new("SpecialMesh", p5)
  752. b5.MeshType = Enum.MeshType.Wedge
  753. b5.Name = "Mesh"
  754. b5.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  755. p6 = Instance.new("Part", m1)
  756. p6.BrickColor = BrickColor.new("Medium stone grey")
  757. p6.Material = Enum.Material.SmoothPlastic
  758. p6.CFrame = CFrame.new(54.9500542, 3.01700211, -122.131638, -0.860044122, -0.235676274, 0.452527255, 0.0071210009, 0.881295264, 0.472512484, -0.510170043, 0.409603983, -0.756274521)
  759. p6.Anchored = true
  760. p6.CanCollide = false
  761. p6.FormFactor = Enum.FormFactor.Symmetric
  762. p6.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  763. p6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  764. p6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  765. p6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  766. p6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  767. p6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  768. p6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  769. b6 = Instance.new("SpecialMesh", p6)
  770. b6.MeshType = Enum.MeshType.Wedge
  771. b6.Name = "Mesh"
  772. b6.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  773. p7 = Instance.new("Part", m1)
  774. p7.BrickColor = BrickColor.new("Medium stone grey")
  775. p7.Material = Enum.Material.SmoothPlastic
  776. p7.CFrame = CFrame.new(55.0177879, 3.10446811, -122.244545, 0.860044122, -0.159023583, -0.484804779, -0.0071210009, 0.946354508, -0.32305178, 0.510170043, 0.281291068, 0.812774241)
  777. p7.Anchored = true
  778. p7.CanCollide = false
  779. p7.FormFactor = Enum.FormFactor.Symmetric
  780. p7.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  781. p7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  782. p7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  783. p7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  784. p7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  785. p7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  786. p7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  787. b7 = Instance.new("SpecialMesh", p7)
  788. b7.MeshType = Enum.MeshType.Wedge
  789. b7.Name = "Mesh"
  790. b7.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  791. p8 = Instance.new("Part", m1)
  792. p8.BrickColor = BrickColor.new("Medium stone grey")
  793. p8.Material = Enum.Material.SmoothPlastic
  794. p8.CFrame = CFrame.new(54.9992714, 2.28340697, -122.224792, -0.860044122, -0.0402459092, -0.508629978, 0.0071210009, -0.997733891, 0.0669058785, -0.510170043, 0.0539200455, 0.858381748)
  795. p8.Anchored = true
  796. p8.CanCollide = false
  797. p8.FormFactor = Enum.FormFactor.Symmetric
  798. p8.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  799. p8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  800. p8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  801. p8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  802. p8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  803. p8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  804. p8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  805. b8 = Instance.new("SpecialMesh", p8)
  806. b8.MeshType = Enum.MeshType.Wedge
  807. b8.Name = "Mesh"
  808. b8.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  809. p9 = Instance.new("Part", m1)
  810. p9.BrickColor = BrickColor.new("Medium stone grey")
  811. p9.Material = Enum.Material.SmoothPlastic
  812. p9.CFrame = CFrame.new(54.8940048, 2.47456408, -122.044708, 0.860044122, -0.452866614, 0.235023424, -0.0071210009, -0.471241057, -0.88197577, 0.510170043, 0.756864429, -0.40851298)
  813. p9.Anchored = true
  814. p9.CanCollide = false
  815. p9.FormFactor = Enum.FormFactor.Symmetric
  816. p9.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  817. p9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  818. p9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  819. p9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  820. p9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  821. p9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  822. p9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  823. b9 = Instance.new("SpecialMesh", p9)
  824. b9.MeshType = Enum.MeshType.Wedge
  825. b9.Name = "Mesh"
  826. b9.Scale = Vector3.new(0.439431667, 0.671946645, 1)
  827. p10 = Instance.new("Part", m1)
  828. p10.BrickColor = BrickColor.new("Medium stone grey")
  829. p10.Material = Enum.Material.SmoothPlastic
  830. p10.CFrame = CFrame.new(54.9339676, 2.41789889, -122.112823, 0.860044122, -0.283167243, 0.424429625, -0.0071210009, -0.838437319, -0.544951618, 0.510170043, 0.465660095, -0.723109484)
  831. p10.Anchored = true
  832. p10.CanCollide = false
  833. p10.FormFactor = Enum.FormFactor.Symmetric
  834. p10.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  835. p10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  836. p10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  837. p10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  838. p10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  839. p10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  840. p10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  841. b10 = Instance.new("SpecialMesh", p10)
  842. b10.MeshType = Enum.MeshType.Wedge
  843. b10.Name = "Mesh"
  844. b10.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  845. p11 = Instance.new("Part", m1)
  846. p11.BrickColor = BrickColor.new("Medium stone grey")
  847. p11.Material = Enum.Material.SmoothPlastic
  848. p11.CFrame = CFrame.new(54.9965668, 2.31968904, -122.219719, -0.860044122, -0.210446313, -0.464797288, 0.0071210009, -0.91583699, 0.401487142, -0.510170043, 0.341986835, 0.789158762)
  849. p11.Anchored = true
  850. p11.CanCollide = false
  851. p11.FormFactor = Enum.FormFactor.Symmetric
  852. p11.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  853. p11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  854. p11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  855. p11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  856. p11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  857. p11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  858. p11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  859. b11 = Instance.new("SpecialMesh", p11)
  860. b11.MeshType = Enum.MeshType.Wedge
  861. b11.Name = "Mesh"
  862. b11.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  863. p12 = Instance.new("Part", m1)
  864. p12.BrickColor = BrickColor.new("Medium stone grey")
  865. p12.Material = Enum.Material.SmoothPlastic
  866. p12.CFrame = CFrame.new(54.9586449, 2.38724399, -122.154823, -0.860044122, -0.283167243, -0.424429625, 0.0071210009, -0.838437319, 0.544951618, -0.510170043, 0.465660095, 0.723109484)
  867. p12.Anchored = true
  868. p12.CanCollide = false
  869. p12.FormFactor = Enum.FormFactor.Symmetric
  870. p12.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  871. p12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  872. p12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  873. p12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  874. p12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  875. p12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  876. p12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  877. b12 = Instance.new("SpecialMesh", p12)
  878. b12.MeshType = Enum.MeshType.Wedge
  879. b12.Name = "Mesh"
  880. b12.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  881. p13 = Instance.new("Part", m1)
  882. p13.BrickColor = BrickColor.new("Medium stone grey")
  883. p13.Material = Enum.Material.SmoothPlastic
  884. p13.CFrame = CFrame.new(54.8734856, 2.47645593, -122.009995, 0.860044122, -0.507617712, 0.0514626093, -0.0071210009, -0.112795986, -0.99359262, 0.510170043, 0.854166985, -0.100624263)
  885. p13.Anchored = true
  886. p13.CanCollide = false
  887. p13.FormFactor = Enum.FormFactor.Symmetric
  888. p13.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  889. p13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  890. p13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  891. p13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  892. p13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  893. p13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  894. p13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  895. b13 = Instance.new("SpecialMesh", p13)
  896. b13.MeshType = Enum.MeshType.Wedge
  897. b13.Name = "Mesh"
  898. b13.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  899. p14 = Instance.new("Part", m1)
  900. p14.BrickColor = BrickColor.new("Medium stone grey")
  901. p14.Material = Enum.Material.SmoothPlastic
  902. p14.CFrame = CFrame.new(54.8719254, 2.6156919, -122.005417, -0.860044122, -0.495372206, -0.122190587, 0.0071210009, -0.251116991, 0.967930615, -0.510170043, 0.831592858, 0.21949923)
  903. p14.Anchored = true
  904. p14.CanCollide = false
  905. p14.FormFactor = Enum.FormFactor.Symmetric
  906. p14.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  907. p14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  908. p14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  909. p14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  910. p14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  911. p14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  912. p14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  913. b14 = Instance.new("SpecialMesh", p14)
  914. b14.MeshType = Enum.MeshType.Wedge
  915. b14.Name = "Mesh"
  916. b14.Scale = Vector3.new(0.439431667, 0.671946645, 1)
  917. p15 = Instance.new("Part", m1)
  918. p15.BrickColor = BrickColor.new("Medium stone grey")
  919. p15.Material = Enum.Material.SmoothPlastic
  920. p15.CFrame = CFrame.new(54.8571815, 2.58533788, -121.981026, -0.860044122, -0.395395696, -0.322469234, 0.0071210009, -0.641260743, 0.767290056, -0.510170043, 0.6576069, 0.554328203)
  921. p15.Anchored = true
  922. p15.CanCollide = false
  923. p15.FormFactor = Enum.FormFactor.Symmetric
  924. p15.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  925. p15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  926. p15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  927. p15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  928. p15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  929. p15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  930. p15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  931. b15 = Instance.new("SpecialMesh", p15)
  932. b15.MeshType = Enum.MeshType.Wedge
  933. b15.Name = "Mesh"
  934. b15.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  935. p16 = Instance.new("Part", m1)
  936. p16.BrickColor = BrickColor.new("Medium stone grey")
  937. p16.Material = Enum.Material.SmoothPlastic
  938. p16.CFrame = CFrame.new(54.87994, 2.76919603, -122.016891, 0.860044122, -0.508620203, -0.0403693318, -0.0071210009, 0.0671479851, -0.997717619, 0.510170043, 0.858368635, 0.0541283414)
  939. p16.Anchored = true
  940. p16.CanCollide = false
  941. p16.FormFactor = Enum.FormFactor.Symmetric
  942. p16.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  943. p16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  944. p16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  945. p16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  946. p16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  947. p16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  948. p16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  949. b16 = Instance.new("SpecialMesh", p16)
  950. b16.MeshType = Enum.MeshType.Wedge
  951. b16.Name = "Mesh"
  952. b16.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  953. p17 = Instance.new("Part", m1)
  954. p17.BrickColor = BrickColor.new("Medium stone grey")
  955. p17.Material = Enum.Material.SmoothPlastic
  956. p17.CFrame = CFrame.new(54.8725777, 2.89887309, -122.002678, 0.860044122, -0.388037682, -0.331286818, -0.0071210009, 0.640110016, -0.768250346, 0.510170043, 0.663088202, 0.547759652)
  957. p17.Anchored = true
  958. p17.CanCollide = false
  959. p17.FormFactor = Enum.FormFactor.Symmetric
  960. p17.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  961. p17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  962. p17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  963. p17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  964. p17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  965. p17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  966. p17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  967. b17 = Instance.new("SpecialMesh", p17)
  968. b17.MeshType = Enum.MeshType.Wedge
  969. b17.Name = "Mesh"
  970. b17.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  971. p18 = Instance.new("Part", m1)
  972. p18.BrickColor = BrickColor.new("Medium stone grey")
  973. p18.Material = Enum.Material.SmoothPlastic
  974. p18.CFrame = CFrame.new(54.8772087, 2.71179509, -122.013039, -0.860044122, -0.508620203, 0.0403693318, 0.0071210009, 0.0671479851, 0.997717619, -0.510170043, 0.858368635, -0.0541283414)
  975. p18.Anchored = true
  976. p18.CanCollide = false
  977. p18.FormFactor = Enum.FormFactor.Symmetric
  978. p18.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  979. p18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  980. p18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  981. p18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  982. p18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  983. p18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  984. p18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  985. b18 = Instance.new("SpecialMesh", p18)
  986. b18.MeshType = Enum.MeshType.Wedge
  987. b18.Name = "Mesh"
  988. b18.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  989. p19 = Instance.new("Part", m1)
  990. p19.BrickColor = BrickColor.new("Medium stone grey")
  991. p19.Material = Enum.Material.SmoothPlastic
  992. p19.CFrame = CFrame.new(54.8837662, 2.86966991, -122.022057, 0.860044122, -0.477430195, -0.179957286, -0.0071210009, 0.341439098, -0.939876974, 0.510170043, 0.809617102, 0.290252894)
  993. p19.Anchored = true
  994. p19.CanCollide = false
  995. p19.FormFactor = Enum.FormFactor.Symmetric
  996. p19.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  997. p19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  998. p19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  999. p19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. p19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1001. p19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1002. p19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1003. b19 = Instance.new("SpecialMesh", p19)
  1004. b19.MeshType = Enum.MeshType.Wedge
  1005. b19.Name = "Mesh"
  1006. b19.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1007. p20 = Instance.new("Part", m1)
  1008. p20.BrickColor = BrickColor.new("Medium stone grey")
  1009. p20.Material = Enum.Material.SmoothPlastic
  1010. p20.CFrame = CFrame.new(57.3386078, 3.11431193, -126.156616, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1011. p20.Anchored = true
  1012. p20.CanCollide = false
  1013. p20.FormFactor = Enum.FormFactor.Symmetric
  1014. p20.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1015. p20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. p20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1017. p20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1018. p20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1019. p20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1020. p20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. b20 = Instance.new("SpecialMesh", p20)
  1022. b20.MeshType = Enum.MeshType.Wedge
  1023. b20.Name = "Mesh"
  1024. b20.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1025. p21 = Instance.new("Part", m1)
  1026. p21.BrickColor = BrickColor.new("Mid gray")
  1027. p21.Material = Enum.Material.SmoothPlastic
  1028. p21.CFrame = CFrame.new(56.2395134, 3.00864005, -124.305328, -0.510140181, 0.00978693645, -0.860035598, 0.0071870028, 0.999948859, 0.00711605046, 0.860061288, -0.00255089509, -0.510184467)
  1029. p21.Anchored = true
  1030. p21.CanCollide = false
  1031. p21.Size = Vector3.new(4.51974726, 0.200000003, 0.200000003)
  1032. p21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1033. p21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. p21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. p21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. p21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. p21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1038. b21 = Instance.new("BlockMesh", p21)
  1039. b21.Name = "Mesh"
  1040. b21.Scale = Vector3.new(1, 0.511959314, 0.435165763)
  1041. p22 = Instance.new("Part", m1)
  1042. p22.BrickColor = BrickColor.new("Medium stone grey")
  1043. p22.Material = Enum.Material.SmoothPlastic
  1044. p22.CFrame = CFrame.new(57.2618408, 3.09086394, -126.02758, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1045. p22.Anchored = true
  1046. p22.CanCollide = false
  1047. p22.FormFactor = Enum.FormFactor.Symmetric
  1048. p22.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1049. p22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1050. p22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1051. p22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1052. p22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. p22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. p22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. b22 = Instance.new("SpecialMesh", p22)
  1056. b22.MeshType = Enum.MeshType.Wedge
  1057. b22.Name = "Mesh"
  1058. b22.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1059. p23 = Instance.new("Part", m1)
  1060. p23.BrickColor = BrickColor.new("Medium stone grey")
  1061. p23.Material = Enum.Material.SmoothPlastic
  1062. p23.CFrame = CFrame.new(57.2911835, 3.08957505, -126.077118, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1063. p23.Anchored = true
  1064. p23.CanCollide = false
  1065. p23.FormFactor = Enum.FormFactor.Symmetric
  1066. p23.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1067. p23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. p23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1069. p23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1070. p23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. p23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. p23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1073. b23 = Instance.new("SpecialMesh", p23)
  1074. b23.MeshType = Enum.MeshType.Wedge
  1075. b23.Name = "Mesh"
  1076. b23.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1077. p24 = Instance.new("Part", m1)
  1078. p24.BrickColor = BrickColor.new("Medium stone grey")
  1079. p24.Material = Enum.Material.SmoothPlastic
  1080. p24.CFrame = CFrame.new(57.0310974, 3.09411287, -125.638641, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1081. p24.Anchored = true
  1082. p24.CanCollide = false
  1083. p24.FormFactor = Enum.FormFactor.Symmetric
  1084. p24.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1085. p24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. p24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. p24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1088. p24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. p24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. p24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. b24 = Instance.new("SpecialMesh", p24)
  1092. b24.MeshType = Enum.MeshType.Wedge
  1093. b24.Name = "Mesh"
  1094. b24.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1095. p25 = Instance.new("Part", m1)
  1096. p25.BrickColor = BrickColor.new("Medium stone grey")
  1097. p25.Material = Enum.Material.SmoothPlastic
  1098. p25.CFrame = CFrame.new(57.1163788, 3.13130307, -125.781815, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1099. p25.Anchored = true
  1100. p25.CanCollide = false
  1101. p25.FormFactor = Enum.FormFactor.Symmetric
  1102. p25.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1103. p25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. p25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. p25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1106. p25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. p25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1108. p25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1109. b25 = Instance.new("SpecialMesh", p25)
  1110. b25.MeshType = Enum.MeshType.Wedge
  1111. b25.Name = "Mesh"
  1112. b25.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1113. p26 = Instance.new("Part", m1)
  1114. p26.BrickColor = BrickColor.new("Medium stone grey")
  1115. p26.Material = Enum.Material.SmoothPlastic
  1116. p26.CFrame = CFrame.new(56.9762268, 3.13328791, -125.545509, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1117. p26.Anchored = true
  1118. p26.CanCollide = false
  1119. p26.FormFactor = Enum.FormFactor.Symmetric
  1120. p26.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1121. p26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1122. p26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1123. p26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1124. p26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1125. p26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. p26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. b26 = Instance.new("SpecialMesh", p26)
  1128. b26.MeshType = Enum.MeshType.Wedge
  1129. b26.Name = "Mesh"
  1130. b26.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1131. p27 = Instance.new("Part", m1)
  1132. p27.BrickColor = BrickColor.new("Medium stone grey")
  1133. p27.Material = Enum.Material.SmoothPlastic
  1134. p27.CFrame = CFrame.new(57.1078415, 3.117553, -125.767693, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1135. p27.Anchored = true
  1136. p27.CanCollide = false
  1137. p27.FormFactor = Enum.FormFactor.Symmetric
  1138. p27.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1139. p27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1140. p27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1141. p27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1142. p27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1143. p27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. p27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. b27 = Instance.new("SpecialMesh", p27)
  1146. b27.MeshType = Enum.MeshType.Wedge
  1147. b27.Name = "Mesh"
  1148. b27.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1149. p28 = Instance.new("Part", m1)
  1150. p28.BrickColor = BrickColor.new("Medium stone grey")
  1151. p28.Material = Enum.Material.SmoothPlastic
  1152. p28.CFrame = CFrame.new(57.0604782, 3.09282899, -125.688194, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1153. p28.Anchored = true
  1154. p28.CanCollide = false
  1155. p28.FormFactor = Enum.FormFactor.Symmetric
  1156. p28.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1157. p28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1158. p28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1159. p28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1160. p28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1161. p28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1162. p28.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1163. b28 = Instance.new("SpecialMesh", p28)
  1164. b28.MeshType = Enum.MeshType.Wedge
  1165. b28.Name = "Mesh"
  1166. b28.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1167. p29 = Instance.new("Part", m1)
  1168. p29.BrickColor = BrickColor.new("Medium stone grey")
  1169. p29.Material = Enum.Material.SmoothPlastic
  1170. p29.CFrame = CFrame.new(56.9851456, 3.11929202, -125.560768, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1171. p29.Anchored = true
  1172. p29.CanCollide = false
  1173. p29.FormFactor = Enum.FormFactor.Symmetric
  1174. p29.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1175. p29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. p29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. p29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1178. p29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1179. p29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1180. p29.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1181. b29 = Instance.new("SpecialMesh", p29)
  1182. b29.MeshType = Enum.MeshType.Wedge
  1183. b29.Name = "Mesh"
  1184. b29.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1185. p30 = Instance.new("Part", m1)
  1186. p30.BrickColor = BrickColor.new("Dark stone grey")
  1187. p30.Material = Enum.Material.Fabric
  1188. p30.CFrame = CFrame.new(56.2384911, 2.93181896, -124.30481, -0.510140181, 0.00978693645, -0.860035598, 0.0071870028, 0.999948859, 0.00711605046, 0.860061288, -0.00255089509, -0.510184467)
  1189. p30.Anchored = true
  1190. p30.CanCollide = false
  1191. p30.Size = Vector3.new(4.51804161, 0.200000003, 0.200000003)
  1192. p30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1193. p30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. p30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. p30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. p30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1197. p30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1198. b30 = Instance.new("BlockMesh", p30)
  1199. b30.Name = "Mesh"
  1200. b30.Scale = Vector3.new(1, 0.511959314, 0.430899411)
  1201. p31 = Instance.new("Part", m1)
  1202. p31.BrickColor = BrickColor.new("Medium stone grey")
  1203. p31.Material = Enum.Material.SmoothPlastic
  1204. p31.CFrame = CFrame.new(56.5265732, 3.12618494, -124.787582, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1205. p31.Anchored = true
  1206. p31.CanCollide = false
  1207. p31.FormFactor = Enum.FormFactor.Symmetric
  1208. p31.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1209. p31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. p31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1211. p31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1212. p31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1213. p31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1214. p31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. b31 = Instance.new("SpecialMesh", p31)
  1216. b31.MeshType = Enum.MeshType.Wedge
  1217. b31.Name = "Mesh"
  1218. b31.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1219. p32 = Instance.new("Part", m1)
  1220. p32.BrickColor = BrickColor.new("Medium stone grey")
  1221. p32.Material = Enum.Material.SmoothPlastic
  1222. p32.CFrame = CFrame.new(56.7483368, 3.13691306, -125.161346, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1223. p32.Anchored = true
  1224. p32.CanCollide = false
  1225. p32.FormFactor = Enum.FormFactor.Symmetric
  1226. p32.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1227. p32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. p32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. p32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1230. p32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1231. p32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1232. p32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1233. b32 = Instance.new("SpecialMesh", p32)
  1234. b32.MeshType = Enum.MeshType.Wedge
  1235. b32.Name = "Mesh"
  1236. b32.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1237. p33 = Instance.new("Part", m1)
  1238. p33.BrickColor = BrickColor.new("Medium stone grey")
  1239. p33.Material = Enum.Material.SmoothPlastic
  1240. p33.CFrame = CFrame.new(56.6019363, 3.09972501, -124.915054, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1241. p33.Anchored = true
  1242. p33.CanCollide = false
  1243. p33.FormFactor = Enum.FormFactor.Symmetric
  1244. p33.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1245. p33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1246. p33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1247. p33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. p33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1249. p33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1250. p33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1251. b33 = Instance.new("SpecialMesh", p33)
  1252. b33.MeshType = Enum.MeshType.Wedge
  1253. b33.Name = "Mesh"
  1254. b33.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1255. p34 = Instance.new("Part", m1)
  1256. p34.BrickColor = BrickColor.new("Medium stone grey")
  1257. p34.Material = Enum.Material.SmoothPlastic
  1258. p34.CFrame = CFrame.new(56.7572327, 3.12290788, -125.176559, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1259. p34.Anchored = true
  1260. p34.CanCollide = false
  1261. p34.FormFactor = Enum.FormFactor.Symmetric
  1262. p34.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1263. p34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1264. p34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1265. p34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1266. p34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. p34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1268. p34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1269. b34 = Instance.new("SpecialMesh", p34)
  1270. b34.MeshType = Enum.MeshType.Wedge
  1271. b34.Name = "Mesh"
  1272. b34.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1273. p35 = Instance.new("Part", m1)
  1274. p35.BrickColor = BrickColor.new("Medium stone grey")
  1275. p35.Material = Enum.Material.SmoothPlastic
  1276. p35.CFrame = CFrame.new(56.657814, 3.13818288, -125.008766, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1277. p35.Anchored = true
  1278. p35.CanCollide = false
  1279. p35.FormFactor = Enum.FormFactor.Symmetric
  1280. p35.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1281. p35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1282. p35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1283. p35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1284. p35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. p35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1286. p35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. b35 = Instance.new("SpecialMesh", p35)
  1288. b35.MeshType = Enum.MeshType.Wedge
  1289. b35.Name = "Mesh"
  1290. b35.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1291. p36 = Instance.new("Part", m1)
  1292. p36.BrickColor = BrickColor.new("Medium stone grey")
  1293. p36.Material = Enum.Material.SmoothPlastic
  1294. p36.CFrame = CFrame.new(56.8885231, 3.13492298, -125.397659, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1295. p36.Anchored = true
  1296. p36.CanCollide = false
  1297. p36.FormFactor = Enum.FormFactor.Symmetric
  1298. p36.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1299. p36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1300. p36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1301. p36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1302. p36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1303. p36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1304. p36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. b36 = Instance.new("SpecialMesh", p36)
  1306. b36.MeshType = Enum.MeshType.Wedge
  1307. b36.Name = "Mesh"
  1308. b36.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1309. p37 = Instance.new("Part", m1)
  1310. p37.BrickColor = BrickColor.new("Medium stone grey")
  1311. p37.Material = Enum.Material.SmoothPlastic
  1312. p37.CFrame = CFrame.new(56.5176506, 3.14016604, -124.772438, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1313. p37.Anchored = true
  1314. p37.CanCollide = false
  1315. p37.FormFactor = Enum.FormFactor.Symmetric
  1316. p37.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1317. p37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1318. p37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1319. p37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1320. p37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1321. p37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. p37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. b37 = Instance.new("SpecialMesh", p37)
  1324. b37.MeshType = Enum.MeshType.Wedge
  1325. b37.Name = "Mesh"
  1326. b37.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1327. p38 = Instance.new("Part", m1)
  1328. p38.BrickColor = BrickColor.new("Dark stone grey")
  1329. p38.Material = Enum.Material.Fabric
  1330. p38.CFrame = CFrame.new(55.0832062, 2.70957494, -122.35997, -0.509489059, 0.860034525, 0.0275952145, 0.0420910046, -0.00712198531, 0.999088466, 0.859447122, 0.510186076, -0.0325711444)
  1331. p38.Anchored = true
  1332. p38.CanCollide = false
  1333. p38.Size = Vector3.new(0.532010913, 0.200000003, 0.53371799)
  1334. p38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1335. p38.BottomSurface = Enum.SurfaceType.Weld
  1336. p38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1337. p38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1338. p38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1339. p38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1340. b38 = Instance.new("CylinderMesh", p38)
  1341. b38.Name = "Mesh"
  1342. b38.Scale = Vector3.new(1, 0.437296689, 1)
  1343. p39 = Instance.new("Part", m1)
  1344. p39.BrickColor = BrickColor.new("Mid gray")
  1345. p39.Material = Enum.Material.SmoothPlastic
  1346. p39.CFrame = CFrame.new(55.0807266, 2.70612097, -122.356285, -0.509489059, 0.860034525, 0.0275952145, 0.0420910046, -0.00712198531, 0.999088466, 0.859447122, 0.510186076, -0.0325711444)
  1347. p39.Anchored = true
  1348. p39.CanCollide = false
  1349. p39.Size = Vector3.new(0.758126259, 0.200000003, 0.740635097)
  1350. p39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. p39.BottomSurface = Enum.SurfaceType.Weld
  1352. p39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1353. p39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. p39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. p39.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1356. b39 = Instance.new("CylinderMesh", p39)
  1357. b39.Name = "Mesh"
  1358. b39.Scale = Vector3.new(1, 0.426630855, 1)
  1359. p40 = Instance.new("Part", m1)
  1360. p40.BrickColor = BrickColor.new("Medium stone grey")
  1361. p40.Material = Enum.Material.SmoothPlastic
  1362. p40.CFrame = CFrame.new(56.4181595, 3.12899303, -124.604866, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1363. p40.Anchored = true
  1364. p40.CanCollide = false
  1365. p40.FormFactor = Enum.FormFactor.Symmetric
  1366. p40.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1367. p40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1368. p40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. p40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. p40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. p40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1372. p40.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. b40 = Instance.new("SpecialMesh", p40)
  1374. b40.MeshType = Enum.MeshType.Wedge
  1375. b40.Name = "Mesh"
  1376. b40.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1377. p41 = Instance.new("Part", m1)
  1378. p41.BrickColor = BrickColor.new("Medium stone grey")
  1379. p41.Material = Enum.Material.SmoothPlastic
  1380. p41.CFrame = CFrame.new(56.3708229, 3.10427094, -124.525421, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1381. p41.Anchored = true
  1382. p41.CanCollide = false
  1383. p41.FormFactor = Enum.FormFactor.Symmetric
  1384. p41.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1385. p41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. p41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. p41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. p41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. p41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1390. p41.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1391. b41 = Instance.new("SpecialMesh", p41)
  1392. b41.MeshType = Enum.MeshType.Wedge
  1393. b41.Name = "Mesh"
  1394. b41.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1395. p42 = Instance.new("Part", m1)
  1396. p42.BrickColor = BrickColor.new("Medium stone grey")
  1397. p42.Material = Enum.Material.SmoothPlastic
  1398. p42.CFrame = CFrame.new(56.3413925, 3.10550404, -124.475883, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1399. p42.Anchored = true
  1400. p42.CanCollide = false
  1401. p42.FormFactor = Enum.FormFactor.Symmetric
  1402. p42.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1403. p42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1404. p42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. p42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. p42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1407. p42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. p42.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. b42 = Instance.new("SpecialMesh", p42)
  1410. b42.MeshType = Enum.MeshType.Wedge
  1411. b42.Name = "Mesh"
  1412. b42.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1413. p43 = Instance.new("Part", m1)
  1414. p43.BrickColor = BrickColor.new("Medium stone grey")
  1415. p43.Material = Enum.Material.SmoothPlastic
  1416. p43.CFrame = CFrame.new(56.1107101, 3.10879087, -124.086899, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1417. p43.Anchored = true
  1418. p43.CanCollide = false
  1419. p43.FormFactor = Enum.FormFactor.Symmetric
  1420. p43.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1421. p43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1422. p43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1423. p43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1424. p43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1425. p43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. p43.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. b43 = Instance.new("SpecialMesh", p43)
  1428. b43.MeshType = Enum.MeshType.Wedge
  1429. b43.Name = "Mesh"
  1430. b43.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1431. p44 = Instance.new("Part", m1)
  1432. p44.BrickColor = BrickColor.new("Medium stone grey")
  1433. p44.Material = Enum.Material.SmoothPlastic
  1434. p44.CFrame = CFrame.new(56.1874352, 3.13220811, -124.215935, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1435. p44.Anchored = true
  1436. p44.CanCollide = false
  1437. p44.FormFactor = Enum.FormFactor.Symmetric
  1438. p44.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1439. p44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1440. p44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1441. p44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1442. p44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1443. p44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1444. p44.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. b44 = Instance.new("SpecialMesh", p44)
  1446. b44.MeshType = Enum.MeshType.Wedge
  1447. b44.Name = "Mesh"
  1448. b44.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1449. p45 = Instance.new("Part", m1)
  1450. p45.BrickColor = BrickColor.new("Medium stone grey")
  1451. p45.Material = Enum.Material.SmoothPlastic
  1452. p45.CFrame = CFrame.new(56.1959877, 3.14599299, -124.230118, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1453. p45.Anchored = true
  1454. p45.CanCollide = false
  1455. p45.FormFactor = Enum.FormFactor.Symmetric
  1456. p45.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1457. p45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1458. p45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. p45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1460. p45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1461. p45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1462. p45.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1463. b45 = Instance.new("SpecialMesh", p45)
  1464. b45.MeshType = Enum.MeshType.Wedge
  1465. b45.Name = "Mesh"
  1466. b45.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1467. p46 = Instance.new("Part", m1)
  1468. p46.BrickColor = BrickColor.new("Medium stone grey")
  1469. p46.Material = Enum.Material.SmoothPlastic
  1470. p46.CFrame = CFrame.new(56.0557938, 3.14794898, -123.99382, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1471. p46.Anchored = true
  1472. p46.CanCollide = false
  1473. p46.FormFactor = Enum.FormFactor.Symmetric
  1474. p46.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1475. p46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1476. p46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1477. p46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1478. p46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1479. p46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1480. p46.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1481. b46 = Instance.new("SpecialMesh", p46)
  1482. b46.MeshType = Enum.MeshType.Wedge
  1483. b46.Name = "Mesh"
  1484. b46.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1485. p47 = Instance.new("Part", m1)
  1486. p47.BrickColor = BrickColor.new("Medium stone grey")
  1487. p47.Material = Enum.Material.SmoothPlastic
  1488. p47.CFrame = CFrame.new(56.1400642, 3.10750389, -124.136436, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1489. p47.Anchored = true
  1490. p47.CanCollide = false
  1491. p47.FormFactor = Enum.FormFactor.Symmetric
  1492. p47.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1493. p47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. p47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. p47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. p47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1497. p47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1498. p47.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. b47 = Instance.new("SpecialMesh", p47)
  1500. b47.MeshType = Enum.MeshType.Wedge
  1501. b47.Name = "Mesh"
  1502. b47.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1503. p48 = Instance.new("Part", m1)
  1504. p48.BrickColor = BrickColor.new("Medium stone grey")
  1505. p48.Material = Enum.Material.SmoothPlastic
  1506. p48.CFrame = CFrame.new(55.6061401, 3.14083791, -123.235825, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1507. p48.Anchored = true
  1508. p48.CanCollide = false
  1509. p48.FormFactor = Enum.FormFactor.Symmetric
  1510. p48.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1511. p48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. p48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1513. p48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. p48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1515. p48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1516. p48.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. b48 = Instance.new("SpecialMesh", p48)
  1518. b48.MeshType = Enum.MeshType.Wedge
  1519. b48.Name = "Mesh"
  1520. b48.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1521. p49 = Instance.new("Part", m1)
  1522. p49.BrickColor = BrickColor.new("Medium stone grey")
  1523. p49.Material = Enum.Material.SmoothPlastic
  1524. p49.CFrame = CFrame.new(55.6815109, 3.11439991, -123.363312, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1525. p49.Anchored = true
  1526. p49.CanCollide = false
  1527. p49.FormFactor = Enum.FormFactor.Symmetric
  1528. p49.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1529. p49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. p49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. p49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1532. p49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1533. p49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1534. p49.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1535. b49 = Instance.new("SpecialMesh", p49)
  1536. b49.MeshType = Enum.MeshType.Wedge
  1537. b49.Name = "Mesh"
  1538. b49.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1539. p50 = Instance.new("Part", m1)
  1540. p50.BrickColor = BrickColor.new("Medium stone grey")
  1541. p50.Material = Enum.Material.SmoothPlastic
  1542. p50.CFrame = CFrame.new(56.0647087, 3.13396192, -124.00901, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1543. p50.Anchored = true
  1544. p50.CanCollide = false
  1545. p50.FormFactor = Enum.FormFactor.Symmetric
  1546. p50.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1547. p50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. p50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. p50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1550. p50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1551. p50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1552. p50.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. b50 = Instance.new("SpecialMesh", p50)
  1554. b50.MeshType = Enum.MeshType.Wedge
  1555. b50.Name = "Mesh"
  1556. b50.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1557. p51 = Instance.new("Part", m1)
  1558. p51.BrickColor = BrickColor.new("Medium stone grey")
  1559. p51.Material = Enum.Material.SmoothPlastic
  1560. p51.CFrame = CFrame.new(55.8278961, 3.15158606, -123.609627, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1561. p51.Anchored = true
  1562. p51.CanCollide = false
  1563. p51.FormFactor = Enum.FormFactor.Symmetric
  1564. p51.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1565. p51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1566. p51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1567. p51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1568. p51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1569. p51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. p51.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1571. b51 = Instance.new("SpecialMesh", p51)
  1572. b51.MeshType = Enum.MeshType.Wedge
  1573. b51.Name = "Mesh"
  1574. b51.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1575. p52 = Instance.new("Part", m1)
  1576. p52.BrickColor = BrickColor.new("Medium stone grey")
  1577. p52.Material = Enum.Material.SmoothPlastic
  1578. p52.CFrame = CFrame.new(55.8368301, 3.13760591, -123.624779, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1579. p52.Anchored = true
  1580. p52.CanCollide = false
  1581. p52.FormFactor = Enum.FormFactor.Symmetric
  1582. p52.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1583. p52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. p52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1585. p52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. p52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1587. p52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1588. p52.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. b52 = Instance.new("SpecialMesh", p52)
  1590. b52.MeshType = Enum.MeshType.Wedge
  1591. b52.Name = "Mesh"
  1592. b52.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1593. p53 = Instance.new("Part", m1)
  1594. p53.BrickColor = BrickColor.new("Medium stone grey")
  1595. p53.Material = Enum.Material.SmoothPlastic
  1596. p53.CFrame = CFrame.new(55.7373962, 3.15285993, -123.45697, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1597. p53.Anchored = true
  1598. p53.CanCollide = false
  1599. p53.FormFactor = Enum.FormFactor.Symmetric
  1600. p53.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1601. p53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1602. p53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1603. p53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1604. p53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1605. p53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. p53.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1607. b53 = Instance.new("SpecialMesh", p53)
  1608. b53.MeshType = Enum.MeshType.Wedge
  1609. b53.Name = "Mesh"
  1610. b53.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1611. p54 = Instance.new("Part", m1)
  1612. p54.BrickColor = BrickColor.new("Medium stone grey")
  1613. p54.Material = Enum.Material.SmoothPlastic
  1614. p54.CFrame = CFrame.new(55.9680901, 3.14961004, -123.845917, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1615. p54.Anchored = true
  1616. p54.CanCollide = false
  1617. p54.FormFactor = Enum.FormFactor.Symmetric
  1618. p54.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1619. p54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1620. p54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1621. p54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1622. p54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1623. p54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. p54.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. b54 = Instance.new("SpecialMesh", p54)
  1626. b54.MeshType = Enum.MeshType.Wedge
  1627. b54.Name = "Mesh"
  1628. b54.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1629. p55 = Instance.new("Part", m1)
  1630. p55.BrickColor = BrickColor.new("Medium stone grey")
  1631. p55.Material = Enum.Material.SmoothPlastic
  1632. p55.CFrame = CFrame.new(56.2864914, 3.14469504, -124.382751, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1633. p55.Anchored = true
  1634. p55.CanCollide = false
  1635. p55.FormFactor = Enum.FormFactor.Symmetric
  1636. p55.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1637. p55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. p55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1639. p55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1640. p55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1641. p55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. p55.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1643. b55 = Instance.new("SpecialMesh", p55)
  1644. b55.MeshType = Enum.MeshType.Wedge
  1645. b55.Name = "Mesh"
  1646. b55.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1647. p56 = Instance.new("Part", m1)
  1648. p56.BrickColor = BrickColor.new("Medium stone grey")
  1649. p56.Material = Enum.Material.SmoothPlastic
  1650. p56.CFrame = CFrame.new(55.9596062, 3.13589311, -123.831749, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1651. p56.Anchored = true
  1652. p56.CanCollide = false
  1653. p56.FormFactor = Enum.FormFactor.Symmetric
  1654. p56.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1655. p56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1656. p56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. p56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1658. p56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1659. p56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1660. p56.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1661. b56 = Instance.new("SpecialMesh", p56)
  1662. b56.MeshType = Enum.MeshType.Wedge
  1663. b56.Name = "Mesh"
  1664. b56.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1665. p57 = Instance.new("Part", m1)
  1666. p57.BrickColor = BrickColor.new("Medium stone grey")
  1667. p57.Material = Enum.Material.SmoothPlastic
  1668. p57.CFrame = CFrame.new(55.6521454, 3.11567402, -123.313751, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1669. p57.Anchored = true
  1670. p57.CanCollide = false
  1671. p57.FormFactor = Enum.FormFactor.Symmetric
  1672. p57.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1673. p57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1674. p57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1675. p57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1676. p57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1677. p57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1678. p57.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1679. b57 = Instance.new("SpecialMesh", p57)
  1680. b57.MeshType = Enum.MeshType.Wedge
  1681. b57.Name = "Mesh"
  1682. b57.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1683. p58 = Instance.new("Part", m1)
  1684. p58.BrickColor = BrickColor.new("Medium stone grey")
  1685. p58.Material = Enum.Material.SmoothPlastic
  1686. p58.CFrame = CFrame.new(56.4266815, 3.14275193, -124.618988, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1687. p58.Anchored = true
  1688. p58.CanCollide = false
  1689. p58.FormFactor = Enum.FormFactor.Symmetric
  1690. p58.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1691. p58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1692. p58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1693. p58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1694. p58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1695. p58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1696. p58.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1697. b58 = Instance.new("SpecialMesh", p58)
  1698. b58.MeshType = Enum.MeshType.Wedge
  1699. b58.Name = "Mesh"
  1700. b58.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1701. p59 = Instance.new("Part", m1)
  1702. p59.BrickColor = BrickColor.new("Medium stone grey")
  1703. p59.Material = Enum.Material.SmoothPlastic
  1704. p59.CFrame = CFrame.new(55.9121933, 3.11114788, -123.752266, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1705. p59.Anchored = true
  1706. p59.CanCollide = false
  1707. p59.FormFactor = Enum.FormFactor.Symmetric
  1708. p59.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1709. p59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1710. p59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1711. p59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1712. p59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1713. p59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1714. p59.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1715. b59 = Instance.new("SpecialMesh", p59)
  1716. b59.MeshType = Enum.MeshType.Wedge
  1717. b59.Name = "Mesh"
  1718. b59.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1719. p60 = Instance.new("Part", m1)
  1720. p60.BrickColor = BrickColor.new("Medium stone grey")
  1721. p60.Material = Enum.Material.SmoothPlastic
  1722. p60.CFrame = CFrame.new(55.7288437, 3.13909602, -123.442818, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1723. p60.Anchored = true
  1724. p60.CanCollide = false
  1725. p60.FormFactor = Enum.FormFactor.Symmetric
  1726. p60.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1727. p60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1728. p60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1729. p60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1730. p60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1731. p60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1732. p60.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1733. b60 = Instance.new("SpecialMesh", p60)
  1734. b60.MeshType = Enum.MeshType.Wedge
  1735. b60.Name = "Mesh"
  1736. b60.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1737. p61 = Instance.new("Part", m1)
  1738. p61.BrickColor = BrickColor.new("Medium stone grey")
  1739. p61.Material = Enum.Material.SmoothPlastic
  1740. p61.CFrame = CFrame.new(56.2953949, 3.13070202, -124.397903, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1741. p61.Anchored = true
  1742. p61.CanCollide = false
  1743. p61.FormFactor = Enum.FormFactor.Symmetric
  1744. p61.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1745. p61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1746. p61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1747. p61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1748. p61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1749. p61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1750. p61.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1751. b61 = Instance.new("SpecialMesh", p61)
  1752. b61.MeshType = Enum.MeshType.Wedge
  1753. b61.Name = "Mesh"
  1754. b61.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1755. p62 = Instance.new("Part", m1)
  1756. p62.BrickColor = BrickColor.new("Medium stone grey")
  1757. p62.Material = Enum.Material.SmoothPlastic
  1758. p62.CFrame = CFrame.new(55.8828468, 3.11241198, -123.702728, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1759. p62.Anchored = true
  1760. p62.CanCollide = false
  1761. p62.FormFactor = Enum.FormFactor.Symmetric
  1762. p62.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1763. p62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1764. p62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1765. p62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1766. p62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1767. p62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1768. p62.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1769. b62 = Instance.new("SpecialMesh", p62)
  1770. b62.MeshType = Enum.MeshType.Wedge
  1771. b62.Name = "Mesh"
  1772. b62.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1773. p63 = Instance.new("Part", m1)
  1774. p63.BrickColor = BrickColor.new("Medium stone grey")
  1775. p63.Material = Enum.Material.SmoothPlastic
  1776. p63.CFrame = CFrame.new(55.597271, 3.15485311, -123.22068, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1777. p63.Anchored = true
  1778. p63.CanCollide = false
  1779. p63.FormFactor = Enum.FormFactor.Symmetric
  1780. p63.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1781. p63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1782. p63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1783. p63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1784. p63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1785. p63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1786. p63.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1787. b63 = Instance.new("SpecialMesh", p63)
  1788. b63.MeshType = Enum.MeshType.Wedge
  1789. b63.Name = "Mesh"
  1790. b63.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1791. p64 = Instance.new("Part", m1)
  1792. p64.BrickColor = BrickColor.new("Medium stone grey")
  1793. p64.Material = Enum.Material.SmoothPlastic
  1794. p64.CFrame = CFrame.new(55.4488602, 3.11598396, -122.971016, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1795. p64.Anchored = true
  1796. p64.CanCollide = false
  1797. p64.FormFactor = Enum.FormFactor.Symmetric
  1798. p64.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1799. p64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1800. p64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1801. p64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1802. p64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1803. p64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1804. p64.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. b64 = Instance.new("SpecialMesh", p64)
  1806. b64.MeshType = Enum.MeshType.Wedge
  1807. b64.Name = "Mesh"
  1808. b64.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1809. p65 = Instance.new("Part", m1)
  1810. p65.BrickColor = BrickColor.new("Medium stone grey")
  1811. p65.Material = Enum.Material.SmoothPlastic
  1812. p65.CFrame = CFrame.new(55.2740173, 3.15770507, -122.675743, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1813. p65.Anchored = true
  1814. p65.CanCollide = false
  1815. p65.FormFactor = Enum.FormFactor.Symmetric
  1816. p65.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1817. p65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1818. p65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1819. p65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1820. p65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1821. p65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1822. p65.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1823. b65 = Instance.new("SpecialMesh", p65)
  1824. b65.MeshType = Enum.MeshType.Wedge
  1825. b65.Name = "Mesh"
  1826. b65.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1827. p66 = Instance.new("Part", m1)
  1828. p66.BrickColor = BrickColor.new("Medium stone grey")
  1829. p66.Material = Enum.Material.SmoothPlastic
  1830. p66.CFrame = CFrame.new(55.4194374, 3.11722708, -122.921555, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1831. p66.Anchored = true
  1832. p66.CanCollide = false
  1833. p66.FormFactor = Enum.FormFactor.Symmetric
  1834. p66.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1835. p66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1836. p66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1837. p66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1838. p66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1839. p66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1840. p66.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1841. b66 = Instance.new("SpecialMesh", p66)
  1842. b66.MeshType = Enum.MeshType.Wedge
  1843. b66.Name = "Mesh"
  1844. b66.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1845. p67 = Instance.new("Part", m1)
  1846. p67.BrickColor = BrickColor.new("Medium stone grey")
  1847. p67.Material = Enum.Material.SmoothPlastic
  1848. p67.CFrame = CFrame.new(55.1427574, 3.14566398, -122.454613, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1849. p67.Anchored = true
  1850. p67.CanCollide = false
  1851. p67.FormFactor = Enum.FormFactor.Symmetric
  1852. p67.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1853. p67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1854. p67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1855. p67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1856. p67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1857. p67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1858. p67.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1859. b67 = Instance.new("SpecialMesh", p67)
  1860. b67.MeshType = Enum.MeshType.Wedge
  1861. b67.Name = "Mesh"
  1862. b67.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1863. p68 = Instance.new("Part", m1)
  1864. p68.BrickColor = BrickColor.new("Medium stone grey")
  1865. p68.Material = Enum.Material.SmoothPlastic
  1866. p68.CFrame = CFrame.new(55.5046921, 3.15444088, -123.06472, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1867. p68.Anchored = true
  1868. p68.CanCollide = false
  1869. p68.FormFactor = Enum.FormFactor.Symmetric
  1870. p68.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1871. p68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1872. p68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1873. p68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1874. p68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1875. p68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1876. p68.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1877. b68 = Instance.new("SpecialMesh", p68)
  1878. b68.MeshType = Enum.MeshType.Wedge
  1879. b68.Name = "Mesh"
  1880. b68.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1881. p69 = Instance.new("Part", m1)
  1882. p69.BrickColor = BrickColor.new("Medium stone grey")
  1883. p69.Material = Enum.Material.SmoothPlastic
  1884. p69.CFrame = CFrame.new(55.1338921, 3.15968299, -122.439415, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1885. p69.Anchored = true
  1886. p69.CanCollide = false
  1887. p69.FormFactor = Enum.FormFactor.Symmetric
  1888. p69.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1889. p69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1890. p69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1891. p69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1892. p69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1893. p69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. p69.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1895. b69 = Instance.new("SpecialMesh", p69)
  1896. b69.MeshType = Enum.MeshType.Wedge
  1897. b69.Name = "Mesh"
  1898. b69.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1899. p70 = Instance.new("Part", m1)
  1900. p70.BrickColor = BrickColor.new("Medium stone grey")
  1901. p70.Material = Enum.Material.SmoothPlastic
  1902. p70.CFrame = CFrame.new(55.2181892, 3.11923099, -122.582039, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1903. p70.Anchored = true
  1904. p70.CanCollide = false
  1905. p70.FormFactor = Enum.FormFactor.Symmetric
  1906. p70.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1907. p70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1908. p70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1909. p70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1910. p70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1911. p70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1912. p70.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1913. b70 = Instance.new("SpecialMesh", p70)
  1914. b70.MeshType = Enum.MeshType.Wedge
  1915. b70.Name = "Mesh"
  1916. b70.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1917. p71 = Instance.new("Part", m1)
  1918. p71.BrickColor = BrickColor.new("Medium stone grey")
  1919. p71.Material = Enum.Material.SmoothPlastic
  1920. p71.CFrame = CFrame.new(55.3645706, 3.15642405, -122.828369, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1921. p71.Anchored = true
  1922. p71.CanCollide = false
  1923. p71.FormFactor = Enum.FormFactor.Symmetric
  1924. p71.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1925. p71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1926. p71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1927. p71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1928. p71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1929. p71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1930. p71.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1931. b71 = Instance.new("SpecialMesh", p71)
  1932. b71.MeshType = Enum.MeshType.Wedge
  1933. b71.Name = "Mesh"
  1934. b71.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1935. p72 = Instance.new("Part", m1)
  1936. p72.BrickColor = BrickColor.new("Medium stone grey")
  1937. p72.Material = Enum.Material.SmoothPlastic
  1938. p72.CFrame = CFrame.new(55.3734627, 3.14243388, -122.843559, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1939. p72.Anchored = true
  1940. p72.CanCollide = false
  1941. p72.FormFactor = Enum.FormFactor.Symmetric
  1942. p72.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1943. p72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1944. p72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1945. p72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1946. p72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1947. p72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1948. p72.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1949. b72 = Instance.new("SpecialMesh", p72)
  1950. b72.MeshType = Enum.MeshType.Wedge
  1951. b72.Name = "Mesh"
  1952. b72.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1953. p73 = Instance.new("Part", m1)
  1954. p73.BrickColor = BrickColor.new("Medium stone grey")
  1955. p73.Material = Enum.Material.SmoothPlastic
  1956. p73.CFrame = CFrame.new(55.1887932, 3.12050605, -122.532555, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  1957. p73.Anchored = true
  1958. p73.CanCollide = false
  1959. p73.FormFactor = Enum.FormFactor.Symmetric
  1960. p73.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1961. p73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1962. p73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1963. p73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1964. p73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1965. p73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1966. p73.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1967. b73 = Instance.new("SpecialMesh", p73)
  1968. b73.MeshType = Enum.MeshType.Wedge
  1969. b73.Name = "Mesh"
  1970. b73.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  1971. p74 = Instance.new("Part", m1)
  1972. p74.BrickColor = BrickColor.new("Medium stone grey")
  1973. p74.Material = Enum.Material.SmoothPlastic
  1974. p74.CFrame = CFrame.new(55.2654953, 3.14394093, -122.661606, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1975. p74.Anchored = true
  1976. p74.CanCollide = false
  1977. p74.FormFactor = Enum.FormFactor.Symmetric
  1978. p74.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1979. p74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1980. p74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1981. p74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1982. p74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1983. p74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1984. p74.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1985. b74 = Instance.new("SpecialMesh", p74)
  1986. b74.MeshType = Enum.MeshType.Wedge
  1987. b74.Name = "Mesh"
  1988. b74.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  1989. p75 = Instance.new("Part", m1)
  1990. p75.BrickColor = BrickColor.new("Medium stone grey")
  1991. p75.Material = Enum.Material.SmoothPlastic
  1992. p75.CFrame = CFrame.new(55.4962082, 3.14070702, -123.050545, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  1993. p75.Anchored = true
  1994. p75.CanCollide = false
  1995. p75.FormFactor = Enum.FormFactor.Symmetric
  1996. p75.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  1997. p75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1998. p75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1999. p75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2000. p75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2001. p75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2002. p75.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2003. b75 = Instance.new("SpecialMesh", p75)
  2004. b75.MeshType = Enum.MeshType.Wedge
  2005. b75.Name = "Mesh"
  2006. b75.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2007. p76 = Instance.new("Part", m1)
  2008. p76.BrickColor = BrickColor.new("Medium stone grey")
  2009. p76.Material = Enum.Material.SmoothPlastic
  2010. p76.CFrame = CFrame.new(57.3470764, 3.12805295, -126.170784, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  2011. p76.Anchored = true
  2012. p76.CanCollide = false
  2013. p76.FormFactor = Enum.FormFactor.Symmetric
  2014. p76.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2015. p76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2016. p76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2017. p76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2018. p76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2019. p76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2020. p76.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2021. b76 = Instance.new("SpecialMesh", p76)
  2022. b76.MeshType = Enum.MeshType.Wedge
  2023. b76.Name = "Mesh"
  2024. b76.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2025. p77 = Instance.new("Part", m1)
  2026. p77.BrickColor = BrickColor.new("Medium stone grey")
  2027. p77.Material = Enum.Material.SmoothPlastic
  2028. p77.CFrame = CFrame.new(57.2069206, 3.13002491, -125.934464, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  2029. p77.Anchored = true
  2030. p77.CanCollide = false
  2031. p77.FormFactor = Enum.FormFactor.Symmetric
  2032. p77.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2033. p77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2034. p77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2035. p77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2036. p77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2037. p77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2038. p77.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. b77 = Instance.new("SpecialMesh", p77)
  2040. b77.MeshType = Enum.MeshType.Wedge
  2041. b77.Name = "Mesh"
  2042. b77.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2043. p78 = Instance.new("Part", m1)
  2044. p78.BrickColor = BrickColor.new("Medium stone grey")
  2045. p78.Material = Enum.Material.SmoothPlastic
  2046. p78.CFrame = CFrame.new(56.8799591, 3.12118196, -125.383469, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  2047. p78.Anchored = true
  2048. p78.CanCollide = false
  2049. p78.FormFactor = Enum.FormFactor.Symmetric
  2050. p78.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2051. p78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2052. p78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2053. p78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2054. p78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. p78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2056. p78.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. b78 = Instance.new("SpecialMesh", p78)
  2058. b78.MeshType = Enum.MeshType.Wedge
  2059. b78.Name = "Mesh"
  2060. b78.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2061. p79 = Instance.new("Part", m1)
  2062. p79.BrickColor = BrickColor.new("Medium stone grey")
  2063. p79.Material = Enum.Material.SmoothPlastic
  2064. p79.CFrame = CFrame.new(56.8032913, 3.09776092, -125.254478, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  2065. p79.Anchored = true
  2066. p79.CanCollide = false
  2067. p79.FormFactor = Enum.FormFactor.Symmetric
  2068. p79.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2069. p79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2070. p79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. p79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. p79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. p79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. p79.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2075. b79 = Instance.new("SpecialMesh", p79)
  2076. b79.MeshType = Enum.MeshType.Wedge
  2077. b79.Name = "Mesh"
  2078. b79.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2079. p80 = Instance.new("Part", m1)
  2080. p80.BrickColor = BrickColor.new("Medium stone grey")
  2081. p80.Material = Enum.Material.SmoothPlastic
  2082. p80.CFrame = CFrame.new(56.8326302, 3.09646797, -125.303963, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  2083. p80.Anchored = true
  2084. p80.CanCollide = false
  2085. p80.FormFactor = Enum.FormFactor.Symmetric
  2086. p80.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2087. p80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. p80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. p80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. p80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2091. p80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2092. p80.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2093. b80 = Instance.new("SpecialMesh", p80)
  2094. b80.MeshType = Enum.MeshType.Wedge
  2095. b80.Name = "Mesh"
  2096. b80.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2097. p81 = Instance.new("Part", m1)
  2098. p81.BrickColor = BrickColor.new("Medium stone grey")
  2099. p81.Material = Enum.Material.SmoothPlastic
  2100. p81.CFrame = CFrame.new(56.5725021, 3.10098004, -124.865494, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  2101. p81.Anchored = true
  2102. p81.CanCollide = false
  2103. p81.FormFactor = Enum.FormFactor.Symmetric
  2104. p81.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2105. p81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. p81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. p81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. p81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2109. p81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2110. p81.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2111. b81 = Instance.new("SpecialMesh", p81)
  2112. b81.MeshType = Enum.MeshType.Wedge
  2113. b81.Name = "Mesh"
  2114. b81.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2115. p82 = Instance.new("Part", m1)
  2116. p82.BrickColor = BrickColor.new("Medium stone grey")
  2117. p82.Material = Enum.Material.SmoothPlastic
  2118. p82.CFrame = CFrame.new(56.6492615, 3.12442207, -124.994576, 0.860044122, 0.00979429111, -0.510125756, -0.0071210009, 0.999948859, 0.00719315652, 0.510170043, -0.00255382597, 0.860069871)
  2119. p82.Anchored = true
  2120. p82.CanCollide = false
  2121. p82.FormFactor = Enum.FormFactor.Symmetric
  2122. p82.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2123. p82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. p82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2125. p82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2126. p82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. p82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2128. p82.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2129. b82 = Instance.new("SpecialMesh", p82)
  2130. b82.MeshType = Enum.MeshType.Wedge
  2131. b82.Name = "Mesh"
  2132. b82.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2133. p83 = Instance.new("Part", m1)
  2134. p83.BrickColor = BrickColor.new("Medium stone grey")
  2135. p83.Material = Enum.Material.SmoothPlastic
  2136. p83.CFrame = CFrame.new(57.2157784, 3.11601591, -125.949722, -0.860044122, 0.00979429111, 0.510125756, 0.0071210009, 0.999948859, -0.00719315652, -0.510170043, -0.00255382597, -0.860069871)
  2137. p83.Anchored = true
  2138. p83.CanCollide = false
  2139. p83.FormFactor = Enum.FormFactor.Symmetric
  2140. p83.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2141. p83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2142. p83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2143. p83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2144. p83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2145. p83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2146. p83.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2147. b83 = Instance.new("SpecialMesh", p83)
  2148. b83.MeshType = Enum.MeshType.Wedge
  2149. b83.Name = "Mesh"
  2150. b83.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2151. p84 = Instance.new("Part", m1)
  2152. p84.BrickColor = BrickColor.new("Mid gray")
  2153. p84.Material = Enum.Material.SmoothPlastic
  2154. p84.CFrame = CFrame.new(56.217701, 2.2195909, -124.279587, -0.508213162, -0.0453501344, 0.860036492, 0.0769220293, -0.997011662, -0.00711810961, 0.857789278, 0.0625382289, 0.510182858)
  2155. p84.Anchored = true
  2156. p84.CanCollide = false
  2157. p84.Size = Vector3.new(4.51974726, 0.200000003, 0.200000003)
  2158. p84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2159. p84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2160. p84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2161. p84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2162. p84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2163. p84.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2164. b84 = Instance.new("BlockMesh", p84)
  2165. b84.Name = "Mesh"
  2166. b84.Scale = Vector3.new(1, 0.511959314, 0.435165763)
  2167. p85 = Instance.new("Part", m1)
  2168. p85.BrickColor = BrickColor.new("Medium stone grey")
  2169. p85.Material = Enum.Material.SmoothPlastic
  2170. p85.CFrame = CFrame.new(57.2308159, 1.96921194, -125.991058, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2171. p85.Anchored = true
  2172. p85.CanCollide = false
  2173. p85.FormFactor = Enum.FormFactor.Symmetric
  2174. p85.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2175. p85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2176. p85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2177. p85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2178. p85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. p85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2180. p85.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2181. b85 = Instance.new("SpecialMesh", p85)
  2182. b85.MeshType = Enum.MeshType.Wedge
  2183. b85.Name = "Mesh"
  2184. b85.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2185. p86 = Instance.new("Part", m1)
  2186. p86.BrickColor = BrickColor.new("Medium stone grey")
  2187. p86.Material = Enum.Material.SmoothPlastic
  2188. p86.CFrame = CFrame.new(57.2601395, 1.96563601, -126.040535, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2189. p86.Anchored = true
  2190. p86.CanCollide = false
  2191. p86.FormFactor = Enum.FormFactor.Symmetric
  2192. p86.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2193. p86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2194. p86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2195. p86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2196. p86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2197. p86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. p86.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2199. b86 = Instance.new("SpecialMesh", p86)
  2200. b86.MeshType = Enum.MeshType.Wedge
  2201. b86.Name = "Mesh"
  2202. b86.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2203. p87 = Instance.new("Part", m1)
  2204. p87.BrickColor = BrickColor.new("Medium stone grey")
  2205. p87.Material = Enum.Material.SmoothPlastic
  2206. p87.CFrame = CFrame.new(57.0010414, 2.00401092, -125.603104, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2207. p87.Anchored = true
  2208. p87.CanCollide = false
  2209. p87.FormFactor = Enum.FormFactor.Symmetric
  2210. p87.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2211. p87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2212. p87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2213. p87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2214. p87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. p87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. p87.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2217. b87 = Instance.new("SpecialMesh", p87)
  2218. b87.MeshType = Enum.MeshType.Wedge
  2219. b87.Name = "Mesh"
  2220. b87.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2221. p88 = Instance.new("Part", m1)
  2222. p88.BrickColor = BrickColor.new("Medium stone grey")
  2223. p88.Material = Enum.Material.SmoothPlastic
  2224. p88.CFrame = CFrame.new(57.0761223, 1.96801996, -125.730225, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2225. p88.Anchored = true
  2226. p88.CanCollide = false
  2227. p88.FormFactor = Enum.FormFactor.Symmetric
  2228. p88.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2229. p88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2230. p88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2231. p88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2232. p88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. p88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. p88.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2235. b88 = Instance.new("SpecialMesh", p88)
  2236. b88.MeshType = Enum.MeshType.Wedge
  2237. b88.Name = "Mesh"
  2238. b88.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2239. p89 = Instance.new("Part", m1)
  2240. p89.BrickColor = BrickColor.new("Medium stone grey")
  2241. p89.Material = Enum.Material.SmoothPlastic
  2242. p89.CFrame = CFrame.new(57.3059921, 1.93324995, -126.118134, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2243. p89.Anchored = true
  2244. p89.CanCollide = false
  2245. p89.FormFactor = Enum.FormFactor.Symmetric
  2246. p89.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2247. p89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2248. p89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2249. p89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2250. p89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2251. p89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2252. p89.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2253. b89 = Instance.new("SpecialMesh", p89)
  2254. b89.MeshType = Enum.MeshType.Wedge
  2255. b89.Name = "Mesh"
  2256. b89.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2257. p90 = Instance.new("Part", m1)
  2258. p90.BrickColor = BrickColor.new("Medium stone grey")
  2259. p90.Material = Enum.Material.SmoothPlastic
  2260. p90.CFrame = CFrame.new(56.6269608, 2.02164888, -124.972305, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2261. p90.Anchored = true
  2262. p90.CanCollide = false
  2263. p90.FormFactor = Enum.FormFactor.Symmetric
  2264. p90.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2265. p90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2266. p90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2267. p90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2268. p90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2269. p90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2270. p90.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. b90 = Instance.new("SpecialMesh", p90)
  2272. b90.MeshType = Enum.MeshType.Wedge
  2273. b90.Name = "Mesh"
  2274. b90.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2275. p91 = Instance.new("Part", m1)
  2276. p91.BrickColor = BrickColor.new("Medium stone grey")
  2277. p91.Material = Enum.Material.SmoothPlastic
  2278. p91.CFrame = CFrame.new(56.0839729, 2.14108992, -124.055344, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2279. p91.Anchored = true
  2280. p91.CanCollide = false
  2281. p91.FormFactor = Enum.FormFactor.Symmetric
  2282. p91.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2283. p91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2284. p91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2285. p91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2286. p91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2287. p91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. p91.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. b91 = Instance.new("SpecialMesh", p91)
  2290. b91.MeshType = Enum.MeshType.Wedge
  2291. b91.Name = "Mesh"
  2292. b91.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2293. p92 = Instance.new("Part", m1)
  2294. p92.BrickColor = BrickColor.new("Medium stone grey")
  2295. p92.Material = Enum.Material.SmoothPlastic
  2296. p92.CFrame = CFrame.new(55.6563873, 2.20620108, -123.33371, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2297. p92.Anchored = true
  2298. p92.CanCollide = false
  2299. p92.FormFactor = Enum.FormFactor.Symmetric
  2300. p92.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2301. p92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2302. p92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2303. p92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2304. p92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. p92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. p92.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. b92 = Instance.new("SpecialMesh", p92)
  2308. b92.MeshType = Enum.MeshType.Wedge
  2309. b92.Name = "Mesh"
  2310. b92.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2311. p93 = Instance.new("Part", m1)
  2312. p93.BrickColor = BrickColor.new("Medium stone grey")
  2313. p93.Material = Enum.Material.SmoothPlastic
  2314. p93.CFrame = CFrame.new(56.0368195, 2.12359309, -123.976097, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2315. p93.Anchored = true
  2316. p93.CanCollide = false
  2317. p93.FormFactor = Enum.FormFactor.Symmetric
  2318. p93.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2319. p93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2320. p93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2321. p93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2322. p93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. p93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2324. p93.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2325. b93 = Instance.new("SpecialMesh", p93)
  2326. b93.MeshType = Enum.MeshType.Wedge
  2327. b93.Name = "Mesh"
  2328. b93.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2329. p94 = Instance.new("Part", m1)
  2330. p94.BrickColor = BrickColor.new("Medium stone grey")
  2331. p94.Material = Enum.Material.SmoothPlastic
  2332. p94.CFrame = CFrame.new(56.1591148, 2.10511398, -124.18248, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2333. p94.Anchored = true
  2334. p94.CanCollide = false
  2335. p94.FormFactor = Enum.FormFactor.Symmetric
  2336. p94.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2337. p94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2338. p94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2339. p94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2340. p94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2341. p94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2342. p94.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2343. b94 = Instance.new("SpecialMesh", p94)
  2344. b94.MeshType = Enum.MeshType.Wedge
  2345. b94.Name = "Mesh"
  2346. b94.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2347. p95 = Instance.new("Part", m1)
  2348. p95.BrickColor = BrickColor.new("Medium stone grey")
  2349. p95.Material = Enum.Material.SmoothPlastic
  2350. p95.CFrame = CFrame.new(55.8001442, 2.145087, -123.576767, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2351. p95.Anchored = true
  2352. p95.CanCollide = false
  2353. p95.FormFactor = Enum.FormFactor.Symmetric
  2354. p95.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2355. p95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2356. p95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2357. p95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2358. p95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2359. p95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2360. p95.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2361. b95 = Instance.new("SpecialMesh", p95)
  2362. b95.MeshType = Enum.MeshType.Wedge
  2363. b95.Name = "Mesh"
  2364. b95.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2365. p96 = Instance.new("Part", m1)
  2366. p96.BrickColor = BrickColor.new("Medium stone grey")
  2367. p96.Material = Enum.Material.SmoothPlastic
  2368. p96.CFrame = CFrame.new(56.3889236, 2.07031393, -124.570366, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2369. p96.Anchored = true
  2370. p96.CanCollide = false
  2371. p96.FormFactor = Enum.FormFactor.Symmetric
  2372. p96.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2373. p96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2374. p96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2375. p96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2376. p96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2377. p96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2378. p96.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2379. b96 = Instance.new("SpecialMesh", p96)
  2380. b96.MeshType = Enum.MeshType.Wedge
  2381. b96.Name = "Mesh"
  2382. b96.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2383. p97 = Instance.new("Part", m1)
  2384. p97.BrickColor = BrickColor.new("Medium stone grey")
  2385. p97.Material = Enum.Material.SmoothPlastic
  2386. p97.CFrame = CFrame.new(56.1668434, 2.09001803, -124.195709, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2387. p97.Anchored = true
  2388. p97.CanCollide = false
  2389. p97.FormFactor = Enum.FormFactor.Symmetric
  2390. p97.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2391. p97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2392. p97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2393. p97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2394. p97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2395. p97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2396. p97.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2397. b97 = Instance.new("SpecialMesh", p97)
  2398. b97.MeshType = Enum.MeshType.Wedge
  2399. b97.Name = "Mesh"
  2400. b97.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2401. p98 = Instance.new("Part", m1)
  2402. p98.BrickColor = BrickColor.new("Medium stone grey")
  2403. p98.Material = Enum.Material.SmoothPlastic
  2404. p98.CFrame = CFrame.new(57.0303612, 2.00043511, -125.65258, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2405. p98.Anchored = true
  2406. p98.CanCollide = false
  2407. p98.FormFactor = Enum.FormFactor.Symmetric
  2408. p98.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2409. p98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2410. p98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2411. p98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2412. p98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2413. p98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2414. p98.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2415. b98 = Instance.new("SpecialMesh", p98)
  2416. b98.MeshType = Enum.MeshType.Wedge
  2417. b98.Name = "Mesh"
  2418. b98.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2419. p99 = Instance.new("Part", m1)
  2420. p99.BrickColor = BrickColor.new("Medium stone grey")
  2421. p99.Material = Enum.Material.SmoothPlastic
  2422. p99.CFrame = CFrame.new(57.0838242, 1.95291197, -125.743416, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2423. p99.Anchored = true
  2424. p99.CanCollide = false
  2425. p99.FormFactor = Enum.FormFactor.Symmetric
  2426. p99.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2427. p99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2428. p99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2429. p99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2430. p99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2431. p99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2432. p99.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2433. b99 = Instance.new("SpecialMesh", p99)
  2434. b99.MeshType = Enum.MeshType.Wedge
  2435. b99.Name = "Mesh"
  2436. b99.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2437. p100 = Instance.new("Part", m1)
  2438. p100.BrickColor = BrickColor.new("Medium stone grey")
  2439. p100.Material = Enum.Material.SmoothPlastic
  2440. p100.CFrame = CFrame.new(56.3431053, 2.10271311, -124.492752, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2441. p100.Anchored = true
  2442. p100.CanCollide = false
  2443. p100.FormFactor = Enum.FormFactor.Symmetric
  2444. p100.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2445. p100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2446. p100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2447. p100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2448. p100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2449. p100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2450. p100.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2451. b100 = Instance.new("SpecialMesh", p100)
  2452. b100.MeshType = Enum.MeshType.Wedge
  2453. b100.Name = "Mesh"
  2454. b100.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2455. p101 = Instance.new("Part", m1)
  2456. p101.BrickColor = BrickColor.new("Medium stone grey")
  2457. p101.Material = Enum.Material.SmoothPlastic
  2458. p101.CFrame = CFrame.new(56.0271645, 2.11114311, -123.959961, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2459. p101.Anchored = true
  2460. p101.CanCollide = false
  2461. p101.FormFactor = Enum.FormFactor.Symmetric
  2462. p101.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2463. p101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2464. p101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2465. p101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2466. p101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2467. p101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2468. p101.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2469. b101 = Instance.new("SpecialMesh", p101)
  2470. b101.MeshType = Enum.MeshType.Wedge
  2471. b101.Name = "Mesh"
  2472. b101.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2473. p102 = Instance.new("Part", m1)
  2474. p102.BrickColor = BrickColor.new("Medium stone grey")
  2475. p102.Material = Enum.Material.SmoothPlastic
  2476. p102.CFrame = CFrame.new(56.1132813, 2.13749909, -124.104797, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2477. p102.Anchored = true
  2478. p102.CanCollide = false
  2479. p102.FormFactor = Enum.FormFactor.Symmetric
  2480. p102.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2481. p102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2482. p102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2483. p102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2484. p102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. p102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2486. p102.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2487. b102 = Instance.new("SpecialMesh", p102)
  2488. b102.MeshType = Enum.MeshType.Wedge
  2489. b102.Name = "Mesh"
  2490. b102.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2491. p103 = Instance.new("Part", m1)
  2492. p103.BrickColor = BrickColor.new("Medium stone grey")
  2493. p103.Material = Enum.Material.SmoothPlastic
  2494. p103.CFrame = CFrame.new(56.9538574, 1.98653901, -125.523827, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2495. p103.Anchored = true
  2496. p103.CanCollide = false
  2497. p103.FormFactor = Enum.FormFactor.Symmetric
  2498. p103.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2499. p103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2500. p103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2501. p103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2502. p103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. p103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2504. p103.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2505. b103 = Instance.new("SpecialMesh", p103)
  2506. b103.MeshType = Enum.MeshType.Wedge
  2507. b103.Name = "Mesh"
  2508. b103.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2509. p104 = Instance.new("Part", m1)
  2510. p104.BrickColor = BrickColor.new("Medium stone grey")
  2511. p104.Material = Enum.Material.SmoothPlastic
  2512. p104.CFrame = CFrame.new(56.3138351, 2.10630393, -124.443253, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2513. p104.Anchored = true
  2514. p104.CanCollide = false
  2515. p104.FormFactor = Enum.FormFactor.Symmetric
  2516. p104.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2517. p104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2518. p104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2519. p104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2520. p104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2521. p104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2522. p104.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2523. b104 = Instance.new("SpecialMesh", p104)
  2524. b104.MeshType = Enum.MeshType.Wedge
  2525. b104.Name = "Mesh"
  2526. b104.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2527. p105 = Instance.new("Part", m1)
  2528. p105.BrickColor = BrickColor.new("Dark stone grey")
  2529. p105.Material = Enum.Material.Fabric
  2530. p105.Name = "Hitbox"
  2531. p105.CFrame = CFrame.new(56.220932, 2.29617095, -124.284103, -0.508213162, -0.0453501344, 0.860036492, 0.0769220293, -0.997011662, -0.00711810961, 0.857789278, 0.0625382289, 0.510182858)
  2532. p105.Anchored = true
  2533. p105.CanCollide = false
  2534. p105.Size = Vector3.new(4.51804161, 0.200000003, 0.200000003)
  2535. p105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2536. p105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2537. p105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2538. p105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2539. p105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2540. p105.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2541. b105 = Instance.new("BlockMesh", p105)
  2542. b105.Name = "Mesh"
  2543. b105.Scale = Vector3.new(1, 0.511959314, 0.430899411)
  2544. p106 = Instance.new("Part", m1)
  2545. p106.BrickColor = BrickColor.new("Medium stone grey")
  2546. p106.Material = Enum.Material.SmoothPlastic
  2547. p106.CFrame = CFrame.new(56.4969521, 2.055233, -124.752716, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2548. p106.Anchored = true
  2549. p106.CanCollide = false
  2550. p106.FormFactor = Enum.FormFactor.Symmetric
  2551. p106.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2552. p106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2553. p106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2554. p106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2555. p106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2556. p106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2557. p106.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2558. b106 = Instance.new("SpecialMesh", p106)
  2559. b106.MeshType = Enum.MeshType.Wedge
  2560. b106.Name = "Mesh"
  2561. b106.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2562. p107 = Instance.new("Part", m1)
  2563. p107.BrickColor = BrickColor.new("Medium stone grey")
  2564. p107.Material = Enum.Material.SmoothPlastic
  2565. p107.CFrame = CFrame.new(56.9441948, 1.97404099, -125.507767, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2566. p107.Anchored = true
  2567. p107.CanCollide = false
  2568. p107.FormFactor = Enum.FormFactor.Symmetric
  2569. p107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2570. p107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2571. p107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2572. p107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2573. p107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2574. p107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2575. p107.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2576. b107 = Instance.new("SpecialMesh", p107)
  2577. b107.MeshType = Enum.MeshType.Wedge
  2578. b107.Name = "Mesh"
  2579. b107.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2580. p108 = Instance.new("Part", m1)
  2581. p108.BrickColor = BrickColor.new("Medium stone grey")
  2582. p108.Material = Enum.Material.SmoothPlastic
  2583. p108.CFrame = CFrame.new(56.7171822, 2.00799298, -125.124573, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2584. p108.Anchored = true
  2585. p108.CanCollide = false
  2586. p108.FormFactor = Enum.FormFactor.Symmetric
  2587. p108.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2588. p108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. p108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. p108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2591. p108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2592. p108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2593. p108.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2594. b108 = Instance.new("SpecialMesh", p108)
  2595. b108.MeshType = Enum.MeshType.Wedge
  2596. b108.Name = "Mesh"
  2597. b108.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2598. p109 = Instance.new("Part", m1)
  2599. p109.BrickColor = BrickColor.new("Medium stone grey")
  2600. p109.Material = Enum.Material.SmoothPlastic
  2601. p109.CFrame = CFrame.new(56.5734367, 2.06916189, -124.881424, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2602. p109.Anchored = true
  2603. p109.CanCollide = false
  2604. p109.FormFactor = Enum.FormFactor.Symmetric
  2605. p109.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2606. p109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2607. p109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2608. p109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2609. p109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2610. p109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2611. p109.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2612. b109 = Instance.new("SpecialMesh", p109)
  2613. b109.MeshType = Enum.MeshType.Wedge
  2614. b109.Name = "Mesh"
  2615. b109.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2616. p110 = Instance.new("Part", m1)
  2617. p110.BrickColor = BrickColor.new("Medium stone grey")
  2618. p110.Material = Enum.Material.SmoothPlastic
  2619. p110.CFrame = CFrame.new(56.7267647, 2.02045393, -125.140633, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2620. p110.Anchored = true
  2621. p110.CanCollide = false
  2622. p110.FormFactor = Enum.FormFactor.Symmetric
  2623. p110.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2624. p110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2625. p110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2626. p110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2627. p110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2628. p110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2629. p110.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2630. b110 = Instance.new("SpecialMesh", p110)
  2631. b110.MeshType = Enum.MeshType.Wedge
  2632. b110.Name = "Mesh"
  2633. b110.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2634. p111 = Instance.new("Part", m1)
  2635. p111.BrickColor = BrickColor.new("Medium stone grey")
  2636. p111.Material = Enum.Material.SmoothPlastic
  2637. p111.CFrame = CFrame.new(56.8567886, 1.986848, -125.360275, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2638. p111.Anchored = true
  2639. p111.CanCollide = false
  2640. p111.FormFactor = Enum.FormFactor.Symmetric
  2641. p111.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2642. p111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2643. p111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2644. p111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2645. p111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2646. p111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2647. p111.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2648. b111 = Instance.new("SpecialMesh", p111)
  2649. b111.MeshType = Enum.MeshType.Wedge
  2650. b111.Name = "Mesh"
  2651. b111.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2652. p112 = Instance.new("Part", m1)
  2653. p112.BrickColor = BrickColor.new("Medium stone grey")
  2654. p112.Material = Enum.Material.SmoothPlastic
  2655. p112.CFrame = CFrame.new(56.487339, 2.04276609, -124.736656, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2656. p112.Anchored = true
  2657. p112.CanCollide = false
  2658. p112.FormFactor = Enum.FormFactor.Symmetric
  2659. p112.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2660. p112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2661. p112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2662. p112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2663. p112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2664. p112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. p112.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2666. b112 = Instance.new("SpecialMesh", p112)
  2667. b112.MeshType = Enum.MeshType.Wedge
  2668. b112.Name = "Mesh"
  2669. b112.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2670. p113 = Instance.new("Part", m1)
  2671. p113.BrickColor = BrickColor.new("Medium stone grey")
  2672. p113.Material = Enum.Material.SmoothPlastic
  2673. p113.CFrame = CFrame.new(55.579937, 2.19231009, -123.204979, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2674. p113.Anchored = true
  2675. p113.CanCollide = false
  2676. p113.FormFactor = Enum.FormFactor.Symmetric
  2677. p113.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2678. p113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2679. p113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2680. p113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. p113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2682. p113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2683. p113.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2684. b113 = Instance.new("SpecialMesh", p113)
  2685. b113.MeshType = Enum.MeshType.Wedge
  2686. b113.Name = "Mesh"
  2687. b113.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2688. p114 = Instance.new("Part", m1)
  2689. p114.BrickColor = BrickColor.new("Medium stone grey")
  2690. p114.Material = Enum.Material.SmoothPlastic
  2691. p114.CFrame = CFrame.new(55.2484016, 2.23029304, -122.645531, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2692. p114.Anchored = true
  2693. p114.CanCollide = false
  2694. p114.FormFactor = Enum.FormFactor.Symmetric
  2695. p114.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2696. p114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2697. p114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2698. p114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2699. p114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2700. p114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. p114.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2702. b114 = Instance.new("SpecialMesh", p114)
  2703. b114.MeshType = Enum.MeshType.Wedge
  2704. b114.Name = "Mesh"
  2705. b114.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2706. p115 = Instance.new("Part", m1)
  2707. p115.BrickColor = BrickColor.new("Medium stone grey")
  2708. p115.Material = Enum.Material.SmoothPlastic
  2709. p115.CFrame = CFrame.new(55.7099113, 2.15871191, -123.424507, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2710. p115.Anchored = true
  2711. p115.CanCollide = false
  2712. p115.FormFactor = Enum.FormFactor.Symmetric
  2713. p115.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2714. p115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2715. p115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2716. p115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2717. p115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. p115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2719. p115.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2720. b115 = Instance.new("SpecialMesh", p115)
  2721. b115.MeshType = Enum.MeshType.Wedge
  2722. b115.Name = "Mesh"
  2723. b115.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2724. p116 = Instance.new("Part", m1)
  2725. p116.BrickColor = BrickColor.new("Medium stone grey")
  2726. p116.Material = Enum.Material.SmoothPlastic
  2727. p116.CFrame = CFrame.new(56.2570305, 2.07636189, -124.347977, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2728. p116.Anchored = true
  2729. p116.CanCollide = false
  2730. p116.FormFactor = Enum.FormFactor.Symmetric
  2731. p116.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2732. p116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2733. p116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2734. p116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. p116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2736. p116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2737. p116.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2738. b116 = Instance.new("SpecialMesh", p116)
  2739. b116.MeshType = Enum.MeshType.Wedge
  2740. b116.Name = "Mesh"
  2741. b116.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2742. p117 = Instance.new("Part", m1)
  2743. p117.BrickColor = BrickColor.new("Medium stone grey")
  2744. p117.Material = Enum.Material.SmoothPlastic
  2745. p117.CFrame = CFrame.new(56.2666512, 2.0888319, -124.363976, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2746. p117.Anchored = true
  2747. p117.CanCollide = false
  2748. p117.FormFactor = Enum.FormFactor.Symmetric
  2749. p117.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2750. p117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2751. p117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2752. p117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2753. p117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2754. p117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2755. p117.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2756. b117 = Instance.new("SpecialMesh", p117)
  2757. b117.MeshType = Enum.MeshType.Wedge
  2758. b117.Name = "Mesh"
  2759. b117.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2760. p118 = Instance.new("Part", m1)
  2761. p118.BrickColor = BrickColor.new("Medium stone grey")
  2762. p118.Material = Enum.Material.SmoothPlastic
  2763. p118.CFrame = CFrame.new(55.5703049, 2.17984509, -123.188904, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2764. p118.Anchored = true
  2765. p118.CanCollide = false
  2766. p118.FormFactor = Enum.FormFactor.Symmetric
  2767. p118.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2768. p118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2769. p118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2770. p118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2771. p118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2772. p118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. p118.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2774. b118 = Instance.new("SpecialMesh", p118)
  2775. b118.MeshType = Enum.MeshType.Wedge
  2776. b118.Name = "Mesh"
  2777. b118.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2778. p119 = Instance.new("Part", m1)
  2779. p119.BrickColor = BrickColor.new("Medium stone grey")
  2780. p119.Material = Enum.Material.SmoothPlastic
  2781. p119.CFrame = CFrame.new(55.3954315, 2.24659801, -122.893105, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2782. p119.Anchored = true
  2783. p119.CanCollide = false
  2784. p119.FormFactor = Enum.FormFactor.Symmetric
  2785. p119.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2786. p119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2787. p119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2788. p119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2789. p119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2790. p119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2791. p119.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2792. b119 = Instance.new("SpecialMesh", p119)
  2793. b119.MeshType = Enum.MeshType.Wedge
  2794. b119.Name = "Mesh"
  2795. b119.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2796. p120 = Instance.new("Part", m1)
  2797. p120.BrickColor = BrickColor.new("Medium stone grey")
  2798. p120.Material = Enum.Material.SmoothPlastic
  2799. p120.CFrame = CFrame.new(55.4782181, 2.19551611, -123.03344, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2800. p120.Anchored = true
  2801. p120.CanCollide = false
  2802. p120.FormFactor = Enum.FormFactor.Symmetric
  2803. p120.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2804. p120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2805. p120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2806. p120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. p120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2808. p120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2809. p120.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2810. b120 = Instance.new("SpecialMesh", p120)
  2811. b120.MeshType = Enum.MeshType.Wedge
  2812. b120.Name = "Mesh"
  2813. b120.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2814. p121 = Instance.new("Part", m1)
  2815. p121.BrickColor = BrickColor.new("Medium stone grey")
  2816. p121.Material = Enum.Material.SmoothPlastic
  2817. p121.CFrame = CFrame.new(55.1087837, 2.25144696, -122.409821, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2818. p121.Anchored = true
  2819. p121.CanCollide = false
  2820. p121.FormFactor = Enum.FormFactor.Symmetric
  2821. p121.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2822. p121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. p121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2824. p121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. p121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2826. p121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2827. p121.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2828. b121 = Instance.new("SpecialMesh", p121)
  2829. b121.MeshType = Enum.MeshType.Wedge
  2830. b121.Name = "Mesh"
  2831. b121.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2832. p122 = Instance.new("Part", m1)
  2833. p122.BrickColor = BrickColor.new("Medium stone grey")
  2834. p122.Material = Enum.Material.SmoothPlastic
  2835. p122.CFrame = CFrame.new(55.3385963, 2.2166419, -122.797791, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2836. p122.Anchored = true
  2837. p122.CanCollide = false
  2838. p122.FormFactor = Enum.FormFactor.Symmetric
  2839. p122.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2840. p122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2841. p122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2842. p122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2843. p122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2844. p122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2845. p122.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2846. b122 = Instance.new("SpecialMesh", p122)
  2847. b122.MeshType = Enum.MeshType.Wedge
  2848. b122.Name = "Mesh"
  2849. b122.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2850. p123 = Instance.new("Part", m1)
  2851. p123.BrickColor = BrickColor.new("Medium stone grey")
  2852. p123.Material = Enum.Material.SmoothPlastic
  2853. p123.CFrame = CFrame.new(55.8097687, 2.15754294, -123.592896, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2854. p123.Anchored = true
  2855. p123.CanCollide = false
  2856. p123.FormFactor = Enum.FormFactor.Symmetric
  2857. p123.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2858. p123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2859. p123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2860. p123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2861. p123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2862. p123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2863. p123.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2864. b123 = Instance.new("SpecialMesh", p123)
  2865. b123.MeshType = Enum.MeshType.Wedge
  2866. b123.Name = "Mesh"
  2867. b123.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2868. p124 = Instance.new("Part", m1)
  2869. p124.BrickColor = BrickColor.new("Medium stone grey")
  2870. p124.Material = Enum.Material.SmoothPlastic
  2871. p124.CFrame = CFrame.new(55.7021904, 2.17379594, -123.411346, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2872. p124.Anchored = true
  2873. p124.CanCollide = false
  2874. p124.FormFactor = Enum.FormFactor.Symmetric
  2875. p124.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2876. p124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2877. p124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2878. p124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2879. p124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2880. p124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2881. p124.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2882. b124 = Instance.new("SpecialMesh", p124)
  2883. b124.MeshType = Enum.MeshType.Wedge
  2884. b124.Name = "Mesh"
  2885. b124.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2886. p125 = Instance.new("Part", m1)
  2887. p125.BrickColor = BrickColor.new("Medium stone grey")
  2888. p125.Material = Enum.Material.SmoothPlastic
  2889. p125.CFrame = CFrame.new(55.8569641, 2.17504191, -123.672211, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2890. p125.Anchored = true
  2891. p125.CanCollide = false
  2892. p125.FormFactor = Enum.FormFactor.Symmetric
  2893. p125.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2894. p125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2895. p125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2896. p125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2897. p125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2898. p125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2899. p125.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2900. b125 = Instance.new("SpecialMesh", p125)
  2901. b125.MeshType = Enum.MeshType.Wedge
  2902. b125.Name = "Mesh"
  2903. b125.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2904. p126 = Instance.new("Part", m1)
  2905. p126.BrickColor = BrickColor.new("Medium stone grey")
  2906. p126.Material = Enum.Material.SmoothPlastic
  2907. p126.CFrame = CFrame.new(55.1948853, 2.2778089, -122.554688, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2908. p126.Anchored = true
  2909. p126.CanCollide = false
  2910. p126.FormFactor = Enum.FormFactor.Symmetric
  2911. p126.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2912. p126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2913. p126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2914. p126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2915. p126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2916. p126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2917. p126.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2918. b126 = Instance.new("SpecialMesh", p126)
  2919. b126.MeshType = Enum.MeshType.Wedge
  2920. b126.Name = "Mesh"
  2921. b126.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2922. p127 = Instance.new("Part", m1)
  2923. p127.BrickColor = BrickColor.new("Medium stone grey")
  2924. p127.Material = Enum.Material.SmoothPlastic
  2925. p127.CFrame = CFrame.new(55.1183929, 2.26391602, -122.425903, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2926. p127.Anchored = true
  2927. p127.CanCollide = false
  2928. p127.FormFactor = Enum.FormFactor.Symmetric
  2929. p127.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  2930. p127.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2931. p127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2932. p127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2933. p127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2934. p127.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2935. p127.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2936. b127 = Instance.new("SpecialMesh", p127)
  2937. b127.MeshType = Enum.MeshType.Wedge
  2938. b127.Name = "Mesh"
  2939. b127.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  2940. p128 = Instance.new("Part", m1)
  2941. p128.BrickColor = BrickColor.new("Medium stone grey")
  2942. p128.Material = Enum.Material.SmoothPlastic
  2943. p128.CFrame = CFrame.new(55.6271133, 2.20981193, -123.284233, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  2944. p128.Anchored = true
  2945. p128.CanCollide = false
  2946. p128.FormFactor = Enum.FormFactor.Symmetric
  2947. p128.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2948. p128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2949. p128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2950. p128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2951. p128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2952. p128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2953. p128.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2954. b128 = Instance.new("SpecialMesh", p128)
  2955. b128.MeshType = Enum.MeshType.Wedge
  2956. b128.Name = "Mesh"
  2957. b128.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2958. p129 = Instance.new("Part", m1)
  2959. p129.BrickColor = BrickColor.new("Medium stone grey")
  2960. p129.Material = Enum.Material.SmoothPlastic
  2961. p129.CFrame = CFrame.new(56.3966255, 2.05523705, -124.583603, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2962. p129.Anchored = true
  2963. p129.CanCollide = false
  2964. p129.FormFactor = Enum.FormFactor.Symmetric
  2965. p129.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2966. p129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2967. p129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. p129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2969. p129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2970. p129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2971. p129.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. b129 = Instance.new("SpecialMesh", p129)
  2973. b129.MeshType = Enum.MeshType.Wedge
  2974. b129.Name = "Mesh"
  2975. b129.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2976. p130 = Instance.new("Part", m1)
  2977. p130.BrickColor = BrickColor.new("Medium stone grey")
  2978. p130.Material = Enum.Material.SmoothPlastic
  2979. p130.CFrame = CFrame.new(55.9397469, 2.12393689, -123.812462, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2980. p130.Anchored = true
  2981. p130.CanCollide = false
  2982. p130.FormFactor = Enum.FormFactor.Symmetric
  2983. p130.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  2984. p130.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. p130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2986. p130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2987. p130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2988. p130.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. p130.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  2990. b130 = Instance.new("SpecialMesh", p130)
  2991. b130.MeshType = Enum.MeshType.Wedge
  2992. b130.Name = "Mesh"
  2993. b130.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  2994. p131 = Instance.new("Part", m1)
  2995. p131.BrickColor = BrickColor.new("Medium stone grey")
  2996. p131.Material = Enum.Material.SmoothPlastic
  2997. p131.CFrame = CFrame.new(55.9320717, 2.1390419, -123.799248, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  2998. p131.Anchored = true
  2999. p131.CanCollide = false
  3000. p131.FormFactor = Enum.FormFactor.Symmetric
  3001. p131.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3002. p131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3003. p131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3004. p131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3005. p131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3006. p131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3007. p131.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. b131 = Instance.new("SpecialMesh", p131)
  3009. b131.MeshType = Enum.MeshType.Wedge
  3010. b131.Name = "Mesh"
  3011. b131.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3012. p132 = Instance.new("Part", m1)
  3013. p132.BrickColor = BrickColor.new("Medium stone grey")
  3014. p132.Material = Enum.Material.SmoothPlastic
  3015. p132.CFrame = CFrame.new(55.8862572, 2.17142701, -123.721619, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3016. p132.Anchored = true
  3017. p132.CanCollide = false
  3018. p132.FormFactor = Enum.FormFactor.Symmetric
  3019. p132.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3020. p132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3021. p132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3022. p132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. p132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3024. p132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. p132.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3026. b132 = Instance.new("SpecialMesh", p132)
  3027. b132.MeshType = Enum.MeshType.Wedge
  3028. b132.Name = "Mesh"
  3029. b132.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3030. p133 = Instance.new("Part", m1)
  3031. p133.BrickColor = BrickColor.new("Medium stone grey")
  3032. p133.Material = Enum.Material.SmoothPlastic
  3033. p133.CFrame = CFrame.new(55.424736, 2.24301291, -122.942558, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3034. p133.Anchored = true
  3035. p133.CanCollide = false
  3036. p133.FormFactor = Enum.FormFactor.Symmetric
  3037. p133.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3038. p133.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3039. p133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3040. p133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3041. p133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. p133.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3043. p133.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3044. b133 = Instance.new("SpecialMesh", p133)
  3045. b133.MeshType = Enum.MeshType.Wedge
  3046. b133.Name = "Mesh"
  3047. b133.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3048. p134 = Instance.new("Part", m1)
  3049. p134.BrickColor = BrickColor.new("Medium stone grey")
  3050. p134.Material = Enum.Material.SmoothPlastic
  3051. p134.CFrame = CFrame.new(56.8032761, 2.03435898, -125.269394, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3052. p134.Anchored = true
  3053. p134.CanCollide = false
  3054. p134.FormFactor = Enum.FormFactor.Symmetric
  3055. p134.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3056. p134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. p134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3058. p134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3059. p134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3060. p134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3061. p134.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3062. b134 = Instance.new("SpecialMesh", p134)
  3063. b134.MeshType = Enum.MeshType.Wedge
  3064. b134.Name = "Mesh"
  3065. b134.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3066. p135 = Instance.new("Part", m1)
  3067. p135.BrickColor = BrickColor.new("Medium stone grey")
  3068. p135.Material = Enum.Material.SmoothPlastic
  3069. p135.CFrame = CFrame.new(56.6192131, 2.03670907, -124.959129, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3070. p135.Anchored = true
  3071. p135.CanCollide = false
  3072. p135.FormFactor = Enum.FormFactor.Symmetric
  3073. p135.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3074. p135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3075. p135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3076. p135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3077. p135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3078. p135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3079. p135.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3080. b135 = Instance.new("SpecialMesh", p135)
  3081. b135.MeshType = Enum.MeshType.Wedge
  3082. b135.Name = "Mesh"
  3083. b135.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3084. p136 = Instance.new("Part", m1)
  3085. p136.BrickColor = BrickColor.new("Medium stone grey")
  3086. p136.Material = Enum.Material.SmoothPlastic
  3087. p136.CFrame = CFrame.new(57.1836586, 1.95173001, -125.911705, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  3088. p136.Anchored = true
  3089. p136.CanCollide = false
  3090. p136.FormFactor = Enum.FormFactor.Symmetric
  3091. p136.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3092. p136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3093. p136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3094. p136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3095. p136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3096. p136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3097. p136.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3098. b136 = Instance.new("SpecialMesh", p136)
  3099. b136.MeshType = Enum.MeshType.Wedge
  3100. b136.Name = "Mesh"
  3101. b136.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3102. p137 = Instance.new("Part", m1)
  3103. p137.BrickColor = BrickColor.new("Medium stone grey")
  3104. p137.Material = Enum.Material.SmoothPlastic
  3105. p137.CFrame = CFrame.new(55.4704781, 2.21058393, -123.020226, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3106. p137.Anchored = true
  3107. p137.CanCollide = false
  3108. p137.FormFactor = Enum.FormFactor.Symmetric
  3109. p137.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3110. p137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. p137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. p137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3113. p137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3114. p137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3115. p137.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3116. b137 = Instance.new("SpecialMesh", p137)
  3117. b137.MeshType = Enum.MeshType.Wedge
  3118. b137.Name = "Mesh"
  3119. b137.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3120. p138 = Instance.new("Part", m1)
  3121. p138.BrickColor = BrickColor.new("Medium stone grey")
  3122. p138.Material = Enum.Material.SmoothPlastic
  3123. p138.CFrame = CFrame.new(56.774025, 2.03795695, -125.219925, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  3124. p138.Anchored = true
  3125. p138.CanCollide = false
  3126. p138.FormFactor = Enum.FormFactor.Symmetric
  3127. p138.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3128. p138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. p138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3130. p138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3131. p138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3132. p138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3133. p138.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3134. b138 = Instance.new("SpecialMesh", p138)
  3135. b138.MeshType = Enum.MeshType.Wedge
  3136. b138.Name = "Mesh"
  3137. b138.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3138. p139 = Instance.new("Part", m1)
  3139. p139.BrickColor = BrickColor.new("Medium stone grey")
  3140. p139.Material = Enum.Material.SmoothPlastic
  3141. p139.CFrame = CFrame.new(57.1740608, 1.93929005, -125.895668, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  3142. p139.Anchored = true
  3143. p139.CanCollide = false
  3144. p139.FormFactor = Enum.FormFactor.Symmetric
  3145. p139.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3146. p139.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3147. p139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3148. p139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3149. p139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3150. p139.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3151. p139.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3152. b139 = Instance.new("SpecialMesh", p139)
  3153. b139.MeshType = Enum.MeshType.Wedge
  3154. b139.Name = "Mesh"
  3155. b139.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3156. p140 = Instance.new("Part", m1)
  3157. p140.BrickColor = BrickColor.new("Medium stone grey")
  3158. p140.Material = Enum.Material.SmoothPlastic
  3159. p140.CFrame = CFrame.new(56.8491135, 2.00195408, -125.347015, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3160. p140.Anchored = true
  3161. p140.CanCollide = false
  3162. p140.FormFactor = Enum.FormFactor.Symmetric
  3163. p140.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3164. p140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3165. p140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3166. p140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3167. p140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3168. p140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3169. p140.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3170. b140 = Instance.new("SpecialMesh", p140)
  3171. b140.MeshType = Enum.MeshType.Wedge
  3172. b140.Name = "Mesh"
  3173. b140.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3174. p141 = Instance.new("Part", m1)
  3175. p141.BrickColor = BrickColor.new("Medium stone grey")
  3176. p141.Material = Enum.Material.SmoothPlastic
  3177. p141.CFrame = CFrame.new(56.5441628, 2.07271409, -124.832039, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  3178. p141.Anchored = true
  3179. p141.CanCollide = false
  3180. p141.FormFactor = Enum.FormFactor.Symmetric
  3181. p141.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3182. p141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3183. p141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3184. p141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3185. p141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3186. p141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3187. p141.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3188. b141 = Instance.new("SpecialMesh", p141)
  3189. b141.MeshType = Enum.MeshType.Wedge
  3190. b141.Name = "Mesh"
  3191. b141.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3192. p142 = Instance.new("Part", m1)
  3193. p142.BrickColor = BrickColor.new("Medium stone grey")
  3194. p142.Material = Enum.Material.SmoothPlastic
  3195. p142.CFrame = CFrame.new(57.3136635, 1.91814804, -126.131355, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3196. p142.Anchored = true
  3197. p142.CanCollide = false
  3198. p142.FormFactor = Enum.FormFactor.Symmetric
  3199. p142.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3200. p142.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3201. p142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3202. p142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3203. p142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3204. p142.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3205. p142.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3206. b142 = Instance.new("SpecialMesh", p142)
  3207. b142.MeshType = Enum.MeshType.Wedge
  3208. b142.Name = "Mesh"
  3209. b142.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3210. p143 = Instance.new("Part", m1)
  3211. p143.BrickColor = BrickColor.new("Medium stone grey")
  3212. p143.Material = Enum.Material.SmoothPlastic
  3213. p143.CFrame = CFrame.new(55.3482285, 2.22912288, -122.81385, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  3214. p143.Anchored = true
  3215. p143.CanCollide = false
  3216. p143.FormFactor = Enum.FormFactor.Symmetric
  3217. p143.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3218. p143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3219. p143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3220. p143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. p143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3222. p143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3223. p143.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3224. b143 = Instance.new("SpecialMesh", p143)
  3225. b143.MeshType = Enum.MeshType.Wedge
  3226. b143.Name = "Mesh"
  3227. b143.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3228. p144 = Instance.new("Part", m1)
  3229. p144.BrickColor = BrickColor.new("Medium stone grey")
  3230. p144.Material = Enum.Material.SmoothPlastic
  3231. p144.CFrame = CFrame.new(55.1655884, 2.28138208, -122.505226, 0.860044122, -0.0453531705, 0.50819999, -0.0071210009, -0.997011483, -0.0769249424, 0.510170043, 0.0625399426, -0.857796788)
  3232. p144.Anchored = true
  3233. p144.CanCollide = false
  3234. p144.FormFactor = Enum.FormFactor.Symmetric
  3235. p144.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3236. p144.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3237. p144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. p144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3239. p144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3240. p144.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3241. p144.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3242. b144 = Instance.new("SpecialMesh", p144)
  3243. b144.MeshType = Enum.MeshType.Wedge
  3244. b144.Name = "Mesh"
  3245. b144.Scale = Vector3.new(0.439431667, 0.450097531, 0.290110558)
  3246. p145 = Instance.new("Part", m1)
  3247. p145.BrickColor = BrickColor.new("Medium stone grey")
  3248. p145.Material = Enum.Material.SmoothPlastic
  3249. p145.CFrame = CFrame.new(55.2407303, 2.24541306, -122.632278, -0.860044122, -0.0453531705, -0.50819999, 0.0071210009, -0.997011483, 0.0769249424, -0.510170043, 0.0625399426, 0.857796788)
  3250. p145.Anchored = true
  3251. p145.CanCollide = false
  3252. p145.FormFactor = Enum.FormFactor.Symmetric
  3253. p145.Size = Vector3.new(0.200000003, 0.200000003, 0.218862802)
  3254. p145.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3255. p145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3256. p145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3257. p145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3258. p145.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3259. p145.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3260. b145 = Instance.new("SpecialMesh", p145)
  3261. b145.MeshType = Enum.MeshType.Wedge
  3262. b145.Name = "Mesh"
  3263. b145.Scale = Vector3.new(0.439431667, 0.708210409, 1)
  3264. p146 = Instance.new("Part", m)
  3265. p146.BrickColor = BrickColor.new("Toothpaste")
  3266. p146.Material = Enum.Material.Neon
  3267. p146.CFrame = CFrame.new(58.0243645, 1.89252901, -127.335716, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  3268. p146.Anchored = true
  3269. p146.CanCollide = false
  3270. p146.Size = Vector3.new(0.200000003, 0.424072564, 0.200000003)
  3271. p146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3272. p146.BottomSurface = Enum.SurfaceType.Weld
  3273. p146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. p146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3275. p146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. p146.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. b146 = Instance.new("CylinderMesh", p146)
  3278. b146.Name = "Mesh"
  3279. b146.Scale = Vector3.new(1, 0.332773477, 0.328507692)
  3280. p147 = Instance.new("Part", m)
  3281. p147.BrickColor = BrickColor.new("Black")
  3282. p147.Material = Enum.Material.SmoothPlastic
  3283. p147.Reflectance = 0.20000000298023
  3284. p147.CFrame = CFrame.new(58.1513214, 1.702232, -127.556038, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  3285. p147.Anchored = true
  3286. p147.CanCollide = false
  3287. p147.Size = Vector3.new(0.200000003, 0.200000003, 0.433032602)
  3288. p147.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3289. p147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3290. p147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. p147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3292. p147.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. p147.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. b147 = Instance.new("BlockMesh", p147)
  3295. b147.Name = "Mesh"
  3296. b147.Scale = Vector3.new(0.955657125, 0.934325874, 1)
  3297. p148 = Instance.new("Part", m)
  3298. p148.BrickColor = BrickColor.new("Toothpaste")
  3299. p148.Material = Enum.Material.Neon
  3300. p148.CFrame = CFrame.new(58.058445, 2.07830095, -127.387199, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  3301. p148.Anchored = true
  3302. p148.CanCollide = false
  3303. p148.Size = Vector3.new(0.200000003, 0.424072564, 0.200000003)
  3304. p148.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3305. p148.BottomSurface = Enum.SurfaceType.Weld
  3306. p148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. p148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3308. p148.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3309. p148.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3310. b148 = Instance.new("CylinderMesh", p148)
  3311. b148.Name = "Mesh"
  3312. b148.Scale = Vector3.new(0.695410967, 1, 0.808470011)
  3313. p149 = Instance.new("Part", m)
  3314. p149.BrickColor = BrickColor.new("Black")
  3315. p149.Material = Enum.Material.SmoothPlastic
  3316. p149.Reflectance = 0.30000001192093
  3317. p149.CFrame = CFrame.new(58.6738014, 2.13073301, -127.625122, -0.496958107, 0.115641154, -0.860034764, 0.214935049, 0.976602376, 0.00711798808, 0.840735197, -0.181314275, -0.510185778)
  3318. p149.Anchored = true
  3319. p149.CanCollide = false
  3320. p149.Size = Vector3.new(0.600273073, 0.212889731, 0.200000003)
  3321. p149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3322. p149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3323. p149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3324. p149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3325. p149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3326. p149.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3327. b149 = Instance.new("BlockMesh", p149)
  3328. b149.Name = "Mesh"
  3329. b149.Scale = Vector3.new(1, 1, 0.328507692)
  3330. p150 = Instance.new("Part", m)
  3331. p150.BrickColor = BrickColor.new("Black")
  3332. p150.Material = Enum.Material.SmoothPlastic
  3333. p150.Reflectance = 0.30000001192093
  3334. p150.CFrame = CFrame.new(58.4826164, 2.25127697, -127.301109, -0.506537139, -0.0613040067, -0.860036016, -0.132051036, 0.991217375, 0.00711965375, 0.852046192, 0.11717502, -0.510183632)
  3335. p150.Anchored = true
  3336. p150.CanCollide = false
  3337. p150.Size = Vector3.new(0.224836275, 0.200000003, 0.200000003)
  3338. p150.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3339. p150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3340. p150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3341. p150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3342. p150.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3343. p150.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3344. b150 = Instance.new("BlockMesh", p150)
  3345. b150.Name = "Mesh"
  3346. b150.Scale = Vector3.new(1, 0.332773477, 0.328507692)
  3347. p151 = Instance.new("Part", m)
  3348. p151.BrickColor = BrickColor.new("Black")
  3349. p151.Material = Enum.Material.SmoothPlastic
  3350. p151.Reflectance = 0.30000001192093
  3351. p151.CFrame = CFrame.new(58.3091164, 2.16775489, -127.009811, -0.506537139, -0.0613040067, -0.860036016, -0.132051036, 0.991217375, 0.00711965375, 0.852046192, 0.11717502, -0.510183632)
  3352. p151.Anchored = true
  3353. p151.CanCollide = false
  3354. p151.Size = Vector3.new(0.321681917, 0.200000003, 0.200000003)
  3355. p151.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3356. p151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3357. p151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3358. p151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3359. p151.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. p151.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3361. b151 = Instance.new("BlockMesh", p151)
  3362. b151.Name = "Mesh"
  3363. b151.Scale = Vector3.new(1, 0.874597073, 0.328507692)
  3364. p152 = Instance.new("Part", m)
  3365. p152.BrickColor = BrickColor.new("Black")
  3366. p152.Material = Enum.Material.SmoothPlastic
  3367. p152.CFrame = CFrame.new(57.9615593, 1.95553696, -127.227615, -0.306353956, 0.408027142, -0.860035539, 0.79240185, 0.609957933, 0.00712057389, 0.527490914, -0.679312289, -0.510184467)
  3368. p152.Anchored = true
  3369. p152.CanCollide = false
  3370. p152.Size = Vector3.new(0.200000003, 0.58064723, 0.421086848)
  3371. p152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3372. p152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3373. p152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3374. p152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3375. p152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3376. p152.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3377. b152 = Instance.new("BlockMesh", p152)
  3378. b152.Name = "Mesh"
  3379. b152.Scale = Vector3.new(0.475699484, 1, 1)
  3380. p153 = Instance.new("Part", m)
  3381. p153.BrickColor = BrickColor.new("Black")
  3382. p153.Material = Enum.Material.SmoothPlastic
  3383. p153.CFrame = CFrame.new(58.2208519, 1.73870802, -127.669785, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  3384. p153.Anchored = true
  3385. p153.CanCollide = false
  3386. p153.Size = Vector3.new(1.4100219, 0.639949143, 0.335333675)
  3387. p153.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. p153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3389. p153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. p153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3391. p153.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3392. p153.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3393. b153 = Instance.new("BlockMesh", p153)
  3394. b153.Name = "Mesh"
  3395. p154 = Instance.new("Part", m)
  3396. p154.BrickColor = BrickColor.new("Black")
  3397. p154.Material = Enum.Material.SmoothPlastic
  3398. p154.CFrame = CFrame.new(58.2275543, 1.63676798, -127.680061, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  3399. p154.Anchored = true
  3400. p154.CanCollide = false
  3401. p154.Size = Vector3.new(1.15404212, 0.639949143, 0.421513528)
  3402. p154.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. p154.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3404. p154.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3405. p154.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3406. p154.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. p154.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3408. b154 = Instance.new("BlockMesh", p154)
  3409. b154.Name = "Mesh"
  3410. p155 = Instance.new("Part", m)
  3411. p155.BrickColor = BrickColor.new("Black")
  3412. p155.Material = Enum.Material.SmoothPlastic
  3413. p155.Reflectance = 0.30000001192093
  3414. p155.CFrame = CFrame.new(57.8894691, 2.11326599, -127.105202, -0.469326168, 0.200180933, -0.860035241, 0.381257147, 0.924441636, 0.00711792847, 0.796477318, -0.324553907, -0.510185063)
  3415. p155.Anchored = true
  3416. p155.CanCollide = false
  3417. p155.Size = Vector3.new(0.388663232, 0.328080595, 0.439432114)
  3418. p155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3419. p155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3420. p155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3421. p155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3422. p155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3423. p155.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3424. b155 = Instance.new("BlockMesh", p155)
  3425. b155.Name = "Mesh"
  3426. p156 = Instance.new("Part", m)
  3427. p156.BrickColor = BrickColor.new("Medium stone grey")
  3428. p156.Material = Enum.Material.SmoothPlastic
  3429. p156.CFrame = CFrame.new(57.6688385, 2.32185602, -126.73037, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  3430. p156.Anchored = true
  3431. p156.CanCollide = false
  3432. p156.Size = Vector3.new(1.23851466, 0.436871469, 1.26283407)
  3433. p156.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3434. p156.BottomSurface = Enum.SurfaceType.Weld
  3435. p156.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3436. p156.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3437. p156.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3438. p156.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3439. b156 = Instance.new("CylinderMesh", p156)
  3440. b156.Name = "Mesh"
  3441. p157 = Instance.new("Part", m)
  3442. p157.BrickColor = BrickColor.new("Black")
  3443. p157.Material = Enum.Material.SmoothPlastic
  3444. p157.CFrame = CFrame.new(57.9081688, 1.61117697, -127.144501, -0.469326168, 0.200180933, -0.860035241, 0.381257147, 0.924441636, 0.00711792847, 0.796477318, -0.324553907, -0.510185063)
  3445. p157.Anchored = true
  3446. p157.CanCollide = false
  3447. p157.Size = Vector3.new(0.317415565, 0.202650547, 0.335333675)
  3448. p157.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3449. p157.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3450. p157.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3451. p157.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3452. p157.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. p157.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3454. b157 = Instance.new("BlockMesh", p157)
  3455. b157.Name = "Mesh"
  3456. p158 = Instance.new("Part", m)
  3457. p158.BrickColor = BrickColor.new("Black")
  3458. p158.Material = Enum.Material.SmoothPlastic
  3459. p158.CFrame = CFrame.new(57.9423561, 1.98070002, -127.194901, -0.230848029, 0.45502311, -0.860036731, 0.886281133, 0.463093162, 0.00711812917, 0.40151605, -0.760591149, -0.51018244)
  3460. p158.Anchored = true
  3461. p158.CanCollide = false
  3462. p158.Size = Vector3.new(0.200000003, 0.542250335, 0.421086848)
  3463. p158.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3464. p158.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3465. p158.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3466. p158.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3467. p158.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3468. p158.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3469. b158 = Instance.new("BlockMesh", p158)
  3470. b158.Name = "Mesh"
  3471. b158.Scale = Vector3.new(0.475699484, 1, 1)
  3472. p159 = Instance.new("Part", m)
  3473. p159.BrickColor = BrickColor.new("Pastel green")
  3474. p159.Material = Enum.Material.SmoothPlastic
  3475. p159.CFrame = CFrame.new(57.954277, 2.44024801, -127.206589, -0.860044122, -0.509473026, 0.0275932401, 0.0071210009, 0.0420899838, 0.999088466, -0.510170043, 0.859456599, -0.0325712822)
  3476. p159.Anchored = true
  3477. p159.CanCollide = false
  3478. p159.FormFactor = Enum.FormFactor.Symmetric
  3479. p159.Size = Vector3.new(0.515372276, 1.55209005, 0.433885813)
  3480. p159.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3481. p159.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3482. p159.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3483. p159.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3484. p159.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3485. p159.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3486. b159 = Instance.new("SpecialMesh", p159)
  3487. b159.MeshType = Enum.MeshType.Wedge
  3488. b159.Name = "Mesh"
  3489. p160 = Instance.new("Part", m)
  3490. p160.BrickColor = BrickColor.new("Pastel green")
  3491. p160.Material = Enum.Material.SmoothPlastic
  3492. p160.CFrame = CFrame.new(57.7933311, 2.20790911, -126.938385, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  3493. p160.Anchored = true
  3494. p160.CanCollide = false
  3495. p160.FormFactor = Enum.FormFactor.Symmetric
  3496. p160.Size = Vector3.new(0.515372276, 1.62077785, 0.629283845)
  3497. p160.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3498. p160.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3499. p160.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3500. p160.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3501. p160.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3502. p160.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3503. b160 = Instance.new("SpecialMesh", p160)
  3504. b160.MeshType = Enum.MeshType.Wedge
  3505. b160.Name = "Mesh"
  3506. p161 = Instance.new("Part", m)
  3507. p161.BrickColor = BrickColor.new("Pastel green")
  3508. p161.Material = Enum.Material.SmoothPlastic
  3509. p161.CFrame = CFrame.new(57.7929688, 3.23146105, -126.926918, -0.50388217, 0.0802667886, -0.860035002, 0.145450041, 0.989340067, 0.00711768772, 0.851438284, -0.12150564, -0.510185599)
  3510. p161.Anchored = true
  3511. p161.CanCollide = false
  3512. p161.Size = Vector3.new(0.316562295, 0.200000003, 0.518785954)
  3513. p161.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3514. p161.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3515. p161.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3516. p161.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3517. p161.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. p161.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3519. b161 = Instance.new("BlockMesh", p161)
  3520. b161.Name = "Mesh"
  3521. b161.Scale = Vector3.new(1, 0.637815893, 1)
  3522. p162 = Instance.new("Part", m)
  3523. p162.BrickColor = BrickColor.new("Black")
  3524. p162.Material = Enum.Material.SmoothPlastic
  3525. p162.CFrame = CFrame.new(57.7752151, 3.3804009, -126.883636, -0.508841157, 0.0376857147, -0.860035181, 0.0618840232, 0.998057961, 0.00711993314, 0.85863328, -0.0495995171, -0.510185122)
  3526. p162.Anchored = true
  3527. p162.CanCollide = false
  3528. p162.Size = Vector3.new(0.783298492, 0.238914371, 0.32125473)
  3529. p162.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3530. p162.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3531. p162.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3532. p162.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3533. p162.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3534. p162.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. b162 = Instance.new("BlockMesh", p162)
  3536. b162.Name = "Mesh"
  3537. p163 = Instance.new("Part", m)
  3538. p163.BrickColor = BrickColor.new("Medium green")
  3539. p163.Material = Enum.Material.SmoothPlastic
  3540. p163.CFrame = CFrame.new(57.3287392, 3.26718593, -126.132118, -0.493476123, -0.129686058, -0.860036492, -0.265748054, 0.964016259, 0.00711698504, 0.828166187, 0.232065096, -0.510182858)
  3541. p163.Anchored = true
  3542. p163.CanCollide = false
  3543. p163.Size = Vector3.new(0.309736162, 0.200000003, 0.298643202)
  3544. p163.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3545. p163.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3546. p163.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3547. p163.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3548. p163.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3549. p163.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3550. b163 = Instance.new("BlockMesh", p163)
  3551. b163.Name = "Mesh"
  3552. b163.Scale = Vector3.new(1, 0.637815893, 1)
  3553. p164 = Instance.new("Part", m)
  3554. p164.BrickColor = BrickColor.new("Pastel green")
  3555. p164.Material = Enum.Material.SmoothPlastic
  3556. p164.CFrame = CFrame.new(57.2183838, 2.60285592, -125.963699, -0.860044122, -0.509473026, 0.0275932401, 0.0071210009, 0.0420899838, 0.999088466, -0.510170043, 0.859456599, -0.0325712822)
  3557. p164.Anchored = true
  3558. p164.CanCollide = false
  3559. p164.FormFactor = Enum.FormFactor.Symmetric
  3560. p164.Size = Vector3.new(0.515372276, 0.673653126, 1.31829655)
  3561. p164.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3562. p164.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3563. p164.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3564. p164.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3565. p164.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3566. p164.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3567. b164 = Instance.new("SpecialMesh", p164)
  3568. b164.MeshType = Enum.MeshType.Wedge
  3569. b164.Name = "Mesh"
  3570. p165 = Instance.new("Part", m)
  3571. p165.BrickColor = BrickColor.new("Pastel green")
  3572. p165.Material = Enum.Material.SmoothPlastic
  3573. p165.CFrame = CFrame.new(57.1952286, 3.21761394, -125.916908, -0.509274065, -0.0313051865, -0.860034823, -0.0733240098, 0.997282743, 0.00711818738, 0.857475102, 0.0666863099, -0.510185659)
  3574. p165.Anchored = true
  3575. p165.CanCollide = false
  3576. p165.Size = Vector3.new(0.309736162, 0.200000003, 0.516226113)
  3577. p165.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3578. p165.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3579. p165.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3580. p165.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3581. p165.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3582. p165.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3583. b165 = Instance.new("BlockMesh", p165)
  3584. b165.Name = "Mesh"
  3585. b165.Scale = Vector3.new(1, 0.637815893, 1)
  3586. p166 = Instance.new("Part", m)
  3587. p166.BrickColor = BrickColor.new("Pastel green")
  3588. p166.Material = Enum.Material.SmoothPlastic
  3589. p166.CFrame = CFrame.new(58.3065376, 2.92808604, -127.793503, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  3590. p166.Anchored = true
  3591. p166.CanCollide = false
  3592. p166.FormFactor = Enum.FormFactor.Symmetric
  3593. p166.Size = Vector3.new(0.515372276, 1.43689919, 1.01666677)
  3594. p166.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3595. p166.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3596. p166.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3597. p166.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3598. p166.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3599. p166.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3600. b166 = Instance.new("SpecialMesh", p166)
  3601. b166.MeshType = Enum.MeshType.Wedge
  3602. b166.Name = "Mesh"
  3603. p167 = Instance.new("Part", m)
  3604. p167.BrickColor = BrickColor.new("Medium green")
  3605. p167.Material = Enum.Material.SmoothPlastic
  3606. p167.CFrame = CFrame.new(57.6328621, 3.35555911, -126.643623, -0.510097802, -0.0117681399, -0.860035896, -0.0350569896, 0.999360025, 0.00711817341, 0.859401703, 0.0337812342, -0.510183871)
  3607. p167.Anchored = true
  3608. p167.CanCollide = false
  3609. p167.Size = Vector3.new(0.309736162, 0.200000003, 0.298643202)
  3610. p167.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3611. p167.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3612. p167.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3613. p167.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3614. p167.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3615. p167.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3616. b167 = Instance.new("BlockMesh", p167)
  3617. b167.Name = "Mesh"
  3618. b167.Scale = Vector3.new(1, 0.637815893, 1)
  3619. p168 = Instance.new("Part", m)
  3620. p168.BrickColor = BrickColor.new("Black")
  3621. p168.Material = Enum.Material.SmoothPlastic
  3622. p168.CFrame = CFrame.new(57.9727745, 3.35486388, -127.216949, -0.421825081, 0.287061274, -0.860034525, 0.552626133, 0.833398879, 0.00712174643, 0.718796194, -0.472273469, -0.510186076)
  3623. p168.Anchored = true
  3624. p168.CanCollide = false
  3625. p168.Size = Vector3.new(0.200000003, 0.212889731, 0.32125473)
  3626. p168.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3627. p168.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3628. p168.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3629. p168.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3630. p168.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3631. p168.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3632. b168 = Instance.new("BlockMesh", p168)
  3633. b168.Name = "Mesh"
  3634. b168.Scale = Vector3.new(0.571692407, 1, 1)
  3635. p169 = Instance.new("Part", m)
  3636. p169.BrickColor = BrickColor.new("Pastel green")
  3637. p169.Material = Enum.Material.SmoothPlastic
  3638. p169.CFrame = CFrame.new(57.6394005, 3.262151, -126.665497, -0.509270072, 0.0313591138, -0.860035241, 0.0494820066, 0.998749733, 0.00711621949, 0.859183133, -0.0389321968, -0.510185003)
  3639. p169.Anchored = true
  3640. p169.CanCollide = false
  3641. p169.Size = Vector3.new(0.309736162, 0.200000003, 0.516652763)
  3642. p169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3643. p169.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3644. p169.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3645. p169.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3646. p169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3647. p169.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3648. b169 = Instance.new("BlockMesh", p169)
  3649. b169.Name = "Mesh"
  3650. b169.Scale = Vector3.new(1, 0.637815893, 1)
  3651. p170 = Instance.new("Part", m)
  3652. p170.BrickColor = BrickColor.new("Medium stone grey")
  3653. p170.Material = Enum.Material.SmoothPlastic
  3654. p170.CFrame = CFrame.new(58.3180275, 1.48313594, -127.861404, 0.509490967, 0.860033393, -0.0275946073, -0.0420929976, -0.00712001137, -0.999088347, -0.85944587, 0.510187984, 0.0325738043)
  3655. p170.Anchored = true
  3656. p170.CanCollide = false
  3657. p170.Size = Vector3.new(0.200000003, 0.846438944, 0.200000003)
  3658. p170.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3659. p170.BottomSurface = Enum.SurfaceType.Weld
  3660. p170.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3661. p170.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3662. p170.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3663. p170.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3664. b170 = Instance.new("CylinderMesh", p170)
  3665. b170.Name = "Mesh"
  3666. b170.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  3667. p171 = Instance.new("Part", m)
  3668. p171.BrickColor = BrickColor.new("Medium stone grey")
  3669. p171.Material = Enum.Material.SmoothPlastic
  3670. p171.Name = "Sphere"
  3671. p171.CFrame = CFrame.new(58.6838226, 1.48009098, -127.64444, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  3672. p171.Anchored = true
  3673. p171.CanCollide = false
  3674. p171.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3675. p171.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3676. p171.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3677. p171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3678. p171.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3679. p171.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3680. p171.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3681. b171 = Instance.new("SpecialMesh", p171)
  3682. b171.MeshType = Enum.MeshType.Wedge
  3683. b171.Name = "Mesh"
  3684. b171.Scale = Vector3.new(0.34130618, 1, 1)
  3685. p172 = Instance.new("Part", m)
  3686. p172.BrickColor = BrickColor.new("Medium stone grey")
  3687. p172.Material = Enum.Material.SmoothPlastic
  3688. p172.Name = "Sphere"
  3689. p172.CFrame = CFrame.new(57.9544182, 1.48530805, -128.077118, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  3690. p172.Anchored = true
  3691. p172.CanCollide = false
  3692. p172.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3693. p172.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3694. p172.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3695. p172.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3696. p172.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3697. p172.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3698. p172.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3699. b172 = Instance.new("SpecialMesh", p172)
  3700. b172.MeshType = Enum.MeshType.Sphere
  3701. b172.Name = "Mesh"
  3702. b172.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  3703. p173 = Instance.new("Part", m)
  3704. p173.BrickColor = BrickColor.new("Medium stone grey")
  3705. p173.Material = Enum.Material.SmoothPlastic
  3706. p173.Name = "Sphere"
  3707. p173.CFrame = CFrame.new(58.6973839, 1.98574197, -127.66111, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  3708. p173.Anchored = true
  3709. p173.CanCollide = false
  3710. p173.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3711. p173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3712. p173.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3713. p173.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3714. p173.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3715. p173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3716. p173.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3717. b173 = Instance.new("SpecialMesh", p173)
  3718. b173.MeshType = Enum.MeshType.Sphere
  3719. b173.Name = "Mesh"
  3720. b173.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  3721. p174 = Instance.new("Part", m)
  3722. p174.BrickColor = BrickColor.new("Black")
  3723. p174.Material = Enum.Material.SmoothPlastic
  3724. p174.Reflectance = 0.20000000298023
  3725. p174.CFrame = CFrame.new(58.2368088, 1.59478605, -127.70163, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  3726. p174.Anchored = true
  3727. p174.CanCollide = false
  3728. p174.Size = Vector3.new(0.200000003, 0.200000003, 0.433032602)
  3729. p174.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3730. p174.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3731. p174.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3732. p174.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3733. p174.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3734. p174.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3735. b174 = Instance.new("BlockMesh", p174)
  3736. b174.Name = "Mesh"
  3737. b174.Scale = Vector3.new(0.955657125, 0.934325874, 1)
  3738. p175 = Instance.new("Part", m)
  3739. p175.BrickColor = BrickColor.new("Black")
  3740. p175.Material = Enum.Material.SmoothPlastic
  3741. p175.Reflectance = 0.20000000298023
  3742. p175.CFrame = CFrame.new(58.3231125, 1.48635995, -127.848717, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  3743. p175.Anchored = true
  3744. p175.CanCollide = false
  3745. p175.Size = Vector3.new(0.200000003, 0.200000003, 0.433032602)
  3746. p175.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3747. p175.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3748. p175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3749. p175.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3750. p175.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3751. p175.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3752. b175 = Instance.new("BlockMesh", p175)
  3753. b175.Name = "Mesh"
  3754. b175.Scale = Vector3.new(0.955657125, 0.934325874, 1)
  3755. p176 = Instance.new("Part", m)
  3756. p176.BrickColor = BrickColor.new("Medium stone grey")
  3757. p176.Material = Enum.Material.SmoothPlastic
  3758. p176.Name = "Sphere"
  3759. p176.CFrame = CFrame.new(58.5077972, 1.69722402, -127.34893, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  3760. p176.Anchored = true
  3761. p176.CanCollide = false
  3762. p176.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3763. p176.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3764. p176.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3765. p176.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3766. p176.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3767. p176.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3768. p176.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3769. b176 = Instance.new("SpecialMesh", p176)
  3770. b176.MeshType = Enum.MeshType.Sphere
  3771. b176.Name = "Mesh"
  3772. b176.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  3773. p177 = Instance.new("Part", m)
  3774. p177.BrickColor = BrickColor.new("Black")
  3775. p177.Material = Enum.Material.SmoothPlastic
  3776. p177.Reflectance = 0.30000001192093
  3777. p177.CFrame = CFrame.new(58.8161774, 2.10643506, -127.865494, -0.306353956, 0.408027142, -0.860035539, 0.79240185, 0.609957933, 0.00712057389, 0.527490914, -0.679312289, -0.510184467)
  3778. p177.Anchored = true
  3779. p177.CanCollide = false
  3780. p177.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  3781. p177.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3782. p177.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3783. p177.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3784. p177.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3785. p177.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3786. p177.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3787. b177 = Instance.new("BlockMesh", p177)
  3788. b177.Name = "Mesh"
  3789. b177.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  3790. p178 = Instance.new("Part", m)
  3791. p178.BrickColor = BrickColor.new("Medium stone grey")
  3792. p178.Material = Enum.Material.SmoothPlastic
  3793. p178.CFrame = CFrame.new(58.1419754, 1.70024502, -127.565887, 0.509490967, 0.860033393, -0.0275946073, -0.0420929976, -0.00712001137, -0.999088347, -0.85944587, 0.510187984, 0.0325738043)
  3794. p178.Anchored = true
  3795. p178.CanCollide = false
  3796. p178.Size = Vector3.new(0.200000003, 0.846438944, 0.200000003)
  3797. p178.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3798. p178.BottomSurface = Enum.SurfaceType.Weld
  3799. p178.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3800. p178.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3801. p178.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3802. p178.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3803. b178 = Instance.new("CylinderMesh", p178)
  3804. b178.Name = "Mesh"
  3805. b178.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  3806. p179 = Instance.new("Part", m)
  3807. p179.BrickColor = BrickColor.new("Black")
  3808. p179.Material = Enum.Material.SmoothPlastic
  3809. p179.Reflectance = 0.30000001192093
  3810. p179.CFrame = CFrame.new(58.7729683, 2.24605107, -127.790749, -0.230848029, 0.45502311, -0.860036731, 0.886281133, 0.463093162, 0.00711812917, 0.40151605, -0.760591149, -0.51018244)
  3811. p179.Anchored = true
  3812. p179.CanCollide = false
  3813. p179.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  3814. p179.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3815. p179.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3816. p179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3817. p179.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3818. p179.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3819. p179.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3820. b179 = Instance.new("BlockMesh", p179)
  3821. b179.Name = "Mesh"
  3822. b179.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  3823. p180 = Instance.new("Part", m)
  3824. p180.BrickColor = BrickColor.new("Black")
  3825. p180.Material = Enum.Material.SmoothPlastic
  3826. p180.Reflectance = 0.30000001192093
  3827. p180.CFrame = CFrame.new(58.3254662, 2.91025805, -127.849449, 0.509490967, 0.860033393, -0.0275946073, -0.0420929976, -0.00712001137, -0.999088347, -0.85944587, 0.510187984, 0.0325738043)
  3828. p180.Anchored = true
  3829. p180.CanCollide = false
  3830. p180.Size = Vector3.new(0.200000003, 0.904887736, 0.200000003)
  3831. p180.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3832. p180.BottomSurface = Enum.SurfaceType.Weld
  3833. p180.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3834. p180.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3835. p180.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3836. p180.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3837. b180 = Instance.new("CylinderMesh", p180)
  3838. b180.Name = "Mesh"
  3839. b180.Scale = Vector3.new(0.86606437, 1, 0.902329028)
  3840. p181 = Instance.new("Part", m)
  3841. p181.BrickColor = BrickColor.new("Medium stone grey")
  3842. p181.Material = Enum.Material.SmoothPlastic
  3843. p181.CFrame = CFrame.new(57.7848015, 1.883268, -127.786552, 0.509489059, -0.0275912844, -0.860034645, -0.0420910046, -0.999088466, 0.00711741997, -0.859447122, 0.0325734727, -0.510185957)
  3844. p181.Anchored = true
  3845. p181.CanCollide = false
  3846. p181.Size = Vector3.new(0.200000003, 0.35922429, 0.200000003)
  3847. p181.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3848. p181.BottomSurface = Enum.SurfaceType.Weld
  3849. p181.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3850. p181.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3851. p181.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3852. p181.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3853. b181 = Instance.new("CylinderMesh", p181)
  3854. b181.Name = "Mesh"
  3855. b181.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  3856. p182 = Instance.new("Part", m)
  3857. p182.BrickColor = BrickColor.new("Medium stone grey")
  3858. p182.Material = Enum.Material.SmoothPlastic
  3859. p182.Name = "Sphere"
  3860. p182.CFrame = CFrame.new(57.7893562, 2.06315494, -127.792686, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  3861. p182.Anchored = true
  3862. p182.CanCollide = false
  3863. p182.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  3864. p182.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3865. p182.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3866. p182.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3867. p182.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3868. p182.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3869. p182.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3870. b182 = Instance.new("SpecialMesh", p182)
  3871. b182.MeshType = Enum.MeshType.Sphere
  3872. b182.Name = "Mesh"
  3873. b182.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  3874. p183 = Instance.new("Part", m)
  3875. p183.BrickColor = BrickColor.new("Black")
  3876. p183.Material = Enum.Material.SmoothPlastic
  3877. p183.CFrame = CFrame.new(58.6224403, 1.11739504, -128.353394, -0.860044122, 0.42742008, -0.27863279, 0.0071210009, -0.535994947, -0.844191134, -0.510170043, -0.728025794, 0.457935601)
  3878. p183.Anchored = true
  3879. p183.CanCollide = false
  3880. p183.FormFactor = Enum.FormFactor.Symmetric
  3881. p183.Size = Vector3.new(0.335759938, 0.597285867, 0.837907493)
  3882. p183.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3883. p183.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3884. p183.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3885. p183.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3886. p183.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3887. p183.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3888. b183 = Instance.new("SpecialMesh", p183)
  3889. b183.MeshType = Enum.MeshType.Wedge
  3890. b183.Name = "Mesh"
  3891. p184 = Instance.new("Part", m)
  3892. p184.BrickColor = BrickColor.new("Toothpaste")
  3893. p184.Material = Enum.Material.Neon
  3894. p184.CFrame = CFrame.new(57.9592209, 1.71077096, -127.227493, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  3895. p184.Anchored = true
  3896. p184.CanCollide = false
  3897. p184.Size = Vector3.new(0.200000003, 0.424072564, 0.200000003)
  3898. p184.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3899. p184.BottomSurface = Enum.SurfaceType.Weld
  3900. p184.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3901. p184.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3902. p184.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3903. p184.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3904. b184 = Instance.new("CylinderMesh", p184)
  3905. b184.Name = "Mesh"
  3906. b184.Scale = Vector3.new(0.695410967, 1, 0.808470011)
  3907. p185 = Instance.new("Part", m)
  3908. p185.BrickColor = BrickColor.new("Medium stone grey")
  3909. p185.Material = Enum.Material.SmoothPlastic
  3910. p185.CFrame = CFrame.new(58.2250061, 1.58167899, -127.707413, 0.509490967, 0.860033393, -0.0275946073, -0.0420929976, -0.00712001137, -0.999088347, -0.85944587, 0.510187984, 0.0325738043)
  3911. p185.Anchored = true
  3912. p185.CanCollide = false
  3913. p185.Size = Vector3.new(0.200000003, 0.846438944, 0.200000003)
  3914. p185.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3915. p185.BottomSurface = Enum.SurfaceType.Weld
  3916. p185.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3917. p185.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3918. p185.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3919. p185.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3920. b185 = Instance.new("CylinderMesh", p185)
  3921. b185.Name = "Mesh"
  3922. b185.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  3923. p186 = Instance.new("Part", m)
  3924. p186.BrickColor = BrickColor.new("Black")
  3925. p186.Material = Enum.Material.SmoothPlastic
  3926. p186.Reflectance = 0.30000001192093
  3927. p186.CFrame = CFrame.new(58.6985054, 2.69177008, -127.658897, -0.0612980016, 0.506535113, -0.860037625, 0.991218984, 0.132039368, 0.0071192719, 0.117164999, -0.852049172, -0.51018095)
  3928. p186.Anchored = true
  3929. p186.CanCollide = false
  3930. p186.Size = Vector3.new(0.379703879, 0.200000003, 0.200000003)
  3931. p186.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3932. p186.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3933. p186.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3934. p186.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3935. p186.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3936. p186.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3937. b186 = Instance.new("BlockMesh", p186)
  3938. b186.Name = "Mesh"
  3939. b186.Scale = Vector3.new(1, 0.767938852, 0.328507692)
  3940. p187 = Instance.new("Part", m)
  3941. p187.BrickColor = BrickColor.new("Black")
  3942. p187.Material = Enum.Material.SmoothPlastic
  3943. p187.Reflectance = 0.30000001192093
  3944. p187.CFrame = CFrame.new(58.9773788, 2.92402411, -127.9953, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  3945. p187.Anchored = true
  3946. p187.CanCollide = false
  3947. p187.FormFactor = Enum.FormFactor.Symmetric
  3948. p187.Size = Vector3.new(0.200000003, 0.6322698, 0.219289422)
  3949. p187.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3950. p187.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3951. p187.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3952. p187.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3953. p187.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3954. p187.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3955. b187 = Instance.new("SpecialMesh", p187)
  3956. b187.MeshType = Enum.MeshType.Wedge
  3957. b187.Name = "Mesh"
  3958. b187.Scale = Vector3.new(0.34130618, 1, 1)
  3959. p188 = Instance.new("Part", m)
  3960. p188.BrickColor = BrickColor.new("Black")
  3961. p188.Material = Enum.Material.SmoothPlastic
  3962. p188.Reflectance = 0.30000001192093
  3963. p188.CFrame = CFrame.new(58.6450996, 2.95060992, -127.43483, 0.860044122, -0.509473026, -0.0275932401, -0.0071210009, 0.0420899838, -0.999088466, 0.510170043, 0.859456599, 0.0325712822)
  3964. p188.Anchored = true
  3965. p188.CanCollide = false
  3966. p188.FormFactor = Enum.FormFactor.Symmetric
  3967. p188.Size = Vector3.new(0.200000003, 0.673653126, 0.219289422)
  3968. p188.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3969. p188.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3970. p188.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3971. p188.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3972. p188.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3973. p188.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3974. b188 = Instance.new("SpecialMesh", p188)
  3975. b188.MeshType = Enum.MeshType.Wedge
  3976. b188.Name = "Mesh"
  3977. b188.Scale = Vector3.new(0.34130618, 1, 1)
  3978. p189 = Instance.new("Part", m)
  3979. p189.BrickColor = BrickColor.new("Black")
  3980. p189.Material = Enum.Material.SmoothPlastic
  3981. p189.Reflectance = 0.30000001192093
  3982. p189.CFrame = CFrame.new(58.7345848, 2.42507505, -127.72348, -0.14832902, 0.488201082, -0.860033929, 0.953231096, 0.302158654, 0.00711872615, 0.263342023, -0.81875509, -0.510187328)
  3983. p189.Anchored = true
  3984. p189.CanCollide = false
  3985. p189.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  3986. p189.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3987. p189.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3988. p189.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3989. p189.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3990. p189.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3991. p189.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3992. b189 = Instance.new("BlockMesh", p189)
  3993. b189.Name = "Mesh"
  3994. b189.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  3995. p190 = Instance.new("Part", m)
  3996. p190.BrickColor = BrickColor.new("Black")
  3997. p190.Material = Enum.Material.SmoothPlastic
  3998. p190.Reflectance = 0.30000001192093
  3999. p190.CFrame = CFrame.new(57.9544525, 2.13683009, -128.057343, -0.496958107, 0.115641154, -0.860034764, 0.214935049, 0.976602376, 0.00711798808, 0.840735197, -0.181314275, -0.510185778)
  4000. p190.Anchored = true
  4001. p190.CanCollide = false
  4002. p190.Size = Vector3.new(0.600273073, 0.212889731, 0.200000003)
  4003. p190.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4004. p190.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4005. p190.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4006. p190.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4007. p190.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4008. p190.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4009. b190 = Instance.new("BlockMesh", p190)
  4010. b190.Name = "Mesh"
  4011. b190.Scale = Vector3.new(1, 1, 0.328507692)
  4012. p191 = Instance.new("Part", m)
  4013. p191.BrickColor = BrickColor.new("Black")
  4014. p191.Material = Enum.Material.SmoothPlastic
  4015. p191.Reflectance = 0.30000001192093
  4016. p191.CFrame = CFrame.new(57.7632408, 2.25736809, -127.733246, -0.506537139, -0.0613040067, -0.860036016, -0.132051036, 0.991217375, 0.00711965375, 0.852046192, 0.11717502, -0.510183632)
  4017. p191.Anchored = true
  4018. p191.CanCollide = false
  4019. p191.Size = Vector3.new(0.224836275, 0.200000003, 0.200000003)
  4020. p191.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4021. p191.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4022. p191.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4023. p191.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4024. p191.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4025. p191.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4026. b191 = Instance.new("BlockMesh", p191)
  4027. b191.Name = "Mesh"
  4028. b191.Scale = Vector3.new(1, 0.332773477, 0.328507692)
  4029. p192 = Instance.new("Part", m)
  4030. p192.BrickColor = BrickColor.new("Black")
  4031. p192.Material = Enum.Material.SmoothPlastic
  4032. p192.Reflectance = 0.30000001192093
  4033. p192.CFrame = CFrame.new(57.5897141, 2.17384005, -127.441986, -0.506537139, -0.0613040067, -0.860036016, -0.132051036, 0.991217375, 0.00711965375, 0.852046192, 0.11717502, -0.510183632)
  4034. p192.Anchored = true
  4035. p192.CanCollide = false
  4036. p192.Size = Vector3.new(0.321681917, 0.200000003, 0.200000003)
  4037. p192.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4038. p192.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4039. p192.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4040. p192.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4041. p192.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4042. p192.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4043. b192 = Instance.new("BlockMesh", p192)
  4044. b192.Name = "Mesh"
  4045. b192.Scale = Vector3.new(1, 0.874597073, 0.328507692)
  4046. p193 = Instance.new("Part", m)
  4047. p193.BrickColor = BrickColor.new("Medium stone grey")
  4048. p193.Material = Enum.Material.SmoothPlastic
  4049. p193.Name = "Sphere"
  4050. p193.CFrame = CFrame.new(58.5907745, 1.57861197, -127.49044, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4051. p193.Anchored = true
  4052. p193.CanCollide = false
  4053. p193.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4054. p193.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4055. p193.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4056. p193.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4057. p193.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4058. p193.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4059. p193.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4060. b193 = Instance.new("SpecialMesh", p193)
  4061. b193.MeshType = Enum.MeshType.Sphere
  4062. b193.Name = "Mesh"
  4063. b193.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4064. p194 = Instance.new("Part", m)
  4065. p194.BrickColor = BrickColor.new("Black")
  4066. p194.Material = Enum.Material.SmoothPlastic
  4067. p194.Reflectance = 0.30000001192093
  4068. p194.CFrame = CFrame.new(57.7449303, 2.18549895, -127.703468, -0.509489059, 0.0275912844, -0.860034645, 0.0420910046, 0.999088466, 0.00711741997, 0.859447122, -0.0325734727, -0.510185957)
  4069. p194.Anchored = true
  4070. p194.CanCollide = false
  4071. p194.Size = Vector3.new(0.321681917, 0.200000003, 0.200000003)
  4072. p194.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4073. p194.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4074. p194.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4075. p194.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4076. p194.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4077. p194.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4078. b194 = Instance.new("BlockMesh", p194)
  4079. b194.Name = "Mesh"
  4080. b194.Scale = Vector3.new(1, 0.874597073, 0.328507692)
  4081. p195 = Instance.new("Part", m)
  4082. p195.BrickColor = BrickColor.new("Black")
  4083. p195.Material = Enum.Material.SmoothPlastic
  4084. p195.Reflectance = 0.30000001192093
  4085. p195.CFrame = CFrame.new(58.0536575, 2.25216508, -128.222885, -0.230848029, 0.45502311, -0.860036731, 0.886281133, 0.463093162, 0.00711812917, 0.40151605, -0.760591149, -0.51018244)
  4086. p195.Anchored = true
  4087. p195.CanCollide = false
  4088. p195.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  4089. p195.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4090. p195.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4091. p195.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4092. p195.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4093. p195.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4094. p195.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4095. b195 = Instance.new("BlockMesh", p195)
  4096. b195.Name = "Mesh"
  4097. b195.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  4098. p196 = Instance.new("Part", m)
  4099. p196.BrickColor = BrickColor.new("Black")
  4100. p196.Material = Enum.Material.SmoothPlastic
  4101. p196.Reflectance = 0.30000001192093
  4102. p196.CFrame = CFrame.new(58.0238152, 2.55224705, -128.168442, -0.372552961, 0.348629951, -0.860035717, 0.674444914, 0.738290787, 0.00712047471, 0.637438953, -0.577393949, -0.510184109)
  4103. p196.Anchored = true
  4104. p196.CanCollide = false
  4105. p196.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4106. p196.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4107. p196.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4108. p196.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4109. p196.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4110. p196.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4111. p196.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4112. b196 = Instance.new("BlockMesh", p196)
  4113. b196.Name = "Mesh"
  4114. b196.Scale = Vector3.new(0.290114284, 0.364770919, 0.328507692)
  4115. p197 = Instance.new("Part", m)
  4116. p197.BrickColor = BrickColor.new("Black")
  4117. p197.Material = Enum.Material.SmoothPlastic
  4118. p197.Reflectance = 0.30000001192093
  4119. p197.CFrame = CFrame.new(58.269516, 1.94242394, -128.592041, 0.860044122, 0.469311446, 0.200177267, -0.0071210009, -0.381256223, 0.924441993, 0.510170043, -0.796486378, -0.324555188)
  4120. p197.Anchored = true
  4121. p197.CanCollide = false
  4122. p197.FormFactor = Enum.FormFactor.Symmetric
  4123. p197.Size = Vector3.new(0.200000003, 0.673653126, 0.219289422)
  4124. p197.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4125. p197.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4126. p197.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4127. p197.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4128. p197.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4129. p197.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4130. b197 = Instance.new("SpecialMesh", p197)
  4131. b197.MeshType = Enum.MeshType.Wedge
  4132. b197.Name = "Mesh"
  4133. b197.Scale = Vector3.new(0.34130618, 1, 1)
  4134. p198 = Instance.new("Part", m)
  4135. p198.BrickColor = BrickColor.new("Black")
  4136. p198.Material = Enum.Material.SmoothPlastic
  4137. p198.Reflectance = 0.30000001192093
  4138. p198.CFrame = CFrame.new(58.7431755, 2.54612994, -127.736237, -0.372552961, 0.348629951, -0.860035717, 0.674444914, 0.738290787, 0.00712047471, 0.637438953, -0.577393949, -0.510184109)
  4139. p198.Anchored = true
  4140. p198.CanCollide = false
  4141. p198.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4142. p198.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4143. p198.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4144. p198.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4145. p198.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4146. p198.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4147. p198.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4148. b198 = Instance.new("BlockMesh", p198)
  4149. b198.Name = "Mesh"
  4150. b198.Scale = Vector3.new(0.290114284, 0.364770919, 0.328507692)
  4151. p199 = Instance.new("Part", m)
  4152. p199.BrickColor = BrickColor.new("Black")
  4153. p199.Material = Enum.Material.SmoothPlastic
  4154. p199.Reflectance = 0.30000001192093
  4155. p199.CFrame = CFrame.new(57.4378281, 2.10744309, -127.186836, -0.488197058, -0.148333222, -0.860035479, -0.302168041, 0.953228116, 0.00711844442, 0.818754137, 0.263350397, -0.510184705)
  4156. p199.Anchored = true
  4157. p199.CanCollide = false
  4158. p199.Size = Vector3.new(0.321681917, 0.200000003, 0.200000003)
  4159. p199.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4160. p199.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4161. p199.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4162. p199.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4163. p199.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4164. p199.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4165. b199 = Instance.new("BlockMesh", p199)
  4166. b199.Name = "Mesh"
  4167. b199.Scale = Vector3.new(1, 0.874597073, 0.328507692)
  4168. p200 = Instance.new("Part", m)
  4169. p200.BrickColor = BrickColor.new("Black")
  4170. p200.Material = Enum.Material.SmoothPlastic
  4171. p200.Reflectance = 0.30000001192093
  4172. p200.CFrame = CFrame.new(57.9791222, 2.69788194, -128.091049, -0.0612980016, 0.506535113, -0.860037625, 0.991218984, 0.132039368, 0.0071192719, 0.117164999, -0.852049172, -0.51018095)
  4173. p200.Anchored = true
  4174. p200.CanCollide = false
  4175. p200.Size = Vector3.new(0.379703879, 0.200000003, 0.200000003)
  4176. p200.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4177. p200.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4178. p200.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4179. p200.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4180. p200.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4181. p200.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4182. b200 = Instance.new("BlockMesh", p200)
  4183. b200.Name = "Mesh"
  4184. b200.Scale = Vector3.new(1, 0.767938852, 0.328507692)
  4185. p201 = Instance.new("Part", m)
  4186. p201.BrickColor = BrickColor.new("Black")
  4187. p201.Material = Enum.Material.SmoothPlastic
  4188. p201.Reflectance = 0.30000001192093
  4189. p201.CFrame = CFrame.new(58.1070251, 2.9346149, -128.417969, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  4190. p201.Anchored = true
  4191. p201.CanCollide = false
  4192. p201.FormFactor = Enum.FormFactor.Symmetric
  4193. p201.Size = Vector3.new(0.200000003, 0.461616665, 0.219289422)
  4194. p201.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4195. p201.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4196. p201.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4197. p201.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4198. p201.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4199. p201.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4200. b201 = Instance.new("SpecialMesh", p201)
  4201. b201.MeshType = Enum.MeshType.Wedge
  4202. b201.Name = "Mesh"
  4203. b201.Scale = Vector3.new(0.34130618, 1, 1)
  4204. p202 = Instance.new("Part", m)
  4205. p202.BrickColor = BrickColor.new("Black")
  4206. p202.Material = Enum.Material.SmoothPlastic
  4207. p202.Reflectance = 0.30000001192093
  4208. p202.CFrame = CFrame.new(57.8182678, 2.95760608, -127.930786, 0.860044122, -0.509473026, -0.0275932401, -0.0071210009, 0.0420899838, -0.999088466, 0.510170043, 0.859456599, 0.0325712822)
  4209. p202.Anchored = true
  4210. p202.CanCollide = false
  4211. p202.FormFactor = Enum.FormFactor.Symmetric
  4212. p202.Size = Vector3.new(0.200000003, 0.673653126, 0.219289422)
  4213. p202.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4214. p202.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4215. p202.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4216. p202.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4217. p202.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4218. p202.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4219. b202 = Instance.new("SpecialMesh", p202)
  4220. b202.MeshType = Enum.MeshType.Wedge
  4221. b202.Name = "Mesh"
  4222. b202.Scale = Vector3.new(0.34130618, 1, 1)
  4223. p203 = Instance.new("Part", m)
  4224. p203.BrickColor = BrickColor.new("Black")
  4225. p203.Material = Enum.Material.SmoothPlastic
  4226. p203.Reflectance = 0.30000001192093
  4227. p203.CFrame = CFrame.new(57.719532, 2.05723691, -126.84095, 0.509490967, 0.860033393, -0.0275946073, -0.0420929976, -0.00712001137, -0.999088347, -0.85944587, 0.510187984, 0.0325738043)
  4228. p203.Anchored = true
  4229. p203.CanCollide = false
  4230. p203.Size = Vector3.new(0.200000003, 0.904887736, 0.200000003)
  4231. p203.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4232. p203.BottomSurface = Enum.SurfaceType.Weld
  4233. p203.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4234. p203.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4235. p203.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4236. p203.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4237. b203 = Instance.new("CylinderMesh", p203)
  4238. b203.Name = "Mesh"
  4239. b203.Scale = Vector3.new(0.86606437, 1, 0.902329028)
  4240. p204 = Instance.new("Part", m)
  4241. p204.BrickColor = BrickColor.new("Really black")
  4242. p204.Material = Enum.Material.SmoothPlastic
  4243. p204.CFrame = CFrame.new(58.2539597, 1.57302499, -127.73085, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  4244. p204.Anchored = true
  4245. p204.CanCollide = false
  4246. p204.Size = Vector3.new(0.380556345, 0.200000003, 0.430472851)
  4247. p204.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4248. p204.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4249. p204.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4250. p204.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4251. p204.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4252. p204.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4253. b204 = Instance.new("BlockMesh", p204)
  4254. b204.Name = "Mesh"
  4255. b204.Scale = Vector3.new(1, 0.906594813, 1)
  4256. p205 = Instance.new("Part", m)
  4257. p205.BrickColor = BrickColor.new("Black")
  4258. p205.Material = Enum.Material.SmoothPlastic
  4259. p205.Reflectance = 0.30000001192093
  4260. p205.CFrame = CFrame.new(58.9888687, 1.93631101, -128.159836, 0.860044122, 0.469311446, 0.200177267, -0.0071210009, -0.381256223, 0.924441993, 0.510170043, -0.796486378, -0.324555188)
  4261. p205.Anchored = true
  4262. p205.CanCollide = false
  4263. p205.FormFactor = Enum.FormFactor.Symmetric
  4264. p205.Size = Vector3.new(0.200000003, 0.673653126, 0.219289422)
  4265. p205.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4266. p205.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4267. p205.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4268. p205.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4269. p205.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4270. p205.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4271. b205 = Instance.new("SpecialMesh", p205)
  4272. b205.MeshType = Enum.MeshType.Wedge
  4273. b205.Name = "Mesh"
  4274. b205.Scale = Vector3.new(0.34130618, 1, 1)
  4275. p206 = Instance.new("Part", m)
  4276. p206.BrickColor = BrickColor.new("Medium stone grey")
  4277. p206.Material = Enum.Material.SmoothPlastic
  4278. p206.CFrame = CFrame.new(58.5126152, 1.87167203, -127.354507, 0.509489059, -0.0275912844, -0.860034645, -0.0420910046, -0.999088466, 0.00711741997, -0.859447122, 0.0325734727, -0.510185957)
  4279. p206.Anchored = true
  4280. p206.CanCollide = false
  4281. p206.Size = Vector3.new(0.200000003, 0.35922429, 0.200000003)
  4282. p206.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4283. p206.BottomSurface = Enum.SurfaceType.Weld
  4284. p206.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4285. p206.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4286. p206.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4287. p206.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4288. b206 = Instance.new("CylinderMesh", p206)
  4289. b206.Name = "Mesh"
  4290. b206.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  4291. p207 = Instance.new("Part", m)
  4292. p207.BrickColor = BrickColor.new("Black")
  4293. p207.Material = Enum.Material.SmoothPlastic
  4294. p207.Reflectance = 0.30000001192093
  4295. p207.CFrame = CFrame.new(58.4643478, 2.17942095, -127.271294, -0.509489059, 0.0275912844, -0.860034645, 0.0420910046, 0.999088466, 0.00711741997, 0.859447122, -0.0325734727, -0.510185957)
  4296. p207.Anchored = true
  4297. p207.CanCollide = false
  4298. p207.Size = Vector3.new(0.321681917, 0.200000003, 0.200000003)
  4299. p207.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4300. p207.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4301. p207.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4302. p207.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4303. p207.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4304. p207.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4305. b207 = Instance.new("BlockMesh", p207)
  4306. b207.Name = "Mesh"
  4307. b207.Scale = Vector3.new(1, 0.874597073, 0.328507692)
  4308. p208 = Instance.new("Part", m)
  4309. p208.BrickColor = BrickColor.new("Black")
  4310. p208.Material = Enum.Material.SmoothPlastic
  4311. p208.Reflectance = 0.30000001192093
  4312. p208.CFrame = CFrame.new(58.1571541, 2.1013329, -126.754654, -0.488197058, -0.148333222, -0.860035479, -0.302168041, 0.953228116, 0.00711844442, 0.818754137, 0.263350397, -0.510184705)
  4313. p208.Anchored = true
  4314. p208.CanCollide = false
  4315. p208.Size = Vector3.new(0.321681917, 0.200000003, 0.200000003)
  4316. p208.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4317. p208.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4318. p208.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4319. p208.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4320. p208.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4321. p208.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4322. b208 = Instance.new("BlockMesh", p208)
  4323. b208.Name = "Mesh"
  4324. b208.Scale = Vector3.new(1, 0.874597073, 0.328507692)
  4325. p209 = Instance.new("Part", m)
  4326. p209.BrickColor = BrickColor.new("Medium stone grey")
  4327. p209.Material = Enum.Material.SmoothPlastic
  4328. p209.CFrame = CFrame.new(57.8688507, 1.80281997, -127.929367, 0.509489059, -0.0275912844, -0.860034645, -0.0420910046, -0.999088466, 0.00711741997, -0.859447122, 0.0325734727, -0.510185957)
  4329. p209.Anchored = true
  4330. p209.CanCollide = false
  4331. p209.Size = Vector3.new(0.200000003, 0.435591578, 0.200000003)
  4332. p209.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4333. p209.BottomSurface = Enum.SurfaceType.Weld
  4334. p209.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4335. p209.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4336. p209.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4337. p209.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4338. b209 = Instance.new("CylinderMesh", p209)
  4339. b209.Name = "Mesh"
  4340. b209.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  4341. p210 = Instance.new("Part", m)
  4342. p210.BrickColor = BrickColor.new("Medium stone grey")
  4343. p210.Material = Enum.Material.SmoothPlastic
  4344. p210.Name = "Sphere"
  4345. p210.CFrame = CFrame.new(57.8745461, 2.02343106, -127.936783, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4346. p210.Anchored = true
  4347. p210.CanCollide = false
  4348. p210.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4349. p210.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4350. p210.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4351. p210.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4352. p210.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4353. p210.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4354. p210.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4355. b210 = Instance.new("SpecialMesh", p210)
  4356. b210.MeshType = Enum.MeshType.Sphere
  4357. b210.Name = "Mesh"
  4358. b210.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4359. p211 = Instance.new("Part", m)
  4360. p211.BrickColor = BrickColor.new("Medium stone grey")
  4361. p211.Material = Enum.Material.SmoothPlastic
  4362. p211.Name = "Sphere"
  4363. p211.CFrame = CFrame.new(57.9692688, 1.984146, -128.092712, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4364. p211.Anchored = true
  4365. p211.CanCollide = false
  4366. p211.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4367. p211.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4368. p211.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4369. p211.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4370. p211.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4371. p211.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4372. p211.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4373. b211 = Instance.new("SpecialMesh", p211)
  4374. b211.MeshType = Enum.MeshType.Sphere
  4375. b211.Name = "Mesh"
  4376. b211.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4377. p212 = Instance.new("Part", m)
  4378. p212.BrickColor = BrickColor.new("Medium stone grey")
  4379. p212.Material = Enum.Material.SmoothPlastic
  4380. p212.CFrame = CFrame.new(57.9626923, 1.73410404, -128.084381, 0.509489059, -0.0275912844, -0.860034645, -0.0420910046, -0.999088466, 0.00711741997, -0.859447122, 0.0325734727, -0.510185957)
  4381. p212.Anchored = true
  4382. p212.CanCollide = false
  4383. p212.Size = Vector3.new(0.200000003, 0.495320171, 0.200000003)
  4384. p212.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4385. p212.BottomSurface = Enum.SurfaceType.Weld
  4386. p212.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4387. p212.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4388. p212.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4389. p212.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4390. b212 = Instance.new("CylinderMesh", p212)
  4391. b212.Name = "Mesh"
  4392. b212.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  4393. p213 = Instance.new("Part", m)
  4394. p213.BrickColor = BrickColor.new("Black")
  4395. p213.Material = Enum.Material.SmoothPlastic
  4396. p213.Reflectance = 0.30000001192093
  4397. p213.CFrame = CFrame.new(58.0968552, 2.11253095, -128.297729, -0.306353956, 0.408027142, -0.860035539, 0.79240185, 0.609957933, 0.00712057389, 0.527490914, -0.679312289, -0.510184467)
  4398. p213.Anchored = true
  4399. p213.CanCollide = false
  4400. p213.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  4401. p213.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4402. p213.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4403. p213.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4404. p213.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4405. p213.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4406. p213.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4407. b213 = Instance.new("BlockMesh", p213)
  4408. b213.Name = "Mesh"
  4409. b213.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  4410. p214 = Instance.new("Part", m)
  4411. p214.BrickColor = BrickColor.new("Black")
  4412. p214.Material = Enum.Material.SmoothPlastic
  4413. p214.Reflectance = 0.30000001192093
  4414. p214.CFrame = CFrame.new(58.0152092, 2.43116188, -128.155609, -0.14832902, 0.488201082, -0.860033929, 0.953231096, 0.302158654, 0.00711872615, 0.263342023, -0.81875509, -0.510187328)
  4415. p214.Anchored = true
  4416. p214.CanCollide = false
  4417. p214.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  4418. p214.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4419. p214.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4420. p214.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4421. p214.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4422. p214.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4423. p214.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4424. b214 = Instance.new("BlockMesh", p214)
  4425. b214.Name = "Mesh"
  4426. b214.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  4427. p215 = Instance.new("Part", m)
  4428. p215.BrickColor = BrickColor.new("Medium stone grey")
  4429. p215.Material = Enum.Material.SmoothPlastic
  4430. p215.CFrame = CFrame.new(58.5967941, 1.79611194, -127.497513, 0.509489059, -0.0275912844, -0.860034645, -0.0420910046, -0.999088466, 0.00711741997, -0.859447122, 0.0325734727, -0.510185957)
  4431. p215.Anchored = true
  4432. p215.CanCollide = false
  4433. p215.Size = Vector3.new(0.200000003, 0.445404142, 0.200000003)
  4434. p215.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4435. p215.BottomSurface = Enum.SurfaceType.Weld
  4436. p215.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4437. p215.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4438. p215.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4439. p215.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4440. b215 = Instance.new("CylinderMesh", p215)
  4441. b215.Name = "Mesh"
  4442. b215.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  4443. p216 = Instance.new("Part", m)
  4444. p216.BrickColor = BrickColor.new("Medium stone grey")
  4445. p216.Material = Enum.Material.SmoothPlastic
  4446. p216.Name = "Sphere"
  4447. p216.CFrame = CFrame.new(57.8613396, 1.58382094, -127.923126, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4448. p216.Anchored = true
  4449. p216.CanCollide = false
  4450. p216.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4451. p216.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4452. p216.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4453. p216.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4454. p216.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4455. p216.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4456. p216.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4457. b216 = Instance.new("SpecialMesh", p216)
  4458. b216.MeshType = Enum.MeshType.Sphere
  4459. b216.Name = "Mesh"
  4460. b216.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4461. p217 = Instance.new("Part", m)
  4462. p217.BrickColor = BrickColor.new("Medium stone grey")
  4463. p217.Material = Enum.Material.SmoothPlastic
  4464. p217.Name = "Sphere"
  4465. p217.CFrame = CFrame.new(58.6026382, 2.02037311, -127.505066, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4466. p217.Anchored = true
  4467. p217.CanCollide = false
  4468. p217.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4469. p217.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4470. p217.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4471. p217.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4472. p217.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4473. p217.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4474. p217.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4475. b217 = Instance.new("SpecialMesh", p217)
  4476. b217.MeshType = Enum.MeshType.Sphere
  4477. b217.Name = "Mesh"
  4478. b217.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4479. p218 = Instance.new("Part", m)
  4480. p218.BrickColor = BrickColor.new("Medium stone grey")
  4481. p218.Material = Enum.Material.SmoothPlastic
  4482. p218.Name = "Sphere"
  4483. p218.CFrame = CFrame.new(57.7783432, 1.70243001, -127.781532, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4484. p218.Anchored = true
  4485. p218.CanCollide = false
  4486. p218.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4487. p218.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4488. p218.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4489. p218.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4490. p218.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4491. p218.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4492. p218.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4493. b218 = Instance.new("SpecialMesh", p218)
  4494. b218.MeshType = Enum.MeshType.Sphere
  4495. b218.Name = "Mesh"
  4496. b218.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4497. p219 = Instance.new("Part", m)
  4498. p219.BrickColor = BrickColor.new("Medium stone grey")
  4499. p219.Material = Enum.Material.SmoothPlastic
  4500. p219.Name = "Sphere"
  4501. p219.CFrame = CFrame.new(58.5172234, 2.05159307, -127.360565, 0.509490967, 0.027590977, 0.860033572, -0.0420929976, 0.999088347, -0.00711579528, -0.85944587, -0.0325759538, 0.510187924)
  4502. p219.Anchored = true
  4503. p219.CanCollide = false
  4504. p219.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4505. p219.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4506. p219.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4507. p219.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4508. p219.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4509. p219.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4510. p219.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4511. b219 = Instance.new("SpecialMesh", p219)
  4512. b219.MeshType = Enum.MeshType.Sphere
  4513. b219.Name = "Mesh"
  4514. b219.Scale = Vector3.new(0.452230543, 0.441564947, 0.430899411)
  4515. p220 = Instance.new("Part", m)
  4516. p220.BrickColor = BrickColor.new("Medium stone grey")
  4517. p220.Material = Enum.Material.SmoothPlastic
  4518. p220.CFrame = CFrame.new(58.6906548, 1.72806203, -127.652481, 0.509489059, -0.0275912844, -0.860034645, -0.0420910046, -0.999088466, 0.00711741997, -0.859447122, 0.0325734727, -0.510185957)
  4519. p220.Anchored = true
  4520. p220.CanCollide = false
  4521. p220.Size = Vector3.new(0.200000003, 0.506412625, 0.200000003)
  4522. p220.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4523. p220.BottomSurface = Enum.SurfaceType.Weld
  4524. p220.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4525. p220.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4526. p220.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4527. p220.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4528. b220 = Instance.new("CylinderMesh", p220)
  4529. b220.Name = "Mesh"
  4530. b220.Scale = Vector3.new(0.86606437, 1, 0.441565275)
  4531. p221 = Instance.new("Part", m)
  4532. p221.BrickColor = BrickColor.new("Black")
  4533. p221.Material = Enum.Material.SmoothPlastic
  4534. p221.Reflectance = 0.30000001192093
  4535. p221.CFrame = CFrame.new(57.1224556, 2.48043799, -126.652557, -0.306353956, 0.408027142, -0.860035539, 0.79240185, 0.609957933, 0.00712057389, 0.527490914, -0.679312289, -0.510184467)
  4536. p221.Anchored = true
  4537. p221.CanCollide = false
  4538. p221.Size = Vector3.new(0.493188143, 0.200000003, 0.200000003)
  4539. p221.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4540. p221.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4541. p221.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4542. p221.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4543. p221.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4544. p221.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4545. b221 = Instance.new("BlockMesh", p221)
  4546. b221.Name = "Mesh"
  4547. b221.Scale = Vector3.new(1, 0.767938852, 0.328507692)
  4548. p222 = Instance.new("Part", m)
  4549. p222.BrickColor = BrickColor.new("Black")
  4550. p222.Material = Enum.Material.SmoothPlastic
  4551. p222.Reflectance = 0.30000001192093
  4552. p222.CFrame = CFrame.new(57.2567101, 2.72567701, -126.872894, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  4553. p222.Anchored = true
  4554. p222.CanCollide = false
  4555. p222.FormFactor = Enum.FormFactor.Symmetric
  4556. p222.Size = Vector3.new(0.200000003, 0.461616665, 0.219289422)
  4557. p222.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4558. p222.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4559. p222.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4560. p222.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4561. p222.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4562. p222.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4563. b222 = Instance.new("SpecialMesh", p222)
  4564. b222.MeshType = Enum.MeshType.Wedge
  4565. b222.Name = "Mesh"
  4566. b222.Scale = Vector3.new(0.34130618, 1, 1)
  4567. p223 = Instance.new("Part", m)
  4568. p223.BrickColor = BrickColor.new("Medium stone grey")
  4569. p223.Material = Enum.Material.SmoothPlastic
  4570. p223.CFrame = CFrame.new(57.6744461, 2.28936791, -126.738533, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4571. p223.Anchored = true
  4572. p223.CanCollide = false
  4573. p223.Size = Vector3.new(1.27989805, 0.431751966, 1.28672552)
  4574. p223.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4575. p223.BottomSurface = Enum.SurfaceType.Weld
  4576. p223.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4577. p223.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4578. p223.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4579. p223.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4580. b223 = Instance.new("CylinderMesh", p223)
  4581. b223.Name = "Mesh"
  4582. p224 = Instance.new("Part", m)
  4583. p224.BrickColor = BrickColor.new("Black")
  4584. p224.Material = Enum.Material.SmoothPlastic
  4585. p224.Reflectance = 0.30000001192093
  4586. p224.CFrame = CFrame.new(57.6704941, 2.31170011, -126.733627, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4587. p224.Anchored = true
  4588. p224.CanCollide = false
  4589. p224.Size = Vector3.new(1.27051222, 0.434738368, 1.28672552)
  4590. p224.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4591. p224.BottomSurface = Enum.SurfaceType.Weld
  4592. p224.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4593. p224.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4594. p224.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4595. p224.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4596. b224 = Instance.new("CylinderMesh", p224)
  4597. b224.Name = "Mesh"
  4598. p225 = Instance.new("Part", m)
  4599. p225.BrickColor = BrickColor.new("Mint")
  4600. p225.Material = Enum.Material.SmoothPlastic
  4601. p225.CFrame = CFrame.new(59.648365, 2.20697308, -130.065186, 0.860044122, 0.48818332, -0.14832823, -0.0071210009, 0.302171111, 0.953227162, 0.510170043, -0.81876117, 0.263356805)
  4602. p225.Anchored = true
  4603. p225.CanCollide = false
  4604. p225.FormFactor = Enum.FormFactor.Symmetric
  4605. p225.Size = Vector3.new(0.333200157, 0.276458055, 0.284564346)
  4606. p225.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4607. p225.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4608. p225.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4609. p225.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4610. p225.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4611. p225.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4612. b225 = Instance.new("SpecialMesh", p225)
  4613. b225.MeshType = Enum.MeshType.Wedge
  4614. b225.Name = "Mesh"
  4615. p226 = Instance.new("Part", m)
  4616. p226.BrickColor = BrickColor.new("Mint")
  4617. p226.Material = Enum.Material.SmoothPlastic
  4618. p226.CFrame = CFrame.new(59.5606346, 2.59615397, -129.913483, -0.860044122, 0.455009729, 0.230847061, 0.0071210009, 0.463106811, -0.886273921, -0.510170043, -0.760590732, -0.401532441)
  4619. p226.Anchored = true
  4620. p226.CanCollide = false
  4621. p226.Size = Vector3.new(0.331493586, 0.273471624, 0.621177852)
  4622. p226.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4623. p226.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4624. p226.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4625. p226.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4626. p226.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4627. p226.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4628. b226 = Instance.new("BlockMesh", p226)
  4629. b226.Name = "Mesh"
  4630. p227 = Instance.new("Part", m)
  4631. p227.BrickColor = BrickColor.new("Pastel green")
  4632. p227.Material = Enum.Material.SmoothPlastic
  4633. p227.CFrame = CFrame.new(58.5153732, 2.80147099, -128.147324, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  4634. p227.Anchored = true
  4635. p227.CanCollide = false
  4636. p227.FormFactor = Enum.FormFactor.Symmetric
  4637. p227.Size = Vector3.new(0.515372276, 0.609658182, 1.23339629)
  4638. p227.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4639. p227.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4640. p227.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4641. p227.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4642. p227.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4643. p227.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4644. b227 = Instance.new("SpecialMesh", p227)
  4645. b227.MeshType = Enum.MeshType.Wedge
  4646. b227.Name = "Mesh"
  4647. p228 = Instance.new("Part", m)
  4648. p228.BrickColor = BrickColor.new("Mint")
  4649. p228.Material = Enum.Material.SmoothPlastic
  4650. p228.CFrame = CFrame.new(59.4936676, 2.85180306, -129.796951, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4651. p228.Anchored = true
  4652. p228.CanCollide = false
  4653. p228.Size = Vector3.new(0.291816741, 0.330639958, 0.276031643)
  4654. p228.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4655. p228.BottomSurface = Enum.SurfaceType.Weld
  4656. p228.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4657. p228.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4658. p228.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4659. p228.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4660. b228 = Instance.new("CylinderMesh", p228)
  4661. b228.Name = "Mesh"
  4662. p229 = Instance.new("Part", m)
  4663. p229.BrickColor = BrickColor.new("Black")
  4664. p229.Material = Enum.Material.SmoothPlastic
  4665. p229.Reflectance = 0.30000001192093
  4666. p229.CFrame = CFrame.new(57.6660843, 2.33706808, -126.724998, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4667. p229.Anchored = true
  4668. p229.CanCollide = false
  4669. p229.Size = Vector3.new(1.27051222, 0.439004719, 1.21590436)
  4670. p229.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4671. p229.BottomSurface = Enum.SurfaceType.Weld
  4672. p229.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4673. p229.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4674. p229.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4675. p229.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4676. b229 = Instance.new("CylinderMesh", p229)
  4677. b229.Name = "Mesh"
  4678. p230 = Instance.new("Part", m)
  4679. p230.BrickColor = BrickColor.new("Black")
  4680. p230.Material = Enum.Material.SmoothPlastic
  4681. p230.Name = "Sphere"
  4682. p230.CFrame = CFrame.new(58.4890213, 3.66936088, -126.727211, 0.172832012, 0.135006011, 0.9756549, -0.199536026, 0.97482121, -0.0995439216, -0.964528143, -0.177473933, 0.19541885)
  4683. p230.Anchored = true
  4684. p230.CanCollide = false
  4685. p230.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4686. p230.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4687. p230.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4688. p230.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4689. p230.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4690. p230.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4691. p230.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4692. b230 = Instance.new("SpecialMesh", p230)
  4693. b230.MeshType = Enum.MeshType.Sphere
  4694. b230.Name = "Mesh"
  4695. b230.Scale = Vector3.new(0.878863275, 0.86819768, 0.85753268)
  4696. p231 = Instance.new("Part", m)
  4697. p231.BrickColor = BrickColor.new("Mint")
  4698. p231.Material = Enum.Material.SmoothPlastic
  4699. p231.CFrame = CFrame.new(58.6625824, 3.16948199, -128.39151, -0.860044122, 0.0275900736, 0.509473205, 0.0071210009, 0.999088764, -0.0420837775, -0.510170043, -0.0325659439, -0.859456778)
  4700. p231.Anchored = true
  4701. p231.CanCollide = false
  4702. p231.Size = Vector3.new(0.331493586, 0.273471624, 0.524758697)
  4703. p231.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4704. p231.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4705. p231.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4706. p231.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4707. p231.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4708. p231.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4709. b231 = Instance.new("BlockMesh", p231)
  4710. b231.Name = "Mesh"
  4711. p232 = Instance.new("Part", m)
  4712. p232.BrickColor = BrickColor.new("Mint")
  4713. p232.Material = Enum.Material.SmoothPlastic
  4714. p232.CFrame = CFrame.new(58.7941399, 3.15963793, -128.615646, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4715. p232.Anchored = true
  4716. p232.CanCollide = false
  4717. p232.Size = Vector3.new(0.273471534, 0.332773149, 0.276458293)
  4718. p232.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4719. p232.BottomSurface = Enum.SurfaceType.Weld
  4720. p232.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4721. p232.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4722. p232.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4723. p232.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4724. b232 = Instance.new("CylinderMesh", p232)
  4725. b232.Name = "Mesh"
  4726. p233 = Instance.new("Part", m)
  4727. p233.BrickColor = BrickColor.new("Pastel green")
  4728. p233.Material = Enum.Material.SmoothPlastic
  4729. p233.CFrame = CFrame.new(57.3306007, 3.24477696, -126.144775, -0.506930232, -0.0579570942, -0.860036492, -0.125499055, 0.992068231, 0.007118145, 0.852802396, 0.111542165, -0.510182858)
  4730. p233.Anchored = true
  4731. p233.CanCollide = false
  4732. p233.Size = Vector3.new(0.309736162, 0.200000003, 0.516226113)
  4733. p233.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4734. p233.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4735. p233.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4736. p233.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4737. p233.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4738. p233.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4739. b233 = Instance.new("BlockMesh", p233)
  4740. b233.Name = "Mesh"
  4741. b233.Scale = Vector3.new(1, 0.637815893, 1)
  4742. p234 = Instance.new("Part", m)
  4743. p234.BrickColor = BrickColor.new("Black")
  4744. p234.Material = Enum.Material.SmoothPlastic
  4745. p234.Name = "Sphere"
  4746. p234.CFrame = CFrame.new(57.7896156, 3.7366879, -126.866478, 0.172832012, 0.135006011, 0.9756549, -0.199536026, 0.97482121, -0.0995439216, -0.964528143, -0.177473933, 0.19541885)
  4747. p234.Anchored = true
  4748. p234.CanCollide = false
  4749. p234.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  4750. p234.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4751. p234.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4752. p234.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4753. p234.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4754. p234.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4755. p234.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4756. b234 = Instance.new("SpecialMesh", p234)
  4757. b234.MeshType = Enum.MeshType.Sphere
  4758. b234.Name = "Mesh"
  4759. b234.Scale = Vector3.new(0.878863275, 0.902328312, 0.85753268)
  4760. p235 = Instance.new("Part", m)
  4761. p235.BrickColor = BrickColor.new("Black")
  4762. p235.Material = Enum.Material.SmoothPlastic
  4763. p235.Reflectance = 0.30000001192093
  4764. p235.CFrame = CFrame.new(57.6943588, 1.82785797, -126.781555, -0.0612980016, 0.506535113, -0.860037625, 0.991218984, 0.132039368, 0.0071192719, 0.117164999, -0.852049172, -0.51018095)
  4765. p235.Anchored = true
  4766. p235.CanCollide = false
  4767. p235.Size = Vector3.new(0.369891375, 0.328080595, 0.440712065)
  4768. p235.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4769. p235.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4770. p235.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4771. p235.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4772. p235.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4773. p235.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4774. b235 = Instance.new("BlockMesh", p235)
  4775. b235.Name = "Mesh"
  4776. p236 = Instance.new("Part", m)
  4777. p236.BrickColor = BrickColor.new("Black")
  4778. p236.Material = Enum.Material.SmoothPlastic
  4779. p236.CFrame = CFrame.new(57.6875153, 2.19869304, -126.764351, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4780. p236.Anchored = true
  4781. p236.CanCollide = false
  4782. p236.Size = Vector3.new(1.28800404, 0.337039471, 1.28672552)
  4783. p236.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4784. p236.BottomSurface = Enum.SurfaceType.Weld
  4785. p236.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4786. p236.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4787. p236.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4788. p236.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4789. b236 = Instance.new("CylinderMesh", p236)
  4790. b236.Name = "Mesh"
  4791. p237 = Instance.new("Part", m)
  4792. p237.BrickColor = BrickColor.new("Black")
  4793. p237.Material = Enum.Material.SmoothPlastic
  4794. p237.CFrame = CFrame.new(57.7952194, 1.66072905, -126.953438, -0.509489059, 0.0275912844, -0.860034645, 0.0420910046, 0.999088466, 0.00711741997, 0.859447122, -0.0325734727, -0.510185957)
  4795. p237.Anchored = true
  4796. p237.CanCollide = false
  4797. p237.Size = Vector3.new(0.317415565, 0.202650547, 0.335333675)
  4798. p237.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4799. p237.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4800. p237.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4801. p237.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4802. p237.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4803. p237.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4804. b237 = Instance.new("BlockMesh", p237)
  4805. b237.Name = "Mesh"
  4806. p238 = Instance.new("Part", m)
  4807. p238.BrickColor = BrickColor.new("Black")
  4808. p238.Material = Enum.Material.SmoothPlastic
  4809. p238.Reflectance = 0.30000001192093
  4810. p238.CFrame = CFrame.new(57.6900558, 2.23801589, -126.764793, 0.509489059, 0.860034525, -0.0275952145, -0.0420910046, -0.00712198531, -0.999088466, -0.859447122, 0.510186076, 0.0325711444)
  4811. p238.Anchored = true
  4812. p238.CanCollide = false
  4813. p238.Size = Vector3.new(1.28800404, 0.427485645, 1.28672552)
  4814. p238.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4815. p238.BottomSurface = Enum.SurfaceType.Weld
  4816. p238.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4817. p238.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4818. p238.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4819. p238.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4820. b238 = Instance.new("CylinderMesh", p238)
  4821. b238.Name = "Mesh"
  4822. p239 = Instance.new("Part", m)
  4823. p239.BrickColor = BrickColor.new("Pastel green")
  4824. p239.Material = Enum.Material.SmoothPlastic
  4825. p239.CFrame = CFrame.new(57.4839973, 3.26726294, -126.403915, -0.510179996, -0.00735482108, -0.860036194, -0.0264139995, 0.999625742, 0.00712042814, 0.859661996, 0.0263496954, -0.510183334)
  4826. p239.Anchored = true
  4827. p239.CanCollide = false
  4828. p239.Size = Vector3.new(0.309736162, 0.200000003, 0.517079413)
  4829. p239.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4830. p239.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4831. p239.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4832. p239.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4833. p239.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4834. p239.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4835. b239 = Instance.new("BlockMesh", p239)
  4836. b239.Name = "Mesh"
  4837. b239.Scale = Vector3.new(1, 0.637815893, 1)
  4838. p240 = Instance.new("Part", m)
  4839. p240.BrickColor = BrickColor.new("Pastel green")
  4840. p240.Material = Enum.Material.SmoothPlastic
  4841. p240.CFrame = CFrame.new(57.8555222, 3.29069209, -127.025681, -0.464011133, -0.212204829, -0.860036492, -0.426768094, 0.904333174, 0.00711749028, 0.77624917, 0.370338738, -0.510182858)
  4842. p240.Anchored = true
  4843. p240.CanCollide = false
  4844. p240.Size = Vector3.new(0.335760742, 0.200000003, 0.256833166)
  4845. p240.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4846. p240.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4847. p240.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4848. p240.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4849. p240.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4850. p240.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4851. b240 = Instance.new("BlockMesh", p240)
  4852. b240.Name = "Mesh"
  4853. b240.Scale = Vector3.new(1, 0.637815893, 1)
  4854. p241 = Instance.new("Part", m)
  4855. p241.BrickColor = BrickColor.new("Black")
  4856. p241.Material = Enum.Material.SmoothPlastic
  4857. p241.CFrame = CFrame.new(57.764904, 3.55761099, -126.833786, 0.172832012, 0.135006011, 0.9756549, -0.199536026, 0.97482121, -0.0995439216, -0.964528143, -0.177473933, 0.19541885)
  4858. p241.Anchored = true
  4859. p241.CanCollide = false
  4860. p241.Size = Vector3.new(0.200000003, 0.366903841, 0.200000003)
  4861. p241.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4862. p241.BottomSurface = Enum.SurfaceType.Weld
  4863. p241.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4864. p241.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4865. p241.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4866. p241.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4867. b241 = Instance.new("CylinderMesh", p241)
  4868. b241.Name = "Mesh"
  4869. b241.Scale = Vector3.new(0.86606437, 1, 0.902329028)
  4870. p242 = Instance.new("Part", m)
  4871. p242.BrickColor = BrickColor.new("Pastel green")
  4872. p242.Material = Enum.Material.SmoothPlastic
  4873. p242.CFrame = CFrame.new(57.9147568, 3.29262209, -127.129684, -0.431912988, -0.271641016, -0.860036254, -0.542495012, 0.840028942, 0.00712104188, 0.720520973, 0.46964106, -0.510183275)
  4874. p242.Anchored = true
  4875. p242.CanCollide = false
  4876. p242.Size = Vector3.new(0.320828617, 0.208623439, 0.517079413)
  4877. p242.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4878. p242.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4879. p242.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4880. p242.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4881. p242.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4882. p242.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4883. b242 = Instance.new("BlockMesh", p242)
  4884. b242.Name = "Mesh"
  4885. p243 = Instance.new("Part", m)
  4886. p243.BrickColor = BrickColor.new("Black")
  4887. p243.Material = Enum.Material.SmoothPlastic
  4888. p243.CFrame = CFrame.new(57.6328621, 3.35902309, -126.643867, -0.478248835, 0.177807972, -0.860036254, 0.337201893, 0.941405416, 0.00711946329, 0.810908675, -0.286600947, -0.510183215)
  4889. p243.Anchored = true
  4890. p243.CanCollide = false
  4891. p243.Size = Vector3.new(0.309736162, 0.238914371, 0.32125473)
  4892. p243.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4893. p243.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4894. p243.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4895. p243.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4896. p243.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4897. p243.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4898. b243 = Instance.new("BlockMesh", p243)
  4899. b243.Name = "Mesh"
  4900. p244 = Instance.new("Part", m)
  4901. p244.BrickColor = BrickColor.new("Black")
  4902. p244.Material = Enum.Material.SmoothPlastic
  4903. p244.CFrame = CFrame.new(58.1391754, 3.704494, -126.797096, 0.172832012, 0.975655079, -0.135005146, -0.199536026, -0.0995430574, -0.974821329, -0.964528143, 0.195418715, 0.177474111)
  4904. p244.Anchored = true
  4905. p244.CanCollide = false
  4906. p244.Size = Vector3.new(0.200000003, 0.712476373, 0.200000003)
  4907. p244.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4908. p244.BottomSurface = Enum.SurfaceType.Weld
  4909. p244.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4910. p244.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4911. p244.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4912. p244.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4913. b244 = Instance.new("CylinderMesh", p244)
  4914. b244.Name = "Mesh"
  4915. b244.Scale = Vector3.new(0.86606437, 1, 0.902329028)
  4916. p245 = Instance.new("Part", m)
  4917. p245.BrickColor = BrickColor.new("Black")
  4918. p245.Material = Enum.Material.SmoothPlastic
  4919. p245.CFrame = CFrame.new(57.9807281, 1.93662298, -127.260201, -0.372552961, 0.348629951, -0.860035717, 0.674444914, 0.738290787, 0.00712047471, 0.637438953, -0.577393949, -0.510184109)
  4920. p245.Anchored = true
  4921. p245.CanCollide = false
  4922. p245.Size = Vector3.new(0.200000003, 0.617337704, 0.421086848)
  4923. p245.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4924. p245.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4925. p245.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4926. p245.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4927. p245.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4928. p245.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4929. b245 = Instance.new("BlockMesh", p245)
  4930. b245.Name = "Mesh"
  4931. b245.Scale = Vector3.new(0.475699484, 1, 1)
  4932. p246 = Instance.new("Part", m)
  4933. p246.BrickColor = BrickColor.new("Pastel green")
  4934. p246.Material = Enum.Material.SmoothPlastic
  4935. p246.CFrame = CFrame.new(58.6146889, 3.16814995, -128.316299, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  4936. p246.Anchored = true
  4937. p246.CanCollide = false
  4938. p246.FormFactor = Enum.FormFactor.Symmetric
  4939. p246.Size = Vector3.new(0.353251815, 0.351118803, 0.284564346)
  4940. p246.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4941. p246.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4942. p246.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4943. p246.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4944. p246.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4945. p246.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4946. b246 = Instance.new("SpecialMesh", p246)
  4947. b246.MeshType = Enum.MeshType.Wedge
  4948. b246.Name = "Mesh"
  4949. p247 = Instance.new("Part", m)
  4950. p247.BrickColor = BrickColor.new("Mint")
  4951. p247.Material = Enum.Material.SmoothPlastic
  4952. p247.CFrame = CFrame.new(59.1414185, 3.00615788, -129.201859, -0.860044122, 0.115639172, 0.496942371, 0.0071210009, 0.976602972, -0.21493268, -0.510170043, -0.181312889, -0.840745032)
  4953. p247.Anchored = true
  4954. p247.CanCollide = false
  4955. p247.Size = Vector3.new(0.330640316, 0.273471624, 1.38143814)
  4956. p247.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4957. p247.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4958. p247.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4959. p247.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4960. p247.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4961. p247.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4962. b247 = Instance.new("BlockMesh", p247)
  4963. b247.Name = "Mesh"
  4964. p248 = Instance.new("Part", m)
  4965. p248.BrickColor = BrickColor.new("Black")
  4966. p248.Material = Enum.Material.SmoothPlastic
  4967. p248.CFrame = CFrame.new(58.060051, 2.12562895, -127.390892, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  4968. p248.Anchored = true
  4969. p248.CanCollide = false
  4970. p248.Size = Vector3.new(0.383543611, 0.200000003, 0.421513528)
  4971. p248.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4972. p248.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4973. p248.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4974. p248.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4975. p248.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4976. p248.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4977. b248 = Instance.new("BlockMesh", p248)
  4978. b248.Name = "Mesh"
  4979. b248.Scale = Vector3.new(1, 0.893795848, 1)
  4980. p249 = Instance.new("Part", m)
  4981. p249.BrickColor = BrickColor.new("Black")
  4982. p249.Material = Enum.Material.SmoothPlastic
  4983. p249.CFrame = CFrame.new(58.1461639, 1.33417702, -127.549583, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  4984. p249.Anchored = true
  4985. p249.CanCollide = false
  4986. p249.Size = Vector3.new(1.21462405, 0.202650547, 0.335333675)
  4987. p249.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4988. p249.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4989. p249.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4990. p249.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  4991. p249.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4992. p249.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4993. b249 = Instance.new("BlockMesh", p249)
  4994. b249.Name = "Mesh"
  4995. p250 = Instance.new("Part", m)
  4996. p250.BrickColor = BrickColor.new("Black")
  4997. p250.Material = Enum.Material.SmoothPlastic
  4998. p250.CFrame = CFrame.new(57.8617554, 1.63740599, -127.065941, -0.496958107, 0.115641154, -0.860034764, 0.214935049, 0.976602376, 0.00711798808, 0.840735197, -0.181314275, -0.510185778)
  4999. p250.Anchored = true
  5000. p250.CanCollide = false
  5001. p250.Size = Vector3.new(0.317415565, 0.202650547, 0.335333675)
  5002. p250.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5003. p250.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5004. p250.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5005. p250.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5006. p250.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5007. p250.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5008. b250 = Instance.new("BlockMesh", p250)
  5009. b250.Name = "Mesh"
  5010. p251 = Instance.new("Part", m)
  5011. p251.BrickColor = BrickColor.new("Pastel green")
  5012. p251.Material = Enum.Material.SmoothPlastic
  5013. p251.CFrame = CFrame.new(57.9073792, 2.8846879, -127.122566, -0.509489059, 0.0275912844, -0.860034645, 0.0420910046, 0.999088466, 0.00711741997, 0.859447122, -0.0325734727, -0.510185957)
  5014. p251.Anchored = true
  5015. p251.CanCollide = false
  5016. p251.Size = Vector3.new(1.99834859, 0.745754182, 0.516652763)
  5017. p251.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5018. p251.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5019. p251.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5020. p251.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5021. p251.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. p251.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5023. b251 = Instance.new("BlockMesh", p251)
  5024. b251.Name = "Mesh"
  5025. p252 = Instance.new("Part", m)
  5026. p252.BrickColor = BrickColor.new("Pastel green")
  5027. p252.Material = Enum.Material.SmoothPlastic
  5028. p252.CFrame = CFrame.new(57.7959976, 3.26877308, -126.930161, -0.503187895, -0.0845061913, -0.8600353, -0.177436948, 0.984106481, 0.00711718854, 0.845764816, 0.156183317, -0.510184944)
  5029. p252.Anchored = true
  5030. p252.CanCollide = false
  5031. p252.Size = Vector3.new(0.401888818, 0.200000003, 0.517506003)
  5032. p252.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5033. p252.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5034. p252.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5035. p252.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5036. p252.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5037. p252.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5038. b252 = Instance.new("BlockMesh", p252)
  5039. b252.Name = "Mesh"
  5040. b252.Scale = Vector3.new(1, 0.637815893, 1)
  5041. p253 = Instance.new("Part", m)
  5042. p253.BrickColor = BrickColor.new("Medium green")
  5043. p253.Material = Enum.Material.SmoothPlastic
  5044. p253.CFrame = CFrame.new(57.4787941, 3.32953811, -126.38427, -0.50543797, -0.0697890446, -0.860036016, -0.148651004, 0.988864124, 0.00711828051, 0.849961996, 0.131443068, -0.510183692)
  5045. p253.Anchored = true
  5046. p253.CanCollide = false
  5047. p253.Size = Vector3.new(0.309736162, 0.200000003, 0.298643202)
  5048. p253.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5049. p253.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5050. p253.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5051. p253.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5052. p253.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5053. p253.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5054. b253 = Instance.new("BlockMesh", p253)
  5055. b253.Name = "Mesh"
  5056. b253.Scale = Vector3.new(1, 0.637815893, 1)
  5057. p254 = Instance.new("Part", m)
  5058. p254.BrickColor = BrickColor.new("Black")
  5059. p254.Material = Enum.Material.SmoothPlastic
  5060. p254.Reflectance = 0.30000001192093
  5061. p254.CFrame = CFrame.new(57.2393494, 2.24144888, -126.852936, -0.372552961, 0.348629951, -0.860035717, 0.674444914, 0.738290787, 0.00712047471, 0.637438953, -0.577393949, -0.510184109)
  5062. p254.Anchored = true
  5063. p254.CanCollide = false
  5064. p254.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  5065. p254.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5066. p254.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5067. p254.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5068. p254.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5069. p254.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5070. p254.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5071. b254 = Instance.new("BlockMesh", p254)
  5072. b254.Name = "Mesh"
  5073. b254.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  5074. p255 = Instance.new("Part", m)
  5075. p255.BrickColor = BrickColor.new("Black")
  5076. p255.Material = Enum.Material.SmoothPlastic
  5077. p255.CFrame = CFrame.new(58.6276321, 1.470474, -128.338348, -0.860044122, -0.42742008, 0.27863279, 0.0071210009, 0.535994947, 0.844191134, -0.510170043, 0.728025794, -0.457935601)
  5078. p255.Anchored = true
  5079. p255.CanCollide = false
  5080. p255.Size = Vector3.new(0.278164506, 0.296509355, 0.234221548)
  5081. p255.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5082. p255.BottomSurface = Enum.SurfaceType.Weld
  5083. p255.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5084. p255.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5085. p255.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5086. p255.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5087. b255 = Instance.new("CylinderMesh", p255)
  5088. b255.Name = "Mesh"
  5089. p256 = Instance.new("Part", m)
  5090. p256.BrickColor = BrickColor.new("Black")
  5091. p256.Material = Enum.Material.SmoothPlastic
  5092. p256.Reflectance = 0.30000001192093
  5093. p256.CFrame = CFrame.new(58.7819901, 0.771009982, -128.649704, 0.860044122, 0.42742008, 0.27863279, -0.0071210009, -0.535994947, 0.844191134, 0.510170043, -0.728025794, -0.457935601)
  5094. p256.Anchored = true
  5095. p256.CanCollide = false
  5096. p256.FormFactor = Enum.FormFactor.Symmetric
  5097. p256.Size = Vector3.new(0.279444456, 0.408287525, 0.495321035)
  5098. p256.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5099. p256.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5100. p256.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5101. p256.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5102. p256.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5103. p256.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5104. b256 = Instance.new("SpecialMesh", p256)
  5105. b256.MeshType = Enum.MeshType.Wedge
  5106. b256.Name = "Mesh"
  5107. p257 = Instance.new("Part", m)
  5108. p257.BrickColor = BrickColor.new("Medium stone grey")
  5109. p257.Material = Enum.Material.SmoothPlastic
  5110. p257.CFrame = CFrame.new(58.7055893, 1.37823701, -128.471207, -0.860044122, -0.42742008, 0.27863279, 0.0071210009, 0.535994947, 0.844191134, -0.510170043, 0.728025794, -0.457935601)
  5111. p257.Anchored = true
  5112. p257.CanCollide = false
  5113. p257.Size = Vector3.new(0.278164506, 0.560168386, 0.200000003)
  5114. p257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5115. p257.BottomSurface = Enum.SurfaceType.Weld
  5116. p257.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5117. p257.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5118. p257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5119. p257.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5120. b257 = Instance.new("CylinderMesh", p257)
  5121. b257.Name = "Mesh"
  5122. b257.Scale = Vector3.new(1, 1, 0.753007352)
  5123. p258 = Instance.new("Part", m)
  5124. p258.BrickColor = BrickColor.new("Black")
  5125. p258.Material = Enum.Material.SmoothPlastic
  5126. p258.Reflectance = 0.30000001192093
  5127. p258.CFrame = CFrame.new(58.4782143, 1.15053499, -128.133194, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  5128. p258.Anchored = true
  5129. p258.CanCollide = false
  5130. p258.Size = Vector3.new(1.01410675, 0.494040698, 0.277738184)
  5131. p258.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5132. p258.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5133. p258.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5134. p258.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5135. p258.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5136. p258.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5137. b258 = Instance.new("BlockMesh", p258)
  5138. b258.Name = "Mesh"
  5139. p259 = Instance.new("Part", m)
  5140. p259.BrickColor = BrickColor.new("Quill grey")
  5141. p259.Material = Enum.Material.SmoothPlastic
  5142. p259.CFrame = CFrame.new(57.4184265, 3.32121396, -126.281631, -0.410247862, 0.30337581, -0.860034823, 0.584877789, 0.811090231, 0.00711635686, 0.699724734, -0.500095725, -0.510185778)
  5143. p259.Anchored = true
  5144. p259.CanCollide = false
  5145. p259.Size = Vector3.new(0.309736162, 0.200000003, 0.26707232)
  5146. p259.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5147. p259.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5148. p259.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5149. p259.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5150. p259.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. p259.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5152. b259 = Instance.new("BlockMesh", p259)
  5153. b259.Name = "Mesh"
  5154. b259.Scale = Vector3.new(1, 0.637815893, 1)
  5155. p260 = Instance.new("Part", m)
  5156. p260.BrickColor = BrickColor.new("Medium stone grey")
  5157. p260.Material = Enum.Material.SmoothPlastic
  5158. p260.Name = "Sphere"
  5159. p260.CFrame = CFrame.new(58.8259811, 1.22502697, -128.678299, 0.427432984, 0.278640628, 0.860035181, -0.535997987, 0.844189286, -0.00711857202, -0.728016019, -0.457934409, 0.510185122)
  5160. p260.Anchored = true
  5161. p260.CanCollide = false
  5162. p260.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5163. p260.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. p260.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. p260.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5166. p260.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5167. p260.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5168. p260.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5169. b260 = Instance.new("SpecialMesh", p260)
  5170. b260.MeshType = Enum.MeshType.Sphere
  5171. b260.Name = "Mesh"
  5172. b260.Scale = Vector3.new(0.827667475, 0.763672709, 0.765806496)
  5173. p261 = Instance.new("Part", m)
  5174. p261.BrickColor = BrickColor.new("Quill grey")
  5175. p261.Material = Enum.Material.SmoothPlastic
  5176. p261.CFrame = CFrame.new(57.1280441, 3.44977689, -125.790421, -0.489265949, 0.144766122, -0.860035837, 0.272192955, 0.962216377, 0.00711779902, 0.828570902, -0.230613217, -0.51018405)
  5177. p261.Anchored = true
  5178. p261.CanCollide = false
  5179. p261.Size = Vector3.new(0.309736162, 0.392928779, 0.26707232)
  5180. p261.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5181. p261.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5182. p261.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5183. p261.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5184. p261.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5185. p261.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5186. b261 = Instance.new("BlockMesh", p261)
  5187. b261.Name = "Mesh"
  5188. p262 = Instance.new("Part", m)
  5189. p262.BrickColor = BrickColor.new("Quill grey")
  5190. p262.Material = Enum.Material.SmoothPlastic
  5191. p262.CFrame = CFrame.new(57.265274, 3.37793589, -126.022713, -0.456696063, 0.227524862, -0.860035598, 0.435144067, 0.900332749, 0.00711540785, 0.77593714, -0.370989799, -0.510184467)
  5192. p262.Anchored = true
  5193. p262.CanCollide = false
  5194. p262.Size = Vector3.new(0.309736162, 0.336186588, 0.26707232)
  5195. p262.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5196. p262.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5197. p262.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5198. p262.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5199. p262.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5200. p262.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5201. b262 = Instance.new("BlockMesh", p262)
  5202. b262.Name = "Mesh"
  5203. p263 = Instance.new("Part", m)
  5204. p263.BrickColor = BrickColor.new("Quill grey")
  5205. p263.Material = Enum.Material.SmoothPlastic
  5206. p263.CFrame = CFrame.new(56.8637238, 3.49880099, -125.344131, -0.860044122, -0.50925833, -0.0313061588, 0.0071210009, -0.0733329952, 0.997282088, -0.510170043, 0.857483625, 0.0666960403)
  5207. p263.Anchored = true
  5208. p263.CanCollide = false
  5209. p263.FormFactor = Enum.FormFactor.Symmetric
  5210. p263.Size = Vector3.new(0.26280576, 0.300776094, 0.384823054)
  5211. p263.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5212. p263.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5213. p263.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5214. p263.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5215. p263.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. p263.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5217. b263 = Instance.new("SpecialMesh", p263)
  5218. b263.MeshType = Enum.MeshType.Wedge
  5219. b263.Name = "Mesh"
  5220. p264 = Instance.new("Part", m)
  5221. p264.BrickColor = BrickColor.new("Quill grey")
  5222. p264.Material = Enum.Material.SmoothPlastic
  5223. p264.CFrame = CFrame.new(56.9565239, 3.5144341, -125.500313, -0.509274065, -0.0313051865, -0.860034823, -0.0733240098, 0.997282743, 0.00711818738, 0.857475102, 0.0666863099, -0.510185659)
  5224. p264.Anchored = true
  5225. p264.CanCollide = false
  5226. p264.Size = Vector3.new(0.200000003, 0.380556434, 0.26707232)
  5227. p264.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5228. p264.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5229. p264.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5230. p264.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5231. p264.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5232. p264.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5233. b264 = Instance.new("BlockMesh", p264)
  5234. b264.Name = "Mesh"
  5235. b264.Scale = Vector3.new(0.33491087, 1, 1)
  5236. p265 = Instance.new("Part", m)
  5237. p265.BrickColor = BrickColor.new("Quill grey")
  5238. p265.Material = Enum.Material.SmoothPlastic
  5239. p265.CFrame = CFrame.new(57.0140152, 3.50229788, -125.59745, -0.506972969, 0.0576048866, -0.860035002, 0.100967988, 0.994864225, 0.00711713778, 0.856027901, -0.0832278058, -0.510185599)
  5240. p265.Anchored = true
  5241. p265.CanCollide = false
  5242. p265.Size = Vector3.new(0.222703114, 0.386955917, 0.26707232)
  5243. p265.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5244. p265.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5245. p265.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5246. p265.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5247. p265.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5248. p265.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5249. b265 = Instance.new("BlockMesh", p265)
  5250. b265.Name = "Mesh"
  5251. p266 = Instance.new("Part", m)
  5252. p266.BrickColor = BrickColor.new("Black")
  5253. p266.Material = Enum.Material.SmoothPlastic
  5254. p266.Reflectance = 0.30000001192093
  5255. p266.CFrame = CFrame.new(57.9606705, 2.23601198, -126.420609, -0.372552961, 0.348629951, -0.860035717, 0.674444914, 0.738290787, 0.00712047471, 0.637438953, -0.577393949, -0.510184109)
  5256. p266.Anchored = true
  5257. p266.CanCollide = false
  5258. p266.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  5259. p266.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5260. p266.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5261. p266.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5262. p266.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5263. p266.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5264. p266.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. b266 = Instance.new("BlockMesh", p266)
  5266. b266.Name = "Mesh"
  5267. b266.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  5268. p267 = Instance.new("Part", m)
  5269. p267.BrickColor = BrickColor.new("Black")
  5270. p267.Material = Enum.Material.SmoothPlastic
  5271. p267.Reflectance = 0.30000001192093
  5272. p267.CFrame = CFrame.new(57.6892281, 2.74322605, -125.953461, 0.860044122, -0.509473026, -0.0275932401, -0.0071210009, 0.0420899838, -0.999088466, 0.510170043, 0.859456599, 0.0325712822)
  5273. p267.Anchored = true
  5274. p267.CanCollide = false
  5275. p267.FormFactor = Enum.FormFactor.Symmetric
  5276. p267.Size = Vector3.new(0.200000003, 0.673653126, 0.219289422)
  5277. p267.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5278. p267.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5279. p267.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5280. p267.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5281. p267.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5282. p267.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5283. b267 = Instance.new("SpecialMesh", p267)
  5284. b267.MeshType = Enum.MeshType.Wedge
  5285. b267.Name = "Mesh"
  5286. b267.Scale = Vector3.new(0.34130618, 1, 1)
  5287. p268 = Instance.new("Part", m)
  5288. p268.BrickColor = BrickColor.new("Black")
  5289. p268.Material = Enum.Material.SmoothPlastic
  5290. p268.Reflectance = 0.30000001192093
  5291. p268.CFrame = CFrame.new(57.9372406, 2.34854889, -126.379646, -0.496958107, 0.115641154, -0.860034764, 0.214935049, 0.976602376, 0.00711798808, 0.840735197, -0.181314275, -0.510185778)
  5292. p268.Anchored = true
  5293. p268.CanCollide = false
  5294. p268.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5295. p268.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5296. p268.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5297. p268.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5298. p268.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5299. p268.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5300. p268.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5301. b268 = Instance.new("BlockMesh", p268)
  5302. b268.Name = "Mesh"
  5303. b268.Scale = Vector3.new(0.290114284, 0.364770919, 0.328507692)
  5304. p269 = Instance.new("Part", m)
  5305. p269.BrickColor = BrickColor.new("Black")
  5306. p269.Material = Enum.Material.SmoothPlastic
  5307. p269.Reflectance = 0.30000001192093
  5308. p269.CFrame = CFrame.new(57.8437462, 2.474967, -126.220261, -0.306353956, 0.408027142, -0.860035539, 0.79240185, 0.609957933, 0.00712057389, 0.527490914, -0.679312289, -0.510184467)
  5309. p269.Anchored = true
  5310. p269.CanCollide = false
  5311. p269.Size = Vector3.new(0.493188143, 0.200000003, 0.200000003)
  5312. p269.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5313. p269.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5314. p269.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5315. p269.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5316. p269.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5317. p269.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5318. b269 = Instance.new("BlockMesh", p269)
  5319. b269.Name = "Mesh"
  5320. b269.Scale = Vector3.new(1, 0.767938852, 0.328507692)
  5321. p270 = Instance.new("Part", m)
  5322. p270.BrickColor = BrickColor.new("Black")
  5323. p270.Material = Enum.Material.SmoothPlastic
  5324. p270.Reflectance = 0.30000001192093
  5325. p270.CFrame = CFrame.new(58.0397987, 2.11969304, -126.555717, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  5326. p270.Anchored = true
  5327. p270.CanCollide = false
  5328. p270.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  5329. p270.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5330. p270.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5331. p270.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5332. p270.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5333. p270.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5334. p270.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5335. b270 = Instance.new("BlockMesh", p270)
  5336. b270.Name = "Mesh"
  5337. b270.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  5338. p271 = Instance.new("Part", m)
  5339. p271.BrickColor = BrickColor.new("Black")
  5340. p271.Material = Enum.Material.SmoothPlastic
  5341. p271.Reflectance = 0.30000001192093
  5342. p271.CFrame = CFrame.new(57.9779968, 2.72020602, -126.440605, 0.860044122, 0.509473026, 0.0275932401, -0.0071210009, -0.0420899838, 0.999088466, 0.510170043, -0.859456599, -0.0325712822)
  5343. p271.Anchored = true
  5344. p271.CanCollide = false
  5345. p271.FormFactor = Enum.FormFactor.Symmetric
  5346. p271.Size = Vector3.new(0.200000003, 0.461616665, 0.219289422)
  5347. p271.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5348. p271.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5349. p271.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5350. p271.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5351. p271.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5352. p271.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5353. b271 = Instance.new("SpecialMesh", p271)
  5354. b271.MeshType = Enum.MeshType.Wedge
  5355. b271.Name = "Mesh"
  5356. b271.Scale = Vector3.new(0.34130618, 1, 1)
  5357. p272 = Instance.new("Part", m)
  5358. p272.BrickColor = BrickColor.new("Black")
  5359. p272.Material = Enum.Material.SmoothPlastic
  5360. p272.Reflectance = 0.30000001192093
  5361. p272.CFrame = CFrame.new(56.967907, 2.74865389, -126.38578, 0.860044122, -0.509473026, -0.0275932401, -0.0071210009, 0.0420899838, -0.999088466, 0.510170043, 0.859456599, 0.0325712822)
  5362. p272.Anchored = true
  5363. p272.CanCollide = false
  5364. p272.FormFactor = Enum.FormFactor.Symmetric
  5365. p272.Size = Vector3.new(0.200000003, 0.673653126, 0.219289422)
  5366. p272.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5367. p272.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5368. p272.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5369. p272.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5370. p272.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5371. p272.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5372. b272 = Instance.new("SpecialMesh", p272)
  5373. b272.MeshType = Enum.MeshType.Wedge
  5374. b272.Name = "Mesh"
  5375. b272.Scale = Vector3.new(0.34130618, 1, 1)
  5376. p273 = Instance.new("Part", m)
  5377. p273.BrickColor = BrickColor.new("Black")
  5378. p273.Material = Enum.Material.SmoothPlastic
  5379. p273.Reflectance = 0.30000001192093
  5380. p273.CFrame = CFrame.new(57.3185005, 2.12515497, -126.988045, -0.427432925, 0.27863735, -0.860036194, 0.535993934, 0.84419179, 0.00711819716, 0.728018939, -0.457931638, -0.510183334)
  5381. p273.Anchored = true
  5382. p273.CanCollide = false
  5383. p273.Size = Vector3.new(0.214170411, 0.200000003, 0.200000003)
  5384. p273.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5385. p273.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5386. p273.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5387. p273.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5388. p273.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5389. p273.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5390. b273 = Instance.new("BlockMesh", p273)
  5391. b273.Name = "Mesh"
  5392. b273.Scale = Vector3.new(1, 0.974855781, 0.328507692)
  5393. p274 = Instance.new("Part", m)
  5394. p274.BrickColor = BrickColor.new("Black")
  5395. p274.Material = Enum.Material.SmoothPlastic
  5396. p274.Reflectance = 0.30000001192093
  5397. p274.CFrame = CFrame.new(57.2159309, 2.3539989, -126.811928, -0.496958107, 0.115641154, -0.860034764, 0.214935049, 0.976602376, 0.00711798808, 0.840735197, -0.181314275, -0.510185778)
  5398. p274.Anchored = true
  5399. p274.CanCollide = false
  5400. p274.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  5401. p274.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5402. p274.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5403. p274.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5404. p274.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5405. p274.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5406. p274.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5407. b274 = Instance.new("BlockMesh", p274)
  5408. b274.Name = "Mesh"
  5409. b274.Scale = Vector3.new(0.290114284, 0.364770919, 0.328507692)
  5410. p275 = Instance.new("Part", m)
  5411. p275.BrickColor = BrickColor.new("Medium stone grey")
  5412. p275.Transparency = 1
  5413. p275.Name = "Handle"
  5414. p275.CFrame = CFrame.new(59.0884781, 2.34572792, -128.824005, 0.53143096, -0.0220077746, 0.846815646, 0.0339049958, 0.999414027, 0.00469607953, -0.846422851, 0.0262156408, 0.531865716)
  5415. p275.Size = Vector3.new(0.649999976, 0.350000024, 0.649999976)
  5416. handle = m:WaitForChild("Handle")
  5417. hitbox = p105
  5418. hitbox.Name = "Part"
  5419. function Weld(Mod)
  5420. local prev
  5421. lol = handle
  5422. local parts = Mod:GetChildren()
  5423. for i = 1,#parts do
  5424. if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") or parts[i]:IsA("BasePart") then
  5425. local weld = Instance.new("Weld")
  5426. weld.Name = "WeaponWeld"
  5427. weld.Part0 = lol
  5428. weld.Part1 = parts[i]
  5429. weld.C0 = lol.CFrame:inverse()
  5430. weld.C1 = parts[i].CFrame:inverse()
  5431. weld.Parent = weld.Part1
  5432. parts[i].Anchored = false
  5433. prev = parts[i]
  5434. end
  5435. end
  5436. end
  5437. Weld(m)
  5438. Weld(m1)
  5439. handle.Anchored = false
  5440. hitbox.Anchored = false
  5441. hitbox.Transparency = 1
  5442. handleweld = Instance.new("Motor", handle)
  5443. handleweld.Part0 = handle
  5444. handleweld.Part1 = RightArm
  5445. handleweld.C1 = CFrame.Angles(0, math.rad(-90), 0) * CFrame.new(0, -1, 0)
  5446.  
  5447. Defaults = {
  5448. Handle = {
  5449. C1 = handleweld.C1,
  5450. Part1 = handleweld.Part1
  5451. }
  5452. }
  5453.  
  5454. prts = {}
  5455. powerprts = {}
  5456.  
  5457. for _,nx in pairs(m:GetChildren()) do
  5458. if nx:IsA("BasePart") and (nx ~= hitbox and nx ~= handle) then
  5459. table.insert(prts, nx)
  5460. if nx.BrickColor == BrickColor.new("Toothpaste") then
  5461. table.insert(powerprts, nx)
  5462. end
  5463. end
  5464. end
  5465. for _,nx in pairs(m1:GetChildren()) do
  5466. if nx:IsA("BasePart") and (nx ~= hitbox and nx ~= handle) then
  5467. table.insert(prts, nx)
  5468. if nx.BrickColor == BrickColor.new("Toothpaste") then
  5469. table.insert(powerprts, nx)
  5470. end
  5471. end
  5472. end
  5473.  
  5474. Sound = {Create = function(id, par, vol, pit)
  5475. coroutine.resume(coroutine.create(function()
  5476. local S = Instance.new("Sound")
  5477. S.Volume = vol
  5478. S.Pitch = pit or 1
  5479. S.SoundId = "rbxassetid://"..id
  5480. S.Parent = par or workspace
  5481. wait()
  5482. S:play()
  5483. game:GetService("Debris"):AddItem(S, S.TimeLength + 1)
  5484. end))
  5485. end}
  5486.  
  5487. function SpinSound(pitch)
  5488. local S = Instance.new("Sound")
  5489. S.Volume = 1
  5490. S.Pitch = pitch or 1
  5491. S.SoundId = "rbxassetid://248088589"
  5492. if laughing == true then
  5493. Sound.Create("200633029", handle, 1, 1.2)
  5494. end
  5495. S.Parent = handle
  5496. wait()
  5497. S:play()
  5498. game:GetService("Debris"):AddItem(S, S.TimeLength + 1)
  5499. return S
  5500. end
  5501.  
  5502. spini = false
  5503. function sawspin()
  5504. local pot = nil
  5505. local spso = math.random(1, 5)
  5506. if spso == 1 then
  5507. pot = SpinSound(1)
  5508. elseif spso == 2 then
  5509. pot = SpinSound(1.2)
  5510. elseif spso == 3 then
  5511. pot = SpinSound(0.8)
  5512. elseif spso == 4 then
  5513. pot = SpinSound(1.5)
  5514. elseif spso == 5 then
  5515. pot = SpinSound(0.6)
  5516. end
  5517. while spini == true do
  5518. swait()
  5519. for i = 0, 1, 0.05 do
  5520. swait()
  5521. end
  5522. end
  5523. pot:Stop()
  5524. end
  5525.  
  5526. --[[Attacks]]--
  5527.  
  5528. function attackone()
  5529. attack = true
  5530. for i = 0, 1, 0.09 do
  5531. swait()
  5532. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5533. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5534. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5535. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5536. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5537. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5538. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.960397899, -0.278631896, 1.13074625e-008, -1.49011612e-008, -1.49011612e-008, 1, -0.278632015, 0.960397899, -1.22350752e-008 ), 0.3)
  5539. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.949484348, 0.313814253, 1.52875117e-008, -1.49011612e-008, 1.49011612e-008, 1, 0.313814402, 0.949484289, 1.0641271e-008 ), 0.3)
  5540. RW.C1 = clerp(RW.C1, CFrame.new( -0.49999994, 0.499999881, 0, -0.135088146, -0.304728955, 0.942810357, -0.914197624, 0.405269057, -3.99608417e-008, -0.38209185, -0.861914933, -0.333329439 ), 0.3)
  5541. LW.C1 = clerp(LW.C1, CFrame.new( 0.5, 0.499999911, 1.49011612e-007, 0.527955353, 0.262327075, -0.807742178, 0.723369002, 0.359422803, 0.589535594, 0.444972068, -0.895544529, 6.0617559e-008 ), 0.3)
  5542. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.999999881, 6.69387268e-016, -4.37113847e-008, 0, 1, -6.72544266e-016, 1, -9.98608765e-024, -1, 6.69387374e-016, -4.37113918e-008 ), 0.3)
  5543. LH.C1 = clerp(LH.C1, CFrame.new( -0.49999994, 0.999999881, -7.4505806e-008, -0.204488471, -0.0719358772, -0.976222396, -0.331849784, 0.943332255, 1.81678512e-008, 0.920901835, 0.323959112, -0.216772467 ), 0.3)
  5544. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(30), math.rad(-90), math.rad(-10)), 0.15)
  5545. end
  5546. Sound.Create("169445073", Torso, 1, 1)
  5547. MagniDamage(LeftLeg, 4, 5, 7, 3, "Normal")
  5548. for i = 0, 1, 0.07 do
  5549. swait()
  5550. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5551. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5552. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5553. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5554. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5555. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5556. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.958891511, 0.283772916, 2.91575342e-009, -1.49011612e-008, -1.49011612e-008, 1, 0.283772826, 0.958891392, -1.64028702e-008 ), 0.3)
  5557. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.925655961, -0.378366292, 4.70691308e-009, -1.49011612e-008, 1.49011612e-008, 1, -0.378366232, 0.925655842, 1.802192e-008 ), 0.3)
  5558. RW.C1 = clerp(RW.C1, CFrame.new( -0.49999994, 0.499999881, 0, -0.135088146, -0.304728955, 0.942810357, -0.914197624, 0.405269057, -3.99608417e-008, -0.38209185, -0.861914933, -0.333329439 ), 0.3)
  5559. LW.C1 = clerp(LW.C1, CFrame.new( 0.5, 0.499999911, 1.49011612e-007, 0.527955353, 0.262327075, -0.807742178, 0.723369002, 0.359422803, 0.589535594, 0.444972068, -0.895544529, 6.0617559e-008 ), 0.3)
  5560. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.999999881, 6.69387268e-016, -4.37113847e-008, 0, 1, -6.72544266e-016, 1, -9.98608765e-024, -1, 6.69387374e-016, -4.37113918e-008 ), 0.3)
  5561. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999881, 0.99999994, 1.78813934e-007, 0.167658478, -0.384522796, -0.907762766, 0.951304078, -0.17850107, 0.251312494, -0.25867185, -0.905692875, 0.335870981 ), 0.3)
  5562. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(30), math.rad(-90), math.rad(-10)), 0.15)
  5563. end
  5564. attack = false
  5565. end
  5566.  
  5567. function attacktwo()
  5568. attack = true
  5569. for i = 0, 1, 0.1 do
  5570. swait()
  5571. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5572. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5573. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5574. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5575. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5576. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5577. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.895857334, 0.444341719, 5.34507993e-011, -1.49011612e-008, -1.49011612e-008, 1, 0.4443416, 0.895857334, -1.66599197e-008 ), 0.3)
  5578. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 4.87080243e-009, -0.5, 1.91917344e-008, -0.891440928, -0.453136981, 3.21036264e-009, -1.49011612e-008, 1.49011612e-008, 1, -0.453136921, 0.891440868, 1.83477038e-008 ), 0.3)
  5579. RW.C1 = clerp(RW.C1, CFrame.new( -0.49999997, 0.499999821, 2.98023224e-008, -0.135088146, -0.304728955, 0.942810357, -0.914197624, 0.405269057, -3.99608417e-008, -0.38209185, -0.861914933, -0.333329439 ), 0.3)
  5580. LW.C1 = clerp(LW.C1, CFrame.new( 0.50000006, 0.499999791, 3.27825546e-007, 0.527955353, 0.262327075, -0.807742178, 0.723369002, 0.359422803, 0.589535594, 0.444972068, -0.895544529, 6.06175519e-008 ), 0.3)
  5581. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.99999994, -4.47034836e-008, -0.354929417, 0.183086738, 0.916790247, 0.371180415, 0.927630603, -0.0415515006, -0.858050168, 0.325546741, -0.397201598 ), 0.3)
  5582. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999702, 0.999999881, -5.81354698e-008, -7.35137107e-008, -6.91564894e-009, -1.00000024, 3.92202537e-009, 1, 1.43662291e-008, 1, 2.05938e-009, -1.39090766e-008 ), 0.3)
  5583. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(30), math.rad(-90), math.rad(-10)), 0.15)
  5584. end
  5585. Sound.Create("169445073", Torso, 1, 1.1)
  5586. MagniDamage(RightLeg, math.random(3, 5), 5, 7, 3, "Normal")
  5587. for i = 0, 1, 0.1 do
  5588. swait()
  5589. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5590. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5591. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5592. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5593. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5594. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5595. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.999343932, -0.0362148583, 7.98533861e-009, -1.49011612e-008, -1.49011612e-008, 1, -0.0362150073, 0.999343991, -1.46215644e-008 ), 0.3)
  5596. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 1.38605234e-008, -0.5, 1.41397773e-008, -0.99839896, 0.0565648377, 1.20008607e-008, -1.49011612e-008, 1.49011612e-008, 1, 0.0565649271, 0.9983989, 1.42451411e-008 ), 0.3)
  5597. RW.C1 = clerp(RW.C1, CFrame.new( -0.49999997, 0.499999821, 2.98023224e-008, -0.135088146, -0.304728955, 0.942810357, -0.914197624, 0.405269057, -3.99608417e-008, -0.38209185, -0.861914933, -0.333329439 ), 0.3)
  5598. LW.C1 = clerp(LW.C1, CFrame.new( 0.50000006, 0.499999791, 3.27825546e-007, 0.527955353, 0.262327075, -0.807742178, 0.723369002, 0.359422803, 0.589535594, 0.444972068, -0.895544529, 6.06175519e-008 ), 0.3)
  5599. RH.C1 = clerp(RH.C1, CFrame.new( 0.499999911, 0.557710052, 1.1920929e-007, -0.0242472664, 0.492300272, 0.870087624, -0.866220474, 0.424146831, -0.264124006, -0.499073267, -0.76009202, 0.416156203 ), 0.3)
  5600. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999702, 0.999999881, -5.81354698e-008, -7.35137107e-008, -6.91564894e-009, -1.00000024, 3.92202537e-009, 1, 1.43662291e-008, 1, 2.05938e-009, -1.39090766e-008 ), 0.3)
  5601. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(30), math.rad(-90), math.rad(-10)), 0.15)
  5602. end
  5603. attack = false
  5604. end
  5605.  
  5606. function attackthree()
  5607. attack = true
  5608. for i = 0, 1, 0.1 do
  5609. swait()
  5610. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5611. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5612. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5613. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5614. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5615. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5616. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.99999994, 5.96046448e-008, 7.4505806e-009, -1.49011612e-008, -1.49011612e-008, 1, -5.96046448e-008, 0.99999994, -1.49011612e-008 ), 0.3)
  5617. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 2.60770285e-008, -0.5, 2.98023117e-008, -1, -5.96046448e-008, 1.11758709e-008, -1.49011612e-008, 1.49011612e-008, 1, 5.96046448e-008, 0.99999994, 1.49011612e-008 ), 0.3)
  5618. RW.C1 = clerp(RW.C1, CFrame.new( -0.50000006, 0.50000006, -1.49011612e-007, 0.0672572851, 0.182392478, 0.980922699, 0.662019074, 0.727391958, -0.180642575, -0.746463299, 0.661539078, -0.0718248636 ), 0.3)
  5619. LW.C1 = clerp(LW.C1, CFrame.new( 0.499999821, 1.01710415, 0.158664614, 0.877410769, 0.435962141, -0.200217977, 0.179304078, 0.0890913159, 0.979751229, 0.444972068, -0.895544529, 6.06175519e-008 ), 0.3)
  5620. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.999999881, 7.77481463e-015, -4.33191012e-008, 0.133671939, 0.991025627, 5.84298476e-009, 0.991025627, -0.133671939, -1, 6.69387374e-016, -4.37113918e-008 ), 0.3)
  5621. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999464, 0.99999994, -9.39192191e-008, -7.34115559e-008, -0.127904266, -0.991786778, -5.5129048e-009, 0.99178654, -0.127904281, 1, 2.05938e-009, -1.39090766e-008 ), 0.3)
  5622. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(30)) * CFrame.new(1, 0, 0), 0.15)
  5623. end
  5624. Sound.Create("199145095", handle, 1, 1)
  5625. MagniDamage(hitbox, math.random(8, 12), 6, 10, 4, "Normal")
  5626. for i = 0, 1, 0.1 do
  5627. swait()
  5628. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5629. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5630. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5631. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5632. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5633. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5634. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.99999994, 5.96046448e-008, 7.4505806e-009, -1.49011612e-008, -1.49011612e-008, 1, -5.96046448e-008, 0.99999994, -1.49011612e-008 ), 0.3)
  5635. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 2.60770285e-008, -0.5, 2.98023117e-008, -1, -5.96046448e-008, 1.11758709e-008, -1.49011612e-008, 1.49011612e-008, 1, 5.96046448e-008, 0.99999994, 1.49011612e-008 ), 0.3)
  5636. RW.C1 = clerp(RW.C1, CFrame.new( -0.50000006, 0.499999851, -1.1920929e-007, 0.0672572851, 0.182392478, 0.980922699, -0.547517419, 0.828639925, -0.116536334, -0.834087133, -0.52923429, 0.155595109 ), 0.3)
  5637. LW.C1 = clerp(LW.C1, CFrame.new( 0.499999821, 1.01710415, 0.158664614, 0.877410769, 0.435962141, -0.200217977, 0.179304078, 0.0890913159, 0.979751229, 0.444972068, -0.895544529, 6.06175519e-008 ), 0.3)
  5638. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.999999881, 7.77481463e-015, -4.33191012e-008, 0.133671939, 0.991025627, 5.84298476e-009, 0.991025627, -0.133671939, -1, 6.69387374e-016, -4.37113918e-008 ), 0.3)
  5639. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999464, 0.99999994, -9.39192191e-008, -7.34115559e-008, -0.127904266, -0.991786778, -5.5129048e-009, 0.99178654, -0.127904281, 1, 2.05938e-009, -1.39090766e-008 ), 0.3)
  5640. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(10)) * CFrame.new(1, 0, 0), 0.15)
  5641. end
  5642. attack = false
  5643. end
  5644.  
  5645. function attackfour()
  5646. attack = true
  5647. for i = 0, 1, 0.1 do
  5648. swait()
  5649. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5650. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5651. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5652. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5653. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5654. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5655. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.99999994, 5.96046448e-008, 7.4505806e-009, -1.49011612e-008, -1.49011612e-008, 1, -5.96046448e-008, 0.99999994, -1.49011612e-008 ), 0.3)
  5656. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 2.60770285e-008, -0.5, 2.98023117e-008, -1, -5.96046448e-008, 1.11758709e-008, -1.49011612e-008, 1.49011612e-008, 1, 5.96046448e-008, 0.99999994, 1.49011612e-008 ), 0.3)
  5657. RW.C1 = clerp(RW.C1, CFrame.new( -0.500000119, 0.5, 1.1920929e-007, -0.688166916, 0.112545945, 0.71677047, -0.725541472, -0.112246327, -0.678962886, 0.00404040329, -0.98728627, 0.158900917 ), 0.3)
  5658. LW.C1 = clerp(LW.C1, CFrame.new( 0.483264178, 1.22959566, 0.158664614, 0.836899102, 0.415833056, -0.355924815, 0.318746448, 0.158376575, 0.934514463, 0.444972068, -0.895544529, 6.06175519e-008 ), 0.3)
  5659. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.999999881, 7.77481463e-015, -4.33191012e-008, 0.133671939, 0.991025627, 5.84298476e-009, 0.991025627, -0.133671939, -1, 6.69387374e-016, -4.37113918e-008 ), 0.3)
  5660. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999464, 0.99999994, -9.39192191e-008, -7.34115559e-008, -0.127904266, -0.991786778, -5.5129048e-009, 0.99178654, -0.127904281, 1, 2.05938e-009, -1.39090766e-008 ), 0.3)
  5661. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(-90), math.rad(-10)), 0.15)
  5662. end
  5663. spini = true
  5664. Sound.Create("199145095", handle, 1, 1)
  5665. coroutine.resume(coroutine.create(function()
  5666. sawspin()
  5667. end))
  5668. MagniDamage(hitbox, math.random(9, 13), 6, 10, 4, "Normal")
  5669. for i = 0, 1, 0.07 do
  5670. swait()
  5671. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5672. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5673. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5674. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5675. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5676. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5677. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.99999994, 5.96046448e-008, 7.4505806e-009, -1.49011612e-008, -1.49011612e-008, 1, -5.96046448e-008, 0.99999994, -1.49011612e-008 ), 0.3)
  5678. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 3.91155375e-008, -0.5, 4.47034587e-008, -1, -5.96046448e-008, 1.11758709e-008, -1.49011612e-008, 1.49011612e-008, 1, 5.96046448e-008, 0.99999994, 1.49011612e-008 ), 0.3)
  5679. RW.C1 = clerp(RW.C1, CFrame.new( 0.156656057, 1.22157562, 1.1920929e-007, -0.638986647, -0.104437999, -0.762094975, 0.769000292, -0.110298745, -0.629660845, -0.0182975437, -0.988396108, 0.150792256 ), 0.3)
  5680. LW.C1 = clerp(LW.C1, CFrame.new( 0.6948663, 1.11359239, 0.13447535, 0.50782454, -0.28052181, -0.81450671, 0.843705058, -0.0290146545, 0.536021948, -0.17399843, -0.959409118, 0.221943483 ), 0.3)
  5681. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 0.999999881, 1.2019976e-014, -4.33191012e-008, 0.133671939, 0.991025627, 5.84298476e-009, 0.991025627, -0.133671939, -1, 8.8817842e-016, -4.37113918e-008 ), 0.3)
  5682. LH.C1 = clerp(LH.C1, CFrame.new( -0.499999166, 1, -1.29702968e-007, -7.34115559e-008, -0.127904266, -0.991786778, -5.5129048e-009, 0.99178654, -0.127904281, 1, 2.05937978e-009, -1.39090766e-008 ), 0.3)LH.C1 = clerp(LH.C1, CFrame.new( -0.499999166, 1, -1.29702968e-007, -7.34115559e-008, -0.127904266, -0.991786778, -5.5129048e-009, 0.99178654, -0.127904281, 1, 2.05937978e-009, -1.39090766e-008 ), 0.3)
  5683. end
  5684. spini = false
  5685. attack = false
  5686. end
  5687.  
  5688. Moves = {
  5689. ["1"] = {Activate = function()
  5690. print("gg")
  5691. end};
  5692. ["2"] = {Activate = function()
  5693. attack = true
  5694. hit = nil
  5695. omghi = hitbox.Touched:connect(function(ducky)
  5696. if ducky == (hitbox or m or handle) then
  5697. return
  5698. end
  5699. if ducky.Parent:FindFirstChild("Humanoid") then
  5700. hit = ducky.Parent
  5701. elseif ducky.Parent.Parent:FindFirstChild("Humanoid") then
  5702. hit = ducky.Parent.Parent
  5703. elseif ducky:FindFirstChild("Humanoid") then
  5704. hit = ducky
  5705. end
  5706. end)
  5707. for i = 1,30 do
  5708. swait()
  5709. MagniDamage(hitbox, 3, 5, 8, 0, "Normal")
  5710. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5711. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5712. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5713. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5714. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5715. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5716. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.538371325, 0.842707753, 0, 0, 0, 1, 0.842707753, 0.538371325, 0 ), 0.3)
  5717. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.637598336, -0.770368993, 0, 0, 0, 1, -0.770368993, 0.637598336, 0 ), 0.3)
  5718. RW.C1 = clerp(RW.C1, CFrame.new( -0.5, 0.49999994, 0, 0.741837621, -0.0979979038, 0.663380325, -0.66402024, 0.030677706, 0.747085094, -0.0935637504, -0.994713724, -0.042314712 ), 0.3)
  5719. LW.C1 = clerp(LW.C1, CFrame.new( 0.5, 0.5, 1.49011612e-008, -0.580016732, -0.279476941, -0.765162289, -1.49966315e-008, 0.939305127, -0.343082935, 0.81460464, -0.198993817, -0.544812679 ), 0.3)
  5720. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5721. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5722. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(-90)) * CFrame.new(-0.2, 0, 0), 0.15)
  5723. end
  5724. RootPart.Velocity = RootPart.CFrame.lookVector * 100
  5725. for i = 1,30 do
  5726. swait()
  5727. MagniDamage(hitbox, 3, 7, 8, math.random(5, 10), "Normal")
  5728. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5729. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5730. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5731. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5732. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5733. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5734. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.867466033, -0.497496426, 0, 0, 0, 1, -0.497496426, 0.867466033, 0 ), 0.3)
  5735. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.854746342, 0.519046009, 0, 0, 0, 1, 0.519046009, 0.854746342, 0 ), 0.3)
  5736. RW.C1 = clerp(RW.C1, CFrame.new( -0.500000119, 0.5, 0, -0.537511051, 0.0146924714, 0.8431288, -0.838050008, 0.101630911, -0.5360443, -0.0935637504, -0.994713724, -0.042314712 ), 0.3)
  5737. LW.C1 = clerp(LW.C1, CFrame.new( 0.5, 0.5, 1.49011612e-008, -0.580016732, -0.279476941, -0.765162289, -1.49966315e-008, 0.939305127, -0.343082935, 0.81460464, -0.198993817, -0.544812679 ), 0.3)
  5738. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5739. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5740. end
  5741. omghi:disconnect()
  5742. if hit ~= nil then
  5743. local GWeld = Instance.new("Weld", hitbox)
  5744. GWeld.Part0 = hit.Torso
  5745. GWeld.Part1 = hitbox
  5746. GWeld.C0 = CFrame.new(0,0,-2) * CFrame.Angles(3.2,0,0)
  5747. hit.Humanoid.PlatformStand = true
  5748. for i = 1,100 do
  5749. swait()
  5750. MagniDamage(hitbox, 3, 7, 8, math.random(5, 10), "Normal")
  5751. GWeld.C0 = clerp(GWeld.C0, CFrame.new(0,0,2) * CFrame.Angles(3.2,0,0), 0.01)
  5752. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5753. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  5754. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5755. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5756. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5757. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5758. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.867466033, -0.497496426, 0, 0, 0, 1, -0.497496426, 0.867466033, 0 ), 0.3)
  5759. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.854746342, 0.519046009, 0, 0, 0, 1, 0.519046009, 0.854746342, 0 ), 0.3)
  5760. RW.C1 = clerp(RW.C1, CFrame.new( -0.500000119, 0.5, 0, -0.537511051, 0.0146924714, 0.8431288, -0.838050008, 0.101630911, -0.5360443, -0.0935637504, -0.994713724, -0.042314712 ), 0.3)
  5761. LW.C1 = clerp(LW.C1, CFrame.new( 0.5, 0.5, 1.49011612e-008, -0.580016732, -0.279476941, -0.765162289, -1.49966315e-008, 0.939305127, -0.343082935, 0.81460464, -0.198993817, -0.544812679 ), 0.3)
  5762. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.37113883e-008, 0, 1, 0, 1, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5763. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -4.37113883e-008, 0, -1, 0, 1, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5764. end
  5765. hit.Humanoid.PlatformStand = false
  5766. GWeld:Remove()
  5767. end
  5768. attack = false
  5769. end};
  5770. ["3"] = {Activate = function()
  5771. attack = true
  5772. spini = true
  5773. coroutine.resume(coroutine.create(function()
  5774. sawspin()
  5775. end))
  5776. RootPart.Velocity = RootPart.CFrame.lookVector * 50
  5777. Sound.Create("199145095", handle, 1, 1)
  5778. for i = 1, 4 do
  5779. MagniDamage(hitbox, math.random(8, 12), 6, 10, 4, "Normal")
  5780. RootPart.Velocity = RootPart.CFrame.lookVector * 80
  5781. Sound.Create("199145095", handle, 1, 1)
  5782. Humanoid.WalkSpeed = 0
  5783. for d = 0, 1, 0.02 do
  5784. game:GetService("RunService").RenderStepped:wait()
  5785. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ) * CFrame.Angles(0, 0, -8 * d), 0.1)
  5786. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5787. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.1)
  5788. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.1)
  5789. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.1)
  5790. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.1)
  5791. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5792. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5793. RW.C1 = clerp(RW.C1, CFrame.new( -0.5, 0.5, 0, 0.715746701, -0.0714529753, 0.694694936, -0.691067576, 0.0709123611, 0.719303131, -0.100658812, -0.994920015, 0.00137645565 ), 0.1)
  5794. LW.C1 = clerp(LW.C1, CFrame.new( 0.49999997, 0.5, 5.96046448e-008, 0.744824886, 0.0383417979, -0.666157544, 0.661948383, 0.0832616314, 0.744910717, 0.0840265751, -0.995789766, 0.0366350487 ), 0.1)
  5795. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -0.0199853871, 0.125742108, 0.991861641, -0.155691415, 0.979566097, -0.127320424, -0.987603545, -0.156968877, -4.31695213e-008 ), 0.1)
  5796. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -0.0115595935, -0.0885370672, -0.996005833, 0.128945827, 0.987623692, -0.0892885029, 0.991584241, -0.129462928, -4.33435225e-008 ), 0.1)
  5797. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(90), math.rad(30), math.rad(-90)) * CFrame.new(0, 0, 0), 0.15)
  5798. end
  5799. end
  5800. Humanoid.WalkSpeed = 16
  5801. spini = false
  5802. attack = false
  5803. end};
  5804. ["4"] = {Activate = function()
  5805. attack = true
  5806. Humanoid.WalkSpeed = 0
  5807. Humanoid.Jump = true
  5808. RootPart.Velocity = Vector3.new(0, 250, 0)
  5809. Sound.Create("199145327", RootPart, 1, 1)
  5810. for d = 0, 1, 0.1 do
  5811. game:GetService("RunService").RenderStepped:wait()
  5812. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5813. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5814. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.1)
  5815. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.1)
  5816. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.1)
  5817. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.1)
  5818. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5819. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5820. RW.C1 = clerp(RW.C1, CFrame.new( -0.5, 0.5, 0, 0.715746701, -0.0714529753, 0.694694936, -0.691067576, 0.0709123611, 0.719303131, -0.100658812, -0.994920015, 0.00137645565 ), 0.1)
  5821. LW.C1 = clerp(LW.C1, CFrame.new( 0.49999997, 0.5, 5.96046448e-008, 0.744824886, 0.0383417979, -0.666157544, 0.661948383, 0.0832616314, 0.744910717, 0.0840265751, -0.995789766, 0.0366350487 ), 0.1)
  5822. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -0.0199853871, 0.125742108, 0.991861641, -0.155691415, 0.979566097, -0.127320424, -0.987603545, -0.156968877, -4.31695213e-008 ), 0.1)
  5823. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -0.0115595935, -0.0885370672, -0.996005833, 0.128945827, 0.987623692, -0.0892885029, 0.991584241, -0.129462928, -4.33435225e-008 ), 0.1)
  5824. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(30), math.rad(0)) * CFrame.new(0, 0, 0), 0.15)
  5825. end
  5826. while Anim ~= "Idle" do
  5827. swait()
  5828. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5829. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5830. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.1)
  5831. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.1)
  5832. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.1)
  5833. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.1)
  5834. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5835. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.1)
  5836. RW.C1 = clerp(RW.C1, CFrame.new( -0.5, 0.5, 0, 0.715746701, -0.0714529753, 0.694694936, -0.691067576, 0.0709123611, 0.719303131, -0.100658812, -0.994920015, 0.00137645565 ), 0.1)
  5837. LW.C1 = clerp(LW.C1, CFrame.new( 0.49999997, 0.5, 5.96046448e-008, 0.744824886, 0.0383417979, -0.666157544, 0.661948383, 0.0832616314, 0.744910717, 0.0840265751, -0.995789766, 0.0366350487 ), 0.1)
  5838. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -0.0199853871, 0.125742108, 0.991861641, -0.155691415, 0.979566097, -0.127320424, -0.987603545, -0.156968877, -4.31695213e-008 ), 0.1)
  5839. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -0.0115595935, -0.0885370672, -0.996005833, 0.128945827, 0.987623692, -0.0892885029, 0.991584241, -0.129462928, -4.33435225e-008 ), 0.1)
  5840. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(-60), math.rad(0), math.rad(180)) * CFrame.new(0, 0.5, -0.5), 0.15)
  5841. end
  5842. hitf, posf = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  5843. while hitf == nil do
  5844. swait()
  5845. hitf, posf = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  5846. end
  5847. Effects.Block.Create(hitf.BrickColor, CFrame.new(posf), 50, 50, 50, 2, 2, 2, 0.05, 1)
  5848. Effects.Ring.Create(hitf.BrickColor, CFrame.new(posf), 100, 5, 100, 5, 0, 5, 0.05)
  5849. Effects.Wave.Create(hitf.BrickColor, CFrame.new(posf), 15, 1, 15, 5, 0, 5, 0.05)
  5850. Sound.Create("203691653", RootPart, 1, 1)
  5851. for i = 1, 10 do
  5852. swait()
  5853. MagniDamage(hitbox, 15, 12, 15, 20, "Normal")
  5854. end
  5855. --Create = function(brickcolor, cframe, x1, y1, z1, x3, y3, z3, delay, Type)
  5856. Humanoid.WalkSpeed = 16
  5857. attack = false
  5858. end};
  5859. ["Startup"] = {Activate = function()
  5860. attack = true
  5861. for i = 1, #prts do
  5862. Effects.Block.Create(prts[i].BrickColor, prts[i].CFrame, 1, 1, 1, 0.1, 0.1, 0.1, 0.2, 1)
  5863. prts[i].Transparency = 1
  5864. end
  5865. datfacetho = Head:FindFirstChild("face")
  5866. if datfacetho and datfacetho.Transparency <= 0 then
  5867. for x_o = 0, 1, 0.1 do
  5868. swait()
  5869. datfacetho.Transparency = datfacetho.Transparency + 0.1
  5870. end
  5871. end
  5872. handleweld.C1, handleweld.Part1 = CFrame.Angles(0, 0, math.rad(-90)) * CFrame.new(0, 0, -5), RootPart
  5873. Humanoid.WalkSpeed = 0
  5874. for i = 0, 1, 0.05 do
  5875. swait(0.8)
  5876. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0 ), 0.3)
  5877. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0 ), 0.3)
  5878. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5879. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5880. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5881. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5882. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0.290081799, 0.957001865, 0, 0.957001865, -0.290081799 ), 0.3)
  5883. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -1, 0, 0, 0, 0.462817848, 0.88645339, 0, 0.88645339, -0.462817848 ), 0.3)
  5884. RW.C1 = clerp(RW.C1, CFrame.new( -0.0264986753, 0.979119658, 0, 4.99727926e-010, 0.999934673, -0.0114324428, 4.37085319e-008, -0.0114324428, -0.999934673, -0.99999994, 0, -4.37113847e-008 ), 0.3)
  5885. LW.C1 = clerp(LW.C1, CFrame.new( 0.0453874469, 0.98949337, 0, 6.40334619e-010, -0.999892712, 0.014649149, -4.37066987e-008, -0.014649149, -0.999892712, 1, 0, -4.37113883e-008 ), 0.3)
  5886. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.37113883e-008, 0, 1, 0.27704668, 0.960856438, 1.21100951e-008, -0.960856438, 0.27704668, -4.20003694e-008 ), 0.3)
  5887. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -4.37113883e-008, 0, -1, -0.279763848, 0.960068822, 1.22288659e-008, 0.960068822, 0.279763848, -4.19659401e-008 ), 0.3)
  5888. end
  5889. for x_b = 0, 1, 0.01 do
  5890. swait()
  5891. end
  5892. for i = 1, #prts do
  5893. swait(0.5)
  5894. Effects.Block.Create(prts[i].BrickColor, prts[i].CFrame, 1, 1, 1, 0.1, 0.1, 0.1, 0.2, 1)
  5895. prts[i].Transparency = 0
  5896. Sound.Create("12222170", handle, 1, 3.1)
  5897. end
  5898. handleweld.Part1, handleweld.C1 = Defaults.Handle.Part1, Defaults.Handle.C1
  5899. Humanoid.WalkSpeed = 16
  5900. attack = false
  5901. datfacetho = Head:FindFirstChild("face")
  5902. if datfacetho and datfacetho.Transparency >= 1 then
  5903. for x_i = 0, 1, 0.1 do
  5904. swait()
  5905. datfacetho.Transparency = datfacetho.Transparency - 0.1
  5906. end
  5907. end
  5908. end}
  5909. }
  5910.  
  5911. eye = Instance.new("Part", Head)
  5912. eye.BrickColor = BrickColor.new("Really red")
  5913. eye.Material = "Neon"
  5914. eye.Name = "eye1"
  5915. eye.FormFactor = 3
  5916. eye.Shape = "Ball"
  5917. eye.Size = Vector3.new(0.37 / 2, 0.37 / 2, 0.1)
  5918. weld = Instance.new("Weld", eye)
  5919. weld.Part0 = eye
  5920. weld.Part1 = Head
  5921. weld.C0 = CFrame.new(0.15, -0.2, 0.60)
  5922. eye.Transparency = 1
  5923.  
  5924. eye2 = eye:clone()
  5925. eye2.Name = "eye2"
  5926. eye2.Parent = Head
  5927. eye2.Weld:Destroy()
  5928. weld2 = Instance.new("Weld", eye2)
  5929. weld2.Part0 = eye2
  5930. weld2.Part1 = Head
  5931. weld2.C0 = CFrame.new(-0.15, -0.2, 0.60)
  5932.  
  5933. local eyeparti = Instance.new("ParticleEmitter", eye2)
  5934. eyeparti.Color = ColorSequence.new(Color3.fromRGB(255, 85, 170), Color3.fromRGB(255, 85, 170))
  5935. eyeparti.Texture = "rbxassetid://242292318"
  5936. eyeparti.Transparency=NumberSequence.new(0.9)
  5937. eyeparti.Size=NumberSequence.new(0.225)
  5938. eyeparti.Acceleration = Vector3.new(45, 30, 0)
  5939. eyeparti.LockedToPart = true
  5940. eyeparti.Lifetime = NumberRange.new(0.25, 0.25)
  5941. eyeparti.Rate = 1000
  5942. eyeparti.EmissionDirection = "Bottom"
  5943. eyeparti.Speed = NumberRange.new(1, 1)
  5944. eyeparti.ZOffset = 2
  5945. eyeparti.Enabled = false
  5946.  
  5947. function Laugh()
  5948. attack = true
  5949. laughing = true
  5950. for eyenum = 1, 2 do
  5951. Head["eye"..eyenum].Transparency = 0
  5952. end
  5953. facee = Head:FindFirstChild("face")
  5954. if facee then
  5955. facee.Parent = nil
  5956. end
  5957. for x_z = 1, #powerprts do
  5958. powerprts[x_z].BrickColor = BrickColor.new("Really red")
  5959. end
  5960. Sound.Create("137473066", Head, 1, 1)
  5961. for i = 1, #prts do
  5962. prts[i].Transparency = 1
  5963. end
  5964. for i = 0, 1, 0.01 do
  5965. swait()
  5966. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0), 0.3)
  5967. Torso.Neck.C0 = clerp(Torso.Neck.C0, NeckCF * CFrame.Angles(math.rad(math.sin(sine / 4)), 0, 0), 0.3)
  5968. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5969. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5970. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  5971. LH.C0 = clerp(LH.C0, CFrame.new( -1, -1, 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  5972. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -1, 0, 0, 0, 0.290081799, 0.957001865, 0, 0.957001865, -0.290081799 ), 0.3)
  5973. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -1, 0, 0, 0, 0.462817848, 0.88645339, 0, 0.88645339, -0.462817848 ), 0.3)
  5974. RW.C1 = clerp(RW.C1, CFrame.new( -0.0264986753, 0.979119658, 0, 4.99727926e-010, 0.999934673, -0.0114324428, 4.37085319e-008, -0.0114324428, -0.999934673, -0.99999994, 0, -4.37113847e-008 ), 0.3)
  5975. LW.C1 = clerp(LW.C1, CFrame.new( 0.0453874469, 0.98949337, 0, 6.40334619e-010, -0.999892712, 0.014649149, -4.37066987e-008, -0.014649149, -0.999892712, 1, 0, -4.37113883e-008 ), 0.3)
  5976. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.37113883e-008, 0, 1, 0.27704668, 0.960856438, 1.21100951e-008, -0.960856438, 0.27704668, -4.20003694e-008 ), 0.3)
  5977. LH.C1 = clerp(LH.C1, CFrame.new( -0.5, 1, 0, -4.37113883e-008, 0, -1, -0.279763848, 0.960068822, 1.22288659e-008, 0.960068822, 0.279763848, -4.19659401e-008 ), 0.3)
  5978. end
  5979. for i = 1, #prts do
  5980. prts[i].Transparency = 0
  5981. end
  5982. eyeparti.Enabled = true
  5983. attack = false
  5984. repeat
  5985. swait(5)
  5986. Effects.Wave.Create(BrickColor.new("Black"), RootPart.CFrame * CFrame.new(0, -2.25, 0), 1, 0.5, 1, 1.5, -0.1, 1.5, 0.1)
  5987. until laughing == false
  5988. if facee then
  5989. facee.Parent = Head
  5990. end
  5991. eyeparti.Enabled = false
  5992. for x_3531A = 1, #powerprts do
  5993. powerprts[x_3531A].BrickColor = BrickColor.new("Toothpaste")
  5994. end
  5995. for eyenum = 1, 2 do
  5996. Head["eye"..eyenum].Transparency = 1
  5997. end
  5998. end
  5999.  
  6000. mouse.Button1Down:connect(function()
  6001. if attack == false and attacktype == 1 then
  6002. attackone()
  6003. end
  6004. if attack == false and attacktype == 2 then
  6005. attacktwo()
  6006. end
  6007. if attack == false and attacktype == 3 then
  6008. attackthree()
  6009. end
  6010. if attack == false and attacktype == 4 then
  6011. attackfour()
  6012. end
  6013. if attacktype >= 4 then
  6014. attacktype = 1
  6015. else
  6016. if attack == false then
  6017. attacktype = attacktype + 1
  6018. end
  6019. end
  6020. end)
  6021.  
  6022. mouse.KeyDown:connect(function(k)
  6023. k = k:upper()
  6024. if attack == true then
  6025. return
  6026. end
  6027. if k == Keys["1"] then
  6028. Moves["1"].Activate()
  6029. elseif k == Keys["2"] then
  6030. Moves["2"].Activate()
  6031. elseif k == Keys["3"] then
  6032. Moves["3"]:Activate()
  6033. elseif k == Keys["4"] then
  6034. Moves["4"].Activate()
  6035. end
  6036. if k == "X" then
  6037. if laughing == false then
  6038. Laugh()
  6039. else
  6040. laughing = false
  6041. end
  6042. end
  6043. end)
  6044.  
  6045. function UpdateEffects()
  6046. if #Effects > 0 then
  6047. for e = 1, #Effects do
  6048. if Effects[e] ~= nil then
  6049. local Thing = Effects[e]
  6050. if Thing ~= nil then
  6051. local Part = Thing[1]
  6052. local Mode = Thing[2]
  6053. local Delay = Thing[3]
  6054. local IncX = Thing[4]
  6055. local IncY = Thing[5]
  6056. local IncZ = Thing[6]
  6057. if Thing[1].Transparency <= 1 then
  6058. if Thing[2] == "Block1" then
  6059. Thing[1].CFrame = Thing[1].CFrame * CFrame.fromEulerAnglesXYZ(math.random(-50, 50), math.random(-50, 50), math.random(-50, 50))
  6060. Mesh = Thing[1].Mesh
  6061. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  6062. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6063. elseif Thing[2] == "Block2" then
  6064. Thing[1].CFrame = Thing[1].CFrame
  6065. Mesh = Thing[7]
  6066. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  6067. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6068. elseif Thing[2] == "Cylinder" then
  6069. Mesh = Thing[1].Mesh
  6070. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  6071. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6072. elseif Thing[2] == "Blood" then
  6073. Mesh = Thing[7]
  6074. Thing[1].CFrame = Thing[1].CFrame * Vector3.new(0, .5, 0)
  6075. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[4], Thing[5], Thing[6])
  6076. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6077. elseif Thing[2] == "Elec" then
  6078. Mesh = Thing[1].Mesh
  6079. Mesh.Scale = Mesh.Scale + Vector3.new(Thing[7], Thing[8], Thing[9])
  6080. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6081. elseif Thing[2] == "Disappear" then
  6082. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6083. elseif Thing[2] == "Shatter" then
  6084. Thing[1].Transparency = Thing[1].Transparency + Thing[3]
  6085. Thing[4] = Thing[4] * CFrame.new(0, Thing[7], 0)
  6086. Thing[1].CFrame = Thing[4] * CFrame.fromEulerAnglesXYZ(Thing[6], 0, 0)
  6087. Thing[6] = Thing[6] + Thing[5]
  6088. end
  6089. else
  6090. Part.Parent = nil
  6091. table.remove(Effects, e)
  6092. end
  6093. end
  6094. end
  6095. end
  6096. end
  6097. end
  6098.  
  6099. game:GetService("RunService").RenderStepped:connect(function()
  6100. swait()
  6101. UpdateEffects()
  6102. end)
  6103.  
  6104. Moves.Startup.Activate()
  6105.  
  6106. while true do
  6107. swait()
  6108. TorsoVel = (RootPart.Velocity * Vector3.new(1, 0, 1)).magnitude
  6109. velocity = RootPart.Velocity.y
  6110. if laughing == false then
  6111. sine = sine + change
  6112. else
  6113. if Anim ~= "Walk" then
  6114. sine = sine + (change * 2)
  6115. else
  6116. sine = sine + change
  6117. end
  6118. end
  6119. local jump_floor, jump_pos = rayCast(RootPart.Position, (CFrame.new(RootPart.Position, RootPart.Position - Vector3.new(0, 1, 0))).lookVector, 4, Character)
  6120. if Humanoid.Health > 0 then
  6121. if RootPart.Velocity.y > 1 and jump_floor == nil then
  6122. Anim = "Jump"
  6123. if attack == false then
  6124. RootJoint.C0 = clerp(RootJoint.C0, RootCF * CFrame.new(0, 0, 0), 0.3)
  6125. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  6126. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5 + 0.1 * math.cos(sine / 8), 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6127. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5 + 0.1 * math.cos(sine / 8), 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6128. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6129. LH.C0 = clerp(LH.C0, CFrame.new( -1, -0.7, -0.2, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6130. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.890687406, 0.454616219, 0, 0, 0, 1, 0.454616219, 0.890687406, 0 ), 0.3)
  6131. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.900841951, -0.43414709, 0, 0, 0, 1, -0.43414709, 0.900841951, 0 ), 0.3)
  6132. RW.C1 = clerp(RW.C1, CFrame.new( -0.505066574, 0.677746892, -0.0768730342, -0.036258392, 0.179834574, 0.983028412, -0.744295061, 0.651551664, -0.146647289, -0.666866004, -0.736980319, 0.110225759 ), 0.3)
  6133. LW.C1 = clerp(LW.C1, CFrame.new( 0.5872311, 0.624969363, -2.98023224e-008, 0.660027921, 0.35178411, -0.663785398, 0.585778058, 0.312210143, 0.747923076, 0.470348001, -0.882481039, -2.05595647e-008 ), 0.3)
  6134. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.34006537e-008, 0.119025029, 0.992891252, 5.20274934e-009, 0.992891252, -0.119025029, -1, 0, -4.37113883e-008 ), 0.3)
  6135. LH.C1 = clerp(LH.C1, CFrame.new( -0.50000006, 1, 0, -0.250425309, -0.0884451047, -0.964087486, -0.0222360361, 0.996081054, -0.0856042951, 0.967880547, 0, -0.251410574 ), 0.3)
  6136. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(70)) * CFrame.new(1, 0, 0), 0.15)
  6137. end
  6138. elseif RootPart.Velocity.y < -1 and jump_floor == nil then
  6139. Anim = "Fall"
  6140. if attack == false then
  6141. RootJoint.C0 = clerp(RootJoint.C0, RootCF * CFrame.new(0, 0, 0), 0.3)
  6142. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  6143. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5 + 0.1 * math.cos(sine / 8), 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6144. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5 + 0.1 * math.cos(sine / 8), 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6145. RH.C0 = clerp(RH.C0, CFrame.new( 1, -1, 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6146. LH.C0 = clerp(LH.C0, CFrame.new( -1, -0.035, -0.5, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6147. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.890687406, 0.454616219, 0, 0, 0, 1, 0.454616219, 0.890687406, 0 ), 0.3)
  6148. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.900841951, -0.43414709, 0, 0, 0, 1, -0.43414709, 0.900841951, 0 ), 0.3)
  6149. RW.C1 = clerp(RW.C1, CFrame.new( -0.505066574, 0.677746892, -0.0768730342, -0.036258392, 0.179834574, 0.983028412, -0.744295061, 0.651551664, -0.146647289, -0.666866004, -0.736980319, 0.110225759 ), 0.3)
  6150. LW.C1 = clerp(LW.C1, CFrame.new( 0.5872311, 0.624969363, -2.98023224e-008, 0.660027921, 0.35178411, -0.663785398, 0.585778058, 0.312210143, 0.747923076, 0.470348001, -0.882481039, -2.05595647e-008 ), 0.3)
  6151. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.34006537e-008, 0.119025029, 0.992891252, 5.20274934e-009, 0.992891252, -0.119025029, -1, 0, -4.37113883e-008 ), 0.3)
  6152. LH.C1 = clerp(LH.C1, CFrame.new( -0.50000006, 1, 0, -0.250425309, -0.0884451047, -0.964087486, -0.0222360361, 0.996081054, -0.0856042951, 0.967880547, 0, -0.251410574 ), 0.3)
  6153. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(30), math.rad(-60), math.rad(-10)), 0.15)
  6154. end
  6155. elseif TorsoVel < 1 and jump_floor ~= nil then
  6156. Anim = "Idle"
  6157. if attack == false then
  6158. change = 1
  6159. RootJoint.C0 = clerp(RootJoint.C0, RootCF * CFrame.new(0, 0, 0 - 0.1 * math.cos(sine / 6)), 0.3)
  6160. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  6161. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5 + 0.1 * math.cos(sine / 8), 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6162. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5 + 0.1 * math.cos(sine / 8), 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6163. RH.C0 = clerp(RH.C0, CFrame.new( 1, -0.9 + 0.1 * math.cos(sine / 6), 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6164. LH.C0 = clerp(LH.C0, CFrame.new( -1, -0.9 + 0.1 * math.cos(sine / 6), 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6165. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.890687406, 0.454616219, 0, 0, 0, 1, 0.454616219, 0.890687406, 0 ), 0.3)
  6166. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.900841951, -0.43414709, 0, 0, 0, 1, -0.43414709, 0.900841951, 0 ), 0.3)
  6167. RW.C1 = clerp(RW.C1, CFrame.new( -0.505066574, 0.677746892, -0.0768730342, -0.036258392, 0.179834574, 0.983028412, -0.744295061, 0.651551664, -0.146647289, -0.666866004, -0.736980319, 0.110225759 ), 0.3)
  6168. LW.C1 = clerp(LW.C1, CFrame.new( 0.5872311, 0.624969363, -2.98023224e-008, 0.660027921, 0.35178411, -0.663785398, 0.585778058, 0.312210143, 0.747923076, 0.470348001, -0.882481039, -2.05595647e-008 ), 0.3)
  6169. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 0, -4.34006537e-008, 0.119025029, 0.992891252, 5.20274934e-009, 0.992891252, -0.119025029, -1, 0, -4.37113883e-008 ), 0.3)
  6170. LH.C1 = clerp(LH.C1, CFrame.new( -0.50000006, 1, 0, -0.250425309, -0.0884451047, -0.964087486, -0.0222360361, 0.996081054, -0.0856042951, 0.967880547, 0, -0.251410574 ), 0.3)
  6171. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(30), math.rad(-60), math.rad(-10)), 0.15)
  6172. end
  6173. elseif TorsoVel > 2 and jump_floor ~= nil then
  6174. Anim = "Walk"
  6175. if attack == false then
  6176. change = 1
  6177. RootJoint.C0 = clerp(RootJoint.C0, CFrame.new( 0, 0 - 0.1 * math.sin(sine / 6), 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  6178. Torso.Neck.C0 = clerp(Torso.Neck.C0, CFrame.new( 0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0 ), 0.3)
  6179. RW.C0 = clerp(RW.C0, CFrame.new( 1, 0.5 + 0.1 * math.sin(sine / 8), 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ), 0.3)
  6180. LW.C0 = clerp(LW.C0, CFrame.new( -1, 0.5 + 0.1 * math.sin(sine / 8), 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ), 0.3)
  6181. RH.C0 = clerp(RH.C0, CFrame.new( 1, -0.9 + 0.1 * math.sin(sine / 6), 0, -4.37113883e-008, 0, 1, -0, 0.99999994, 0, -1, 0, -4.37113883e-008 ) * angles(0, 0, math.rad(0 - 50 * math.cos(sine / 4))), 0.3)
  6182. LH.C0 = clerp(LH.C0, CFrame.new( -1, -0.9 + 0.1 * math.sin(sine / 6), 0, -4.37113883e-008, 0, -1, 0, 0.99999994, 0, 1, 0, -4.37113883e-008 ) * angles(0, 0, math.rad(0 - 50 * math.cos(sine / 4))), 0.3)
  6183. RootJoint.C1 = clerp(RootJoint.C1, CFrame.new( 0, 0, 0, -0.890687406, 0.454616219, 0, -0.0823022127, -0.161247104, 0.983476341, 0.447104305, 0.875970006, 0.181036696 ), 0.3)
  6184. Torso.Neck.C1 = clerp(Torso.Neck.C1, CFrame.new( 0, -0.5, 0, -0.900841951, -0.43414709, 0, 0, 0, 1, -0.43414709, 0.900841951, 0 ), 0.3)
  6185. RW.C1 = clerp(RW.C1, CFrame.new( -0.505066574, 0.677746892, -0.0768731236, -0.036258392, 0.179834574, 0.983028412, -0.744295061, 0.651551664, -0.146647289, -0.666866004, -0.736980319, 0.110225759 ), 0.3)
  6186. LW.C1 = clerp(LW.C1, CFrame.new( 0.510219932, 0.699527144, 0.0747582316, -0.560041845, -0.298493177, -0.772822738, 0.0147734126, 0.929091096, -0.369555712, 0.828332663, -0.218383908, -0.515920162 ), 0.3)
  6187. RH.C1 = clerp(RH.C1, CFrame.new( 0.5, 1, 3.55271368e-015, -4.34006537e-008, 0.119025029, 0.992891252, 5.20274934e-009, 0.992891252, -0.119025029, -1, 0, -4.37113883e-008 ), 0.3)
  6188. LH.C1 = clerp(LH.C1, CFrame.new( -0.49999997, 1, 1.49011612e-008, -0.250425309, -0.0884451047, -0.964087486, -0.0222360361, 0.996081054, -0.0856042951, 0.967880547, 0, -0.251410574 ), 0.3)
  6189. handleweld.C0 = clerp(handleweld.C0, CFrame.Angles(math.rad(0), math.rad(0), math.rad(70)) * CFrame.new(1, 0, 0), 0.15)
  6190. end
  6191. end
  6192. end
  6193. end
Add Comment
Please, Sign In to add comment