Dark_EccentricYT

Untitled

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