Advertisement
sneakydodge123

cafe

Aug 2nd, 2018
270
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 268.93 KB | None | 0 0
  1. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  2. local Player,game,owner = owner,game
  3. local RealPlayer = Player
  4. do
  5. print("FE Compatibility code by Mokiros")
  6. local rp = RealPlayer
  7. script.Parent = rp.Character
  8.  
  9. --RemoteEvent for communicating
  10. local Event = Instance.new("RemoteEvent")
  11. Event.Name = "UserInput_Event"
  12.  
  13. --Fake event to make stuff like Mouse.KeyDown work
  14. local function fakeEvent()
  15. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  16. t.connect = t.Connect
  17. return t
  18. end
  19.  
  20. --Creating fake input objects with fake variables
  21. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent()}
  22. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  23. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  24. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  25. end}
  26. --Merged 2 functions into one by checking amount of arguments
  27. CAS.UnbindAction = CAS.BindAction
  28.  
  29. --This function will trigger the events that have been :Connect()'ed
  30. local function te(self,ev,...)
  31. local t = m[ev]
  32. if t and t._fakeEvent then
  33. for _,f in pairs(t.Functions) do
  34. f(...)
  35. end
  36. end
  37. end
  38. m.TrigEvent = te
  39. UIS.TrigEvent = te
  40.  
  41. Event.OnServerEvent:Connect(function(plr,io)
  42. if plr~=rp then return end
  43. m.Target = io.Target
  44. m.Hit = io.Hit
  45. if not io.isMouse then
  46. local b = io.UserInputState == Enum.UserInputState.Begin
  47. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  48. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  49. end
  50. for _,t in pairs(CAS.Actions) do
  51. for _,k in pairs(t.Keys) do
  52. if k==io.KeyCode then
  53. t.Function(t.Name,io.UserInputState,io)
  54. end
  55. end
  56. end
  57. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  58. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  59. end
  60. end)
  61. Event.Parent = NLS([==[
  62. local Player = game:GetService("Players").LocalPlayer
  63. local Event = script:WaitForChild("UserInput_Event")
  64.  
  65. local Mouse = Player:GetMouse()
  66. local UIS = game:GetService("UserInputService")
  67. local input = function(io,a)
  68. if a then return end
  69. --Since InputObject is a client-side instance, we create and pass table instead
  70. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  71. end
  72. UIS.InputBegan:Connect(input)
  73. UIS.InputEnded:Connect(input)
  74.  
  75. local h,t
  76. --Give the server mouse data 30 times every second, but only if the values changed
  77. --If player is not moving their mouse, client won't fire events
  78. while wait(1/30) do
  79. if h~=Mouse.Hit or t~=Mouse.Target then
  80. h,t=Mouse.Hit,Mouse.Target
  81. Event:FireServer({isMouse=true,Target=t,Hit=h})
  82. end
  83. end]==],Player.Character)
  84.  
  85. ----Sandboxed game object that allows the usage of client-side methods and services
  86. --Real game object
  87. local _rg = game
  88.  
  89. --Metatable for fake service
  90. local fsmt = {
  91. __index = function(self,k)
  92. local s = rawget(self,"_RealService")
  93. if s then return s[k] end
  94. end,
  95. __newindex = function(self,k,v)
  96. local s = rawget(self,"_RealService")
  97. if s then s[k]=v end
  98. end,
  99. __call = function(self,...)
  100. local s = rawget(self,"_RealService")
  101. if s then return s(...) end
  102. end
  103. }
  104. local function FakeService(t,RealService)
  105. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  106. return setmetatable(t,fsmt)
  107. end
  108.  
  109. --Fake game object
  110. local g = {
  111. GetService = function(self,s)
  112. return self[s]
  113. end,
  114. Players = FakeService({
  115. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  116. },"Players"),
  117. UserInputService = FakeService(UIS,"UserInputService"),
  118. ContextActionService = FakeService(CAS,"ContextActionService"),
  119. }
  120. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  121. g.service = g.GetService
  122.  
  123. g.RunService = FakeService({
  124. RenderStepped = _rg:GetService("RunService").Heartbeat,
  125. BindToRenderStep = function(self,name,_,fun)
  126. self._btrs[name] = self.Heartbeat:Connect(fun)
  127. end,
  128. UnbindFromRenderStep = function(self,name)
  129. self._btrs[name]:Disconnect()
  130. end,
  131. },"RunService")
  132.  
  133. setmetatable(g,{
  134. __index=function(self,s)
  135. return _rg:GetService(s) or typeof(_rg[s])=="function"
  136. and function(_,...)return _rg[s](_rg,...)end or _rg[s]
  137. end,
  138. __newindex = fsmt.__newindex,
  139. __call = fsmt.__call
  140. })
  141. --Changing owner to fake player object to support owner:GetMouse()
  142. game,owner = g,g.Players.LocalPlayer
  143. end
  144.  
  145. if (script:FindFirstChild("forCustomRun")~=nil) then
  146. local sc = script["forCustomRun"].Value
  147. assert(loadstring(sc))()
  148. return
  149. elseif (script:FindFirstChild("forCustomRunL")~=nil) then
  150. local locsc = workspace:FindFirstChild("_localrun")
  151. local sc = script["forCustomRunL"]
  152. if (locsc~=nil) then
  153. local loc = locsc:clone()
  154. loc["scrun"].Value = sc.Value
  155. loc.Name = script.Name
  156. for i,v in pairs(script:GetChildren()) do
  157. v:clone().Parent = loc
  158. end
  159. loc.Parent = script.Parent
  160. script:remove()
  161. return
  162. else
  163. assert(loadstring(sc.Value))()
  164. return
  165. end
  166. end
  167. local m = Instance.new("Model")
  168. m.Name = "Model"
  169. m1 = Instance.new("Model")
  170. m1.Name = "Model"
  171. m1.Parent = m
  172. m2 = Instance.new("Model")
  173. m2.Name = "Model"
  174. m2.Parent = m
  175. m3 = Instance.new("Model")
  176. m3.Name = "Model"
  177. m3.Parent = m
  178. m4 = Instance.new("Model")
  179. m4.Name = "Model"
  180. m4.Parent = m
  181. m5 = Instance.new("Model")
  182. m5.Name = "Model"
  183. m5.Parent = m
  184. m6 = Instance.new("Model")
  185. m6.Name = "Model"
  186. m6.Parent = m
  187. m7 = Instance.new("Model")
  188. m7.Name = "Model"
  189. m7.Parent = m
  190. m8 = Instance.new("Model")
  191. m8.Name = "Model"
  192. m8.Parent = m
  193. m9 = Instance.new("Model")
  194. m9.Name = "Model"
  195. m9.Parent = m
  196. m10 = Instance.new("Model")
  197. m10.Name = "Model"
  198. m10.Parent = m
  199. m11 = Instance.new("Model")
  200. m11.Name = "Model"
  201. m11.Parent = m
  202. m12 = Instance.new("Model")
  203. m12.Name = "Model"
  204. m12.Parent = m
  205. m13 = Instance.new("Model")
  206. m13.Name = "Model"
  207. m13.Parent = m
  208. m14 = Instance.new("Model")
  209. m14.Name = "Model"
  210. m14.Parent = m
  211. m15 = Instance.new("Model")
  212. m15.Name = "Model"
  213. m15.Parent = m
  214. m16 = Instance.new("Model")
  215. m16.Name = "Model"
  216. m16.Parent = m
  217. m17 = Instance.new("Model")
  218. m17.Name = "Model"
  219. m17.Parent = m
  220. m18 = Instance.new("Model")
  221. m18.Name = "Model"
  222. m18.Parent = m
  223. m19 = Instance.new("Model")
  224. m19.Name = "Model"
  225. m19.Parent = m
  226. m20 = Instance.new("Model")
  227. m20.Name = "Model"
  228. m20.Parent = m
  229. m21 = Instance.new("Model")
  230. m21.Name = "Model"
  231. m21.Parent = m
  232. m22 = Instance.new("Model")
  233. m22.Name = "Model"
  234. m22.Parent = m
  235. m23 = Instance.new("Model")
  236. m23.Name = "Model"
  237. m23.Parent = m
  238. m24 = Instance.new("Model")
  239. m24.Name = "Model"
  240. m24.Parent = m
  241. m25 = Instance.new("Model")
  242. m25.Name = "Model"
  243. m25.Parent = m
  244. m26 = Instance.new("Model")
  245. m26.Name = "Model"
  246. m26.Parent = m
  247. m27 = Instance.new("Model")
  248. m27.Name = "Model"
  249. m27.Parent = m
  250. m28 = Instance.new("Model")
  251. m28.Name = "Model"
  252. m28.Parent = m
  253. m29 = Instance.new("Model")
  254. m29.Name = "Model"
  255. m29.Parent = m
  256. m30 = Instance.new("Model")
  257. m30.Name = "Model"
  258. m30.Parent = m
  259. m31 = Instance.new("Model")
  260. m31.Name = "Model"
  261. m31.Parent = m
  262. m32 = Instance.new("Model")
  263. m32.Name = "Model"
  264. m32.Parent = m
  265. m33 = Instance.new("Model")
  266. m33.Name = "Model"
  267. m33.Parent = m
  268. m34 = Instance.new("Model")
  269. m34.Name = "Model"
  270. m34.Parent = m
  271. m35 = Instance.new("Model")
  272. m35.Name = "Model"
  273. m35.Parent = m
  274. m36 = Instance.new("Model")
  275. m36.Name = "Model"
  276. m36.Parent = m
  277. m37 = Instance.new("Model")
  278. m37.Name = "Model"
  279. m37.Parent = m
  280. m38 = Instance.new("Model")
  281. m38.Name = "Model"
  282. m38.Parent = m
  283. m39 = Instance.new("Model")
  284. m39.Name = "Model"
  285. m39.Parent = m
  286. m40 = Instance.new("Model")
  287. m40.Name = "Model"
  288. m40.Parent = m
  289. m41 = Instance.new("Model")
  290. m41.Name = "Model"
  291. m41.Parent = m
  292. m42 = Instance.new("Model")
  293. m42.Name = "Model"
  294. m42.Parent = m
  295. m43 = Instance.new("Model")
  296. m43.Name = "Model"
  297. m43.Parent = m
  298. m44 = Instance.new("Model")
  299. m44.Name = "Model"
  300. m44.Parent = m
  301. m45 = Instance.new("Model")
  302. m45.Name = "Model"
  303. m45.Parent = m
  304. m46 = Instance.new("Model")
  305. m46.Name = "Model"
  306. m46.Parent = m
  307. m47 = Instance.new("Model")
  308. m47.Name = "Model"
  309. m47.Parent = m
  310. m48 = Instance.new("Model")
  311. m48.Name = "Model"
  312. m48.Parent = m
  313. m49 = Instance.new("Model")
  314. m49.Name = "Model"
  315. m49.Parent = m
  316. p1 = Instance.new("Part", m1)
  317. p1.BrickColor = BrickColor.new("Medium stone grey")
  318. p1.Material = Enum.Material.Concrete
  319. p1.CFrame = CFrame.new(-19.0630493, 29.2020264, 5.91564941, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  320. p1.Anchored = true
  321. p1.FormFactor = Enum.FormFactor.Custom
  322. p1.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  323. p1.BottomSurface = Enum.SurfaceType.Smooth
  324. p1.TopSurface = Enum.SurfaceType.Smooth
  325. p2 = Instance.new("Part", m1)
  326. p2.BrickColor = BrickColor.new("Dark stone grey")
  327. p2.Material = Enum.Material.Concrete
  328. p2.CFrame = CFrame.new(-18.9619751, 29.6020508, 6.01477051, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  329. p2.Anchored = true
  330. p2.FormFactor = Enum.FormFactor.Custom
  331. p2.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  332. p2.BottomSurface = Enum.SurfaceType.Smooth
  333. p2.TopSurface = Enum.SurfaceType.Smooth
  334. p3 = Instance.new("Part", m1)
  335. p3.BrickColor = BrickColor.new("Medium stone grey")
  336. p3.Material = Enum.Material.SmoothPlastic
  337. p3.Reflectance = 0.20000000298023
  338. p3.CFrame = CFrame.new(-19.0517273, 33.2019806, 6.10601807, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  339. p3.Anchored = true
  340. p3.FormFactor = Enum.FormFactor.Custom
  341. p3.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  342. p3.BottomSurface = Enum.SurfaceType.Smooth
  343. p3.TopSurface = Enum.SurfaceType.Smooth
  344. p4 = Instance.new("Part", m1)
  345. p4.BrickColor = BrickColor.new("Dark stone grey")
  346. p4.Material = Enum.Material.Concrete
  347. p4.CFrame = CFrame.new(-18.9517212, 33.2014618, 6.00610352, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  348. p4.Anchored = true
  349. p4.FormFactor = Enum.FormFactor.Custom
  350. p4.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  351. p4.BottomSurface = Enum.SurfaceType.Smooth
  352. p4.TopSurface = Enum.SurfaceType.Smooth
  353. p5 = Instance.new("Part", m1)
  354. p5.BrickColor = BrickColor.new("Dark stone grey")
  355. p5.Material = Enum.Material.Concrete
  356. p5.CFrame = CFrame.new(-19.1414795, 36.8019714, 5.99731445, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  357. p5.Anchored = true
  358. p5.FormFactor = Enum.FormFactor.Custom
  359. p5.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  360. p5.BottomSurface = Enum.SurfaceType.Smooth
  361. p5.TopSurface = Enum.SurfaceType.Smooth
  362. p6 = Instance.new("Part", m1)
  363. p6.BrickColor = BrickColor.new("Medium stone grey")
  364. p6.Material = Enum.Material.Concrete
  365. p6.CFrame = CFrame.new(-19.0393677, 37.5025787, 5.89575195, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  366. p6.Anchored = true
  367. p6.FormFactor = Enum.FormFactor.Custom
  368. p6.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  369. p6.BottomSurface = Enum.SurfaceType.Smooth
  370. p6.TopSurface = Enum.SurfaceType.Smooth
  371. p7 = Instance.new("Part", m1)
  372. p7.BrickColor = BrickColor.new("Dark stone grey")
  373. p7.Material = Enum.Material.Concrete
  374. p7.CFrame = CFrame.new(-21.1517334, 33.2077026, 6.00482178, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  375. p7.Anchored = true
  376. p7.FormFactor = Enum.FormFactor.Custom
  377. p7.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  378. p7.BottomSurface = Enum.SurfaceType.Smooth
  379. p7.TopSurface = Enum.SurfaceType.Smooth
  380. p8 = Instance.new("Part", m1)
  381. p8.BrickColor = BrickColor.new("Medium stone grey")
  382. p8.Material = Enum.Material.Concrete
  383. p8.CFrame = CFrame.new(-21.5516357, 33.2086182, 5.90466309, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  384. p8.Anchored = true
  385. p8.FormFactor = Enum.FormFactor.Custom
  386. p8.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  387. p8.BottomSurface = Enum.SurfaceType.Smooth
  388. p8.TopSurface = Enum.SurfaceType.Smooth
  389. p9 = Instance.new("Part", m1)
  390. p9.BrickColor = BrickColor.new("Dark stone grey")
  391. p9.Material = Enum.Material.Concrete
  392. p9.CFrame = CFrame.new(-16.9514465, 33.2957611, 6.00708008, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  393. p9.Anchored = true
  394. p9.FormFactor = Enum.FormFactor.Custom
  395. p9.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  396. p9.BottomSurface = Enum.SurfaceType.Smooth
  397. p9.TopSurface = Enum.SurfaceType.Smooth
  398. p10 = Instance.new("Part", m1)
  399. p10.BrickColor = BrickColor.new("Medium stone grey")
  400. p10.Material = Enum.Material.Concrete
  401. p10.CFrame = CFrame.new(-16.5516968, 33.1943207, 5.90759277, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  402. p10.Anchored = true
  403. p10.FormFactor = Enum.FormFactor.Custom
  404. p10.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  405. p10.BottomSurface = Enum.SurfaceType.Smooth
  406. p10.TopSurface = Enum.SurfaceType.Smooth
  407. p11 = Instance.new("Part", m2)
  408. p11.BrickColor = BrickColor.new("Medium stone grey")
  409. p11.Material = Enum.Material.Concrete
  410. p11.CFrame = CFrame.new(-3.47900391, 0.37371093, 12.2637329, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  411. p11.Anchored = true
  412. p11.FormFactor = Enum.FormFactor.Custom
  413. p11.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  414. p11.BottomSurface = Enum.SurfaceType.Smooth
  415. p11.TopSurface = Enum.SurfaceType.Smooth
  416. b1 = Instance.new("CylinderMesh", p11)
  417. b1.Name = "Mesh"
  418. p12 = Instance.new("Part", m2)
  419. p12.BrickColor = BrickColor.new("Medium stone grey")
  420. p12.Material = Enum.Material.Concrete
  421. p12.CFrame = CFrame.new(-3.47558594, 1.57376945, 12.2608643, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  422. p12.Anchored = true
  423. p12.FormFactor = Enum.FormFactor.Custom
  424. p12.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
  425. p12.BottomSurface = Enum.SurfaceType.Smooth
  426. p12.TopSurface = Enum.SurfaceType.Smooth
  427. b2 = Instance.new("CylinderMesh", p12)
  428. b2.Name = "Mesh"
  429. p13 = Instance.new("Part", m2)
  430. p13.BrickColor = BrickColor.new("Brick yellow")
  431. p13.Material = Enum.Material.Concrete
  432. p13.CFrame = CFrame.new(-3.46630859, 3.07393813, 12.2872314, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  433. p13.Anchored = true
  434. p13.FormFactor = Enum.FormFactor.Custom
  435. p13.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
  436. p13.BottomSurface = Enum.SurfaceType.Smooth
  437. p13.TopSurface = Enum.SurfaceType.Smooth
  438. p14 = Instance.new("Part", m2)
  439. p14.BrickColor = BrickColor.new("Reddish brown")
  440. p14.Material = Enum.Material.Wood
  441. p14.CFrame = CFrame.new(-3.47134399, 3.07395339, 12.2922363, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  442. p14.Anchored = true
  443. p14.FormFactor = Enum.FormFactor.Custom
  444. p14.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
  445. p14.BottomSurface = Enum.SurfaceType.Smooth
  446. p14.TopSurface = Enum.SurfaceType.Smooth
  447. p15 = Instance.new("Part", m3)
  448. p15.BrickColor = BrickColor.new("Medium stone grey")
  449. p15.Material = Enum.Material.Concrete
  450. p15.CFrame = CFrame.new(-19.104187, 14.8021441, 5.95025635, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  451. p15.Anchored = true
  452. p15.FormFactor = Enum.FormFactor.Custom
  453. p15.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  454. p15.BottomSurface = Enum.SurfaceType.Smooth
  455. p15.TopSurface = Enum.SurfaceType.Smooth
  456. p16 = Instance.new("Part", m3)
  457. p16.BrickColor = BrickColor.new("Dark stone grey")
  458. p16.Material = Enum.Material.Concrete
  459. p16.CFrame = CFrame.new(-19.0031128, 15.2021694, 6.04937744, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  460. p16.Anchored = true
  461. p16.FormFactor = Enum.FormFactor.Custom
  462. p16.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  463. p16.BottomSurface = Enum.SurfaceType.Smooth
  464. p16.TopSurface = Enum.SurfaceType.Smooth
  465. p17 = Instance.new("Part", m3)
  466. p17.BrickColor = BrickColor.new("Medium stone grey")
  467. p17.Material = Enum.Material.SmoothPlastic
  468. p17.Reflectance = 0.20000000298023
  469. p17.CFrame = CFrame.new(-19.0928955, 18.8020096, 6.140625, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  470. p17.Anchored = true
  471. p17.FormFactor = Enum.FormFactor.Custom
  472. p17.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  473. p17.BottomSurface = Enum.SurfaceType.Smooth
  474. p17.TopSurface = Enum.SurfaceType.Smooth
  475. p18 = Instance.new("Part", m3)
  476. p18.BrickColor = BrickColor.new("Dark stone grey")
  477. p18.Material = Enum.Material.Concrete
  478. p18.CFrame = CFrame.new(-18.9928589, 18.8015366, 6.04064941, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  479. p18.Anchored = true
  480. p18.FormFactor = Enum.FormFactor.Custom
  481. p18.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  482. p18.BottomSurface = Enum.SurfaceType.Smooth
  483. p18.TopSurface = Enum.SurfaceType.Smooth
  484. p19 = Instance.new("Part", m3)
  485. p19.BrickColor = BrickColor.new("Dark stone grey")
  486. p19.Material = Enum.Material.Concrete
  487. p19.CFrame = CFrame.new(-19.1825562, 22.4020481, 6.03192139, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  488. p19.Anchored = true
  489. p19.FormFactor = Enum.FormFactor.Custom
  490. p19.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  491. p19.BottomSurface = Enum.SurfaceType.Smooth
  492. p19.TopSurface = Enum.SurfaceType.Smooth
  493. p20 = Instance.new("Part", m3)
  494. p20.BrickColor = BrickColor.new("Medium stone grey")
  495. p20.Material = Enum.Material.Concrete
  496. p20.CFrame = CFrame.new(-19.0804443, 23.1026554, 5.93029785, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  497. p20.Anchored = true
  498. p20.FormFactor = Enum.FormFactor.Custom
  499. p20.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  500. p20.BottomSurface = Enum.SurfaceType.Smooth
  501. p20.TopSurface = Enum.SurfaceType.Smooth
  502. p21 = Instance.new("Part", m3)
  503. p21.BrickColor = BrickColor.new("Dark stone grey")
  504. p21.Material = Enum.Material.Concrete
  505. p21.CFrame = CFrame.new(-21.1928406, 18.8077316, 6.03936768, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  506. p21.Anchored = true
  507. p21.FormFactor = Enum.FormFactor.Custom
  508. p21.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  509. p21.BottomSurface = Enum.SurfaceType.Smooth
  510. p21.TopSurface = Enum.SurfaceType.Smooth
  511. p22 = Instance.new("Part", m3)
  512. p22.BrickColor = BrickColor.new("Medium stone grey")
  513. p22.Material = Enum.Material.Concrete
  514. p22.CFrame = CFrame.new(-21.5927734, 18.8087082, 5.93920898, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  515. p22.Anchored = true
  516. p22.FormFactor = Enum.FormFactor.Custom
  517. p22.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  518. p22.BottomSurface = Enum.SurfaceType.Smooth
  519. p22.TopSurface = Enum.SurfaceType.Smooth
  520. p23 = Instance.new("Part", m3)
  521. p23.BrickColor = BrickColor.new("Dark stone grey")
  522. p23.Material = Enum.Material.Concrete
  523. p23.CFrame = CFrame.new(-16.9926147, 18.8958054, 6.04162598, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  524. p23.Anchored = true
  525. p23.FormFactor = Enum.FormFactor.Custom
  526. p23.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  527. p23.BottomSurface = Enum.SurfaceType.Smooth
  528. p23.TopSurface = Enum.SurfaceType.Smooth
  529. p24 = Instance.new("Part", m3)
  530. p24.BrickColor = BrickColor.new("Medium stone grey")
  531. p24.Material = Enum.Material.Concrete
  532. p24.CFrame = CFrame.new(-16.5927734, 18.7943935, 5.94213867, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  533. p24.Anchored = true
  534. p24.FormFactor = Enum.FormFactor.Custom
  535. p24.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  536. p24.BottomSurface = Enum.SurfaceType.Smooth
  537. p24.TopSurface = Enum.SurfaceType.Smooth
  538. p25 = Instance.new("Part", m4)
  539. p25.BrickColor = BrickColor.new("Medium stone grey")
  540. p25.Material = Enum.Material.Concrete
  541. p25.CFrame = CFrame.new(-8.8631897, 29.1729126, 5.92169189, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  542. p25.Anchored = true
  543. p25.FormFactor = Enum.FormFactor.Custom
  544. p25.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  545. p25.BottomSurface = Enum.SurfaceType.Smooth
  546. p25.TopSurface = Enum.SurfaceType.Smooth
  547. p26 = Instance.new("Part", m4)
  548. p26.BrickColor = BrickColor.new("Dark stone grey")
  549. p26.Material = Enum.Material.Concrete
  550. p26.CFrame = CFrame.new(-8.76211548, 29.5729218, 6.02081299, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  551. p26.Anchored = true
  552. p26.FormFactor = Enum.FormFactor.Custom
  553. p26.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  554. p26.BottomSurface = Enum.SurfaceType.Smooth
  555. p26.TopSurface = Enum.SurfaceType.Smooth
  556. p27 = Instance.new("Part", m4)
  557. p27.BrickColor = BrickColor.new("Medium stone grey")
  558. p27.Material = Enum.Material.SmoothPlastic
  559. p27.Reflectance = 0.20000000298023
  560. p27.CFrame = CFrame.new(-8.85189819, 33.1728516, 6.11206055, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  561. p27.Anchored = true
  562. p27.FormFactor = Enum.FormFactor.Custom
  563. p27.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  564. p27.BottomSurface = Enum.SurfaceType.Smooth
  565. p27.TopSurface = Enum.SurfaceType.Smooth
  566. p28 = Instance.new("Part", m4)
  567. p28.BrickColor = BrickColor.new("Dark stone grey")
  568. p28.Material = Enum.Material.Concrete
  569. p28.CFrame = CFrame.new(-8.75180054, 33.1723633, 6.012146, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  570. p28.Anchored = true
  571. p28.FormFactor = Enum.FormFactor.Custom
  572. p28.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  573. p28.BottomSurface = Enum.SurfaceType.Smooth
  574. p28.TopSurface = Enum.SurfaceType.Smooth
  575. p29 = Instance.new("Part", m4)
  576. p29.BrickColor = BrickColor.new("Dark stone grey")
  577. p29.Material = Enum.Material.Concrete
  578. p29.CFrame = CFrame.new(-8.94152832, 36.7728729, 6.00335693, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  579. p29.Anchored = true
  580. p29.FormFactor = Enum.FormFactor.Custom
  581. p29.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  582. p29.BottomSurface = Enum.SurfaceType.Smooth
  583. p29.TopSurface = Enum.SurfaceType.Smooth
  584. p30 = Instance.new("Part", m4)
  585. p30.BrickColor = BrickColor.new("Medium stone grey")
  586. p30.Material = Enum.Material.Concrete
  587. p30.CFrame = CFrame.new(-8.83947754, 37.473465, 5.90179443, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  588. p30.Anchored = true
  589. p30.FormFactor = Enum.FormFactor.Custom
  590. p30.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  591. p30.BottomSurface = Enum.SurfaceType.Smooth
  592. p30.TopSurface = Enum.SurfaceType.Smooth
  593. p31 = Instance.new("Part", m4)
  594. p31.BrickColor = BrickColor.new("Dark stone grey")
  595. p31.Material = Enum.Material.Concrete
  596. p31.CFrame = CFrame.new(-10.9518127, 33.1785889, 6.01086426, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  597. p31.Anchored = true
  598. p31.FormFactor = Enum.FormFactor.Custom
  599. p31.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  600. p31.BottomSurface = Enum.SurfaceType.Smooth
  601. p31.TopSurface = Enum.SurfaceType.Smooth
  602. p32 = Instance.new("Part", m4)
  603. p32.BrickColor = BrickColor.new("Medium stone grey")
  604. p32.Material = Enum.Material.Concrete
  605. p32.CFrame = CFrame.new(-11.3517151, 33.1795502, 5.91064453, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  606. p32.Anchored = true
  607. p32.FormFactor = Enum.FormFactor.Custom
  608. p32.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  609. p32.BottomSurface = Enum.SurfaceType.Smooth
  610. p32.TopSurface = Enum.SurfaceType.Smooth
  611. p33 = Instance.new("Part", m4)
  612. p33.BrickColor = BrickColor.new("Dark stone grey")
  613. p33.Material = Enum.Material.Concrete
  614. p33.CFrame = CFrame.new(-6.75158691, 33.2666473, 6.01306152, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  615. p33.Anchored = true
  616. p33.FormFactor = Enum.FormFactor.Custom
  617. p33.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  618. p33.BottomSurface = Enum.SurfaceType.Smooth
  619. p33.TopSurface = Enum.SurfaceType.Smooth
  620. p34 = Instance.new("Part", m4)
  621. p34.BrickColor = BrickColor.new("Medium stone grey")
  622. p34.Material = Enum.Material.Concrete
  623. p34.CFrame = CFrame.new(-6.35177612, 33.1652527, 5.91357422, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  624. p34.Anchored = true
  625. p34.FormFactor = Enum.FormFactor.Custom
  626. p34.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  627. p34.BottomSurface = Enum.SurfaceType.Smooth
  628. p34.TopSurface = Enum.SurfaceType.Smooth
  629. p35 = Instance.new("Part", m5)
  630. p35.BrickColor = BrickColor.new("Medium stone grey")
  631. p35.Material = Enum.Material.Concrete
  632. p35.CFrame = CFrame.new(-8.90426636, 14.7730303, 5.95629883, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  633. p35.Anchored = true
  634. p35.FormFactor = Enum.FormFactor.Custom
  635. p35.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  636. p35.BottomSurface = Enum.SurfaceType.Smooth
  637. p35.TopSurface = Enum.SurfaceType.Smooth
  638. p36 = Instance.new("Part", m5)
  639. p36.BrickColor = BrickColor.new("Dark stone grey")
  640. p36.Material = Enum.Material.Concrete
  641. p36.CFrame = CFrame.new(-8.80322266, 15.1730394, 6.05535889, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  642. p36.Anchored = true
  643. p36.FormFactor = Enum.FormFactor.Custom
  644. p36.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  645. p36.BottomSurface = Enum.SurfaceType.Smooth
  646. p36.TopSurface = Enum.SurfaceType.Smooth
  647. p37 = Instance.new("Part", m5)
  648. p37.BrickColor = BrickColor.new("Medium stone grey")
  649. p37.Material = Enum.Material.SmoothPlastic
  650. p37.Reflectance = 0.20000000298023
  651. p37.CFrame = CFrame.new(-8.89303589, 18.7729244, 6.14666748, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  652. p37.Anchored = true
  653. p37.FormFactor = Enum.FormFactor.Custom
  654. p37.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  655. p37.BottomSurface = Enum.SurfaceType.Smooth
  656. p37.TopSurface = Enum.SurfaceType.Smooth
  657. p38 = Instance.new("Part", m5)
  658. p38.BrickColor = BrickColor.new("Dark stone grey")
  659. p38.Material = Enum.Material.Concrete
  660. p38.CFrame = CFrame.new(-8.79293823, 18.7724056, 6.04675293, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  661. p38.Anchored = true
  662. p38.FormFactor = Enum.FormFactor.Custom
  663. p38.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  664. p38.BottomSurface = Enum.SurfaceType.Smooth
  665. p38.TopSurface = Enum.SurfaceType.Smooth
  666. p39 = Instance.new("Part", m5)
  667. p39.BrickColor = BrickColor.new("Dark stone grey")
  668. p39.Material = Enum.Material.Concrete
  669. p39.CFrame = CFrame.new(-8.9826355, 22.3729343, 6.0380249, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  670. p39.Anchored = true
  671. p39.FormFactor = Enum.FormFactor.Custom
  672. p39.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  673. p39.BottomSurface = Enum.SurfaceType.Smooth
  674. p39.TopSurface = Enum.SurfaceType.Smooth
  675. p40 = Instance.new("Part", m5)
  676. p40.BrickColor = BrickColor.new("Medium stone grey")
  677. p40.Material = Enum.Material.Concrete
  678. p40.CFrame = CFrame.new(-8.88061523, 23.0735416, 5.93640137, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  679. p40.Anchored = true
  680. p40.FormFactor = Enum.FormFactor.Custom
  681. p40.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  682. p40.BottomSurface = Enum.SurfaceType.Smooth
  683. p40.TopSurface = Enum.SurfaceType.Smooth
  684. p41 = Instance.new("Part", m5)
  685. p41.BrickColor = BrickColor.new("Dark stone grey")
  686. p41.Material = Enum.Material.Concrete
  687. p41.CFrame = CFrame.new(-10.9928589, 18.7786465, 6.04541016, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  688. p41.Anchored = true
  689. p41.FormFactor = Enum.FormFactor.Custom
  690. p41.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  691. p41.BottomSurface = Enum.SurfaceType.Smooth
  692. p41.TopSurface = Enum.SurfaceType.Smooth
  693. p42 = Instance.new("Part", m5)
  694. p42.BrickColor = BrickColor.new("Medium stone grey")
  695. p42.Material = Enum.Material.Concrete
  696. p42.CFrame = CFrame.new(-11.3928223, 18.7795925, 5.94525146, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  697. p42.Anchored = true
  698. p42.FormFactor = Enum.FormFactor.Custom
  699. p42.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  700. p42.BottomSurface = Enum.SurfaceType.Smooth
  701. p42.TopSurface = Enum.SurfaceType.Smooth
  702. p43 = Instance.new("Part", m5)
  703. p43.BrickColor = BrickColor.new("Dark stone grey")
  704. p43.Material = Enum.Material.Concrete
  705. p43.CFrame = CFrame.new(-6.79266357, 18.8666916, 6.04766846, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  706. p43.Anchored = true
  707. p43.FormFactor = Enum.FormFactor.Custom
  708. p43.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  709. p43.BottomSurface = Enum.SurfaceType.Smooth
  710. p43.TopSurface = Enum.SurfaceType.Smooth
  711. p44 = Instance.new("Part", m5)
  712. p44.BrickColor = BrickColor.new("Medium stone grey")
  713. p44.Material = Enum.Material.Concrete
  714. p44.CFrame = CFrame.new(-6.39291382, 18.7652798, 5.94818115, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  715. p44.Anchored = true
  716. p44.FormFactor = Enum.FormFactor.Custom
  717. p44.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  718. p44.BottomSurface = Enum.SurfaceType.Smooth
  719. p44.TopSurface = Enum.SurfaceType.Smooth
  720. p45 = Instance.new("Part", m6)
  721. p45.BrickColor = BrickColor.new("Dark stone grey")
  722. p45.Material = Enum.Material.DiamondPlate
  723. p45.CFrame = CFrame.new(-3.73986816, 47.5333557, 49.9776001, -0.999992847, 0.00285565224, 0.000583000307, 0.00285412814, 0.999992371, -0.00240225764, -0.000589070667, -0.00240059383, -0.999994338)
  724. p45.Anchored = true
  725. p45.FormFactor = Enum.FormFactor.Custom
  726. p45.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  727. p45.BottomSurface = Enum.SurfaceType.Smooth
  728. p45.TopSurface = Enum.SurfaceType.Smooth
  729. b3 = Instance.new("CylinderMesh", p45)
  730. b3.Name = "Mesh"
  731. p46 = Instance.new("Part", m6)
  732. p46.BrickColor = BrickColor.new("Dark stone grey")
  733. p46.Material = Enum.Material.DiamondPlate
  734. p46.CFrame = CFrame.new(-5.23980713, 47.5376282, 49.9766846, -0.999992847, 0.00285565224, 0.000583000307, 0.00285412814, 0.999992371, -0.00240225764, -0.000589070667, -0.00240059383, -0.999994338)
  735. p46.Anchored = true
  736. p46.FormFactor = Enum.FormFactor.Custom
  737. p46.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  738. p46.BottomSurface = Enum.SurfaceType.Smooth
  739. p46.TopSurface = Enum.SurfaceType.Smooth
  740. b4 = Instance.new("CylinderMesh", p46)
  741. b4.Name = "Mesh"
  742. p47 = Instance.new("Part", m6)
  743. p47.BrickColor = BrickColor.new("Dark stone grey")
  744. p47.Material = Enum.Material.Concrete
  745. p47.CFrame = CFrame.new(-5.24264526, 46.5373383, 49.8791199, -0.000583059678, 0.00285564945, -0.999992669, 0.00240224577, 0.999992251, 0.00285413628, 0.999994338, -0.00240058731, -0.000589011062)
  746. p47.Anchored = true
  747. p47.FormFactor = Enum.FormFactor.Custom
  748. p47.Size = Vector3.new(3.80000019, 0.200000003, 5.19999886)
  749. p47.BottomSurface = Enum.SurfaceType.Smooth
  750. p47.TopSurface = Enum.SurfaceType.Smooth
  751. p48 = Instance.new("Part", m6)
  752. p48.BrickColor = BrickColor.new("Medium stone grey")
  753. p48.Material = Enum.Material.Brick
  754. p48.CFrame = CFrame.new(-5.24664307, 45.1376038, 49.8824768, -0.000583059678, 0.00285564945, -0.999992669, 0.00240224577, 0.999992251, 0.00285413628, 0.999994338, -0.00240058731, -0.000589011062)
  755. p48.Anchored = true
  756. p48.FormFactor = Enum.FormFactor.Custom
  757. p48.Size = Vector3.new(3, 2.60000038, 4.39999962)
  758. p48.BottomSurface = Enum.SurfaceType.Smooth
  759. p48.TopSurface = Enum.SurfaceType.Smooth
  760. p49 = Instance.new("Part", m6)
  761. p49.BrickColor = BrickColor.new("Dark stone grey")
  762. p49.Material = Enum.Material.DiamondPlate
  763. p49.CFrame = CFrame.new(-6.73983765, 47.5419159, 49.9758606, -0.999992847, 0.00285565224, 0.000583000307, 0.00285412814, 0.999992371, -0.00240225764, -0.000589070667, -0.00240059383, -0.999994338)
  764. p49.Anchored = true
  765. p49.FormFactor = Enum.FormFactor.Custom
  766. p49.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  767. p49.BottomSurface = Enum.SurfaceType.Smooth
  768. p49.TopSurface = Enum.SurfaceType.Smooth
  769. b5 = Instance.new("CylinderMesh", p49)
  770. b5.Name = "Mesh"
  771. p50 = Instance.new("Part", m7)
  772. p50.BrickColor = BrickColor.new("Medium stone grey")
  773. p50.Material = Enum.Material.Concrete
  774. p50.CFrame = CFrame.new(0.625030518, 1.66059208, 11.6331787, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  775. p50.Anchored = true
  776. p50.FormFactor = Enum.FormFactor.Custom
  777. p50.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  778. p50.BottomSurface = Enum.SurfaceType.Smooth
  779. p50.TopSurface = Enum.SurfaceType.Smooth
  780. b6 = Instance.new("CylinderMesh", p50)
  781. b6.Name = "Mesh"
  782. p51 = Instance.new("Part", m7)
  783. p51.BrickColor = BrickColor.new("Reddish brown")
  784. p51.Material = Enum.Material.Wood
  785. p51.CFrame = CFrame.new(-0.175079346, 1.76473343, 12.3972778, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  786. p51.Anchored = true
  787. p51.FormFactor = Enum.FormFactor.Custom
  788. p51.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  789. p51.BottomSurface = Enum.SurfaceType.Smooth
  790. p51.TopSurface = Enum.SurfaceType.Smooth
  791. p52 = Instance.new("Part", m7)
  792. p52.BrickColor = BrickColor.new("Medium stone grey")
  793. p52.Material = Enum.Material.Concrete
  794. p52.CFrame = CFrame.new(-0.976928711, 0.965049982, 11.6337891, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  795. p52.Anchored = true
  796. p52.FormFactor = Enum.FormFactor.Custom
  797. p52.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  798. p52.BottomSurface = Enum.SurfaceType.Smooth
  799. p52.TopSurface = Enum.SurfaceType.Smooth
  800. b7 = Instance.new("CylinderMesh", p52)
  801. b7.Name = "Mesh"
  802. p53 = Instance.new("Part", m7)
  803. p53.BrickColor = BrickColor.new("Medium stone grey")
  804. p53.Material = Enum.Material.Concrete
  805. p53.CFrame = CFrame.new(-0.977844238, 0.968895197, 13.2338257, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  806. p53.Anchored = true
  807. p53.FormFactor = Enum.FormFactor.Custom
  808. p53.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  809. p53.BottomSurface = Enum.SurfaceType.Smooth
  810. p53.TopSurface = Enum.SurfaceType.Smooth
  811. b8 = Instance.new("CylinderMesh", p53)
  812. b8.Name = "Mesh"
  813. p54 = Instance.new("Part", m7)
  814. p54.BrickColor = BrickColor.new("Medium stone grey")
  815. p54.Material = Enum.Material.Concrete
  816. p54.CFrame = CFrame.new(0.62411499, 1.66443729, 13.2330933, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  817. p54.Anchored = true
  818. p54.FormFactor = Enum.FormFactor.Custom
  819. p54.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  820. p54.BottomSurface = Enum.SurfaceType.Smooth
  821. p54.TopSurface = Enum.SurfaceType.Smooth
  822. b9 = Instance.new("CylinderMesh", p54)
  823. b9.Name = "Mesh"
  824. p55 = Instance.new("Part", m7)
  825. p55.BrickColor = BrickColor.new("Reddish brown")
  826. p55.Material = Enum.Material.Wood
  827. p55.CFrame = CFrame.new(0.630065918, 3.56247902, 12.3934326, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  828. p55.Anchored = true
  829. p55.FormFactor = Enum.FormFactor.Custom
  830. p55.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  831. p55.BottomSurface = Enum.SurfaceType.Smooth
  832. p55.TopSurface = Enum.SurfaceType.Smooth
  833. p56 = Instance.new("Part", m8)
  834. p56.BrickColor = BrickColor.new("Medium stone grey")
  835. p56.Material = Enum.Material.Concrete
  836. p56.CFrame = CFrame.new(-16.4788208, 0.410835534, 12.2560425, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  837. p56.Anchored = true
  838. p56.FormFactor = Enum.FormFactor.Custom
  839. p56.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  840. p56.BottomSurface = Enum.SurfaceType.Smooth
  841. p56.TopSurface = Enum.SurfaceType.Smooth
  842. b10 = Instance.new("CylinderMesh", p56)
  843. b10.Name = "Mesh"
  844. p57 = Instance.new("Part", m8)
  845. p57.BrickColor = BrickColor.new("Medium stone grey")
  846. p57.Material = Enum.Material.Concrete
  847. p57.CFrame = CFrame.new(-16.4754028, 1.61087894, 12.2531738, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  848. p57.Anchored = true
  849. p57.FormFactor = Enum.FormFactor.Custom
  850. p57.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
  851. p57.BottomSurface = Enum.SurfaceType.Smooth
  852. p57.TopSurface = Enum.SurfaceType.Smooth
  853. b11 = Instance.new("CylinderMesh", p57)
  854. b11.Name = "Mesh"
  855. p58 = Instance.new("Part", m8)
  856. p58.BrickColor = BrickColor.new("Brick yellow")
  857. p58.Material = Enum.Material.Concrete
  858. p58.CFrame = CFrame.new(-16.4661865, 3.11103225, 12.2796021, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  859. p58.Anchored = true
  860. p58.FormFactor = Enum.FormFactor.Custom
  861. p58.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
  862. p58.BottomSurface = Enum.SurfaceType.Smooth
  863. p58.TopSurface = Enum.SurfaceType.Smooth
  864. p59 = Instance.new("Part", m8)
  865. p59.BrickColor = BrickColor.new("Reddish brown")
  866. p59.Material = Enum.Material.Wood
  867. p59.CFrame = CFrame.new(-16.4711609, 3.11106277, 12.2846069, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  868. p59.Anchored = true
  869. p59.FormFactor = Enum.FormFactor.Custom
  870. p59.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
  871. p59.BottomSurface = Enum.SurfaceType.Smooth
  872. p59.TopSurface = Enum.SurfaceType.Smooth
  873. p60 = Instance.new("Part", m9)
  874. p60.BrickColor = BrickColor.new("Medium stone grey")
  875. p60.Material = Enum.Material.Concrete
  876. p60.CFrame = CFrame.new(1.73672485, 29.1426697, 5.92797852, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  877. p60.Anchored = true
  878. p60.FormFactor = Enum.FormFactor.Custom
  879. p60.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  880. p60.BottomSurface = Enum.SurfaceType.Smooth
  881. p60.TopSurface = Enum.SurfaceType.Smooth
  882. p61 = Instance.new("Part", m9)
  883. p61.BrickColor = BrickColor.new("Dark stone grey")
  884. p61.Material = Enum.Material.Concrete
  885. p61.CFrame = CFrame.new(1.83779907, 29.5426636, 6.02703857, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  886. p61.Anchored = true
  887. p61.FormFactor = Enum.FormFactor.Custom
  888. p61.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  889. p61.BottomSurface = Enum.SurfaceType.Smooth
  890. p61.TopSurface = Enum.SurfaceType.Smooth
  891. p62 = Instance.new("Part", m9)
  892. p62.BrickColor = BrickColor.new("Medium stone grey")
  893. p62.Material = Enum.Material.SmoothPlastic
  894. p62.Reflectance = 0.20000000298023
  895. p62.CFrame = CFrame.new(1.74804688, 33.1425934, 6.11828613, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  896. p62.Anchored = true
  897. p62.FormFactor = Enum.FormFactor.Custom
  898. p62.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  899. p62.BottomSurface = Enum.SurfaceType.Smooth
  900. p62.TopSurface = Enum.SurfaceType.Smooth
  901. p63 = Instance.new("Part", m9)
  902. p63.BrickColor = BrickColor.new("Dark stone grey")
  903. p63.Material = Enum.Material.Concrete
  904. p63.CFrame = CFrame.new(1.84811401, 33.1420898, 6.01837158, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  905. p63.Anchored = true
  906. p63.FormFactor = Enum.FormFactor.Custom
  907. p63.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  908. p63.BottomSurface = Enum.SurfaceType.Smooth
  909. p63.TopSurface = Enum.SurfaceType.Smooth
  910. p64 = Instance.new("Part", m9)
  911. p64.BrickColor = BrickColor.new("Dark stone grey")
  912. p64.Material = Enum.Material.Concrete
  913. p64.CFrame = CFrame.new(1.65841675, 36.7425995, 6.00958252, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  914. p64.Anchored = true
  915. p64.FormFactor = Enum.FormFactor.Custom
  916. p64.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  917. p64.BottomSurface = Enum.SurfaceType.Smooth
  918. p64.TopSurface = Enum.SurfaceType.Smooth
  919. p65 = Instance.new("Part", m9)
  920. p65.BrickColor = BrickColor.new("Medium stone grey")
  921. p65.Material = Enum.Material.Concrete
  922. p65.CFrame = CFrame.new(1.76046753, 37.4432068, 5.90802002, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  923. p65.Anchored = true
  924. p65.FormFactor = Enum.FormFactor.Custom
  925. p65.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  926. p65.BottomSurface = Enum.SurfaceType.Smooth
  927. p65.TopSurface = Enum.SurfaceType.Smooth
  928. p66 = Instance.new("Part", m9)
  929. p66.BrickColor = BrickColor.new("Dark stone grey")
  930. p66.Material = Enum.Material.Concrete
  931. p66.CFrame = CFrame.new(-0.351867676, 33.1483307, 6.01708984, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  932. p66.Anchored = true
  933. p66.FormFactor = Enum.FormFactor.Custom
  934. p66.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  935. p66.BottomSurface = Enum.SurfaceType.Smooth
  936. p66.TopSurface = Enum.SurfaceType.Smooth
  937. p67 = Instance.new("Part", m9)
  938. p67.BrickColor = BrickColor.new("Medium stone grey")
  939. p67.Material = Enum.Material.Concrete
  940. p67.CFrame = CFrame.new(-0.751800537, 33.1492462, 5.91693115, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  941. p67.Anchored = true
  942. p67.FormFactor = Enum.FormFactor.Custom
  943. p67.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  944. p67.BottomSurface = Enum.SurfaceType.Smooth
  945. p67.TopSurface = Enum.SurfaceType.Smooth
  946. p68 = Instance.new("Part", m9)
  947. p68.BrickColor = BrickColor.new("Dark stone grey")
  948. p68.Material = Enum.Material.Concrete
  949. p68.CFrame = CFrame.new(3.84835815, 33.2363739, 6.01934814, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  950. p68.Anchored = true
  951. p68.FormFactor = Enum.FormFactor.Custom
  952. p68.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  953. p68.BottomSurface = Enum.SurfaceType.Smooth
  954. p68.TopSurface = Enum.SurfaceType.Smooth
  955. p69 = Instance.new("Part", m9)
  956. p69.BrickColor = BrickColor.new("Medium stone grey")
  957. p69.Material = Enum.Material.Concrete
  958. p69.CFrame = CFrame.new(4.24813843, 33.1349487, 5.9197998, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  959. p69.Anchored = true
  960. p69.FormFactor = Enum.FormFactor.Custom
  961. p69.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  962. p69.BottomSurface = Enum.SurfaceType.Smooth
  963. p69.TopSurface = Enum.SurfaceType.Smooth
  964. p70 = Instance.new("Part", m10)
  965. p70.BrickColor = BrickColor.new("Dusty Rose")
  966. p70.CFrame = CFrame.new(-10.9992371, 13.8369036, 17.4968872, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  967. p70.Anchored = true
  968. p70.FormFactor = Enum.FormFactor.Custom
  969. p70.Size = Vector3.new(1, 1, 1)
  970. p70.BottomSurface = Enum.SurfaceType.Smooth
  971. p70.TopSurface = Enum.SurfaceType.Smooth
  972. b12 = Instance.new("SpecialMesh", p70)
  973. b12.MeshId = "http://www.roblox.com/asset/?id=90782182"
  974. b12.TextureId = ""
  975. b12.MeshType = Enum.MeshType.FileMesh
  976. b12.Name = "Mesh"
  977. b12.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  978. p71 = Instance.new("Part", m10)
  979. p71.BrickColor = BrickColor.new("Pastel yellow")
  980. p71.Material = Enum.Material.SmoothPlastic
  981. p71.CFrame = CFrame.new(-11.0039368, 14.0368547, 17.4963989, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  982. p71.Anchored = true
  983. p71.FormFactor = Enum.FormFactor.Custom
  984. p71.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  985. p71.BottomSurface = Enum.SurfaceType.Smooth
  986. p71.TopSurface = Enum.SurfaceType.Smooth
  987. b13 = Instance.new("SpecialMesh", p71)
  988. b13.MeshType = Enum.MeshType.Sphere
  989. b13.Name = "Mesh"
  990. b13.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  991. x1 = Instance.new("PointLight", p71)
  992. x1.Color = Color3.new(1, 1, 0.498039)
  993. x1.Range = 15
  994. p72 = Instance.new("Part", m10)
  995. p72.BrickColor = BrickColor.new("Dusty Rose")
  996. p72.Material = Enum.Material.SmoothPlastic
  997. p72.CFrame = CFrame.new(-11.004364, 14.056859, 17.4963074, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  998. p72.Anchored = true
  999. p72.FormFactor = Enum.FormFactor.Custom
  1000. p72.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1001. p72.BottomSurface = Enum.SurfaceType.Smooth
  1002. p72.TopSurface = Enum.SurfaceType.Smooth
  1003. b14 = Instance.new("SpecialMesh", p72)
  1004. b14.MeshType = Enum.MeshType.Sphere
  1005. b14.Name = "Mesh"
  1006. b14.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1007. p73 = Instance.new("Part", m10)
  1008. p73.BrickColor = BrickColor.new("Dark stone grey")
  1009. p73.Material = Enum.Material.DiamondPlate
  1010. p73.CFrame = CFrame.new(-11.0223083, 14.396596, 17.4955139, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1011. p73.Anchored = true
  1012. p73.FormFactor = Enum.FormFactor.Custom
  1013. p73.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
  1014. p73.BottomSurface = Enum.SurfaceType.Smooth
  1015. p73.TopSurface = Enum.SurfaceType.Smooth
  1016. b15 = Instance.new("CylinderMesh", p73)
  1017. b15.Name = "Mesh"
  1018. p74 = Instance.new("Part", m11)
  1019. p74.BrickColor = BrickColor.new("Brown")
  1020. p74.CFrame = CFrame.new(-16.4149475, 3.43828773, 11.5186768, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1021. p74.Anchored = true
  1022. p74.FormFactor = Enum.FormFactor.Custom
  1023. p74.Size = Vector3.new(1, 0.200000003, 1)
  1024. p74.BottomSurface = Enum.SurfaceType.Smooth
  1025. p74.TopSurface = Enum.SurfaceType.Smooth
  1026. b16 = Instance.new("SpecialMesh", p74)
  1027. b16.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1028. b16.TextureId = ""
  1029. b16.MeshType = Enum.MeshType.FileMesh
  1030. b16.Name = "Mesh"
  1031. b16.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  1032. p75 = Instance.new("Part", m11)
  1033. p75.BrickColor = BrickColor.new("Dark stone grey")
  1034. p75.Material = Enum.Material.DiamondPlate
  1035. p75.CFrame = CFrame.new(-16.4370728, 4.2980442, 11.5166016, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1036. p75.Anchored = true
  1037. p75.FormFactor = Enum.FormFactor.Custom
  1038. p75.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
  1039. p75.BottomSurface = Enum.SurfaceType.Smooth
  1040. p75.TopSurface = Enum.SurfaceType.Smooth
  1041. b17 = Instance.new("CylinderMesh", p75)
  1042. b17.Name = "Mesh"
  1043. p76 = Instance.new("Part", m11)
  1044. p76.BrickColor = BrickColor.new("Dusty Rose")
  1045. p76.CFrame = CFrame.new(-16.4222717, 4.53806496, 11.5159912, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1046. p76.Anchored = true
  1047. p76.FormFactor = Enum.FormFactor.Custom
  1048. p76.Size = Vector3.new(1, 1, 1)
  1049. p76.BottomSurface = Enum.SurfaceType.Smooth
  1050. p76.TopSurface = Enum.SurfaceType.Smooth
  1051. b18 = Instance.new("SpecialMesh", p76)
  1052. b18.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1053. b18.TextureId = ""
  1054. b18.MeshType = Enum.MeshType.FileMesh
  1055. b18.Name = "Mesh"
  1056. b18.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  1057. p77 = Instance.new("Part", m11)
  1058. p77.BrickColor = BrickColor.new("Pastel yellow")
  1059. p77.Material = Enum.Material.SmoothPlastic
  1060. p77.CFrame = CFrame.new(-16.4268494, 4.73775673, 11.515564, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1061. p77.Anchored = true
  1062. p77.FormFactor = Enum.FormFactor.Custom
  1063. p77.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1064. p77.BottomSurface = Enum.SurfaceType.Smooth
  1065. p77.TopSurface = Enum.SurfaceType.Smooth
  1066. b19 = Instance.new("SpecialMesh", p77)
  1067. b19.MeshType = Enum.MeshType.Sphere
  1068. b19.Name = "Mesh"
  1069. b19.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1070. x2 = Instance.new("PointLight", p77)
  1071. x2.Color = Color3.new(1, 1, 0.498039)
  1072. x2.Range = 15
  1073. p78 = Instance.new("Part", m11)
  1074. p78.BrickColor = BrickColor.new("Dusty Rose")
  1075. p78.Material = Enum.Material.SmoothPlastic
  1076. p78.CFrame = CFrame.new(-16.4273987, 4.75773048, 11.5155029, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1077. p78.Anchored = true
  1078. p78.FormFactor = Enum.FormFactor.Custom
  1079. p78.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1080. p78.BottomSurface = Enum.SurfaceType.Smooth
  1081. p78.TopSurface = Enum.SurfaceType.Smooth
  1082. b20 = Instance.new("SpecialMesh", p78)
  1083. b20.MeshType = Enum.MeshType.Sphere
  1084. b20.Name = "Mesh"
  1085. b20.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1086. p79 = Instance.new("Part", m12)
  1087. p79.BrickColor = BrickColor.new("Medium stone grey")
  1088. p79.Material = Enum.Material.Concrete
  1089. p79.CFrame = CFrame.new(1.69564819, 14.7428179, 5.96258545, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1090. p79.Anchored = true
  1091. p79.FormFactor = Enum.FormFactor.Custom
  1092. p79.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  1093. p79.BottomSurface = Enum.SurfaceType.Smooth
  1094. p79.TopSurface = Enum.SurfaceType.Smooth
  1095. p80 = Instance.new("Part", m12)
  1096. p80.BrickColor = BrickColor.new("Dark stone grey")
  1097. p80.Material = Enum.Material.Concrete
  1098. p80.CFrame = CFrame.new(1.79672241, 15.1427965, 6.06158447, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1099. p80.Anchored = true
  1100. p80.FormFactor = Enum.FormFactor.Custom
  1101. p80.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  1102. p80.BottomSurface = Enum.SurfaceType.Smooth
  1103. p80.TopSurface = Enum.SurfaceType.Smooth
  1104. p81 = Instance.new("Part", m12)
  1105. p81.BrickColor = BrickColor.new("Medium stone grey")
  1106. p81.Material = Enum.Material.SmoothPlastic
  1107. p81.Reflectance = 0.20000000298023
  1108. p81.CFrame = CFrame.new(1.70690918, 18.7426662, 6.15283203, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1109. p81.Anchored = true
  1110. p81.FormFactor = Enum.FormFactor.Custom
  1111. p81.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  1112. p81.BottomSurface = Enum.SurfaceType.Smooth
  1113. p81.TopSurface = Enum.SurfaceType.Smooth
  1114. p82 = Instance.new("Part", m12)
  1115. p82.BrickColor = BrickColor.new("Dark stone grey")
  1116. p82.Material = Enum.Material.Concrete
  1117. p82.CFrame = CFrame.new(1.80700684, 18.7421474, 6.05297852, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1118. p82.Anchored = true
  1119. p82.FormFactor = Enum.FormFactor.Custom
  1120. p82.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  1121. p82.BottomSurface = Enum.SurfaceType.Smooth
  1122. p82.TopSurface = Enum.SurfaceType.Smooth
  1123. p83 = Instance.new("Part", m12)
  1124. p83.BrickColor = BrickColor.new("Dark stone grey")
  1125. p83.Material = Enum.Material.Concrete
  1126. p83.CFrame = CFrame.new(1.61730957, 22.3426762, 6.04418945, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1127. p83.Anchored = true
  1128. p83.FormFactor = Enum.FormFactor.Custom
  1129. p83.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  1130. p83.BottomSurface = Enum.SurfaceType.Smooth
  1131. p83.TopSurface = Enum.SurfaceType.Smooth
  1132. p84 = Instance.new("Part", m12)
  1133. p84.BrickColor = BrickColor.new("Medium stone grey")
  1134. p84.Material = Enum.Material.Concrete
  1135. p84.CFrame = CFrame.new(1.71932983, 23.0432682, 5.94262695, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1136. p84.Anchored = true
  1137. p84.FormFactor = Enum.FormFactor.Custom
  1138. p84.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  1139. p84.BottomSurface = Enum.SurfaceType.Smooth
  1140. p84.TopSurface = Enum.SurfaceType.Smooth
  1141. p85 = Instance.new("Part", m12)
  1142. p85.BrickColor = BrickColor.new("Dark stone grey")
  1143. p85.Material = Enum.Material.Concrete
  1144. p85.CFrame = CFrame.new(-0.392944336, 18.7484035, 6.05163574, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1145. p85.Anchored = true
  1146. p85.FormFactor = Enum.FormFactor.Custom
  1147. p85.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  1148. p85.BottomSurface = Enum.SurfaceType.Smooth
  1149. p85.TopSurface = Enum.SurfaceType.Smooth
  1150. p86 = Instance.new("Part", m12)
  1151. p86.BrickColor = BrickColor.new("Medium stone grey")
  1152. p86.Material = Enum.Material.Concrete
  1153. p86.CFrame = CFrame.new(-0.792938232, 18.7493191, 5.95147705, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1154. p86.Anchored = true
  1155. p86.FormFactor = Enum.FormFactor.Custom
  1156. p86.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  1157. p86.BottomSurface = Enum.SurfaceType.Smooth
  1158. p86.TopSurface = Enum.SurfaceType.Smooth
  1159. p87 = Instance.new("Part", m12)
  1160. p87.BrickColor = BrickColor.new("Dark stone grey")
  1161. p87.Material = Enum.Material.Concrete
  1162. p87.CFrame = CFrame.new(3.80725098, 18.8364487, 6.05389404, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1163. p87.Anchored = true
  1164. p87.FormFactor = Enum.FormFactor.Custom
  1165. p87.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  1166. p87.BottomSurface = Enum.SurfaceType.Smooth
  1167. p87.TopSurface = Enum.SurfaceType.Smooth
  1168. p88 = Instance.new("Part", m12)
  1169. p88.BrickColor = BrickColor.new("Medium stone grey")
  1170. p88.Material = Enum.Material.Concrete
  1171. p88.CFrame = CFrame.new(4.20706177, 18.7350368, 5.95440674, 0.999992847, 0.00285565224, -0.000583000307, -0.00285412814, 0.999992371, 0.00240225764, 0.000589070667, -0.00240059383, 0.999994338)
  1172. p88.Anchored = true
  1173. p88.FormFactor = Enum.FormFactor.Custom
  1174. p88.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  1175. p88.BottomSurface = Enum.SurfaceType.Smooth
  1176. p88.TopSurface = Enum.SurfaceType.Smooth
  1177. p89 = Instance.new("Part", m13)
  1178. p89.BrickColor = BrickColor.new("Medium stone grey")
  1179. p89.Material = Enum.Material.Concrete
  1180. p89.CFrame = CFrame.new(15.6813354, 14.76122, 30.3404236, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1181. p89.Anchored = true
  1182. p89.FormFactor = Enum.FormFactor.Custom
  1183. p89.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  1184. p89.BottomSurface = Enum.SurfaceType.Smooth
  1185. p89.TopSurface = Enum.SurfaceType.Smooth
  1186. p90 = Instance.new("Part", m13)
  1187. p90.BrickColor = BrickColor.new("Dark stone grey")
  1188. p90.Material = Enum.Material.Concrete
  1189. p90.CFrame = CFrame.new(15.5824585, 15.1617632, 30.4393616, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1190. p90.Anchored = true
  1191. p90.FormFactor = Enum.FormFactor.Custom
  1192. p90.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  1193. p90.BottomSurface = Enum.SurfaceType.Smooth
  1194. p90.TopSurface = Enum.SurfaceType.Smooth
  1195. p91 = Instance.new("Part", m13)
  1196. p91.BrickColor = BrickColor.new("Medium stone grey")
  1197. p91.Material = Enum.Material.SmoothPlastic
  1198. p91.Reflectance = 0.20000000298023
  1199. p91.CFrame = CFrame.new(15.4927368, 18.7611904, 30.330658, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1200. p91.Anchored = true
  1201. p91.FormFactor = Enum.FormFactor.Custom
  1202. p91.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  1203. p91.BottomSurface = Enum.SurfaceType.Smooth
  1204. p91.TopSurface = Enum.SurfaceType.Smooth
  1205. p92 = Instance.new("Part", m13)
  1206. p92.BrickColor = BrickColor.new("Dark stone grey")
  1207. p92.Material = Enum.Material.Concrete
  1208. p92.CFrame = CFrame.new(15.5927124, 18.7611446, 30.4307251, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1209. p92.Anchored = true
  1210. p92.FormFactor = Enum.FormFactor.Custom
  1211. p92.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  1212. p92.BottomSurface = Enum.SurfaceType.Smooth
  1213. p92.TopSurface = Enum.SurfaceType.Smooth
  1214. p93 = Instance.new("Part", m13)
  1215. p93.BrickColor = BrickColor.new("Dark stone grey")
  1216. p93.Material = Enum.Material.Concrete
  1217. p93.CFrame = CFrame.new(15.6031189, 22.3606205, 30.222168, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1218. p93.Anchored = true
  1219. p93.FormFactor = Enum.FormFactor.Custom
  1220. p93.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  1221. p93.BottomSurface = Enum.SurfaceType.Smooth
  1222. p93.TopSurface = Enum.SurfaceType.Smooth
  1223. p94 = Instance.new("Part", m13)
  1224. p94.BrickColor = BrickColor.new("Medium stone grey")
  1225. p94.Material = Enum.Material.Concrete
  1226. p94.CFrame = CFrame.new(15.7050476, 23.0617466, 30.3204956, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1227. p94.Anchored = true
  1228. p94.FormFactor = Enum.FormFactor.Custom
  1229. p94.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  1230. p94.BottomSurface = Enum.SurfaceType.Smooth
  1231. p94.TopSurface = Enum.SurfaceType.Smooth
  1232. p95 = Instance.new("Part", m13)
  1233. p95.BrickColor = BrickColor.new("Dark stone grey")
  1234. p95.Material = Enum.Material.Concrete
  1235. p95.CFrame = CFrame.new(15.5940552, 18.7558193, 28.230835, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1236. p95.Anchored = true
  1237. p95.FormFactor = Enum.FormFactor.Custom
  1238. p95.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  1239. p95.BottomSurface = Enum.SurfaceType.Smooth
  1240. p95.TopSurface = Enum.SurfaceType.Smooth
  1241. p96 = Instance.new("Part", m13)
  1242. p96.BrickColor = BrickColor.new("Medium stone grey")
  1243. p96.Material = Enum.Material.Concrete
  1244. p96.CFrame = CFrame.new(15.6942444, 18.7546291, 27.8308411, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1245. p96.Anchored = true
  1246. p96.FormFactor = Enum.FormFactor.Custom
  1247. p96.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  1248. p96.BottomSurface = Enum.SurfaceType.Smooth
  1249. p96.TopSurface = Enum.SurfaceType.Smooth
  1250. p97 = Instance.new("Part", m13)
  1251. p97.BrickColor = BrickColor.new("Dark stone grey")
  1252. p97.Material = Enum.Material.Concrete
  1253. p97.CFrame = CFrame.new(15.5918579, 18.8659744, 32.430481, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1254. p97.Anchored = true
  1255. p97.FormFactor = Enum.FormFactor.Custom
  1256. p97.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  1257. p97.BottomSurface = Enum.SurfaceType.Smooth
  1258. p97.TopSurface = Enum.SurfaceType.Smooth
  1259. p98 = Instance.new("Part", m13)
  1260. p98.BrickColor = BrickColor.new("Medium stone grey")
  1261. p98.Material = Enum.Material.Concrete
  1262. p98.CFrame = CFrame.new(15.6913147, 18.7666073, 32.83078, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1263. p98.Anchored = true
  1264. p98.FormFactor = Enum.FormFactor.Custom
  1265. p98.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  1266. p98.BottomSurface = Enum.SurfaceType.Smooth
  1267. p98.TopSurface = Enum.SurfaceType.Smooth
  1268. p99 = Instance.new("Part", m14)
  1269. p99.BrickColor = BrickColor.new("Medium stone grey")
  1270. p99.Material = Enum.Material.Concrete
  1271. p99.CFrame = CFrame.new(-10.1616821, 0.486488611, 34.4594116, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1272. p99.Anchored = true
  1273. p99.FormFactor = Enum.FormFactor.Custom
  1274. p99.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  1275. p99.BottomSurface = Enum.SurfaceType.Smooth
  1276. p99.TopSurface = Enum.SurfaceType.Smooth
  1277. b21 = Instance.new("CylinderMesh", p99)
  1278. b21.Name = "Mesh"
  1279. p100 = Instance.new("Part", m14)
  1280. p100.BrickColor = BrickColor.new("Medium stone grey")
  1281. p100.Material = Enum.Material.Concrete
  1282. p100.CFrame = CFrame.new(-10.1596985, 1.18550897, 34.4577637, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1283. p100.Anchored = true
  1284. p100.FormFactor = Enum.FormFactor.Custom
  1285. p100.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
  1286. p100.BottomSurface = Enum.SurfaceType.Smooth
  1287. p100.TopSurface = Enum.SurfaceType.Smooth
  1288. b22 = Instance.new("CylinderMesh", p100)
  1289. b22.Name = "Mesh"
  1290. p101 = Instance.new("Part", m14)
  1291. p101.BrickColor = BrickColor.new("Dusty Rose")
  1292. p101.Material = Enum.Material.Concrete
  1293. p101.Reflectance = 0.20000000298023
  1294. p101.CFrame = CFrame.new(-10.1574402, 1.98652017, 34.4558411, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
  1295. p101.Anchored = true
  1296. p101.FormFactor = Enum.FormFactor.Custom
  1297. p101.Size = Vector3.new(2.00001645, 0.399999976, 2)
  1298. p101.BottomSurface = Enum.SurfaceType.Smooth
  1299. p101.TopSurface = Enum.SurfaceType.Smooth
  1300. b23 = Instance.new("CylinderMesh", p101)
  1301. b23.Name = "Mesh"
  1302. p102 = Instance.new("Part", m14)
  1303. p102.BrickColor = BrickColor.new("Brick yellow")
  1304. p102.Material = Enum.Material.Concrete
  1305. p102.CFrame = CFrame.new(-10.1674194, 1.98653543, 34.4558411, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1306. p102.Anchored = true
  1307. p102.FormFactor = Enum.FormFactor.Custom
  1308. p102.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
  1309. p102.BottomSurface = Enum.SurfaceType.Smooth
  1310. p102.TopSurface = Enum.SurfaceType.Smooth
  1311. b24 = Instance.new("CylinderMesh", p102)
  1312. b24.Name = "Mesh"
  1313. p103 = Instance.new("Part", m15)
  1314. p103.BrickColor = BrickColor.new("Dusty Rose")
  1315. p103.CFrame = CFrame.new(-11.217804, 13.9138536, 49.2964172, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1316. p103.Anchored = true
  1317. p103.FormFactor = Enum.FormFactor.Custom
  1318. p103.Size = Vector3.new(1, 1, 1)
  1319. p103.BottomSurface = Enum.SurfaceType.Smooth
  1320. p103.TopSurface = Enum.SurfaceType.Smooth
  1321. b25 = Instance.new("SpecialMesh", p103)
  1322. b25.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1323. b25.TextureId = ""
  1324. b25.MeshType = Enum.MeshType.FileMesh
  1325. b25.Name = "Mesh"
  1326. b25.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  1327. p104 = Instance.new("Part", m15)
  1328. p104.BrickColor = BrickColor.new("Pastel yellow")
  1329. p104.Material = Enum.Material.SmoothPlastic
  1330. p104.CFrame = CFrame.new(-11.2224731, 14.1138048, 49.2959595, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1331. p104.Anchored = true
  1332. p104.FormFactor = Enum.FormFactor.Custom
  1333. p104.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1334. p104.BottomSurface = Enum.SurfaceType.Smooth
  1335. p104.TopSurface = Enum.SurfaceType.Smooth
  1336. b26 = Instance.new("SpecialMesh", p104)
  1337. b26.MeshType = Enum.MeshType.Sphere
  1338. b26.Name = "Mesh"
  1339. b26.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1340. x3 = Instance.new("PointLight", p104)
  1341. x3.Color = Color3.new(1, 1, 0.498039)
  1342. x3.Range = 15
  1343. p105 = Instance.new("Part", m15)
  1344. p105.BrickColor = BrickColor.new("Dusty Rose")
  1345. p105.Material = Enum.Material.SmoothPlastic
  1346. p105.CFrame = CFrame.new(-11.2229614, 14.1338243, 49.295929, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1347. p105.Anchored = true
  1348. p105.FormFactor = Enum.FormFactor.Custom
  1349. p105.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1350. p105.BottomSurface = Enum.SurfaceType.Smooth
  1351. p105.TopSurface = Enum.SurfaceType.Smooth
  1352. b27 = Instance.new("SpecialMesh", p105)
  1353. b27.MeshType = Enum.MeshType.Sphere
  1354. b27.Name = "Mesh"
  1355. b27.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1356. p106 = Instance.new("Part", m15)
  1357. p106.BrickColor = BrickColor.new("Dark stone grey")
  1358. p106.Material = Enum.Material.DiamondPlate
  1359. p106.CFrame = CFrame.new(-11.2408447, 14.4735613, 49.295105, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1360. p106.Anchored = true
  1361. p106.FormFactor = Enum.FormFactor.Custom
  1362. p106.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
  1363. p106.BottomSurface = Enum.SurfaceType.Smooth
  1364. p106.TopSurface = Enum.SurfaceType.Smooth
  1365. b28 = Instance.new("CylinderMesh", p106)
  1366. b28.Name = "Mesh"
  1367. p107 = Instance.new("Part", m16)
  1368. p107.BrickColor = BrickColor.new("Dusty Rose")
  1369. p107.CFrame = CFrame.new(3.20056152, 13.7964067, 17.5052185, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1370. p107.Anchored = true
  1371. p107.FormFactor = Enum.FormFactor.Custom
  1372. p107.Size = Vector3.new(1, 1, 1)
  1373. p107.BottomSurface = Enum.SurfaceType.Smooth
  1374. p107.TopSurface = Enum.SurfaceType.Smooth
  1375. b29 = Instance.new("SpecialMesh", p107)
  1376. b29.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1377. b29.TextureId = ""
  1378. b29.MeshType = Enum.MeshType.FileMesh
  1379. b29.Name = "Mesh"
  1380. b29.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  1381. p108 = Instance.new("Part", m16)
  1382. p108.BrickColor = BrickColor.new("Pastel yellow")
  1383. p108.Material = Enum.Material.SmoothPlastic
  1384. p108.CFrame = CFrame.new(3.19589233, 13.9963427, 17.5047913, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1385. p108.Anchored = true
  1386. p108.FormFactor = Enum.FormFactor.Custom
  1387. p108.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1388. p108.BottomSurface = Enum.SurfaceType.Smooth
  1389. p108.TopSurface = Enum.SurfaceType.Smooth
  1390. b30 = Instance.new("SpecialMesh", p108)
  1391. b30.MeshType = Enum.MeshType.Sphere
  1392. b30.Name = "Mesh"
  1393. b30.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1394. x4 = Instance.new("PointLight", p108)
  1395. x4.Color = Color3.new(1, 1, 0.498039)
  1396. x4.Range = 15
  1397. p109 = Instance.new("Part", m16)
  1398. p109.BrickColor = BrickColor.new("Dusty Rose")
  1399. p109.Material = Enum.Material.SmoothPlastic
  1400. p109.CFrame = CFrame.new(3.19549561, 14.0163317, 17.5046692, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1401. p109.Anchored = true
  1402. p109.FormFactor = Enum.FormFactor.Custom
  1403. p109.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1404. p109.BottomSurface = Enum.SurfaceType.Smooth
  1405. p109.TopSurface = Enum.SurfaceType.Smooth
  1406. b31 = Instance.new("SpecialMesh", p109)
  1407. b31.MeshType = Enum.MeshType.Sphere
  1408. b31.Name = "Mesh"
  1409. b31.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1410. p110 = Instance.new("Part", m16)
  1411. p110.BrickColor = BrickColor.new("Dark stone grey")
  1412. p110.Material = Enum.Material.DiamondPlate
  1413. p110.CFrame = CFrame.new(3.17749023, 14.3560534, 17.5038757, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1414. p110.Anchored = true
  1415. p110.FormFactor = Enum.FormFactor.Custom
  1416. p110.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
  1417. p110.BottomSurface = Enum.SurfaceType.Smooth
  1418. p110.TopSurface = Enum.SurfaceType.Smooth
  1419. b32 = Instance.new("CylinderMesh", p110)
  1420. b32.Name = "Mesh"
  1421. p111 = Instance.new("Part", m17)
  1422. p111.BrickColor = BrickColor.new("Dusty Rose")
  1423. p111.CFrame = CFrame.new(3.18203735, 13.872777, 49.3049622, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1424. p111.Anchored = true
  1425. p111.FormFactor = Enum.FormFactor.Custom
  1426. p111.Size = Vector3.new(1, 1, 1)
  1427. p111.BottomSurface = Enum.SurfaceType.Smooth
  1428. p111.TopSurface = Enum.SurfaceType.Smooth
  1429. b33 = Instance.new("SpecialMesh", p111)
  1430. b33.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1431. b33.TextureId = ""
  1432. b33.MeshType = Enum.MeshType.FileMesh
  1433. b33.Name = "Mesh"
  1434. b33.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  1435. p112 = Instance.new("Part", m17)
  1436. p112.BrickColor = BrickColor.new("Pastel yellow")
  1437. p112.Material = Enum.Material.SmoothPlastic
  1438. p112.CFrame = CFrame.new(3.17739868, 14.0727282, 49.3044434, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1439. p112.Anchored = true
  1440. p112.FormFactor = Enum.FormFactor.Custom
  1441. p112.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1442. p112.BottomSurface = Enum.SurfaceType.Smooth
  1443. p112.TopSurface = Enum.SurfaceType.Smooth
  1444. b34 = Instance.new("SpecialMesh", p112)
  1445. b34.MeshType = Enum.MeshType.Sphere
  1446. b34.Name = "Mesh"
  1447. b34.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1448. x5 = Instance.new("PointLight", p112)
  1449. x5.Color = Color3.new(1, 1, 0.498039)
  1450. x5.Range = 15
  1451. p113 = Instance.new("Part", m17)
  1452. p113.BrickColor = BrickColor.new("Dusty Rose")
  1453. p113.Material = Enum.Material.SmoothPlastic
  1454. p113.CFrame = CFrame.new(3.17694092, 14.0927172, 49.3044128, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1455. p113.Anchored = true
  1456. p113.FormFactor = Enum.FormFactor.Custom
  1457. p113.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1458. p113.BottomSurface = Enum.SurfaceType.Smooth
  1459. p113.TopSurface = Enum.SurfaceType.Smooth
  1460. b35 = Instance.new("SpecialMesh", p113)
  1461. b35.MeshType = Enum.MeshType.Sphere
  1462. b35.Name = "Mesh"
  1463. b35.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1464. p114 = Instance.new("Part", m17)
  1465. p114.BrickColor = BrickColor.new("Dark stone grey")
  1466. p114.Material = Enum.Material.DiamondPlate
  1467. p114.CFrame = CFrame.new(3.15896606, 14.4324541, 49.3035583, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1468. p114.Anchored = true
  1469. p114.FormFactor = Enum.FormFactor.Custom
  1470. p114.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
  1471. p114.BottomSurface = Enum.SurfaceType.Smooth
  1472. p114.TopSurface = Enum.SurfaceType.Smooth
  1473. b36 = Instance.new("CylinderMesh", p114)
  1474. b36.Name = "Mesh"
  1475. p115 = Instance.new("Part", m18)
  1476. p115.BrickColor = BrickColor.new("Dusty Rose")
  1477. p115.CFrame = CFrame.new(3.19155884, 13.8333635, 32.9051208, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1478. p115.Anchored = true
  1479. p115.FormFactor = Enum.FormFactor.Custom
  1480. p115.Size = Vector3.new(1, 1, 1)
  1481. p115.BottomSurface = Enum.SurfaceType.Smooth
  1482. p115.TopSurface = Enum.SurfaceType.Smooth
  1483. b37 = Instance.new("SpecialMesh", p115)
  1484. b37.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1485. b37.TextureId = ""
  1486. b37.MeshType = Enum.MeshType.FileMesh
  1487. b37.Name = "Mesh"
  1488. b37.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  1489. p116 = Instance.new("Part", m18)
  1490. p116.BrickColor = BrickColor.new("Pastel yellow")
  1491. p116.Material = Enum.Material.SmoothPlastic
  1492. p116.CFrame = CFrame.new(3.18692017, 14.0333452, 32.9046936, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1493. p116.Anchored = true
  1494. p116.FormFactor = Enum.FormFactor.Custom
  1495. p116.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1496. p116.BottomSurface = Enum.SurfaceType.Smooth
  1497. p116.TopSurface = Enum.SurfaceType.Smooth
  1498. b38 = Instance.new("SpecialMesh", p116)
  1499. b38.MeshType = Enum.MeshType.Sphere
  1500. b38.Name = "Mesh"
  1501. b38.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1502. x6 = Instance.new("PointLight", p116)
  1503. x6.Color = Color3.new(1, 1, 0.498039)
  1504. x6.Range = 15
  1505. p117 = Instance.new("Part", m18)
  1506. p117.BrickColor = BrickColor.new("Dusty Rose")
  1507. p117.Material = Enum.Material.SmoothPlastic
  1508. p117.CFrame = CFrame.new(3.18652344, 14.0533342, 32.9046326, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1509. p117.Anchored = true
  1510. p117.FormFactor = Enum.FormFactor.Custom
  1511. p117.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1512. p117.BottomSurface = Enum.SurfaceType.Smooth
  1513. p117.TopSurface = Enum.SurfaceType.Smooth
  1514. b39 = Instance.new("SpecialMesh", p117)
  1515. b39.MeshType = Enum.MeshType.Sphere
  1516. b39.Name = "Mesh"
  1517. b39.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1518. p118 = Instance.new("Part", m18)
  1519. p118.BrickColor = BrickColor.new("Dark stone grey")
  1520. p118.Material = Enum.Material.DiamondPlate
  1521. p118.CFrame = CFrame.new(3.16851807, 14.3930712, 32.9037781, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1522. p118.Anchored = true
  1523. p118.FormFactor = Enum.FormFactor.Custom
  1524. p118.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
  1525. p118.BottomSurface = Enum.SurfaceType.Smooth
  1526. p118.TopSurface = Enum.SurfaceType.Smooth
  1527. b40 = Instance.new("CylinderMesh", p118)
  1528. b40.Name = "Mesh"
  1529. p119 = Instance.new("Part", m19)
  1530. p119.BrickColor = BrickColor.new("Medium stone grey")
  1531. p119.Material = Enum.Material.Concrete
  1532. p119.CFrame = CFrame.new(-7.5758667, 1.68769169, 13.1581421, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1533. p119.Anchored = true
  1534. p119.FormFactor = Enum.FormFactor.Custom
  1535. p119.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1536. p119.BottomSurface = Enum.SurfaceType.Smooth
  1537. p119.TopSurface = Enum.SurfaceType.Smooth
  1538. b41 = Instance.new("CylinderMesh", p119)
  1539. b41.Name = "Mesh"
  1540. p120 = Instance.new("Part", m19)
  1541. p120.BrickColor = BrickColor.new("Reddish brown")
  1542. p120.Material = Enum.Material.Wood
  1543. p120.CFrame = CFrame.new(-6.77511597, 1.78356278, 12.3934937, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  1544. p120.Anchored = true
  1545. p120.FormFactor = Enum.FormFactor.Custom
  1546. p120.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  1547. p120.BottomSurface = Enum.SurfaceType.Smooth
  1548. p120.TopSurface = Enum.SurfaceType.Smooth
  1549. p121 = Instance.new("Part", m19)
  1550. p121.BrickColor = BrickColor.new("Medium stone grey")
  1551. p121.Material = Enum.Material.Concrete
  1552. p121.CFrame = CFrame.new(-5.9777832, 0.982994318, 13.1607666, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1553. p121.Anchored = true
  1554. p121.FormFactor = Enum.FormFactor.Custom
  1555. p121.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1556. p121.BottomSurface = Enum.SurfaceType.Smooth
  1557. p121.TopSurface = Enum.SurfaceType.Smooth
  1558. b42 = Instance.new("CylinderMesh", p121)
  1559. b42.Name = "Mesh"
  1560. p122 = Instance.new("Part", m19)
  1561. p122.BrickColor = BrickColor.new("Medium stone grey")
  1562. p122.Material = Enum.Material.Concrete
  1563. p122.CFrame = CFrame.new(-5.97686768, 0.979149103, 11.560791, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1564. p122.Anchored = true
  1565. p122.FormFactor = Enum.FormFactor.Custom
  1566. p122.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1567. p122.BottomSurface = Enum.SurfaceType.Smooth
  1568. p122.TopSurface = Enum.SurfaceType.Smooth
  1569. b43 = Instance.new("CylinderMesh", p122)
  1570. b43.Name = "Mesh"
  1571. p123 = Instance.new("Part", m19)
  1572. p123.BrickColor = BrickColor.new("Medium stone grey")
  1573. p123.Material = Enum.Material.Concrete
  1574. p123.CFrame = CFrame.new(-7.57492065, 1.68383121, 11.5581665, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1575. p123.Anchored = true
  1576. p123.FormFactor = Enum.FormFactor.Custom
  1577. p123.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1578. p123.BottomSurface = Enum.SurfaceType.Smooth
  1579. p123.TopSurface = Enum.SurfaceType.Smooth
  1580. b44 = Instance.new("CylinderMesh", p123)
  1581. b44.Name = "Mesh"
  1582. p124 = Instance.new("Part", m19)
  1583. p124.BrickColor = BrickColor.new("Reddish brown")
  1584. p124.Material = Enum.Material.Wood
  1585. p124.CFrame = CFrame.new(-7.57000732, 3.58590126, 12.3886108, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  1586. p124.Anchored = true
  1587. p124.FormFactor = Enum.FormFactor.Custom
  1588. p124.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  1589. p124.BottomSurface = Enum.SurfaceType.Smooth
  1590. p124.TopSurface = Enum.SurfaceType.Smooth
  1591. p125 = Instance.new("Part", m20)
  1592. p125.BrickColor = BrickColor.new("Brown")
  1593. p125.CFrame = CFrame.new(-13.2314453, 3.69931984, 40.7199707, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1594. p125.Anchored = true
  1595. p125.FormFactor = Enum.FormFactor.Custom
  1596. p125.Size = Vector3.new(1, 0.200000003, 1)
  1597. p125.BottomSurface = Enum.SurfaceType.Smooth
  1598. p125.TopSurface = Enum.SurfaceType.Smooth
  1599. b45 = Instance.new("SpecialMesh", p125)
  1600. b45.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1601. b45.TextureId = ""
  1602. b45.MeshType = Enum.MeshType.FileMesh
  1603. b45.Name = "Mesh"
  1604. b45.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  1605. p126 = Instance.new("Part", m20)
  1606. p126.BrickColor = BrickColor.new("Dark stone grey")
  1607. p126.Material = Enum.Material.DiamondPlate
  1608. p126.CFrame = CFrame.new(-13.2536621, 4.55904579, 40.7178345, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  1609. p126.Anchored = true
  1610. p126.FormFactor = Enum.FormFactor.Custom
  1611. p126.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
  1612. p126.BottomSurface = Enum.SurfaceType.Smooth
  1613. p126.TopSurface = Enum.SurfaceType.Smooth
  1614. b46 = Instance.new("CylinderMesh", p126)
  1615. b46.Name = "Mesh"
  1616. p127 = Instance.new("Part", m20)
  1617. p127.BrickColor = BrickColor.new("Dusty Rose")
  1618. p127.CFrame = CFrame.new(-13.238739, 4.79905128, 40.7172852, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  1619. p127.Anchored = true
  1620. p127.FormFactor = Enum.FormFactor.Custom
  1621. p127.Size = Vector3.new(1, 1, 1)
  1622. p127.BottomSurface = Enum.SurfaceType.Smooth
  1623. p127.TopSurface = Enum.SurfaceType.Smooth
  1624. b47 = Instance.new("SpecialMesh", p127)
  1625. b47.MeshId = "http://www.roblox.com/asset/?id=90782182"
  1626. b47.TextureId = ""
  1627. b47.MeshType = Enum.MeshType.FileMesh
  1628. b47.Name = "Mesh"
  1629. b47.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  1630. p128 = Instance.new("Part", m20)
  1631. p128.BrickColor = BrickColor.new("Pastel yellow")
  1632. p128.Material = Enum.Material.SmoothPlastic
  1633. p128.CFrame = CFrame.new(-13.2434387, 4.9987278, 40.7167969, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1634. p128.Anchored = true
  1635. p128.FormFactor = Enum.FormFactor.Custom
  1636. p128.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1637. p128.BottomSurface = Enum.SurfaceType.Smooth
  1638. p128.TopSurface = Enum.SurfaceType.Smooth
  1639. b48 = Instance.new("SpecialMesh", p128)
  1640. b48.MeshType = Enum.MeshType.Sphere
  1641. b48.Name = "Mesh"
  1642. b48.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1643. x7 = Instance.new("PointLight", p128)
  1644. x7.Color = Color3.new(1, 1, 0.498039)
  1645. x7.Range = 15
  1646. p129 = Instance.new("Part", m20)
  1647. p129.BrickColor = BrickColor.new("Dusty Rose")
  1648. p129.Material = Enum.Material.SmoothPlastic
  1649. p129.CFrame = CFrame.new(-13.2438354, 5.01871681, 40.7167969, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  1650. p129.Anchored = true
  1651. p129.FormFactor = Enum.FormFactor.Custom
  1652. p129.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  1653. p129.BottomSurface = Enum.SurfaceType.Smooth
  1654. p129.TopSurface = Enum.SurfaceType.Smooth
  1655. b49 = Instance.new("SpecialMesh", p129)
  1656. b49.MeshType = Enum.MeshType.Sphere
  1657. b49.Name = "Mesh"
  1658. b49.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  1659. p130 = Instance.new("Part", m21)
  1660. p130.BrickColor = BrickColor.new("Medium stone grey")
  1661. p130.Material = Enum.Material.Concrete
  1662. p130.CFrame = CFrame.new(9.33792114, 0.392723382, 34.5012207, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1663. p130.Anchored = true
  1664. p130.FormFactor = Enum.FormFactor.Custom
  1665. p130.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  1666. p130.BottomSurface = Enum.SurfaceType.Smooth
  1667. p130.TopSurface = Enum.SurfaceType.Smooth
  1668. b50 = Instance.new("CylinderMesh", p130)
  1669. b50.Name = "Mesh"
  1670. p131 = Instance.new("Part", m21)
  1671. p131.BrickColor = BrickColor.new("Medium stone grey")
  1672. p131.Material = Enum.Material.Concrete
  1673. p131.CFrame = CFrame.new(9.34130859, 1.59275138, 34.4983521, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1674. p131.Anchored = true
  1675. p131.FormFactor = Enum.FormFactor.Custom
  1676. p131.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
  1677. p131.BottomSurface = Enum.SurfaceType.Smooth
  1678. p131.TopSurface = Enum.SurfaceType.Smooth
  1679. b51 = Instance.new("CylinderMesh", p131)
  1680. b51.Name = "Mesh"
  1681. p132 = Instance.new("Part", m21)
  1682. p132.BrickColor = BrickColor.new("Brick yellow")
  1683. p132.Material = Enum.Material.Concrete
  1684. p132.CFrame = CFrame.new(9.31567383, 3.09299636, 34.4996948, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1685. p132.Anchored = true
  1686. p132.FormFactor = Enum.FormFactor.Custom
  1687. p132.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
  1688. p132.BottomSurface = Enum.SurfaceType.Smooth
  1689. p132.TopSurface = Enum.SurfaceType.Smooth
  1690. p133 = Instance.new("Part", m21)
  1691. p133.BrickColor = BrickColor.new("Reddish brown")
  1692. p133.Material = Enum.Material.Wood
  1693. p133.CFrame = CFrame.new(9.31066895, 3.09301162, 34.4946899, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1694. p133.Anchored = true
  1695. p133.FormFactor = Enum.FormFactor.Custom
  1696. p133.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
  1697. p133.BottomSurface = Enum.SurfaceType.Smooth
  1698. p133.TopSurface = Enum.SurfaceType.Smooth
  1699. p134 = Instance.new("Part", m22)
  1700. p134.BrickColor = BrickColor.new("Medium stone grey")
  1701. p134.Material = Enum.Material.Concrete
  1702. p134.CFrame = CFrame.new(9.96923828, 1.70089066, 38.5983887, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1703. p134.Anchored = true
  1704. p134.FormFactor = Enum.FormFactor.Custom
  1705. p134.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1706. p134.BottomSurface = Enum.SurfaceType.Smooth
  1707. p134.TopSurface = Enum.SurfaceType.Smooth
  1708. b52 = Instance.new("CylinderMesh", p134)
  1709. b52.Name = "Mesh"
  1710. p135 = Instance.new("Part", m22)
  1711. p135.BrickColor = BrickColor.new("Reddish brown")
  1712. p135.Material = Enum.Material.Wood
  1713. p135.CFrame = CFrame.new(9.20498657, 1.80115628, 37.7976685, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1714. p135.Anchored = true
  1715. p135.FormFactor = Enum.FormFactor.Custom
  1716. p135.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  1717. p135.BottomSurface = Enum.SurfaceType.Smooth
  1718. p135.TopSurface = Enum.SurfaceType.Smooth
  1719. p136 = Instance.new("Part", m22)
  1720. p136.BrickColor = BrickColor.new("Medium stone grey")
  1721. p136.Material = Enum.Material.Concrete
  1722. p136.CFrame = CFrame.new(9.9682312, 0.996895075, 37.0001221, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1723. p136.Anchored = true
  1724. p136.FormFactor = Enum.FormFactor.Custom
  1725. p136.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1726. p136.BottomSurface = Enum.SurfaceType.Smooth
  1727. p136.TopSurface = Enum.SurfaceType.Smooth
  1728. b53 = Instance.new("CylinderMesh", p136)
  1729. b53.Name = "Mesh"
  1730. p137 = Instance.new("Part", m22)
  1731. p137.BrickColor = BrickColor.new("Medium stone grey")
  1732. p137.Material = Enum.Material.Concrete
  1733. p137.CFrame = CFrame.new(8.36816406, 1.00145745, 36.9992065, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1734. p137.Anchored = true
  1735. p137.FormFactor = Enum.FormFactor.Custom
  1736. p137.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1737. p137.BottomSurface = Enum.SurfaceType.Smooth
  1738. p137.TopSurface = Enum.SurfaceType.Smooth
  1739. b54 = Instance.new("CylinderMesh", p137)
  1740. b54.Name = "Mesh"
  1741. p138 = Instance.new("Part", m22)
  1742. p138.BrickColor = BrickColor.new("Medium stone grey")
  1743. p138.Material = Enum.Material.Concrete
  1744. p138.CFrame = CFrame.new(8.36923218, 1.70545304, 38.5974121, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1745. p138.Anchored = true
  1746. p138.FormFactor = Enum.FormFactor.Custom
  1747. p138.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1748. p138.BottomSurface = Enum.SurfaceType.Smooth
  1749. p138.TopSurface = Enum.SurfaceType.Smooth
  1750. b55 = Instance.new("CylinderMesh", p138)
  1751. b55.Name = "Mesh"
  1752. p139 = Instance.new("Part", m22)
  1753. p139.BrickColor = BrickColor.new("Reddish brown")
  1754. p139.Material = Enum.Material.Wood
  1755. p139.CFrame = CFrame.new(9.2097168, 3.60312843, 38.5933533, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1756. p139.Anchored = true
  1757. p139.FormFactor = Enum.FormFactor.Custom
  1758. p139.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  1759. p139.BottomSurface = Enum.SurfaceType.Smooth
  1760. p139.TopSurface = Enum.SurfaceType.Smooth
  1761. p140 = Instance.new("Part", m23)
  1762. p140.BrickColor = BrickColor.new("Medium stone grey")
  1763. p140.Material = Enum.Material.Concrete
  1764. p140.CFrame = CFrame.new(-12.3748474, 1.69771671, 11.6254272, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  1765. p140.Anchored = true
  1766. p140.FormFactor = Enum.FormFactor.Custom
  1767. p140.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1768. p140.BottomSurface = Enum.SurfaceType.Smooth
  1769. p140.TopSurface = Enum.SurfaceType.Smooth
  1770. b56 = Instance.new("CylinderMesh", p140)
  1771. b56.Name = "Mesh"
  1772. p141 = Instance.new("Part", m23)
  1773. p141.BrickColor = BrickColor.new("Reddish brown")
  1774. p141.Material = Enum.Material.Wood
  1775. p141.CFrame = CFrame.new(-13.1749573, 1.80185819, 12.3895874, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1776. p141.Anchored = true
  1777. p141.FormFactor = Enum.FormFactor.Custom
  1778. p141.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  1779. p141.BottomSurface = Enum.SurfaceType.Smooth
  1780. p141.TopSurface = Enum.SurfaceType.Smooth
  1781. p142 = Instance.new("Part", m23)
  1782. p142.BrickColor = BrickColor.new("Medium stone grey")
  1783. p142.Material = Enum.Material.Concrete
  1784. p142.CFrame = CFrame.new(-13.9768066, 1.0021441, 11.6261597, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  1785. p142.Anchored = true
  1786. p142.FormFactor = Enum.FormFactor.Custom
  1787. p142.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1788. p142.BottomSurface = Enum.SurfaceType.Smooth
  1789. p142.TopSurface = Enum.SurfaceType.Smooth
  1790. b57 = Instance.new("CylinderMesh", p142)
  1791. b57.Name = "Mesh"
  1792. p143 = Instance.new("Part", m23)
  1793. p143.BrickColor = BrickColor.new("Medium stone grey")
  1794. p143.Material = Enum.Material.Concrete
  1795. p143.CFrame = CFrame.new(-13.9777222, 1.00597405, 13.2261963, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  1796. p143.Anchored = true
  1797. p143.FormFactor = Enum.FormFactor.Custom
  1798. p143.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1799. p143.BottomSurface = Enum.SurfaceType.Smooth
  1800. p143.TopSurface = Enum.SurfaceType.Smooth
  1801. b58 = Instance.new("CylinderMesh", p143)
  1802. b58.Name = "Mesh"
  1803. p144 = Instance.new("Part", m23)
  1804. p144.BrickColor = BrickColor.new("Medium stone grey")
  1805. p144.Material = Enum.Material.Concrete
  1806. p144.CFrame = CFrame.new(-12.3757324, 1.70154679, 13.2254639, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  1807. p144.Anchored = true
  1808. p144.FormFactor = Enum.FormFactor.Custom
  1809. p144.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1810. p144.BottomSurface = Enum.SurfaceType.Smooth
  1811. p144.TopSurface = Enum.SurfaceType.Smooth
  1812. b59 = Instance.new("CylinderMesh", p144)
  1813. b59.Name = "Mesh"
  1814. p145 = Instance.new("Part", m23)
  1815. p145.BrickColor = BrickColor.new("Reddish brown")
  1816. p145.Material = Enum.Material.Wood
  1817. p145.CFrame = CFrame.new(-12.3698425, 3.59958839, 12.3858032, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1818. p145.Anchored = true
  1819. p145.FormFactor = Enum.FormFactor.Custom
  1820. p145.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  1821. p145.BottomSurface = Enum.SurfaceType.Smooth
  1822. p145.TopSurface = Enum.SurfaceType.Smooth
  1823. p146 = Instance.new("Part", m24)
  1824. p146.BrickColor = BrickColor.new("Medium stone grey")
  1825. p146.Material = Enum.Material.Concrete
  1826. p146.CFrame = CFrame.new(15.6872559, 14.7366991, 20.140564, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1827. p146.Anchored = true
  1828. p146.FormFactor = Enum.FormFactor.Custom
  1829. p146.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  1830. p146.BottomSurface = Enum.SurfaceType.Smooth
  1831. p146.TopSurface = Enum.SurfaceType.Smooth
  1832. p147 = Instance.new("Part", m24)
  1833. p147.BrickColor = BrickColor.new("Dark stone grey")
  1834. p147.Material = Enum.Material.Concrete
  1835. p147.CFrame = CFrame.new(15.5884094, 15.1372728, 20.2394714, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1836. p147.Anchored = true
  1837. p147.FormFactor = Enum.FormFactor.Custom
  1838. p147.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  1839. p147.BottomSurface = Enum.SurfaceType.Smooth
  1840. p147.TopSurface = Enum.SurfaceType.Smooth
  1841. p148 = Instance.new("Part", m24)
  1842. p148.BrickColor = BrickColor.new("Medium stone grey")
  1843. p148.Material = Enum.Material.SmoothPlastic
  1844. p148.Reflectance = 0.20000000298023
  1845. p148.CFrame = CFrame.new(15.4986572, 18.7366543, 20.1307678, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1846. p148.Anchored = true
  1847. p148.FormFactor = Enum.FormFactor.Custom
  1848. p148.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  1849. p148.BottomSurface = Enum.SurfaceType.Smooth
  1850. p148.TopSurface = Enum.SurfaceType.Smooth
  1851. p149 = Instance.new("Part", m24)
  1852. p149.BrickColor = BrickColor.new("Dark stone grey")
  1853. p149.Material = Enum.Material.Concrete
  1854. p149.CFrame = CFrame.new(15.5986938, 18.7366543, 20.2308655, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1855. p149.Anchored = true
  1856. p149.FormFactor = Enum.FormFactor.Custom
  1857. p149.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  1858. p149.BottomSurface = Enum.SurfaceType.Smooth
  1859. p149.TopSurface = Enum.SurfaceType.Smooth
  1860. p150 = Instance.new("Part", m24)
  1861. p150.BrickColor = BrickColor.new("Dark stone grey")
  1862. p150.Material = Enum.Material.Concrete
  1863. p150.CFrame = CFrame.new(15.6091003, 22.3361149, 20.0222778, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1864. p150.Anchored = true
  1865. p150.FormFactor = Enum.FormFactor.Custom
  1866. p150.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  1867. p150.BottomSurface = Enum.SurfaceType.Smooth
  1868. p150.TopSurface = Enum.SurfaceType.Smooth
  1869. p151 = Instance.new("Part", m24)
  1870. p151.BrickColor = BrickColor.new("Medium stone grey")
  1871. p151.Material = Enum.Material.Concrete
  1872. p151.CFrame = CFrame.new(15.7109985, 23.0372257, 20.1206055, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1873. p151.Anchored = true
  1874. p151.FormFactor = Enum.FormFactor.Custom
  1875. p151.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  1876. p151.BottomSurface = Enum.SurfaceType.Smooth
  1877. p151.TopSurface = Enum.SurfaceType.Smooth
  1878. p152 = Instance.new("Part", m24)
  1879. p152.BrickColor = BrickColor.new("Dark stone grey")
  1880. p152.Material = Enum.Material.Concrete
  1881. p152.CFrame = CFrame.new(15.5999146, 18.7312832, 18.0308838, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1882. p152.Anchored = true
  1883. p152.FormFactor = Enum.FormFactor.Custom
  1884. p152.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  1885. p152.BottomSurface = Enum.SurfaceType.Smooth
  1886. p152.TopSurface = Enum.SurfaceType.Smooth
  1887. p153 = Instance.new("Part", m24)
  1888. p153.BrickColor = BrickColor.new("Medium stone grey")
  1889. p153.Material = Enum.Material.Concrete
  1890. p153.CFrame = CFrame.new(15.7001953, 18.7301235, 17.6309814, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1891. p153.Anchored = true
  1892. p153.FormFactor = Enum.FormFactor.Custom
  1893. p153.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  1894. p153.BottomSurface = Enum.SurfaceType.Smooth
  1895. p153.TopSurface = Enum.SurfaceType.Smooth
  1896. p154 = Instance.new("Part", m24)
  1897. p154.BrickColor = BrickColor.new("Dark stone grey")
  1898. p154.Material = Enum.Material.Concrete
  1899. p154.CFrame = CFrame.new(15.5978088, 18.8414841, 22.2305603, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1900. p154.Anchored = true
  1901. p154.FormFactor = Enum.FormFactor.Custom
  1902. p154.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  1903. p154.BottomSurface = Enum.SurfaceType.Smooth
  1904. p154.TopSurface = Enum.SurfaceType.Smooth
  1905. p155 = Instance.new("Part", m24)
  1906. p155.BrickColor = BrickColor.new("Medium stone grey")
  1907. p155.Material = Enum.Material.Concrete
  1908. p155.CFrame = CFrame.new(15.6972046, 18.7420864, 22.6309204, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  1909. p155.Anchored = true
  1910. p155.FormFactor = Enum.FormFactor.Custom
  1911. p155.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  1912. p155.BottomSurface = Enum.SurfaceType.Smooth
  1913. p155.TopSurface = Enum.SurfaceType.Smooth
  1914. p156 = Instance.new("Part", m25)
  1915. p156.BrickColor = BrickColor.new("Medium stone grey")
  1916. p156.Material = Enum.Material.Concrete
  1917. p156.CFrame = CFrame.new(9.97668457, 1.67208195, 25.9985352, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1918. p156.Anchored = true
  1919. p156.FormFactor = Enum.FormFactor.Custom
  1920. p156.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1921. p156.BottomSurface = Enum.SurfaceType.Smooth
  1922. p156.TopSurface = Enum.SurfaceType.Smooth
  1923. b60 = Instance.new("CylinderMesh", p156)
  1924. b60.Name = "Mesh"
  1925. p157 = Instance.new("Part", m25)
  1926. p157.BrickColor = BrickColor.new("Reddish brown")
  1927. p157.Material = Enum.Material.Wood
  1928. p157.CFrame = CFrame.new(9.21243286, 1.77234757, 25.1978149, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1929. p157.Anchored = true
  1930. p157.FormFactor = Enum.FormFactor.Custom
  1931. p157.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  1932. p157.BottomSurface = Enum.SurfaceType.Smooth
  1933. p157.TopSurface = Enum.SurfaceType.Smooth
  1934. p158 = Instance.new("Part", m25)
  1935. p158.BrickColor = BrickColor.new("Medium stone grey")
  1936. p158.Material = Enum.Material.Concrete
  1937. p158.CFrame = CFrame.new(9.97558594, 0.967994928, 24.400238, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1938. p158.Anchored = true
  1939. p158.FormFactor = Enum.FormFactor.Custom
  1940. p158.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1941. p158.BottomSurface = Enum.SurfaceType.Smooth
  1942. p158.TopSurface = Enum.SurfaceType.Smooth
  1943. b61 = Instance.new("CylinderMesh", p158)
  1944. b61.Name = "Mesh"
  1945. p159 = Instance.new("Part", m25)
  1946. p159.BrickColor = BrickColor.new("Medium stone grey")
  1947. p159.Material = Enum.Material.Concrete
  1948. p159.CFrame = CFrame.new(8.37554932, 0.972557306, 24.399292, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1949. p159.Anchored = true
  1950. p159.FormFactor = Enum.FormFactor.Custom
  1951. p159.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  1952. p159.BottomSurface = Enum.SurfaceType.Smooth
  1953. p159.TopSurface = Enum.SurfaceType.Smooth
  1954. b62 = Instance.new("CylinderMesh", p159)
  1955. b62.Name = "Mesh"
  1956. p160 = Instance.new("Part", m25)
  1957. p160.BrickColor = BrickColor.new("Medium stone grey")
  1958. p160.Material = Enum.Material.Concrete
  1959. p160.CFrame = CFrame.new(8.37667847, 1.67665958, 25.9975586, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  1960. p160.Anchored = true
  1961. p160.FormFactor = Enum.FormFactor.Custom
  1962. p160.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  1963. p160.BottomSurface = Enum.SurfaceType.Smooth
  1964. p160.TopSurface = Enum.SurfaceType.Smooth
  1965. b63 = Instance.new("CylinderMesh", p160)
  1966. b63.Name = "Mesh"
  1967. p161 = Instance.new("Part", m25)
  1968. p161.BrickColor = BrickColor.new("Reddish brown")
  1969. p161.Material = Enum.Material.Wood
  1970. p161.CFrame = CFrame.new(9.21707153, 3.57438087, 25.9935303, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1971. p161.Anchored = true
  1972. p161.FormFactor = Enum.FormFactor.Custom
  1973. p161.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  1974. p161.BottomSurface = Enum.SurfaceType.Smooth
  1975. p161.TopSurface = Enum.SurfaceType.Smooth
  1976. p162 = Instance.new("Part", m26)
  1977. p162.BrickColor = BrickColor.new("Medium stone grey")
  1978. p162.Material = Enum.Material.Concrete
  1979. p162.CFrame = CFrame.new(9.34536743, 0.363823235, 21.9013062, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1980. p162.Anchored = true
  1981. p162.FormFactor = Enum.FormFactor.Custom
  1982. p162.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  1983. p162.BottomSurface = Enum.SurfaceType.Smooth
  1984. p162.TopSurface = Enum.SurfaceType.Smooth
  1985. b64 = Instance.new("CylinderMesh", p162)
  1986. b64.Name = "Mesh"
  1987. p163 = Instance.new("Part", m26)
  1988. p163.BrickColor = BrickColor.new("Medium stone grey")
  1989. p163.Material = Enum.Material.Concrete
  1990. p163.CFrame = CFrame.new(9.34875488, 1.56392753, 21.8984375, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  1991. p163.Anchored = true
  1992. p163.FormFactor = Enum.FormFactor.Custom
  1993. p163.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
  1994. p163.BottomSurface = Enum.SurfaceType.Smooth
  1995. p163.TopSurface = Enum.SurfaceType.Smooth
  1996. b65 = Instance.new("CylinderMesh", p163)
  1997. b65.Name = "Mesh"
  1998. p164 = Instance.new("Part", m26)
  1999. p164.BrickColor = BrickColor.new("Brick yellow")
  2000. p164.Material = Enum.Material.Concrete
  2001. p164.CFrame = CFrame.new(9.3230896, 3.06423354, 21.8998108, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2002. p164.Anchored = true
  2003. p164.FormFactor = Enum.FormFactor.Custom
  2004. p164.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
  2005. p164.BottomSurface = Enum.SurfaceType.Smooth
  2006. p164.TopSurface = Enum.SurfaceType.Smooth
  2007. p165 = Instance.new("Part", m26)
  2008. p165.BrickColor = BrickColor.new("Reddish brown")
  2009. p165.Material = Enum.Material.Wood
  2010. p165.CFrame = CFrame.new(9.3180542, 3.0642488, 21.8948364, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2011. p165.Anchored = true
  2012. p165.FormFactor = Enum.FormFactor.Custom
  2013. p165.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
  2014. p165.BottomSurface = Enum.SurfaceType.Smooth
  2015. p165.TopSurface = Enum.SurfaceType.Smooth
  2016. p166 = Instance.new("Part", m27)
  2017. p166.BrickColor = BrickColor.new("Medium stone grey")
  2018. p166.Material = Enum.Material.Concrete
  2019. p166.CFrame = CFrame.new(15.7283936, 29.1365967, 20.105957, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2020. p166.Anchored = true
  2021. p166.FormFactor = Enum.FormFactor.Custom
  2022. p166.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  2023. p166.BottomSurface = Enum.SurfaceType.Smooth
  2024. p166.TopSurface = Enum.SurfaceType.Smooth
  2025. p167 = Instance.new("Part", m27)
  2026. p167.BrickColor = BrickColor.new("Dark stone grey")
  2027. p167.Material = Enum.Material.Concrete
  2028. p167.CFrame = CFrame.new(15.6295471, 29.5371552, 20.204895, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2029. p167.Anchored = true
  2030. p167.FormFactor = Enum.FormFactor.Custom
  2031. p167.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  2032. p167.BottomSurface = Enum.SurfaceType.Smooth
  2033. p167.TopSurface = Enum.SurfaceType.Smooth
  2034. p168 = Instance.new("Part", m27)
  2035. p168.BrickColor = BrickColor.new("Medium stone grey")
  2036. p168.Material = Enum.Material.SmoothPlastic
  2037. p168.Reflectance = 0.20000000298023
  2038. p168.CFrame = CFrame.new(15.5397949, 33.1366425, 20.0961914, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2039. p168.Anchored = true
  2040. p168.FormFactor = Enum.FormFactor.Custom
  2041. p168.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  2042. p168.BottomSurface = Enum.SurfaceType.Smooth
  2043. p168.TopSurface = Enum.SurfaceType.Smooth
  2044. p169 = Instance.new("Part", m27)
  2045. p169.BrickColor = BrickColor.new("Dark stone grey")
  2046. p169.Material = Enum.Material.Concrete
  2047. p169.CFrame = CFrame.new(15.6398315, 33.1366119, 20.1962585, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2048. p169.Anchored = true
  2049. p169.FormFactor = Enum.FormFactor.Custom
  2050. p169.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  2051. p169.BottomSurface = Enum.SurfaceType.Smooth
  2052. p169.TopSurface = Enum.SurfaceType.Smooth
  2053. p170 = Instance.new("Part", m27)
  2054. p170.BrickColor = BrickColor.new("Dark stone grey")
  2055. p170.Material = Enum.Material.Concrete
  2056. p170.CFrame = CFrame.new(15.650238, 36.7360687, 19.9877014, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2057. p170.Anchored = true
  2058. p170.FormFactor = Enum.FormFactor.Custom
  2059. p170.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  2060. p170.BottomSurface = Enum.SurfaceType.Smooth
  2061. p170.TopSurface = Enum.SurfaceType.Smooth
  2062. p171 = Instance.new("Part", m27)
  2063. p171.BrickColor = BrickColor.new("Medium stone grey")
  2064. p171.Material = Enum.Material.Concrete
  2065. p171.CFrame = CFrame.new(15.7521362, 37.4371643, 20.0860596, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2066. p171.Anchored = true
  2067. p171.FormFactor = Enum.FormFactor.Custom
  2068. p171.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  2069. p171.BottomSurface = Enum.SurfaceType.Smooth
  2070. p171.TopSurface = Enum.SurfaceType.Smooth
  2071. p172 = Instance.new("Part", m27)
  2072. p172.BrickColor = BrickColor.new("Dark stone grey")
  2073. p172.Material = Enum.Material.Concrete
  2074. p172.CFrame = CFrame.new(15.6410828, 33.1312714, 17.9963379, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2075. p172.Anchored = true
  2076. p172.FormFactor = Enum.FormFactor.Custom
  2077. p172.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  2078. p172.BottomSurface = Enum.SurfaceType.Smooth
  2079. p172.TopSurface = Enum.SurfaceType.Smooth
  2080. p173 = Instance.new("Part", m27)
  2081. p173.BrickColor = BrickColor.new("Medium stone grey")
  2082. p173.Material = Enum.Material.Concrete
  2083. p173.CFrame = CFrame.new(15.7413025, 33.1300812, 17.596405, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2084. p173.Anchored = true
  2085. p173.FormFactor = Enum.FormFactor.Custom
  2086. p173.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2087. p173.BottomSurface = Enum.SurfaceType.Smooth
  2088. p173.TopSurface = Enum.SurfaceType.Smooth
  2089. p174 = Instance.new("Part", m27)
  2090. p174.BrickColor = BrickColor.new("Dark stone grey")
  2091. p174.Material = Enum.Material.Concrete
  2092. p174.CFrame = CFrame.new(15.6389465, 33.2414246, 22.1960144, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2093. p174.Anchored = true
  2094. p174.FormFactor = Enum.FormFactor.Custom
  2095. p174.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  2096. p174.BottomSurface = Enum.SurfaceType.Smooth
  2097. p174.TopSurface = Enum.SurfaceType.Smooth
  2098. p175 = Instance.new("Part", m27)
  2099. p175.BrickColor = BrickColor.new("Medium stone grey")
  2100. p175.Material = Enum.Material.Concrete
  2101. p175.CFrame = CFrame.new(15.7383423, 33.1420441, 22.5963135, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2102. p175.Anchored = true
  2103. p175.FormFactor = Enum.FormFactor.Custom
  2104. p175.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2105. p175.BottomSurface = Enum.SurfaceType.Smooth
  2106. p175.TopSurface = Enum.SurfaceType.Smooth
  2107. p176 = Instance.new("Part", m28)
  2108. p176.BrickColor = BrickColor.new("Medium stone grey")
  2109. p176.Material = Enum.Material.Concrete
  2110. p176.CFrame = CFrame.new(15.7225037, 29.1611176, 30.3058472, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2111. p176.Anchored = true
  2112. p176.FormFactor = Enum.FormFactor.Custom
  2113. p176.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  2114. p176.BottomSurface = Enum.SurfaceType.Smooth
  2115. p176.TopSurface = Enum.SurfaceType.Smooth
  2116. p177 = Instance.new("Part", m28)
  2117. p177.BrickColor = BrickColor.new("Dark stone grey")
  2118. p177.Material = Enum.Material.Concrete
  2119. p177.CFrame = CFrame.new(15.6235962, 29.5616608, 30.4047546, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2120. p177.Anchored = true
  2121. p177.FormFactor = Enum.FormFactor.Custom
  2122. p177.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  2123. p177.BottomSurface = Enum.SurfaceType.Smooth
  2124. p177.TopSurface = Enum.SurfaceType.Smooth
  2125. p178 = Instance.new("Part", m28)
  2126. p178.BrickColor = BrickColor.new("Medium stone grey")
  2127. p178.Material = Enum.Material.SmoothPlastic
  2128. p178.Reflectance = 0.20000000298023
  2129. p178.CFrame = CFrame.new(15.5338745, 33.1611633, 30.296051, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2130. p178.Anchored = true
  2131. p178.FormFactor = Enum.FormFactor.Custom
  2132. p178.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  2133. p178.BottomSurface = Enum.SurfaceType.Smooth
  2134. p178.TopSurface = Enum.SurfaceType.Smooth
  2135. p179 = Instance.new("Part", m28)
  2136. p179.BrickColor = BrickColor.new("Dark stone grey")
  2137. p179.Material = Enum.Material.Concrete
  2138. p179.CFrame = CFrame.new(15.6338501, 33.1611176, 30.3961487, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2139. p179.Anchored = true
  2140. p179.FormFactor = Enum.FormFactor.Custom
  2141. p179.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  2142. p179.BottomSurface = Enum.SurfaceType.Smooth
  2143. p179.TopSurface = Enum.SurfaceType.Smooth
  2144. p180 = Instance.new("Part", m28)
  2145. p180.BrickColor = BrickColor.new("Dark stone grey")
  2146. p180.Material = Enum.Material.Concrete
  2147. p180.CFrame = CFrame.new(15.6442566, 36.7605743, 30.187561, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2148. p180.Anchored = true
  2149. p180.FormFactor = Enum.FormFactor.Custom
  2150. p180.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  2151. p180.BottomSurface = Enum.SurfaceType.Smooth
  2152. p180.TopSurface = Enum.SurfaceType.Smooth
  2153. p181 = Instance.new("Part", m28)
  2154. p181.BrickColor = BrickColor.new("Medium stone grey")
  2155. p181.Material = Enum.Material.Concrete
  2156. p181.CFrame = CFrame.new(15.7461853, 37.4617157, 30.2859192, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2157. p181.Anchored = true
  2158. p181.FormFactor = Enum.FormFactor.Custom
  2159. p181.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  2160. p181.BottomSurface = Enum.SurfaceType.Smooth
  2161. p181.TopSurface = Enum.SurfaceType.Smooth
  2162. p182 = Instance.new("Part", m28)
  2163. p182.BrickColor = BrickColor.new("Dark stone grey")
  2164. p182.Material = Enum.Material.Concrete
  2165. p182.CFrame = CFrame.new(15.6351929, 33.1558075, 28.196228, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2166. p182.Anchored = true
  2167. p182.FormFactor = Enum.FormFactor.Custom
  2168. p182.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  2169. p182.BottomSurface = Enum.SurfaceType.Smooth
  2170. p182.TopSurface = Enum.SurfaceType.Smooth
  2171. p183 = Instance.new("Part", m28)
  2172. p183.BrickColor = BrickColor.new("Medium stone grey")
  2173. p183.Material = Enum.Material.Concrete
  2174. p183.CFrame = CFrame.new(15.7353821, 33.1546021, 27.7962646, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2175. p183.Anchored = true
  2176. p183.FormFactor = Enum.FormFactor.Custom
  2177. p183.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2178. p183.BottomSurface = Enum.SurfaceType.Smooth
  2179. p183.TopSurface = Enum.SurfaceType.Smooth
  2180. p184 = Instance.new("Part", m28)
  2181. p184.BrickColor = BrickColor.new("Dark stone grey")
  2182. p184.Material = Enum.Material.Concrete
  2183. p184.CFrame = CFrame.new(15.6329956, 33.2659149, 32.3959045, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2184. p184.Anchored = true
  2185. p184.FormFactor = Enum.FormFactor.Custom
  2186. p184.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  2187. p184.BottomSurface = Enum.SurfaceType.Smooth
  2188. p184.TopSurface = Enum.SurfaceType.Smooth
  2189. p185 = Instance.new("Part", m28)
  2190. p185.BrickColor = BrickColor.new("Medium stone grey")
  2191. p185.Material = Enum.Material.Concrete
  2192. p185.CFrame = CFrame.new(15.7324524, 33.1665649, 32.7962036, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2193. p185.Anchored = true
  2194. p185.FormFactor = Enum.FormFactor.Custom
  2195. p185.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2196. p185.BottomSurface = Enum.SurfaceType.Smooth
  2197. p185.TopSurface = Enum.SurfaceType.Smooth
  2198. p186 = Instance.new("Part", m29)
  2199. p186.BrickColor = BrickColor.new("Medium stone grey")
  2200. p186.Material = Enum.Material.Concrete
  2201. p186.CFrame = CFrame.new(11.5342712, 29.1246185, 10.1035767, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2202. p186.Anchored = true
  2203. p186.FormFactor = Enum.FormFactor.Custom
  2204. p186.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  2205. p186.BottomSurface = Enum.SurfaceType.Smooth
  2206. p186.TopSurface = Enum.SurfaceType.Smooth
  2207. p187 = Instance.new("Part", m29)
  2208. p187.BrickColor = BrickColor.new("Dark stone grey")
  2209. p187.Material = Enum.Material.Concrete
  2210. p187.CFrame = CFrame.new(11.5353394, 29.5249634, 10.2438965, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2211. p187.Anchored = true
  2212. p187.FormFactor = Enum.FormFactor.Custom
  2213. p187.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  2214. p187.BottomSurface = Enum.SurfaceType.Smooth
  2215. p187.TopSurface = Enum.SurfaceType.Smooth
  2216. p188 = Instance.new("Part", m29)
  2217. p188.BrickColor = BrickColor.new("Medium stone grey")
  2218. p188.Material = Enum.Material.SmoothPlastic
  2219. p188.Reflectance = 0.20000000298023
  2220. p188.CFrame = CFrame.new(11.4042053, 33.1248016, 10.2352905, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2221. p188.Anchored = true
  2222. p188.FormFactor = Enum.FormFactor.Custom
  2223. p188.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  2224. p188.BottomSurface = Enum.SurfaceType.Smooth
  2225. p188.TopSurface = Enum.SurfaceType.Smooth
  2226. p189 = Instance.new("Part", m29)
  2227. p189.BrickColor = BrickColor.new("Dark stone grey")
  2228. p189.Material = Enum.Material.Concrete
  2229. p189.CFrame = CFrame.new(11.5455933, 33.1244049, 10.2352295, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2230. p189.Anchored = true
  2231. p189.FormFactor = Enum.FormFactor.Custom
  2232. p189.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  2233. p189.BottomSurface = Enum.SurfaceType.Smooth
  2234. p189.TopSurface = Enum.SurfaceType.Smooth
  2235. p190 = Instance.new("Part", m29)
  2236. p190.BrickColor = BrickColor.new("Dark stone grey")
  2237. p190.Material = Enum.Material.Concrete
  2238. p190.CFrame = CFrame.new(11.4146118, 36.7244263, 10.085144, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2239. p190.Anchored = true
  2240. p190.FormFactor = Enum.FormFactor.Custom
  2241. p190.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  2242. p190.BottomSurface = Enum.SurfaceType.Smooth
  2243. p190.TopSurface = Enum.SurfaceType.Smooth
  2244. p191 = Instance.new("Part", m29)
  2245. p191.BrickColor = BrickColor.new("Medium stone grey")
  2246. p191.Material = Enum.Material.Concrete
  2247. p191.CFrame = CFrame.new(11.5579834, 37.4251709, 10.0836182, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2248. p191.Anchored = true
  2249. p191.FormFactor = Enum.FormFactor.Custom
  2250. p191.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  2251. p191.BottomSurface = Enum.SurfaceType.Smooth
  2252. p191.TopSurface = Enum.SurfaceType.Smooth
  2253. p192 = Instance.new("Part", m29)
  2254. p192.BrickColor = BrickColor.new("Dark stone grey")
  2255. p192.Material = Enum.Material.Concrete
  2256. p192.CFrame = CFrame.new(9.99093628, 33.1250763, 8.67883301, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2257. p192.Anchored = true
  2258. p192.FormFactor = Enum.FormFactor.Custom
  2259. p192.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  2260. p192.BottomSurface = Enum.SurfaceType.Smooth
  2261. p192.TopSurface = Enum.SurfaceType.Smooth
  2262. p193 = Instance.new("Part", m29)
  2263. p193.BrickColor = BrickColor.new("Medium stone grey")
  2264. p193.Material = Enum.Material.Concrete
  2265. p193.CFrame = CFrame.new(9.77893066, 33.1248779, 8.32513428, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2266. p193.Anchored = true
  2267. p193.FormFactor = Enum.FormFactor.Custom
  2268. p193.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2269. p193.BottomSurface = Enum.SurfaceType.Smooth
  2270. p193.TopSurface = Enum.SurfaceType.Smooth
  2271. p194 = Instance.new("Part", m29)
  2272. p194.BrickColor = BrickColor.new("Dark stone grey")
  2273. p194.Material = Enum.Material.Concrete
  2274. p194.CFrame = CFrame.new(12.9593506, 33.2238007, 11.6501465, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2275. p194.Anchored = true
  2276. p194.FormFactor = Enum.FormFactor.Custom
  2277. p194.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  2278. p194.BottomSurface = Enum.SurfaceType.Smooth
  2279. p194.TopSurface = Enum.SurfaceType.Smooth
  2280. p195 = Instance.new("Part", m29)
  2281. p195.BrickColor = BrickColor.new("Medium stone grey")
  2282. p195.Material = Enum.Material.Concrete
  2283. p195.CFrame = CFrame.new(13.3124084, 33.1232452, 11.8627319, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2284. p195.Anchored = true
  2285. p195.FormFactor = Enum.FormFactor.Custom
  2286. p195.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2287. p195.BottomSurface = Enum.SurfaceType.Smooth
  2288. p195.TopSurface = Enum.SurfaceType.Smooth
  2289. p196 = Instance.new("Part", m30)
  2290. p196.BrickColor = BrickColor.new("Light stone grey")
  2291. p196.Material = Enum.Material.SmoothPlastic
  2292. p196.CFrame = CFrame.new(-14.0742188, 3.05588698, 33.8811951, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2293. p196.Anchored = true
  2294. p196.FormFactor = Enum.FormFactor.Custom
  2295. p196.Size = Vector3.new(0.800000012, 2.20000005, 2.80000973)
  2296. p196.BottomSurface = Enum.SurfaceType.Smooth
  2297. p196.TopSurface = Enum.SurfaceType.Smooth
  2298. p197 = Instance.new("Part", m30)
  2299. p197.BrickColor = BrickColor.new("Light stone grey")
  2300. p197.Material = Enum.Material.SmoothPlastic
  2301. p197.CFrame = CFrame.new(-14.0704956, 4.15397072, 33.0785217, -0.0028556597, -0.999992847, 0.000583007059, -0.999992371, 0.00285413, -0.00240234332, 0.00240069069, -0.00058913033, -0.999994338)
  2302. p197.Anchored = true
  2303. p197.FormFactor = Enum.FormFactor.Custom
  2304. p197.Size = Vector3.new(1.20000005, 0.800000012, 1.20000935)
  2305. p197.BottomSurface = Enum.SurfaceType.Smooth
  2306. p197.TopSurface = Enum.SurfaceType.Smooth
  2307. b66 = Instance.new("CylinderMesh", p197)
  2308. b66.Name = "Mesh"
  2309. p198 = Instance.new("Part", m30)
  2310. p198.BrickColor = BrickColor.new("Light stone grey")
  2311. p198.Material = Enum.Material.SmoothPlastic
  2312. p198.CFrame = CFrame.new(-14.0701904, 4.45589638, 33.8778076, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2313. p198.Anchored = true
  2314. p198.FormFactor = Enum.FormFactor.Custom
  2315. p198.Size = Vector3.new(0.800000012, 0.600000024, 1.60000944)
  2316. p198.BottomSurface = Enum.SurfaceType.Smooth
  2317. p198.TopSurface = Enum.SurfaceType.Smooth
  2318. p199 = Instance.new("Part", m30)
  2319. p199.BrickColor = BrickColor.new("Light stone grey")
  2320. p199.Material = Enum.Material.SmoothPlastic
  2321. p199.CFrame = CFrame.new(-14.0714722, 4.15781593, 34.6785278, -0.0028556597, -0.999992847, 0.000583007059, -0.999992371, 0.00285413, -0.00240234332, 0.00240069069, -0.00058913033, -0.999994338)
  2322. p199.Anchored = true
  2323. p199.FormFactor = Enum.FormFactor.Custom
  2324. p199.Size = Vector3.new(1.20000005, 0.800000012, 1.20000935)
  2325. p199.BottomSurface = Enum.SurfaceType.Smooth
  2326. p199.TopSurface = Enum.SurfaceType.Smooth
  2327. b67 = Instance.new("CylinderMesh", p199)
  2328. b67.Name = "Mesh"
  2329. p200 = Instance.new("Part", m30)
  2330. p200.BrickColor = BrickColor.new("Medium stone grey")
  2331. p200.Material = Enum.Material.SmoothPlastic
  2332. p200.CFrame = CFrame.new(-14.4107056, 4.25686073, 33.8780518, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2333. p200.Anchored = true
  2334. p200.FormFactor = Enum.FormFactor.Custom
  2335. p200.Size = Vector3.new(0.200000003, 0.600000024, 2.40000963)
  2336. p200.BottomSurface = Enum.SurfaceType.Smooth
  2337. p200.TopSurface = Enum.SurfaceType.Smooth
  2338. p201 = Instance.new("Part", m30)
  2339. p201.BrickColor = BrickColor.new("Light stone grey")
  2340. p201.Material = Enum.Material.DiamondPlate
  2341. p201.CFrame = CFrame.new(-14.670166, 4.25544167, 32.9779663, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
  2342. p201.Anchored = true
  2343. p201.FormFactor = Enum.FormFactor.Custom
  2344. p201.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
  2345. p201.BottomSurface = Enum.SurfaceType.Smooth
  2346. p201.TopSurface = Enum.SurfaceType.Smooth
  2347. b68 = Instance.new("CylinderMesh", p201)
  2348. b68.Name = "Mesh"
  2349. p202 = Instance.new("Part", m30)
  2350. p202.BrickColor = BrickColor.new("Light stone grey")
  2351. p202.Material = Enum.Material.DiamondPlate
  2352. p202.CFrame = CFrame.new(-14.7711182, 3.95572853, 32.9786072, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
  2353. p202.Anchored = true
  2354. p202.FormFactor = Enum.FormFactor.Custom
  2355. p202.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
  2356. p202.BottomSurface = Enum.SurfaceType.Smooth
  2357. p202.TopSurface = Enum.SurfaceType.Smooth
  2358. b69 = Instance.new("CylinderMesh", p202)
  2359. b69.Name = "Mesh"
  2360. p203 = Instance.new("Part", m30)
  2361. p203.BrickColor = BrickColor.new("Light stone grey")
  2362. p203.Material = Enum.Material.DiamondPlate
  2363. p203.CFrame = CFrame.new(-14.7713928, 3.95717812, 33.5785828, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
  2364. p203.Anchored = true
  2365. p203.FormFactor = Enum.FormFactor.Custom
  2366. p203.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
  2367. p203.BottomSurface = Enum.SurfaceType.Smooth
  2368. p203.TopSurface = Enum.SurfaceType.Smooth
  2369. b70 = Instance.new("CylinderMesh", p203)
  2370. b70.Name = "Mesh"
  2371. p204 = Instance.new("Part", m30)
  2372. p204.BrickColor = BrickColor.new("Light stone grey")
  2373. p204.Material = Enum.Material.DiamondPlate
  2374. p204.CFrame = CFrame.new(-14.6705322, 4.25687599, 33.5779724, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
  2375. p204.Anchored = true
  2376. p204.FormFactor = Enum.FormFactor.Custom
  2377. p204.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
  2378. p204.BottomSurface = Enum.SurfaceType.Smooth
  2379. p204.TopSurface = Enum.SurfaceType.Smooth
  2380. b71 = Instance.new("CylinderMesh", p204)
  2381. b71.Name = "Mesh"
  2382. p205 = Instance.new("Part", m30)
  2383. p205.BrickColor = BrickColor.new("Light stone grey")
  2384. p205.Material = Enum.Material.DiamondPlate
  2385. p205.CFrame = CFrame.new(-14.7717896, 3.95861244, 34.1785583, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
  2386. p205.Anchored = true
  2387. p205.FormFactor = Enum.FormFactor.Custom
  2388. p205.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
  2389. p205.BottomSurface = Enum.SurfaceType.Smooth
  2390. p205.TopSurface = Enum.SurfaceType.Smooth
  2391. b72 = Instance.new("CylinderMesh", p205)
  2392. b72.Name = "Mesh"
  2393. p206 = Instance.new("Part", m30)
  2394. p206.BrickColor = BrickColor.new("Light stone grey")
  2395. p206.Material = Enum.Material.DiamondPlate
  2396. p206.CFrame = CFrame.new(-14.6708679, 4.25832558, 34.177948, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
  2397. p206.Anchored = true
  2398. p206.FormFactor = Enum.FormFactor.Custom
  2399. p206.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
  2400. p206.BottomSurface = Enum.SurfaceType.Smooth
  2401. p206.TopSurface = Enum.SurfaceType.Smooth
  2402. b73 = Instance.new("CylinderMesh", p206)
  2403. b73.Name = "Mesh"
  2404. p207 = Instance.new("Part", m30)
  2405. p207.BrickColor = BrickColor.new("Light stone grey")
  2406. p207.Material = Enum.Material.DiamondPlate
  2407. p207.CFrame = CFrame.new(-14.7721252, 3.96004677, 34.7785034, 0.000583118061, 0.00285559613, 0.99999249, -0.00240224507, 0.999992073, -0.00285417726, -0.999993682, -0.00240059011, 0.00058902509)
  2408. p207.Anchored = true
  2409. p207.FormFactor = Enum.FormFactor.Custom
  2410. p207.Size = Vector3.new(0.200000003, 0.800000727, 0.200000033)
  2411. p207.BottomSurface = Enum.SurfaceType.Smooth
  2412. p207.TopSurface = Enum.SurfaceType.Smooth
  2413. b74 = Instance.new("CylinderMesh", p207)
  2414. b74.Name = "Mesh"
  2415. p208 = Instance.new("Part", m30)
  2416. p208.BrickColor = BrickColor.new("Light stone grey")
  2417. p208.Material = Enum.Material.DiamondPlate
  2418. p208.CFrame = CFrame.new(-14.6712646, 4.25977516, 34.7779541, 0.000582955196, -0.999992669, 0.00285558961, -0.00240225974, 0.00285413628, 0.999992311, -0.999994218, -0.000589011062, -0.00240058545)
  2419. p208.Anchored = true
  2420. p208.FormFactor = Enum.FormFactor.Custom
  2421. p208.Size = Vector3.new(0.200000003, 0.400000751, 0.200000033)
  2422. p208.BottomSurface = Enum.SurfaceType.Smooth
  2423. p208.TopSurface = Enum.SurfaceType.Smooth
  2424. b75 = Instance.new("CylinderMesh", p208)
  2425. b75.Name = "Mesh"
  2426. p209 = Instance.new("Part", m31)
  2427. p209.BrickColor = BrickColor.new("Dark stone grey")
  2428. p209.Material = Enum.Material.DiamondPlate
  2429. p209.CFrame = CFrame.new(10.8728333, 47.438324, 27.586792, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2430. p209.Anchored = true
  2431. p209.FormFactor = Enum.FormFactor.Custom
  2432. p209.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  2433. p209.BottomSurface = Enum.SurfaceType.Smooth
  2434. p209.TopSurface = Enum.SurfaceType.Smooth
  2435. b76 = Instance.new("CylinderMesh", p209)
  2436. b76.Name = "Mesh"
  2437. p210 = Instance.new("Part", m31)
  2438. p210.BrickColor = BrickColor.new("Dark stone grey")
  2439. p210.Material = Enum.Material.DiamondPlate
  2440. p210.CFrame = CFrame.new(10.8720093, 47.441925, 29.086792, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2441. p210.Anchored = true
  2442. p210.FormFactor = Enum.FormFactor.Custom
  2443. p210.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  2444. p210.BottomSurface = Enum.SurfaceType.Smooth
  2445. p210.TopSurface = Enum.SurfaceType.Smooth
  2446. b77 = Instance.new("CylinderMesh", p210)
  2447. b77.Name = "Mesh"
  2448. p211 = Instance.new("Part", m31)
  2449. p211.BrickColor = BrickColor.new("Dark stone grey")
  2450. p211.Material = Enum.Material.Concrete
  2451. p211.CFrame = CFrame.new(10.769165, 46.4421692, 29.0891724, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
  2452. p211.Anchored = true
  2453. p211.FormFactor = Enum.FormFactor.Custom
  2454. p211.Size = Vector3.new(3.80000019, 0.200000003, 5.19999886)
  2455. p211.BottomSurface = Enum.SurfaceType.Smooth
  2456. p211.TopSurface = Enum.SurfaceType.Smooth
  2457. p212 = Instance.new("Part", m31)
  2458. p212.BrickColor = BrickColor.new("Medium stone grey")
  2459. p212.Material = Enum.Material.Brick
  2460. p212.CFrame = CFrame.new(10.7651672, 45.0424042, 29.0925293, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
  2461. p212.Anchored = true
  2462. p212.FormFactor = Enum.FormFactor.Custom
  2463. p212.Size = Vector3.new(3, 2.60000038, 4.39999962)
  2464. p212.BottomSurface = Enum.SurfaceType.Smooth
  2465. p212.TopSurface = Enum.SurfaceType.Smooth
  2466. p213 = Instance.new("Part", m31)
  2467. p213.BrickColor = BrickColor.new("Dark stone grey")
  2468. p213.Material = Enum.Material.DiamondPlate
  2469. p213.CFrame = CFrame.new(10.8710938, 47.4455109, 30.5867615, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2470. p213.Anchored = true
  2471. p213.FormFactor = Enum.FormFactor.Custom
  2472. p213.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  2473. p213.BottomSurface = Enum.SurfaceType.Smooth
  2474. p213.TopSurface = Enum.SurfaceType.Smooth
  2475. b78 = Instance.new("CylinderMesh", p213)
  2476. b78.Name = "Mesh"
  2477. p214 = Instance.new("Part", m32)
  2478. p214.BrickColor = BrickColor.new("Medium stone grey")
  2479. p214.Material = Enum.Material.Concrete
  2480. p214.CFrame = CFrame.new(8.45144653, 1.65674686, 17.79776, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2481. p214.Anchored = true
  2482. p214.FormFactor = Enum.FormFactor.Custom
  2483. p214.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  2484. p214.BottomSurface = Enum.SurfaceType.Smooth
  2485. p214.TopSurface = Enum.SurfaceType.Smooth
  2486. b79 = Instance.new("CylinderMesh", p214)
  2487. b79.Name = "Mesh"
  2488. p215 = Instance.new("Part", m32)
  2489. p215.BrickColor = BrickColor.new("Reddish brown")
  2490. p215.Material = Enum.Material.Wood
  2491. p215.CFrame = CFrame.new(9.21627808, 1.75647843, 18.5979309, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2492. p215.Anchored = true
  2493. p215.FormFactor = Enum.FormFactor.Custom
  2494. p215.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  2495. p215.BottomSurface = Enum.SurfaceType.Smooth
  2496. p215.TopSurface = Enum.SurfaceType.Smooth
  2497. p216 = Instance.new("Part", m32)
  2498. p216.BrickColor = BrickColor.new("Medium stone grey")
  2499. p216.Material = Enum.Material.Concrete
  2500. p216.CFrame = CFrame.new(8.44851685, 0.960335016, 19.3994141, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2501. p216.Anchored = true
  2502. p216.FormFactor = Enum.FormFactor.Custom
  2503. p216.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  2504. p216.BottomSurface = Enum.SurfaceType.Smooth
  2505. p216.TopSurface = Enum.SurfaceType.Smooth
  2506. b80 = Instance.new("CylinderMesh", p216)
  2507. b80.Name = "Mesh"
  2508. p217 = Instance.new("Part", m32)
  2509. p217.BrickColor = BrickColor.new("Medium stone grey")
  2510. p217.Material = Enum.Material.Concrete
  2511. p217.CFrame = CFrame.new(10.0485229, 0.955787897, 19.4002991, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2512. p217.Anchored = true
  2513. p217.FormFactor = Enum.FormFactor.Custom
  2514. p217.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  2515. p217.BottomSurface = Enum.SurfaceType.Smooth
  2516. p217.TopSurface = Enum.SurfaceType.Smooth
  2517. b81 = Instance.new("CylinderMesh", p217)
  2518. b81.Name = "Mesh"
  2519. p218 = Instance.new("Part", m32)
  2520. p218.BrickColor = BrickColor.new("Medium stone grey")
  2521. p218.Material = Enum.Material.Concrete
  2522. p218.CFrame = CFrame.new(10.0514832, 1.65215397, 17.7987061, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2523. p218.Anchored = true
  2524. p218.FormFactor = Enum.FormFactor.Custom
  2525. p218.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  2526. p218.BottomSurface = Enum.SurfaceType.Smooth
  2527. p218.TopSurface = Enum.SurfaceType.Smooth
  2528. b82 = Instance.new("CylinderMesh", p218)
  2529. b82.Name = "Mesh"
  2530. p219 = Instance.new("Part", m32)
  2531. p219.BrickColor = BrickColor.new("Reddish brown")
  2532. p219.Material = Enum.Material.Wood
  2533. p219.CFrame = CFrame.new(9.22186279, 3.55466652, 17.7936401, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2534. p219.Anchored = true
  2535. p219.FormFactor = Enum.FormFactor.Custom
  2536. p219.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  2537. p219.BottomSurface = Enum.SurfaceType.Smooth
  2538. p219.TopSurface = Enum.SurfaceType.Smooth
  2539. p220 = Instance.new("Part", m33)
  2540. p220.BrickColor = BrickColor.new("Medium stone grey")
  2541. p220.Material = Enum.Material.Concrete
  2542. p220.CFrame = CFrame.new(-20.5756531, 1.72477067, 13.1504517, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2543. p220.Anchored = true
  2544. p220.FormFactor = Enum.FormFactor.Custom
  2545. p220.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  2546. p220.BottomSurface = Enum.SurfaceType.Smooth
  2547. p220.TopSurface = Enum.SurfaceType.Smooth
  2548. b83 = Instance.new("CylinderMesh", p220)
  2549. b83.Name = "Mesh"
  2550. p221 = Instance.new("Part", m33)
  2551. p221.BrickColor = BrickColor.new("Reddish brown")
  2552. p221.Material = Enum.Material.Wood
  2553. p221.CFrame = CFrame.new(-19.7749329, 1.82067227, 12.3858032, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  2554. p221.Anchored = true
  2555. p221.FormFactor = Enum.FormFactor.Custom
  2556. p221.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  2557. p221.BottomSurface = Enum.SurfaceType.Smooth
  2558. p221.TopSurface = Enum.SurfaceType.Smooth
  2559. p222 = Instance.new("Part", m33)
  2560. p222.BrickColor = BrickColor.new("Medium stone grey")
  2561. p222.Material = Enum.Material.Concrete
  2562. p222.CFrame = CFrame.new(-18.9776611, 1.02008843, 13.1530762, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2563. p222.Anchored = true
  2564. p222.FormFactor = Enum.FormFactor.Custom
  2565. p222.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  2566. p222.BottomSurface = Enum.SurfaceType.Smooth
  2567. p222.TopSurface = Enum.SurfaceType.Smooth
  2568. b84 = Instance.new("CylinderMesh", p222)
  2569. b84.Name = "Mesh"
  2570. p223 = Instance.new("Part", m33)
  2571. p223.BrickColor = BrickColor.new("Medium stone grey")
  2572. p223.Material = Enum.Material.Concrete
  2573. p223.CFrame = CFrame.new(-18.9766846, 1.01625848, 11.5531616, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2574. p223.Anchored = true
  2575. p223.FormFactor = Enum.FormFactor.Custom
  2576. p223.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  2577. p223.BottomSurface = Enum.SurfaceType.Smooth
  2578. p223.TopSurface = Enum.SurfaceType.Smooth
  2579. b85 = Instance.new("CylinderMesh", p223)
  2580. b85.Name = "Mesh"
  2581. p224 = Instance.new("Part", m33)
  2582. p224.BrickColor = BrickColor.new("Medium stone grey")
  2583. p224.Material = Enum.Material.Concrete
  2584. p224.CFrame = CFrame.new(-20.5747681, 1.72092545, 11.5505981, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2585. p224.Anchored = true
  2586. p224.FormFactor = Enum.FormFactor.Custom
  2587. p224.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  2588. p224.BottomSurface = Enum.SurfaceType.Smooth
  2589. p224.TopSurface = Enum.SurfaceType.Smooth
  2590. b86 = Instance.new("CylinderMesh", p224)
  2591. b86.Name = "Mesh"
  2592. p225 = Instance.new("Part", m33)
  2593. p225.BrickColor = BrickColor.new("Reddish brown")
  2594. p225.Material = Enum.Material.Wood
  2595. p225.CFrame = CFrame.new(-20.5698242, 3.62299538, 12.3809814, 0.000583000307, 0.00285565224, 0.999992847, -0.00240225764, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  2596. p225.Anchored = true
  2597. p225.FormFactor = Enum.FormFactor.Custom
  2598. p225.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  2599. p225.BottomSurface = Enum.SurfaceType.Smooth
  2600. p225.TopSurface = Enum.SurfaceType.Smooth
  2601. p226 = Instance.new("Part", m34)
  2602. p226.BrickColor = BrickColor.new("Medium stone grey")
  2603. p226.Material = Enum.Material.SmoothPlastic
  2604. p226.CFrame = CFrame.new(-16.028717, 3.75896645, 30.7123108, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412627, 0.999994338, -0.00240059383, -0.000589011179)
  2605. p226.Anchored = true
  2606. p226.FormFactor = Enum.FormFactor.Custom
  2607. p226.Size = Vector3.new(1.20000005, 0.400000006, 1.80000019)
  2608. p226.BottomSurface = Enum.SurfaceType.Smooth
  2609. p226.TopSurface = Enum.SurfaceType.Smooth
  2610. p227 = Instance.new("Part", m34)
  2611. p227.BrickColor = BrickColor.new("Medium stone grey")
  2612. p227.Material = Enum.Material.SmoothPlastic
  2613. p227.CFrame = CFrame.new(-16.0273438, 4.15798378, 30.3109741, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412627, 0.999994338, -0.00240059383, -0.000589011179)
  2614. p227.Anchored = true
  2615. p227.FormFactor = Enum.FormFactor.Custom
  2616. p227.Size = Vector3.new(0.400000036, 0.400000006, 1.80000019)
  2617. p227.BottomSurface = Enum.SurfaceType.Smooth
  2618. p227.TopSurface = Enum.SurfaceType.Smooth
  2619. p228 = Instance.new("Part", m34)
  2620. p228.BrickColor = BrickColor.new("Medium stone grey")
  2621. p228.Material = Enum.Material.SmoothPlastic
  2622. p228.CFrame = CFrame.new(-16.5261536, 4.55924416, 30.2101135, -0.000583000132, 0.00285565224, -0.999992847, 0.00240225391, 0.999992371, 0.00285412627, 0.999994338, -0.00240059383, -0.000589011179)
  2623. p228.Anchored = true
  2624. p228.FormFactor = Enum.FormFactor.Custom
  2625. p228.Size = Vector3.new(0.200000033, 0.400000006, 0.800000012)
  2626. p228.BottomSurface = Enum.SurfaceType.Smooth
  2627. p228.TopSurface = Enum.SurfaceType.Smooth
  2628. p229 = Instance.new("Part", m35)
  2629. p229.BrickColor = BrickColor.new("Medium stone grey")
  2630. p229.Material = Enum.Material.Concrete
  2631. p229.CFrame = CFrame.new(11.4931641, 14.7247057, 10.1381226, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2632. p229.Anchored = true
  2633. p229.FormFactor = Enum.FormFactor.Custom
  2634. p229.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  2635. p229.BottomSurface = Enum.SurfaceType.Smooth
  2636. p229.TopSurface = Enum.SurfaceType.Smooth
  2637. p230 = Instance.new("Part", m35)
  2638. p230.BrickColor = BrickColor.new("Dark stone grey")
  2639. p230.Material = Enum.Material.Concrete
  2640. p230.CFrame = CFrame.new(11.4942017, 15.1250658, 10.2784424, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2641. p230.Anchored = true
  2642. p230.FormFactor = Enum.FormFactor.Custom
  2643. p230.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  2644. p230.BottomSurface = Enum.SurfaceType.Smooth
  2645. p230.TopSurface = Enum.SurfaceType.Smooth
  2646. p231 = Instance.new("Part", m35)
  2647. p231.BrickColor = BrickColor.new("Medium stone grey")
  2648. p231.Material = Enum.Material.SmoothPlastic
  2649. p231.Reflectance = 0.20000000298023
  2650. p231.CFrame = CFrame.new(11.3630676, 18.724844, 10.2698975, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2651. p231.Anchored = true
  2652. p231.FormFactor = Enum.FormFactor.Custom
  2653. p231.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  2654. p231.BottomSurface = Enum.SurfaceType.Smooth
  2655. p231.TopSurface = Enum.SurfaceType.Smooth
  2656. p232 = Instance.new("Part", m35)
  2657. p232.BrickColor = BrickColor.new("Dark stone grey")
  2658. p232.Material = Enum.Material.Concrete
  2659. p232.CFrame = CFrame.new(11.5044556, 18.7244473, 10.2697754, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2660. p232.Anchored = true
  2661. p232.FormFactor = Enum.FormFactor.Custom
  2662. p232.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  2663. p232.BottomSurface = Enum.SurfaceType.Smooth
  2664. p232.TopSurface = Enum.SurfaceType.Smooth
  2665. p233 = Instance.new("Part", m35)
  2666. p233.BrickColor = BrickColor.new("Dark stone grey")
  2667. p233.Material = Enum.Material.Concrete
  2668. p233.CFrame = CFrame.new(11.3734741, 22.3244877, 10.119751, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2669. p233.Anchored = true
  2670. p233.FormFactor = Enum.FormFactor.Custom
  2671. p233.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  2672. p233.BottomSurface = Enum.SurfaceType.Smooth
  2673. p233.TopSurface = Enum.SurfaceType.Smooth
  2674. p234 = Instance.new("Part", m35)
  2675. p234.BrickColor = BrickColor.new("Medium stone grey")
  2676. p234.Material = Enum.Material.Concrete
  2677. p234.CFrame = CFrame.new(11.5168457, 23.0252323, 10.1182251, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2678. p234.Anchored = true
  2679. p234.FormFactor = Enum.FormFactor.Custom
  2680. p234.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  2681. p234.BottomSurface = Enum.SurfaceType.Smooth
  2682. p234.TopSurface = Enum.SurfaceType.Smooth
  2683. p235 = Instance.new("Part", m35)
  2684. p235.BrickColor = BrickColor.new("Dark stone grey")
  2685. p235.Material = Enum.Material.Concrete
  2686. p235.CFrame = CFrame.new(9.94979858, 18.7251186, 8.71343994, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2687. p235.Anchored = true
  2688. p235.FormFactor = Enum.FormFactor.Custom
  2689. p235.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  2690. p235.BottomSurface = Enum.SurfaceType.Smooth
  2691. p235.TopSurface = Enum.SurfaceType.Smooth
  2692. p236 = Instance.new("Part", m35)
  2693. p236.BrickColor = BrickColor.new("Medium stone grey")
  2694. p236.Material = Enum.Material.Concrete
  2695. p236.CFrame = CFrame.new(9.737854, 18.7249355, 8.35961914, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2696. p236.Anchored = true
  2697. p236.FormFactor = Enum.FormFactor.Custom
  2698. p236.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2699. p236.BottomSurface = Enum.SurfaceType.Smooth
  2700. p236.TopSurface = Enum.SurfaceType.Smooth
  2701. p237 = Instance.new("Part", m35)
  2702. p237.BrickColor = BrickColor.new("Dark stone grey")
  2703. p237.Material = Enum.Material.Concrete
  2704. p237.CFrame = CFrame.new(12.9182129, 18.8238144, 11.6846924, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2705. p237.Anchored = true
  2706. p237.FormFactor = Enum.FormFactor.Custom
  2707. p237.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  2708. p237.BottomSurface = Enum.SurfaceType.Smooth
  2709. p237.TopSurface = Enum.SurfaceType.Smooth
  2710. p238 = Instance.new("Part", m35)
  2711. p238.BrickColor = BrickColor.new("Medium stone grey")
  2712. p238.Material = Enum.Material.Concrete
  2713. p238.CFrame = CFrame.new(13.2713013, 18.7232876, 11.8973389, 0.706689537, 0.00285565224, -0.707513869, -0.000319541898, 0.999992371, 0.00371683878, 0.707519114, -0.00240059383, 0.706686199)
  2714. p238.Anchored = true
  2715. p238.FormFactor = Enum.FormFactor.Custom
  2716. p238.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  2717. p238.BottomSurface = Enum.SurfaceType.Smooth
  2718. p238.TopSurface = Enum.SurfaceType.Smooth
  2719. p239 = Instance.new("Part", m36)
  2720. p239.BrickColor = BrickColor.new("Medium stone grey")
  2721. p239.Material = Enum.Material.Concrete
  2722. p239.CFrame = CFrame.new(8.44406128, 1.6855402, 30.397583, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2723. p239.Anchored = true
  2724. p239.FormFactor = Enum.FormFactor.Custom
  2725. p239.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  2726. p239.BottomSurface = Enum.SurfaceType.Smooth
  2727. p239.TopSurface = Enum.SurfaceType.Smooth
  2728. b87 = Instance.new("CylinderMesh", p239)
  2729. b87.Name = "Mesh"
  2730. p240 = Instance.new("Part", m36)
  2731. p240.BrickColor = BrickColor.new("Reddish brown")
  2732. p240.Material = Enum.Material.Wood
  2733. p240.CFrame = CFrame.new(9.20883179, 1.78527176, 31.1977539, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2734. p240.Anchored = true
  2735. p240.FormFactor = Enum.FormFactor.Custom
  2736. p240.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  2737. p240.BottomSurface = Enum.SurfaceType.Smooth
  2738. p240.TopSurface = Enum.SurfaceType.Smooth
  2739. p241 = Instance.new("Part", m36)
  2740. p241.BrickColor = BrickColor.new("Medium stone grey")
  2741. p241.Material = Enum.Material.Concrete
  2742. p241.CFrame = CFrame.new(8.44119263, 0.989235163, 31.9993286, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2743. p241.Anchored = true
  2744. p241.FormFactor = Enum.FormFactor.Custom
  2745. p241.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  2746. p241.BottomSurface = Enum.SurfaceType.Smooth
  2747. p241.TopSurface = Enum.SurfaceType.Smooth
  2748. b88 = Instance.new("CylinderMesh", p241)
  2749. b88.Name = "Mesh"
  2750. p242 = Instance.new("Part", m36)
  2751. p242.BrickColor = BrickColor.new("Medium stone grey")
  2752. p242.Material = Enum.Material.Concrete
  2753. p242.CFrame = CFrame.new(10.0411377, 0.984703302, 32.0001831, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2754. p242.Anchored = true
  2755. p242.FormFactor = Enum.FormFactor.Custom
  2756. p242.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  2757. p242.BottomSurface = Enum.SurfaceType.Smooth
  2758. p242.TopSurface = Enum.SurfaceType.Smooth
  2759. b89 = Instance.new("CylinderMesh", p242)
  2760. b89.Name = "Mesh"
  2761. p243 = Instance.new("Part", m36)
  2762. p243.BrickColor = BrickColor.new("Medium stone grey")
  2763. p243.Material = Enum.Material.Concrete
  2764. p243.CFrame = CFrame.new(10.0440063, 1.68099308, 30.398468, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2765. p243.Anchored = true
  2766. p243.FormFactor = Enum.FormFactor.Custom
  2767. p243.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  2768. p243.BottomSurface = Enum.SurfaceType.Smooth
  2769. p243.TopSurface = Enum.SurfaceType.Smooth
  2770. b90 = Instance.new("CylinderMesh", p243)
  2771. b90.Name = "Mesh"
  2772. p244 = Instance.new("Part", m36)
  2773. p244.BrickColor = BrickColor.new("Reddish brown")
  2774. p244.Material = Enum.Material.Wood
  2775. p244.CFrame = CFrame.new(9.21447754, 3.58342934, 30.3933716, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2776. p244.Anchored = true
  2777. p244.FormFactor = Enum.FormFactor.Custom
  2778. p244.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  2779. p244.BottomSurface = Enum.SurfaceType.Smooth
  2780. p244.TopSurface = Enum.SurfaceType.Smooth
  2781. p245 = Instance.new("Part", m37)
  2782. p245.BrickColor = BrickColor.new("Brown")
  2783. p245.CFrame = CFrame.new(10.3787842, 3.3867588, 21.9345093, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  2784. p245.Anchored = true
  2785. p245.FormFactor = Enum.FormFactor.Custom
  2786. p245.Size = Vector3.new(1, 0.200000003, 1)
  2787. p245.BottomSurface = Enum.SurfaceType.Smooth
  2788. p245.TopSurface = Enum.SurfaceType.Smooth
  2789. b91 = Instance.new("SpecialMesh", p245)
  2790. b91.MeshId = "http://www.roblox.com/asset/?id=90782182"
  2791. b91.TextureId = ""
  2792. b91.MeshType = Enum.MeshType.FileMesh
  2793. b91.Name = "Mesh"
  2794. b91.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  2795. p246 = Instance.new("Part", m37)
  2796. p246.BrickColor = BrickColor.new("Dark stone grey")
  2797. p246.Material = Enum.Material.DiamondPlate
  2798. p246.CFrame = CFrame.new(10.3566284, 4.24651527, 21.932373, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  2799. p246.Anchored = true
  2800. p246.FormFactor = Enum.FormFactor.Custom
  2801. p246.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
  2802. p246.BottomSurface = Enum.SurfaceType.Smooth
  2803. p246.TopSurface = Enum.SurfaceType.Smooth
  2804. b92 = Instance.new("CylinderMesh", p246)
  2805. b92.Name = "Mesh"
  2806. p247 = Instance.new("Part", m37)
  2807. p247.BrickColor = BrickColor.new("Dusty Rose")
  2808. p247.CFrame = CFrame.new(10.371521, 4.48652077, 21.9318237, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  2809. p247.Anchored = true
  2810. p247.FormFactor = Enum.FormFactor.Custom
  2811. p247.Size = Vector3.new(1, 1, 1)
  2812. p247.BottomSurface = Enum.SurfaceType.Smooth
  2813. p247.TopSurface = Enum.SurfaceType.Smooth
  2814. b93 = Instance.new("SpecialMesh", p247)
  2815. b93.MeshId = "http://www.roblox.com/asset/?id=90782182"
  2816. b93.TextureId = ""
  2817. b93.MeshType = Enum.MeshType.FileMesh
  2818. b93.Name = "Mesh"
  2819. b93.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  2820. p248 = Instance.new("Part", m37)
  2821. p248.BrickColor = BrickColor.new("Pastel yellow")
  2822. p248.Material = Enum.Material.SmoothPlastic
  2823. p248.CFrame = CFrame.new(10.3668823, 4.68618202, 21.931366, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  2824. p248.Anchored = true
  2825. p248.FormFactor = Enum.FormFactor.Custom
  2826. p248.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  2827. p248.BottomSurface = Enum.SurfaceType.Smooth
  2828. p248.TopSurface = Enum.SurfaceType.Smooth
  2829. b94 = Instance.new("SpecialMesh", p248)
  2830. b94.MeshType = Enum.MeshType.Sphere
  2831. b94.Name = "Mesh"
  2832. b94.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2833. x8 = Instance.new("PointLight", p248)
  2834. x8.Color = Color3.new(1, 1, 0.498039)
  2835. x8.Range = 15
  2836. p249 = Instance.new("Part", m37)
  2837. p249.BrickColor = BrickColor.new("Dusty Rose")
  2838. p249.Material = Enum.Material.SmoothPlastic
  2839. p249.CFrame = CFrame.new(10.366333, 4.70618629, 21.9313049, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  2840. p249.Anchored = true
  2841. p249.FormFactor = Enum.FormFactor.Custom
  2842. p249.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  2843. p249.BottomSurface = Enum.SurfaceType.Smooth
  2844. p249.TopSurface = Enum.SurfaceType.Smooth
  2845. b95 = Instance.new("SpecialMesh", p249)
  2846. b95.MeshType = Enum.MeshType.Sphere
  2847. b95.Name = "Mesh"
  2848. b95.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2849. p250 = Instance.new("Part", m38)
  2850. p250.BrickColor = BrickColor.new("Dark stone grey")
  2851. p250.Material = Enum.Material.DiamondPlate
  2852. p250.CFrame = CFrame.new(10.6795654, 47.4119873, 16.1865234, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2853. p250.Anchored = true
  2854. p250.FormFactor = Enum.FormFactor.Custom
  2855. p250.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  2856. p250.BottomSurface = Enum.SurfaceType.Smooth
  2857. p250.TopSurface = Enum.SurfaceType.Smooth
  2858. b96 = Instance.new("CylinderMesh", p250)
  2859. b96.Name = "Mesh"
  2860. p251 = Instance.new("Part", m38)
  2861. p251.BrickColor = BrickColor.new("Dark stone grey")
  2862. p251.Material = Enum.Material.DiamondPlate
  2863. p251.CFrame = CFrame.new(10.678772, 47.4156036, 17.6865234, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2864. p251.Anchored = true
  2865. p251.FormFactor = Enum.FormFactor.Custom
  2866. p251.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  2867. p251.BottomSurface = Enum.SurfaceType.Smooth
  2868. p251.TopSurface = Enum.SurfaceType.Smooth
  2869. b97 = Instance.new("CylinderMesh", p251)
  2870. b97.Name = "Mesh"
  2871. p252 = Instance.new("Part", m38)
  2872. p252.BrickColor = BrickColor.new("Dark stone grey")
  2873. p252.Material = Enum.Material.Concrete
  2874. p252.CFrame = CFrame.new(10.5758667, 46.4158478, 17.6888733, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
  2875. p252.Anchored = true
  2876. p252.FormFactor = Enum.FormFactor.Custom
  2877. p252.Size = Vector3.new(3.80000019, 0.200000003, 5.19999886)
  2878. p252.BottomSurface = Enum.SurfaceType.Smooth
  2879. p252.TopSurface = Enum.SurfaceType.Smooth
  2880. p253 = Instance.new("Part", m38)
  2881. p253.BrickColor = BrickColor.new("Medium stone grey")
  2882. p253.Material = Enum.Material.Brick
  2883. p253.CFrame = CFrame.new(10.5718994, 45.0160522, 17.6922607, 0.999992788, 0.00285564945, -0.000582955196, -0.00285413186, 0.999992251, 0.00240225974, 0.000589145347, -0.00240058731, 0.999994218)
  2884. p253.Anchored = true
  2885. p253.FormFactor = Enum.FormFactor.Custom
  2886. p253.Size = Vector3.new(3, 2.60000038, 4.39999962)
  2887. p253.BottomSurface = Enum.SurfaceType.Smooth
  2888. p253.TopSurface = Enum.SurfaceType.Smooth
  2889. p254 = Instance.new("Part", m38)
  2890. p254.BrickColor = BrickColor.new("Dark stone grey")
  2891. p254.Material = Enum.Material.DiamondPlate
  2892. p254.CFrame = CFrame.new(10.6778259, 47.41922, 19.1864929, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2893. p254.Anchored = true
  2894. p254.FormFactor = Enum.FormFactor.Custom
  2895. p254.Size = Vector3.new(1.39999974, 1.79999995, 1.5999999)
  2896. p254.BottomSurface = Enum.SurfaceType.Smooth
  2897. p254.TopSurface = Enum.SurfaceType.Smooth
  2898. b98 = Instance.new("CylinderMesh", p254)
  2899. b98.Name = "Mesh"
  2900. p255 = Instance.new("Part", m39)
  2901. p255.BrickColor = BrickColor.new("Dusty Rose")
  2902. p255.CFrame = CFrame.new(-11.208252, 13.8744555, 32.896698, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  2903. p255.Anchored = true
  2904. p255.FormFactor = Enum.FormFactor.Custom
  2905. p255.Size = Vector3.new(1, 1, 1)
  2906. p255.BottomSurface = Enum.SurfaceType.Smooth
  2907. p255.TopSurface = Enum.SurfaceType.Smooth
  2908. b99 = Instance.new("SpecialMesh", p255)
  2909. b99.MeshId = "http://www.roblox.com/asset/?id=90782182"
  2910. b99.TextureId = ""
  2911. b99.MeshType = Enum.MeshType.FileMesh
  2912. b99.Name = "Mesh"
  2913. b99.Scale = Vector3.new(0.200000003, 0.100000001, 0.200000003)
  2914. p256 = Instance.new("Part", m39)
  2915. p256.BrickColor = BrickColor.new("Pastel yellow")
  2916. p256.Material = Enum.Material.SmoothPlastic
  2917. p256.CFrame = CFrame.new(-11.2128906, 14.0744219, 32.8961792, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  2918. p256.Anchored = true
  2919. p256.FormFactor = Enum.FormFactor.Custom
  2920. p256.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  2921. p256.BottomSurface = Enum.SurfaceType.Smooth
  2922. p256.TopSurface = Enum.SurfaceType.Smooth
  2923. b100 = Instance.new("SpecialMesh", p256)
  2924. b100.MeshType = Enum.MeshType.Sphere
  2925. b100.Name = "Mesh"
  2926. b100.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2927. x9 = Instance.new("PointLight", p256)
  2928. x9.Color = Color3.new(1, 1, 0.498039)
  2929. x9.Range = 15
  2930. p257 = Instance.new("Part", m39)
  2931. p257.BrickColor = BrickColor.new("Dusty Rose")
  2932. p257.Material = Enum.Material.SmoothPlastic
  2933. p257.CFrame = CFrame.new(-11.2134094, 14.0944109, 32.8962097, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  2934. p257.Anchored = true
  2935. p257.FormFactor = Enum.FormFactor.Custom
  2936. p257.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  2937. p257.BottomSurface = Enum.SurfaceType.Smooth
  2938. p257.TopSurface = Enum.SurfaceType.Smooth
  2939. b101 = Instance.new("SpecialMesh", p257)
  2940. b101.MeshType = Enum.MeshType.Sphere
  2941. b101.Name = "Mesh"
  2942. b101.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  2943. p258 = Instance.new("Part", m39)
  2944. p258.BrickColor = BrickColor.new("Dark stone grey")
  2945. p258.Material = Enum.Material.DiamondPlate
  2946. p258.CFrame = CFrame.new(-11.2313232, 14.4341631, 32.8953247, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  2947. p258.Anchored = true
  2948. p258.FormFactor = Enum.FormFactor.Custom
  2949. p258.Size = Vector3.new(0.200000003, 0.400001049, 0.200000003)
  2950. p258.BottomSurface = Enum.SurfaceType.Smooth
  2951. p258.TopSurface = Enum.SurfaceType.Smooth
  2952. b102 = Instance.new("CylinderMesh", p258)
  2953. b102.Name = "Mesh"
  2954. p259 = Instance.new("Part", m40)
  2955. p259.BrickColor = BrickColor.new("Medium stone grey")
  2956. p259.Material = Enum.Material.Concrete
  2957. p259.CFrame = CFrame.new(9.33032227, 0.42173031, 47.5010681, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2958. p259.Anchored = true
  2959. p259.FormFactor = Enum.FormFactor.Custom
  2960. p259.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  2961. p259.BottomSurface = Enum.SurfaceType.Smooth
  2962. p259.TopSurface = Enum.SurfaceType.Smooth
  2963. b103 = Instance.new("CylinderMesh", p259)
  2964. b103.Name = "Mesh"
  2965. p260 = Instance.new("Part", m40)
  2966. p260.BrickColor = BrickColor.new("Medium stone grey")
  2967. p260.Material = Enum.Material.Concrete
  2968. p260.CFrame = CFrame.new(9.33370972, 1.6217432, 47.4981689, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  2969. p260.Anchored = true
  2970. p260.FormFactor = Enum.FormFactor.Custom
  2971. p260.Size = Vector3.new(0.400000006, 2.6000011, 0.400000006)
  2972. p260.BottomSurface = Enum.SurfaceType.Smooth
  2973. p260.TopSurface = Enum.SurfaceType.Smooth
  2974. b104 = Instance.new("CylinderMesh", p260)
  2975. b104.Name = "Mesh"
  2976. p261 = Instance.new("Part", m40)
  2977. p261.BrickColor = BrickColor.new("Brick yellow")
  2978. p261.Material = Enum.Material.Concrete
  2979. p261.CFrame = CFrame.new(9.30810547, 3.12191176, 47.4995728, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2980. p261.Anchored = true
  2981. p261.FormFactor = Enum.FormFactor.Custom
  2982. p261.Size = Vector3.new(3.73999095, 0.200000003, 4.09000874)
  2983. p261.BottomSurface = Enum.SurfaceType.Smooth
  2984. p261.TopSurface = Enum.SurfaceType.Smooth
  2985. p262 = Instance.new("Part", m40)
  2986. p262.BrickColor = BrickColor.new("Reddish brown")
  2987. p262.Material = Enum.Material.Wood
  2988. p262.CFrame = CFrame.new(9.30310059, 3.12191176, 47.4945679, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  2989. p262.Anchored = true
  2990. p262.FormFactor = Enum.FormFactor.Custom
  2991. p262.Size = Vector3.new(3.66999078, 0.400000006, 4.00000858)
  2992. p262.BottomSurface = Enum.SurfaceType.Smooth
  2993. p262.TopSurface = Enum.SurfaceType.Smooth
  2994. p263 = Instance.new("Part", m41)
  2995. p263.BrickColor = BrickColor.new("Medium stone grey")
  2996. p263.Material = Enum.Material.Concrete
  2997. p263.CFrame = CFrame.new(15.6693115, 14.8107042, 50.9402771, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  2998. p263.Anchored = true
  2999. p263.FormFactor = Enum.FormFactor.Custom
  3000. p263.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  3001. p263.BottomSurface = Enum.SurfaceType.Smooth
  3002. p263.TopSurface = Enum.SurfaceType.Smooth
  3003. p264 = Instance.new("Part", m41)
  3004. p264.BrickColor = BrickColor.new("Dark stone grey")
  3005. p264.Material = Enum.Material.Concrete
  3006. p264.CFrame = CFrame.new(15.5704651, 15.2112789, 51.0392151, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3007. p264.Anchored = true
  3008. p264.FormFactor = Enum.FormFactor.Custom
  3009. p264.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  3010. p264.BottomSurface = Enum.SurfaceType.Smooth
  3011. p264.TopSurface = Enum.SurfaceType.Smooth
  3012. p265 = Instance.new("Part", m41)
  3013. p265.BrickColor = BrickColor.new("Medium stone grey")
  3014. p265.Material = Enum.Material.SmoothPlastic
  3015. p265.Reflectance = 0.20000000298023
  3016. p265.CFrame = CFrame.new(15.4807434, 18.8106918, 50.930542, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3017. p265.Anchored = true
  3018. p265.FormFactor = Enum.FormFactor.Custom
  3019. p265.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  3020. p265.BottomSurface = Enum.SurfaceType.Smooth
  3021. p265.TopSurface = Enum.SurfaceType.Smooth
  3022. p266 = Instance.new("Part", m41)
  3023. p266.BrickColor = BrickColor.new("Dark stone grey")
  3024. p266.Material = Enum.Material.Concrete
  3025. p266.CFrame = CFrame.new(15.580719, 18.8106613, 51.0306091, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3026. p266.Anchored = true
  3027. p266.FormFactor = Enum.FormFactor.Custom
  3028. p266.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  3029. p266.BottomSurface = Enum.SurfaceType.Smooth
  3030. p266.TopSurface = Enum.SurfaceType.Smooth
  3031. p267 = Instance.new("Part", m41)
  3032. p267.BrickColor = BrickColor.new("Dark stone grey")
  3033. p267.Material = Enum.Material.Concrete
  3034. p267.CFrame = CFrame.new(15.5911255, 22.4101505, 50.8219604, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3035. p267.Anchored = true
  3036. p267.FormFactor = Enum.FormFactor.Custom
  3037. p267.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  3038. p267.BottomSurface = Enum.SurfaceType.Smooth
  3039. p267.TopSurface = Enum.SurfaceType.Smooth
  3040. p268 = Instance.new("Part", m41)
  3041. p268.BrickColor = BrickColor.new("Medium stone grey")
  3042. p268.Material = Enum.Material.Concrete
  3043. p268.CFrame = CFrame.new(15.6930237, 23.1112309, 50.9203491, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3044. p268.Anchored = true
  3045. p268.FormFactor = Enum.FormFactor.Custom
  3046. p268.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  3047. p268.BottomSurface = Enum.SurfaceType.Smooth
  3048. p268.TopSurface = Enum.SurfaceType.Smooth
  3049. p269 = Instance.new("Part", m41)
  3050. p269.BrickColor = BrickColor.new("Dark stone grey")
  3051. p269.Material = Enum.Material.Concrete
  3052. p269.CFrame = CFrame.new(15.5820007, 18.8053207, 48.8305969, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3053. p269.Anchored = true
  3054. p269.FormFactor = Enum.FormFactor.Custom
  3055. p269.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  3056. p269.BottomSurface = Enum.SurfaceType.Smooth
  3057. p269.TopSurface = Enum.SurfaceType.Smooth
  3058. p270 = Instance.new("Part", m41)
  3059. p270.BrickColor = BrickColor.new("Medium stone grey")
  3060. p270.Material = Enum.Material.Concrete
  3061. p270.CFrame = CFrame.new(15.6822205, 18.8041306, 48.4307556, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3062. p270.Anchored = true
  3063. p270.FormFactor = Enum.FormFactor.Custom
  3064. p270.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3065. p270.BottomSurface = Enum.SurfaceType.Smooth
  3066. p270.TopSurface = Enum.SurfaceType.Smooth
  3067. p271 = Instance.new("Part", m41)
  3068. p271.BrickColor = BrickColor.new("Dark stone grey")
  3069. p271.Material = Enum.Material.Concrete
  3070. p271.CFrame = CFrame.new(15.5798645, 18.9154892, 53.030304, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3071. p271.Anchored = true
  3072. p271.FormFactor = Enum.FormFactor.Custom
  3073. p271.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  3074. p271.BottomSurface = Enum.SurfaceType.Smooth
  3075. p271.TopSurface = Enum.SurfaceType.Smooth
  3076. p272 = Instance.new("Part", m41)
  3077. p272.BrickColor = BrickColor.new("Medium stone grey")
  3078. p272.Material = Enum.Material.Concrete
  3079. p272.CFrame = CFrame.new(15.6793213, 18.816124, 53.4306335, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3080. p272.Anchored = true
  3081. p272.FormFactor = Enum.FormFactor.Custom
  3082. p272.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3083. p272.BottomSurface = Enum.SurfaceType.Smooth
  3084. p272.TopSurface = Enum.SurfaceType.Smooth
  3085. p273 = Instance.new("Part", m42)
  3086. p273.BrickColor = BrickColor.new("Medium stone grey")
  3087. p273.Material = Enum.Material.Concrete
  3088. p273.CFrame = CFrame.new(15.6751404, 14.7866869, 40.9403076, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3089. p273.Anchored = true
  3090. p273.FormFactor = Enum.FormFactor.Custom
  3091. p273.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  3092. p273.BottomSurface = Enum.SurfaceType.Smooth
  3093. p273.TopSurface = Enum.SurfaceType.Smooth
  3094. p274 = Instance.new("Part", m42)
  3095. p274.BrickColor = BrickColor.new("Dark stone grey")
  3096. p274.Material = Enum.Material.Concrete
  3097. p274.CFrame = CFrame.new(15.5762634, 15.1872454, 41.0392456, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3098. p274.Anchored = true
  3099. p274.FormFactor = Enum.FormFactor.Custom
  3100. p274.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  3101. p274.BottomSurface = Enum.SurfaceType.Smooth
  3102. p274.TopSurface = Enum.SurfaceType.Smooth
  3103. p275 = Instance.new("Part", m42)
  3104. p275.BrickColor = BrickColor.new("Medium stone grey")
  3105. p275.Material = Enum.Material.SmoothPlastic
  3106. p275.Reflectance = 0.20000000298023
  3107. p275.CFrame = CFrame.new(15.4865723, 18.7866573, 40.930542, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3108. p275.Anchored = true
  3109. p275.FormFactor = Enum.FormFactor.Custom
  3110. p275.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  3111. p275.BottomSurface = Enum.SurfaceType.Smooth
  3112. p275.TopSurface = Enum.SurfaceType.Smooth
  3113. p276 = Instance.new("Part", m42)
  3114. p276.BrickColor = BrickColor.new("Dark stone grey")
  3115. p276.Material = Enum.Material.Concrete
  3116. p276.CFrame = CFrame.new(15.5865479, 18.7866116, 41.0306091, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3117. p276.Anchored = true
  3118. p276.FormFactor = Enum.FormFactor.Custom
  3119. p276.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  3120. p276.BottomSurface = Enum.SurfaceType.Smooth
  3121. p276.TopSurface = Enum.SurfaceType.Smooth
  3122. p277 = Instance.new("Part", m42)
  3123. p277.BrickColor = BrickColor.new("Dark stone grey")
  3124. p277.Material = Enum.Material.Concrete
  3125. p277.CFrame = CFrame.new(15.5969543, 22.3861027, 40.8220215, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3126. p277.Anchored = true
  3127. p277.FormFactor = Enum.FormFactor.Custom
  3128. p277.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  3129. p277.BottomSurface = Enum.SurfaceType.Smooth
  3130. p277.TopSurface = Enum.SurfaceType.Smooth
  3131. p278 = Instance.new("Part", m42)
  3132. p278.BrickColor = BrickColor.new("Medium stone grey")
  3133. p278.Material = Enum.Material.Concrete
  3134. p278.CFrame = CFrame.new(15.6988831, 23.087183, 40.9203491, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3135. p278.Anchored = true
  3136. p278.FormFactor = Enum.FormFactor.Custom
  3137. p278.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  3138. p278.BottomSurface = Enum.SurfaceType.Smooth
  3139. p278.TopSurface = Enum.SurfaceType.Smooth
  3140. p279 = Instance.new("Part", m42)
  3141. p279.BrickColor = BrickColor.new("Dark stone grey")
  3142. p279.Material = Enum.Material.Concrete
  3143. p279.CFrame = CFrame.new(15.5878296, 18.7813015, 38.8306885, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3144. p279.Anchored = true
  3145. p279.FormFactor = Enum.FormFactor.Custom
  3146. p279.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  3147. p279.BottomSurface = Enum.SurfaceType.Smooth
  3148. p279.TopSurface = Enum.SurfaceType.Smooth
  3149. p280 = Instance.new("Part", m42)
  3150. p280.BrickColor = BrickColor.new("Medium stone grey")
  3151. p280.Material = Enum.Material.Concrete
  3152. p280.CFrame = CFrame.new(15.6880798, 18.7800808, 38.4307251, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3153. p280.Anchored = true
  3154. p280.FormFactor = Enum.FormFactor.Custom
  3155. p280.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3156. p280.BottomSurface = Enum.SurfaceType.Smooth
  3157. p280.TopSurface = Enum.SurfaceType.Smooth
  3158. p281 = Instance.new("Part", m42)
  3159. p281.BrickColor = BrickColor.new("Dark stone grey")
  3160. p281.Material = Enum.Material.Concrete
  3161. p281.CFrame = CFrame.new(15.5856934, 18.8914261, 43.0303955, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3162. p281.Anchored = true
  3163. p281.FormFactor = Enum.FormFactor.Custom
  3164. p281.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  3165. p281.BottomSurface = Enum.SurfaceType.Smooth
  3166. p281.TopSurface = Enum.SurfaceType.Smooth
  3167. p282 = Instance.new("Part", m42)
  3168. p282.BrickColor = BrickColor.new("Medium stone grey")
  3169. p282.Material = Enum.Material.Concrete
  3170. p282.CFrame = CFrame.new(15.6850891, 18.7920742, 43.4306946, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3171. p282.Anchored = true
  3172. p282.FormFactor = Enum.FormFactor.Custom
  3173. p282.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3174. p282.BottomSurface = Enum.SurfaceType.Smooth
  3175. p282.TopSurface = Enum.SurfaceType.Smooth
  3176. p283 = Instance.new("Part", m43)
  3177. p283.BrickColor = BrickColor.new("Medium stone grey")
  3178. p283.Material = Enum.Material.Concrete
  3179. p283.CFrame = CFrame.new(8.43643188, 1.7145015, 43.3973389, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3180. p283.Anchored = true
  3181. p283.FormFactor = Enum.FormFactor.Custom
  3182. p283.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  3183. p283.BottomSurface = Enum.SurfaceType.Smooth
  3184. p283.TopSurface = Enum.SurfaceType.Smooth
  3185. b105 = Instance.new("CylinderMesh", p283)
  3186. b105.Name = "Mesh"
  3187. p284 = Instance.new("Part", m43)
  3188. p284.BrickColor = BrickColor.new("Reddish brown")
  3189. p284.Material = Enum.Material.Wood
  3190. p284.CFrame = CFrame.new(9.20126343, 1.81423306, 44.1976318, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3191. p284.Anchored = true
  3192. p284.FormFactor = Enum.FormFactor.Custom
  3193. p284.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  3194. p284.BottomSurface = Enum.SurfaceType.Smooth
  3195. p284.TopSurface = Enum.SurfaceType.Smooth
  3196. p285 = Instance.new("Part", m43)
  3197. p285.BrickColor = BrickColor.new("Medium stone grey")
  3198. p285.Material = Enum.Material.Concrete
  3199. p285.CFrame = CFrame.new(8.43347168, 1.0182879, 44.9991455, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3200. p285.Anchored = true
  3201. p285.FormFactor = Enum.FormFactor.Custom
  3202. p285.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  3203. p285.BottomSurface = Enum.SurfaceType.Smooth
  3204. p285.TopSurface = Enum.SurfaceType.Smooth
  3205. b106 = Instance.new("CylinderMesh", p285)
  3206. b106.Name = "Mesh"
  3207. p286 = Instance.new("Part", m43)
  3208. p286.BrickColor = BrickColor.new("Medium stone grey")
  3209. p286.Material = Enum.Material.Concrete
  3210. p286.CFrame = CFrame.new(10.0335083, 1.01372552, 45.0000916, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3211. p286.Anchored = true
  3212. p286.FormFactor = Enum.FormFactor.Custom
  3213. p286.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  3214. p286.BottomSurface = Enum.SurfaceType.Smooth
  3215. p286.TopSurface = Enum.SurfaceType.Smooth
  3216. b107 = Instance.new("CylinderMesh", p286)
  3217. b107.Name = "Mesh"
  3218. p287 = Instance.new("Part", m43)
  3219. p287.BrickColor = BrickColor.new("Medium stone grey")
  3220. p287.Material = Enum.Material.Concrete
  3221. p287.CFrame = CFrame.new(10.0364685, 1.70993912, 43.3983459, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3222. p287.Anchored = true
  3223. p287.FormFactor = Enum.FormFactor.Custom
  3224. p287.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  3225. p287.BottomSurface = Enum.SurfaceType.Smooth
  3226. p287.TopSurface = Enum.SurfaceType.Smooth
  3227. b108 = Instance.new("CylinderMesh", p287)
  3228. b108.Name = "Mesh"
  3229. p288 = Instance.new("Part", m43)
  3230. p288.BrickColor = BrickColor.new("Reddish brown")
  3231. p288.Material = Enum.Material.Wood
  3232. p288.CFrame = CFrame.new(9.20687866, 3.61236, 43.3932495, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3233. p288.Anchored = true
  3234. p288.FormFactor = Enum.FormFactor.Custom
  3235. p288.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  3236. p288.BottomSurface = Enum.SurfaceType.Smooth
  3237. p288.TopSurface = Enum.SurfaceType.Smooth
  3238. p289 = Instance.new("Part", m44)
  3239. p289.BrickColor = BrickColor.new("Medium stone grey")
  3240. p289.Material = Enum.Material.Concrete
  3241. p289.CFrame = CFrame.new(15.7104492, 29.2106018, 50.9057007, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3242. p289.Anchored = true
  3243. p289.FormFactor = Enum.FormFactor.Custom
  3244. p289.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  3245. p289.BottomSurface = Enum.SurfaceType.Smooth
  3246. p289.TopSurface = Enum.SurfaceType.Smooth
  3247. p290 = Instance.new("Part", m44)
  3248. p290.BrickColor = BrickColor.new("Dark stone grey")
  3249. p290.Material = Enum.Material.Concrete
  3250. p290.CFrame = CFrame.new(15.6115723, 29.611145, 51.0046692, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3251. p290.Anchored = true
  3252. p290.FormFactor = Enum.FormFactor.Custom
  3253. p290.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  3254. p290.BottomSurface = Enum.SurfaceType.Smooth
  3255. p290.TopSurface = Enum.SurfaceType.Smooth
  3256. p291 = Instance.new("Part", m44)
  3257. p291.BrickColor = BrickColor.new("Medium stone grey")
  3258. p291.Material = Enum.Material.SmoothPlastic
  3259. p291.Reflectance = 0.20000000298023
  3260. p291.CFrame = CFrame.new(15.5218201, 33.2106476, 50.8959656, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3261. p291.Anchored = true
  3262. p291.FormFactor = Enum.FormFactor.Custom
  3263. p291.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  3264. p291.BottomSurface = Enum.SurfaceType.Smooth
  3265. p291.TopSurface = Enum.SurfaceType.Smooth
  3266. p292 = Instance.new("Part", m44)
  3267. p292.BrickColor = BrickColor.new("Dark stone grey")
  3268. p292.Material = Enum.Material.Concrete
  3269. p292.CFrame = CFrame.new(15.6218567, 33.2106171, 50.9960327, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3270. p292.Anchored = true
  3271. p292.FormFactor = Enum.FormFactor.Custom
  3272. p292.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  3273. p292.BottomSurface = Enum.SurfaceType.Smooth
  3274. p292.TopSurface = Enum.SurfaceType.Smooth
  3275. p293 = Instance.new("Part", m44)
  3276. p293.BrickColor = BrickColor.new("Dark stone grey")
  3277. p293.Material = Enum.Material.Concrete
  3278. p293.CFrame = CFrame.new(15.6322632, 36.8100891, 50.787384, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3279. p293.Anchored = true
  3280. p293.FormFactor = Enum.FormFactor.Custom
  3281. p293.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  3282. p293.BottomSurface = Enum.SurfaceType.Smooth
  3283. p293.TopSurface = Enum.SurfaceType.Smooth
  3284. p294 = Instance.new("Part", m44)
  3285. p294.BrickColor = BrickColor.new("Medium stone grey")
  3286. p294.Material = Enum.Material.Concrete
  3287. p294.CFrame = CFrame.new(15.7341614, 37.5112, 50.8857727, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3288. p294.Anchored = true
  3289. p294.FormFactor = Enum.FormFactor.Custom
  3290. p294.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  3291. p294.BottomSurface = Enum.SurfaceType.Smooth
  3292. p294.TopSurface = Enum.SurfaceType.Smooth
  3293. p295 = Instance.new("Part", m44)
  3294. p295.BrickColor = BrickColor.new("Dark stone grey")
  3295. p295.Material = Enum.Material.Concrete
  3296. p295.CFrame = CFrame.new(15.6231384, 33.2052917, 48.79599, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3297. p295.Anchored = true
  3298. p295.FormFactor = Enum.FormFactor.Custom
  3299. p295.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  3300. p295.BottomSurface = Enum.SurfaceType.Smooth
  3301. p295.TopSurface = Enum.SurfaceType.Smooth
  3302. p296 = Instance.new("Part", m44)
  3303. p296.BrickColor = BrickColor.new("Medium stone grey")
  3304. p296.Material = Enum.Material.Concrete
  3305. p296.CFrame = CFrame.new(15.7233276, 33.2040558, 48.3961487, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3306. p296.Anchored = true
  3307. p296.FormFactor = Enum.FormFactor.Custom
  3308. p296.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3309. p296.BottomSurface = Enum.SurfaceType.Smooth
  3310. p296.TopSurface = Enum.SurfaceType.Smooth
  3311. p297 = Instance.new("Part", m44)
  3312. p297.BrickColor = BrickColor.new("Dark stone grey")
  3313. p297.Material = Enum.Material.Concrete
  3314. p297.CFrame = CFrame.new(15.6210022, 33.3154144, 52.9957275, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3315. p297.Anchored = true
  3316. p297.FormFactor = Enum.FormFactor.Custom
  3317. p297.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  3318. p297.BottomSurface = Enum.SurfaceType.Smooth
  3319. p297.TopSurface = Enum.SurfaceType.Smooth
  3320. p298 = Instance.new("Part", m44)
  3321. p298.BrickColor = BrickColor.new("Medium stone grey")
  3322. p298.Material = Enum.Material.Concrete
  3323. p298.CFrame = CFrame.new(15.7203979, 33.2160339, 53.3961182, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3324. p298.Anchored = true
  3325. p298.FormFactor = Enum.FormFactor.Custom
  3326. p298.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3327. p298.BottomSurface = Enum.SurfaceType.Smooth
  3328. p298.TopSurface = Enum.SurfaceType.Smooth
  3329. p299 = Instance.new("Part", m45)
  3330. p299.BrickColor = BrickColor.new("Medium stone grey")
  3331. p299.Material = Enum.Material.Concrete
  3332. p299.CFrame = CFrame.new(15.7162781, 29.1865845, 40.9057617, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3333. p299.Anchored = true
  3334. p299.FormFactor = Enum.FormFactor.Custom
  3335. p299.Size = Vector3.new(5.59999895, 0.600000262, 0.599989116)
  3336. p299.BottomSurface = Enum.SurfaceType.Smooth
  3337. p299.TopSurface = Enum.SurfaceType.Smooth
  3338. p300 = Instance.new("Part", m45)
  3339. p300.BrickColor = BrickColor.new("Dark stone grey")
  3340. p300.Material = Enum.Material.Concrete
  3341. p300.CFrame = CFrame.new(15.6174011, 29.5871277, 41.0046692, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3342. p300.Anchored = true
  3343. p300.FormFactor = Enum.FormFactor.Custom
  3344. p300.Size = Vector3.new(4.19999075, 0.200000003, 0.399989128)
  3345. p300.BottomSurface = Enum.SurfaceType.Smooth
  3346. p300.TopSurface = Enum.SurfaceType.Smooth
  3347. p301 = Instance.new("Part", m45)
  3348. p301.BrickColor = BrickColor.new("Medium stone grey")
  3349. p301.Material = Enum.Material.SmoothPlastic
  3350. p301.Reflectance = 0.20000000298023
  3351. p301.CFrame = CFrame.new(15.5276489, 33.1865997, 40.8959961, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3352. p301.Anchored = true
  3353. p301.FormFactor = Enum.FormFactor.Custom
  3354. p301.Size = Vector3.new(3.99998093, 7.00001144, 0.200000003)
  3355. p301.BottomSurface = Enum.SurfaceType.Smooth
  3356. p301.TopSurface = Enum.SurfaceType.Smooth
  3357. p302 = Instance.new("Part", m45)
  3358. p302.BrickColor = BrickColor.new("Dark stone grey")
  3359. p302.Material = Enum.Material.Concrete
  3360. p302.CFrame = CFrame.new(15.6276855, 33.1865692, 40.9960327, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3361. p302.Anchored = true
  3362. p302.FormFactor = Enum.FormFactor.Custom
  3363. p302.Size = Vector3.new(4.19999123, 0.200000003, 0.399989128)
  3364. p302.BottomSurface = Enum.SurfaceType.Smooth
  3365. p302.TopSurface = Enum.SurfaceType.Smooth
  3366. p303 = Instance.new("Part", m45)
  3367. p303.BrickColor = BrickColor.new("Dark stone grey")
  3368. p303.Material = Enum.Material.Concrete
  3369. p303.CFrame = CFrame.new(15.638092, 36.7860565, 40.7874756, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3370. p303.Anchored = true
  3371. p303.FormFactor = Enum.FormFactor.Custom
  3372. p303.Size = Vector3.new(4.19998264, 0.200000003, 0.399989128)
  3373. p303.BottomSurface = Enum.SurfaceType.Smooth
  3374. p303.TopSurface = Enum.SurfaceType.Smooth
  3375. p304 = Instance.new("Part", m45)
  3376. p304.BrickColor = BrickColor.new("Medium stone grey")
  3377. p304.Material = Enum.Material.Concrete
  3378. p304.CFrame = CFrame.new(15.7399902, 37.4871521, 40.8858032, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3379. p304.Anchored = true
  3380. p304.FormFactor = Enum.FormFactor.Custom
  3381. p304.Size = Vector3.new(5.59999895, 1.20000029, 0.599989116)
  3382. p304.BottomSurface = Enum.SurfaceType.Smooth
  3383. p304.TopSurface = Enum.SurfaceType.Smooth
  3384. p305 = Instance.new("Part", m45)
  3385. p305.BrickColor = BrickColor.new("Dark stone grey")
  3386. p305.Material = Enum.Material.Concrete
  3387. p305.CFrame = CFrame.new(15.6289368, 33.1812286, 38.7961426, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3388. p305.Anchored = true
  3389. p305.FormFactor = Enum.FormFactor.Custom
  3390. p305.Size = Vector3.new(0.200000003, 7.40000582, 0.399989128)
  3391. p305.BottomSurface = Enum.SurfaceType.Smooth
  3392. p305.TopSurface = Enum.SurfaceType.Smooth
  3393. p306 = Instance.new("Part", m45)
  3394. p306.BrickColor = BrickColor.new("Medium stone grey")
  3395. p306.Material = Enum.Material.Concrete
  3396. p306.CFrame = CFrame.new(15.729126, 33.1800232, 38.3961792, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3397. p306.Anchored = true
  3398. p306.FormFactor = Enum.FormFactor.Custom
  3399. p306.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3400. p306.BottomSurface = Enum.SurfaceType.Smooth
  3401. p306.TopSurface = Enum.SurfaceType.Smooth
  3402. p307 = Instance.new("Part", m45)
  3403. p307.BrickColor = BrickColor.new("Dark stone grey")
  3404. p307.Material = Enum.Material.Concrete
  3405. p307.CFrame = CFrame.new(15.6268311, 33.2913971, 42.9958191, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3406. p307.Anchored = true
  3407. p307.FormFactor = Enum.FormFactor.Custom
  3408. p307.Size = Vector3.new(0.200000003, 7.1999979, 0.399989128)
  3409. p307.BottomSurface = Enum.SurfaceType.Smooth
  3410. p307.TopSurface = Enum.SurfaceType.Smooth
  3411. p308 = Instance.new("Part", m45)
  3412. p308.BrickColor = BrickColor.new("Medium stone grey")
  3413. p308.Material = Enum.Material.Concrete
  3414. p308.CFrame = CFrame.new(15.7261963, 33.1920166, 43.3961182, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3415. p308.Anchored = true
  3416. p308.FormFactor = Enum.FormFactor.Custom
  3417. p308.Size = Vector3.new(0.600000024, 7.39999962, 0.599989116)
  3418. p308.BottomSurface = Enum.SurfaceType.Smooth
  3419. p308.TopSurface = Enum.SurfaceType.Smooth
  3420. p309 = Instance.new("Part", m46)
  3421. p309.BrickColor = BrickColor.new("Brown")
  3422. p309.CFrame = CFrame.new(10.5638733, 3.44768715, 47.5343628, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  3423. p309.Anchored = true
  3424. p309.FormFactor = Enum.FormFactor.Custom
  3425. p309.Size = Vector3.new(1, 0.200000003, 1)
  3426. p309.BottomSurface = Enum.SurfaceType.Smooth
  3427. p309.TopSurface = Enum.SurfaceType.Smooth
  3428. b109 = Instance.new("SpecialMesh", p309)
  3429. b109.MeshId = "http://www.roblox.com/asset/?id=90782182"
  3430. b109.TextureId = ""
  3431. b109.MeshType = Enum.MeshType.FileMesh
  3432. b109.Name = "Mesh"
  3433. b109.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  3434. p310 = Instance.new("Part", m46)
  3435. p310.BrickColor = BrickColor.new("Dark stone grey")
  3436. p310.Material = Enum.Material.DiamondPlate
  3437. p310.CFrame = CFrame.new(10.5416565, 4.30744362, 47.5322571, -0.999725282, -0.0233046412, 0.000582849083, -0.0233061407, 0.999724507, -0.00240222854, -0.000526046031, -0.00241516344, -0.999994397)
  3438. p310.Anchored = true
  3439. p310.FormFactor = Enum.FormFactor.Custom
  3440. p310.Size = Vector3.new(0.200000003, 1.20000112, 0.200000003)
  3441. p310.BottomSurface = Enum.SurfaceType.Smooth
  3442. p310.TopSurface = Enum.SurfaceType.Smooth
  3443. b110 = Instance.new("CylinderMesh", p310)
  3444. b110.Name = "Mesh"
  3445. p311 = Instance.new("Part", m46)
  3446. p311.BrickColor = BrickColor.new("Dusty Rose")
  3447. p311.CFrame = CFrame.new(10.5566101, 4.54746437, 47.5317078, 0.999718845, -0.0233048331, -0.000577473431, 0.023306014, 0.999724567, 0.00240229559, 0.000524107716, -0.00241509732, 0.999994338)
  3448. p311.Anchored = true
  3449. p311.FormFactor = Enum.FormFactor.Custom
  3450. p311.Size = Vector3.new(1, 1, 1)
  3451. p311.BottomSurface = Enum.SurfaceType.Smooth
  3452. p311.TopSurface = Enum.SurfaceType.Smooth
  3453. b111 = Instance.new("SpecialMesh", p311)
  3454. b111.MeshId = "http://www.roblox.com/asset/?id=90782182"
  3455. b111.TextureId = ""
  3456. b111.MeshType = Enum.MeshType.FileMesh
  3457. b111.Name = "Mesh"
  3458. b111.Scale = Vector3.new(0.100000001, 0.100000001, 0.100000001)
  3459. p312 = Instance.new("Part", m46)
  3460. p312.BrickColor = BrickColor.new("Pastel yellow")
  3461. p312.Material = Enum.Material.SmoothPlastic
  3462. p312.CFrame = CFrame.new(10.5519104, 4.74712563, 47.5312805, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  3463. p312.Anchored = true
  3464. p312.FormFactor = Enum.FormFactor.Custom
  3465. p312.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  3466. p312.BottomSurface = Enum.SurfaceType.Smooth
  3467. p312.TopSurface = Enum.SurfaceType.Smooth
  3468. b112 = Instance.new("SpecialMesh", p312)
  3469. b112.MeshType = Enum.MeshType.Sphere
  3470. b112.Name = "Mesh"
  3471. b112.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3472. x10 = Instance.new("PointLight", p312)
  3473. x10.Color = Color3.new(1, 1, 0.498039)
  3474. x10.Range = 15
  3475. p313 = Instance.new("Part", m46)
  3476. p313.BrickColor = BrickColor.new("Dusty Rose")
  3477. p313.Material = Enum.Material.SmoothPlastic
  3478. p313.CFrame = CFrame.new(10.5514221, 4.76714516, 47.5311584, -0.999727905, 0.0233056396, -0.000577877159, -0.0233069379, -0.999725223, 0.00240379362, -0.000521798211, 0.00241660979, 0.999996901)
  3479. p313.Anchored = true
  3480. p313.FormFactor = Enum.FormFactor.Custom
  3481. p313.Size = Vector3.new(0.600000024, 0.600000024, 0.600000024)
  3482. p313.BottomSurface = Enum.SurfaceType.Smooth
  3483. p313.TopSurface = Enum.SurfaceType.Smooth
  3484. b113 = Instance.new("SpecialMesh", p313)
  3485. b113.MeshType = Enum.MeshType.Sphere
  3486. b113.Name = "Mesh"
  3487. b113.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
  3488. p314 = Instance.new("Part", m47)
  3489. p314.BrickColor = BrickColor.new("Medium stone grey")
  3490. p314.Material = Enum.Material.Concrete
  3491. p314.CFrame = CFrame.new(9.9616394, 1.72985184, 51.5982666, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3492. p314.Anchored = true
  3493. p314.FormFactor = Enum.FormFactor.Custom
  3494. p314.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  3495. p314.BottomSurface = Enum.SurfaceType.Smooth
  3496. p314.TopSurface = Enum.SurfaceType.Smooth
  3497. b114 = Instance.new("CylinderMesh", p314)
  3498. b114.Name = "Mesh"
  3499. p315 = Instance.new("Part", m47)
  3500. p315.BrickColor = BrickColor.new("Reddish brown")
  3501. p315.Material = Enum.Material.Wood
  3502. p315.CFrame = CFrame.new(9.19741821, 1.83010221, 50.7975464, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3503. p315.Anchored = true
  3504. p315.FormFactor = Enum.FormFactor.Custom
  3505. p315.Size = Vector3.new(1.86999035, 0.200000003, 1.80000806)
  3506. p315.BottomSurface = Enum.SurfaceType.Smooth
  3507. p315.TopSurface = Enum.SurfaceType.Smooth
  3508. p316 = Instance.new("Part", m47)
  3509. p316.BrickColor = BrickColor.new("Medium stone grey")
  3510. p316.Material = Enum.Material.Concrete
  3511. p316.CFrame = CFrame.new(9.96057129, 1.02593255, 50, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3512. p316.Anchored = true
  3513. p316.FormFactor = Enum.FormFactor.Custom
  3514. p316.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  3515. p316.BottomSurface = Enum.SurfaceType.Smooth
  3516. p316.TopSurface = Enum.SurfaceType.Smooth
  3517. b115 = Instance.new("CylinderMesh", p316)
  3518. b115.Name = "Mesh"
  3519. p317 = Instance.new("Part", m47)
  3520. p317.BrickColor = BrickColor.new("Medium stone grey")
  3521. p317.Material = Enum.Material.Concrete
  3522. p317.CFrame = CFrame.new(8.36062622, 1.03047967, 49.9990845, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3523. p317.Anchored = true
  3524. p317.FormFactor = Enum.FormFactor.Custom
  3525. p317.Size = Vector3.new(0.200000003, 1.40000081, 0.200000003)
  3526. p317.BottomSurface = Enum.SurfaceType.Smooth
  3527. p317.TopSurface = Enum.SurfaceType.Smooth
  3528. b116 = Instance.new("CylinderMesh", p317)
  3529. b116.Name = "Mesh"
  3530. p318 = Instance.new("Part", m47)
  3531. p318.BrickColor = BrickColor.new("Medium stone grey")
  3532. p318.Material = Enum.Material.Concrete
  3533. p318.CFrame = CFrame.new(8.3616333, 1.73441422, 51.59729, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3534. p318.Anchored = true
  3535. p318.FormFactor = Enum.FormFactor.Custom
  3536. p318.Size = Vector3.new(0.200000003, 2.80000114, 0.200000003)
  3537. p318.BottomSurface = Enum.SurfaceType.Smooth
  3538. p318.TopSurface = Enum.SurfaceType.Smooth
  3539. b117 = Instance.new("CylinderMesh", p318)
  3540. b117.Name = "Mesh"
  3541. p319 = Instance.new("Part", m47)
  3542. p319.BrickColor = BrickColor.new("Reddish brown")
  3543. p319.Material = Enum.Material.Wood
  3544. p319.CFrame = CFrame.new(9.20205688, 3.63202858, 51.5932617, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3545. p319.Anchored = true
  3546. p319.FormFactor = Enum.FormFactor.Custom
  3547. p319.Size = Vector3.new(1.86999035, 1.4000001, 0.200000003)
  3548. p319.BottomSurface = Enum.SurfaceType.Smooth
  3549. p319.TopSurface = Enum.SurfaceType.Smooth
  3550. p320 = Instance.new("Part", m48)
  3551. p320.BrickColor = BrickColor.new("Medium stone grey")
  3552. p320.Material = Enum.Material.Concrete
  3553. p320.CFrame = CFrame.new(-10.166626, 0.5066607, 42.8592834, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3554. p320.Anchored = true
  3555. p320.FormFactor = Enum.FormFactor.Custom
  3556. p320.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  3557. p320.BottomSurface = Enum.SurfaceType.Smooth
  3558. p320.TopSurface = Enum.SurfaceType.Smooth
  3559. b118 = Instance.new("CylinderMesh", p320)
  3560. b118.Name = "Mesh"
  3561. p321 = Instance.new("Part", m48)
  3562. p321.BrickColor = BrickColor.new("Medium stone grey")
  3563. p321.Material = Enum.Material.Concrete
  3564. p321.CFrame = CFrame.new(-10.1646118, 1.20568132, 42.857605, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3565. p321.Anchored = true
  3566. p321.FormFactor = Enum.FormFactor.Custom
  3567. p321.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
  3568. p321.BottomSurface = Enum.SurfaceType.Smooth
  3569. p321.TopSurface = Enum.SurfaceType.Smooth
  3570. b119 = Instance.new("CylinderMesh", p321)
  3571. b119.Name = "Mesh"
  3572. p322 = Instance.new("Part", m48)
  3573. p322.BrickColor = BrickColor.new("Dusty Rose")
  3574. p322.Material = Enum.Material.Concrete
  3575. p322.Reflectance = 0.20000000298023
  3576. p322.CFrame = CFrame.new(-10.1623535, 2.00669241, 42.8557129, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
  3577. p322.Anchored = true
  3578. p322.FormFactor = Enum.FormFactor.Custom
  3579. p322.Size = Vector3.new(2.00001645, 0.399999976, 2)
  3580. p322.BottomSurface = Enum.SurfaceType.Smooth
  3581. p322.TopSurface = Enum.SurfaceType.Smooth
  3582. b120 = Instance.new("CylinderMesh", p322)
  3583. b120.Name = "Mesh"
  3584. p323 = Instance.new("Part", m48)
  3585. p323.BrickColor = BrickColor.new("Brick yellow")
  3586. p323.Material = Enum.Material.Concrete
  3587. p323.CFrame = CFrame.new(-10.1723633, 2.00673819, 42.8556519, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3588. p323.Anchored = true
  3589. p323.FormFactor = Enum.FormFactor.Custom
  3590. p323.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
  3591. p323.BottomSurface = Enum.SurfaceType.Smooth
  3592. p323.TopSurface = Enum.SurfaceType.Smooth
  3593. b121 = Instance.new("CylinderMesh", p323)
  3594. b121.Name = "Mesh"
  3595. p324 = Instance.new("Part", m49)
  3596. p324.BrickColor = BrickColor.new("Medium stone grey")
  3597. p324.Material = Enum.Material.Concrete
  3598. p324.CFrame = CFrame.new(-10.1689453, 0.516273737, 46.859314, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3599. p324.Anchored = true
  3600. p324.FormFactor = Enum.FormFactor.Custom
  3601. p324.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  3602. p324.BottomSurface = Enum.SurfaceType.Smooth
  3603. p324.TopSurface = Enum.SurfaceType.Smooth
  3604. b122 = Instance.new("CylinderMesh", p324)
  3605. b122.Name = "Mesh"
  3606. p325 = Instance.new("Part", m49)
  3607. p325.BrickColor = BrickColor.new("Medium stone grey")
  3608. p325.Material = Enum.Material.Concrete
  3609. p325.CFrame = CFrame.new(-10.1669312, 1.2152791, 46.8576355, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3610. p325.Anchored = true
  3611. p325.FormFactor = Enum.FormFactor.Custom
  3612. p325.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
  3613. p325.BottomSurface = Enum.SurfaceType.Smooth
  3614. p325.TopSurface = Enum.SurfaceType.Smooth
  3615. b123 = Instance.new("CylinderMesh", p325)
  3616. b123.Name = "Mesh"
  3617. p326 = Instance.new("Part", m49)
  3618. p326.BrickColor = BrickColor.new("Dusty Rose")
  3619. p326.Material = Enum.Material.Concrete
  3620. p326.Reflectance = 0.20000000298023
  3621. p326.CFrame = CFrame.new(-10.1646423, 2.01632071, 46.8556824, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
  3622. p326.Anchored = true
  3623. p326.FormFactor = Enum.FormFactor.Custom
  3624. p326.Size = Vector3.new(2.00001645, 0.399999976, 2)
  3625. p326.BottomSurface = Enum.SurfaceType.Smooth
  3626. p326.TopSurface = Enum.SurfaceType.Smooth
  3627. b124 = Instance.new("CylinderMesh", p326)
  3628. b124.Name = "Mesh"
  3629. p327 = Instance.new("Part", m49)
  3630. p327.BrickColor = BrickColor.new("Brick yellow")
  3631. p327.Material = Enum.Material.Concrete
  3632. p327.CFrame = CFrame.new(-10.1746521, 2.01633596, 46.8556824, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  3633. p327.Anchored = true
  3634. p327.FormFactor = Enum.FormFactor.Custom
  3635. p327.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
  3636. p327.BottomSurface = Enum.SurfaceType.Smooth
  3637. p327.TopSurface = Enum.SurfaceType.Smooth
  3638. b125 = Instance.new("CylinderMesh", p327)
  3639. b125.Name = "Mesh"
  3640. p328 = Instance.new("Part", m)
  3641. p328.BrickColor = BrickColor.new("Dark stone grey")
  3642. p328.Material = Enum.Material.Pebble
  3643. p328.CFrame = CFrame.new(-23.5415344, 42.0779266, 31.6868896, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3644. p328.Anchored = true
  3645. p328.FormFactor = Enum.FormFactor.Custom
  3646. p328.Size = Vector3.new(45.2700005, 1.79999804, 2.80001736)
  3647. p328.BottomSurface = Enum.SurfaceType.Smooth
  3648. p328.TopSurface = Enum.SurfaceType.Smooth
  3649. p329 = Instance.new("Seat", m)
  3650. p329.BrickColor = BrickColor.new("Sand red")
  3651. p329.Transparency = 1
  3652. p329.CFrame = CFrame.new(-0.174499512, 1.9647001, 12.3618774, 0.000582925277, 0.00285565224, 0.999992788, -0.0024022474, 0.999992371, -0.00285414211, -0.999994338, -0.00240059383, 0.000588951225)
  3653. p329.Anchored = true
  3654. p329.FormFactor = Enum.FormFactor.Custom
  3655. p329.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  3656. p329.FrontSurface = Enum.SurfaceType.Hinge
  3657. p330 = Instance.new("Part", m)
  3658. p330.BrickColor = BrickColor.new("Sand red")
  3659. p330.Material = Enum.Material.Concrete
  3660. p330.CFrame = CFrame.new(-8.66809082, 27.7768841, 7.65991211, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3661. p330.Anchored = true
  3662. p330.FormFactor = Enum.FormFactor.Custom
  3663. p330.Size = Vector3.new(2.86999059, 26.600008, 31.8000011)
  3664. p330.BottomSurface = Enum.SurfaceType.Smooth
  3665. p330.TopSurface = Enum.SurfaceType.Smooth
  3666. p331 = Instance.new("Part", m)
  3667. p331.BrickColor = BrickColor.new("Dark stone grey")
  3668. p331.Material = Enum.Material.Concrete
  3669. p331.CFrame = CFrame.new(-5.04040527, 42.4246521, 31.5272522, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3670. p331.Anchored = true
  3671. p331.FormFactor = Enum.FormFactor.Custom
  3672. p331.Size = Vector3.new(51.8699951, 2.60000014, 41.0000114)
  3673. p331.BottomSurface = Enum.SurfaceType.Smooth
  3674. p331.TopSurface = Enum.SurfaceType.Smooth
  3675. p332 = Instance.new("Part", m)
  3676. p332.BrickColor = BrickColor.new("Medium stone grey")
  3677. p332.Material = Enum.Material.SmoothPlastic
  3678. p332.Reflectance = 0.20000000298023
  3679. p332.Transparency = 0.5
  3680. p332.CFrame = CFrame.new(-3.03018188, 6.06105995, 7.77032471, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3681. p332.Anchored = true
  3682. p332.FormFactor = Enum.FormFactor.Custom
  3683. p332.Size = Vector3.new(14.8000221, 6.80000496, 0.200000003)
  3684. p332.BottomSurface = Enum.SurfaceType.Smooth
  3685. p332.TopSurface = Enum.SurfaceType.Smooth
  3686. p333 = Instance.new("Part", m)
  3687. p333.BrickColor = BrickColor.new("Dark stone grey")
  3688. p333.Material = Enum.Material.Pebble
  3689. p333.CFrame = CFrame.new(-9.00686646, 14.1780901, 7.49224854, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3690. p333.Anchored = true
  3691. p333.FormFactor = Enum.FormFactor.Custom
  3692. p333.Size = Vector3.new(3.26999068, 0.599997938, 32.8000145)
  3693. p333.BottomSurface = Enum.SurfaceType.Smooth
  3694. p333.TopSurface = Enum.SurfaceType.Smooth
  3695. p334 = Instance.new("Part", m)
  3696. p334.BrickColor = BrickColor.new("Dusty Rose")
  3697. p334.Material = Enum.Material.SmoothPlastic
  3698. p334.CFrame = CFrame.new(-6.73013306, 6.07158852, 7.74816895, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3699. p334.Anchored = true
  3700. p334.FormFactor = Enum.FormFactor.Custom
  3701. p334.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
  3702. p334.BottomSurface = Enum.SurfaceType.Smooth
  3703. p334.TopSurface = Enum.SurfaceType.Smooth
  3704. p335 = Instance.new("Part", m)
  3705. p335.BrickColor = BrickColor.new("Dusty Rose")
  3706. p335.Material = Enum.Material.Brick
  3707. p335.CFrame = CFrame.new(-4.11669922, 10.7645779, 7.668396, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3708. p335.Anchored = true
  3709. p335.FormFactor = Enum.FormFactor.Custom
  3710. p335.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
  3711. p335.BottomSurface = Enum.SurfaceType.Smooth
  3712. p335.TopSurface = Enum.SurfaceType.Smooth
  3713. p336 = Instance.new("Part", m)
  3714. p336.BrickColor = BrickColor.new("Dark stone grey")
  3715. p336.Material = Enum.Material.Pebble
  3716. p336.CFrame = CFrame.new(-8.91043091, 12.9783373, 7.69537354, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3717. p336.Anchored = true
  3718. p336.FormFactor = Enum.FormFactor.Custom
  3719. p336.Size = Vector3.new(2.86999059, 1.79999804, 32.200016)
  3720. p336.BottomSurface = Enum.SurfaceType.Smooth
  3721. p336.TopSurface = Enum.SurfaceType.Smooth
  3722. p337 = Instance.new("Part", m)
  3723. p337.BrickColor = BrickColor.new("Dusty Rose")
  3724. p337.Material = Enum.Material.Brick
  3725. p337.CFrame = CFrame.new(-11.7875061, 6.98610878, 7.77294922, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3726. p337.Anchored = true
  3727. p337.FormFactor = Enum.FormFactor.Custom
  3728. p337.Size = Vector3.new(2.59999228, 10.2000017, 2.47998929)
  3729. p337.BottomSurface = Enum.SurfaceType.Smooth
  3730. p337.TopSurface = Enum.SurfaceType.Smooth
  3731. p338 = Instance.new("Part", m)
  3732. p338.BrickColor = BrickColor.new("Dusty Rose")
  3733. p338.Material = Enum.Material.Brick
  3734. p338.CFrame = CFrame.new(-17.7280579, 6.80295753, 7.7401123, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3735. p338.Anchored = true
  3736. p338.FormFactor = Enum.FormFactor.Custom
  3737. p338.Size = Vector3.new(9.39998913, 10.5999947, 1.59998918)
  3738. p338.BottomSurface = Enum.SurfaceType.Smooth
  3739. p338.TopSurface = Enum.SurfaceType.Smooth
  3740. p339 = Instance.new("Part", m)
  3741. p339.BrickColor = BrickColor.new("Medium stone grey")
  3742. p339.Material = Enum.Material.Brick
  3743. p339.CFrame = CFrame.new(-8.92550659, 43.1841583, 10.022644, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3744. p339.Anchored = true
  3745. p339.FormFactor = Enum.FormFactor.Custom
  3746. p339.Size = Vector3.new(8.46998692, 0.599997938, 32.8000145)
  3747. p339.BottomSurface = Enum.SurfaceType.Smooth
  3748. p339.TopSurface = Enum.SurfaceType.Smooth
  3749. p340 = Instance.new("Part", m)
  3750. p340.BrickColor = BrickColor.new("Sand red")
  3751. p340.Material = Enum.Material.Concrete
  3752. p340.CFrame = CFrame.new(-24.4828491, 27.8829327, 33.0203857, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3753. p340.Anchored = true
  3754. p340.FormFactor = Enum.FormFactor.Custom
  3755. p340.Size = Vector3.new(47.870018, 26.5999985, 0.200000003)
  3756. p340.BottomSurface = Enum.SurfaceType.Smooth
  3757. p340.TopSurface = Enum.SurfaceType.Smooth
  3758. p341 = Instance.new("Part", m)
  3759. p341.BrickColor = BrickColor.new("Dark stone grey")
  3760. p341.Material = Enum.Material.Pebble
  3761. p341.CFrame = CFrame.new(-8.82754517, 41.9781342, 7.62573242, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3762. p341.Anchored = true
  3763. p341.FormFactor = Enum.FormFactor.Custom
  3764. p341.Size = Vector3.new(2.86999059, 1.79999804, 32.200016)
  3765. p341.BottomSurface = Enum.SurfaceType.Smooth
  3766. p341.TopSurface = Enum.SurfaceType.Smooth
  3767. p342 = Instance.new("Part", m)
  3768. p342.BrickColor = BrickColor.new("Dusty Rose")
  3769. p342.Material = Enum.Material.SmoothPlastic
  3770. p342.CFrame = CFrame.new(-2.9395752, 2.76065993, 7.75836182, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3771. p342.Anchored = true
  3772. p342.FormFactor = Enum.FormFactor.Custom
  3773. p342.Size = Vector3.new(14.9999905, 0.200000003, 0.399989128)
  3774. p342.BottomSurface = Enum.SurfaceType.Smooth
  3775. p342.TopSurface = Enum.SurfaceType.Smooth
  3776. p343 = Instance.new("Part", m)
  3777. p343.BrickColor = BrickColor.new("Sand red")
  3778. p343.Material = Enum.Material.Concrete
  3779. p343.CFrame = CFrame.new(-23.6445923, 1.01985955, 7.80541992, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3780. p343.Anchored = true
  3781. p343.FormFactor = Enum.FormFactor.Custom
  3782. p343.Size = Vector3.new(3.04999042, 1.79999804, 2.79999971)
  3783. p343.BottomSurface = Enum.SurfaceType.Smooth
  3784. p343.TopSurface = Enum.SurfaceType.Smooth
  3785. p344 = Instance.new("Part", m)
  3786. p344.BrickColor = BrickColor.new("Dusty Rose")
  3787. p344.Material = Enum.Material.Brick
  3788. p344.CFrame = CFrame.new(-4.14358521, 1.36408293, 7.76104736, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3789. p344.Anchored = true
  3790. p344.FormFactor = Enum.FormFactor.Custom
  3791. p344.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
  3792. p344.BottomSurface = Enum.SurfaceType.Smooth
  3793. p344.TopSurface = Enum.SurfaceType.Smooth
  3794. p345 = Instance.new("Part", m)
  3795. p345.BrickColor = BrickColor.new("Sand red")
  3796. p345.Material = Enum.Material.Concrete
  3797. p345.CFrame = CFrame.new(-11.8446045, 0.985969782, 7.72247314, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3798. p345.Anchored = true
  3799. p345.FormFactor = Enum.FormFactor.Custom
  3800. p345.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
  3801. p345.BottomSurface = Enum.SurfaceType.Smooth
  3802. p345.TopSurface = Enum.SurfaceType.Smooth
  3803. p346 = Instance.new("Part", m)
  3804. p346.BrickColor = BrickColor.new("Dusty Rose")
  3805. p346.Material = Enum.Material.SmoothPlastic
  3806. p346.CFrame = CFrame.new(-10.3301086, 6.08187294, 7.74603271, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3807. p346.Anchored = true
  3808. p346.FormFactor = Enum.FormFactor.Custom
  3809. p346.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
  3810. p346.BottomSurface = Enum.SurfaceType.Smooth
  3811. p346.TopSurface = Enum.SurfaceType.Smooth
  3812. p347 = Instance.new("Part", m)
  3813. p347.BrickColor = BrickColor.new("Dusty Rose")
  3814. p347.Material = Enum.Material.SmoothPlastic
  3815. p347.CFrame = CFrame.new(-2.92071533, 9.36134911, 7.74249268, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3816. p347.Anchored = true
  3817. p347.FormFactor = Enum.FormFactor.Custom
  3818. p347.Size = Vector3.new(14.9999905, 0.200000003, 0.399989128)
  3819. p347.BottomSurface = Enum.SurfaceType.Smooth
  3820. p347.TopSurface = Enum.SurfaceType.Smooth
  3821. p348 = Instance.new("Part", m)
  3822. p348.BrickColor = BrickColor.new("Sand red")
  3823. p348.Material = Enum.Material.Concrete
  3824. p348.CFrame = CFrame.new(-8.94470215, 0.977775812, 7.75909424, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  3825. p348.Anchored = true
  3826. p348.FormFactor = Enum.FormFactor.Custom
  3827. p348.Size = Vector3.new(27.0000076, 1.79999804, 2.00000024)
  3828. p348.BottomSurface = Enum.SurfaceType.Smooth
  3829. p348.TopSurface = Enum.SurfaceType.Smooth
  3830. p349 = Instance.new("Part", m)
  3831. p349.BrickColor = BrickColor.new("Dusty Rose")
  3832. p349.Material = Enum.Material.Brick
  3833. p349.CFrame = CFrame.new(-23.5874634, 7.01976967, 7.76605225, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3834. p349.Anchored = true
  3835. p349.FormFactor = Enum.FormFactor.Custom
  3836. p349.Size = Vector3.new(2.59999228, 10.2000017, 2.47998929)
  3837. p349.BottomSurface = Enum.SurfaceType.Smooth
  3838. p349.TopSurface = Enum.SurfaceType.Smooth
  3839. p350 = Instance.new("Part", m)
  3840. p350.BrickColor = BrickColor.new("Dark stone grey")
  3841. p350.Material = Enum.Material.Pebble
  3842. p350.CFrame = CFrame.new(-6.45562744, 42.0857239, 55.6617432, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3843. p350.Anchored = true
  3844. p350.FormFactor = Enum.FormFactor.Custom
  3845. p350.Size = Vector3.new(2.80000043, 1.79999804, 38.2000084)
  3846. p350.BottomSurface = Enum.SurfaceType.Smooth
  3847. p350.TopSurface = Enum.SurfaceType.Smooth
  3848. p351 = Instance.new("Seat", m)
  3849. p351.BrickColor = BrickColor.new("Sand red")
  3850. p351.Transparency = 1
  3851. p351.CFrame = CFrame.new(9.24795532, 1.9723295, 25.1973267, 0.999992847, 0.00285565224, -0.000582820969, -0.00285412627, 0.999992371, 0.00240224763, 0.000589011179, -0.00240059383, 0.999994397)
  3852. p351.Anchored = true
  3853. p351.FormFactor = Enum.FormFactor.Custom
  3854. p351.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  3855. p351.FrontSurface = Enum.SurfaceType.Hinge
  3856. p352 = Instance.new("Seat", m)
  3857. p352.BrickColor = BrickColor.new("Sand red")
  3858. p352.Transparency = 1
  3859. p352.CFrame = CFrame.new(9.18179321, 1.9566282, 18.5973816, -0.999992847, 0.00285565224, 0.000582820969, 0.00285412627, 0.999992371, -0.00240224763, -0.000589011179, -0.00240059383, -0.999994397)
  3860. p352.Anchored = true
  3861. p352.FormFactor = Enum.FormFactor.Custom
  3862. p352.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  3863. p352.FrontSurface = Enum.SurfaceType.Hinge
  3864. p353 = Instance.new("Part", m)
  3865. p353.BrickColor = BrickColor.new("Dusty Rose")
  3866. p353.Material = Enum.Material.SmoothPlastic
  3867. p353.CFrame = CFrame.new(11.9478149, 4.43052101, 13.0487061, 0.706689715, -0.70751363, -0.00285569415, -0.000319564599, 0.00371687044, -0.999992192, 0.707518935, 0.706686199, 0.00240054168)
  3868. p353.Anchored = true
  3869. p353.FormFactor = Enum.FormFactor.Custom
  3870. p353.Size = Vector3.new(0.200000003, 0.800000012, 4.79998827)
  3871. p353.BottomSurface = Enum.SurfaceType.Smooth
  3872. p353.TopSurface = Enum.SurfaceType.Smooth
  3873. p354 = Instance.new("Part", m)
  3874. p354.BrickColor = BrickColor.new("Brick yellow")
  3875. p354.Material = Enum.Material.Concrete
  3876. p354.CFrame = CFrame.new(7.33169556, 14.5476427, 14.2408447, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  3877. p354.Anchored = true
  3878. p354.FormFactor = Enum.FormFactor.Custom
  3879. p354.Size = Vector3.new(12.2699909, 0.200000003, 5.39999866)
  3880. p354.BottomSurface = Enum.SurfaceType.Smooth
  3881. p354.TopSurface = Enum.SurfaceType.Smooth
  3882. p355 = Instance.new("Part", m)
  3883. p355.BrickColor = BrickColor.new("Sand red")
  3884. p355.Material = Enum.Material.Concrete
  3885. p355.CFrame = CFrame.new(5.75524902, 0.935737848, 7.73284912, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3886. p355.Anchored = true
  3887. p355.FormFactor = Enum.FormFactor.Custom
  3888. p355.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
  3889. p355.BottomSurface = Enum.SurfaceType.Smooth
  3890. p355.TopSurface = Enum.SurfaceType.Smooth
  3891. p356 = Instance.new("Part", m)
  3892. p356.BrickColor = BrickColor.new("Dusty Rose")
  3893. p356.Material = Enum.Material.Brick
  3894. p356.CFrame = CFrame.new(13.9584961, 5.85712624, 25.9606934, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3895. p356.Anchored = true
  3896. p356.FormFactor = Enum.FormFactor.Custom
  3897. p356.Size = Vector3.new(1.59999228, 7.19999504, 0.800000012)
  3898. p356.BottomSurface = Enum.SurfaceType.Smooth
  3899. p356.TopSurface = Enum.SurfaceType.Smooth
  3900. p357 = Instance.new("Part", m)
  3901. p357.BrickColor = BrickColor.new("Brick yellow")
  3902. p357.Material = Enum.Material.Concrete
  3903. p357.CFrame = CFrame.new(-13.3283691, 2.64595962, 30.627594, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3904. p357.Anchored = true
  3905. p357.FormFactor = Enum.FormFactor.Custom
  3906. p357.Size = Vector3.new(2.0699904, 1.39999795, 2.24999785)
  3907. p357.BottomSurface = Enum.SurfaceType.Smooth
  3908. p357.TopSurface = Enum.SurfaceType.Smooth
  3909. b126 = Instance.new("CylinderMesh", p357)
  3910. b126.Name = "Mesh"
  3911. p358 = Instance.new("Part", m)
  3912. p358.BrickColor = BrickColor.new("Sand red")
  3913. p358.Material = Enum.Material.Concrete
  3914. p358.CFrame = CFrame.new(-2.85913086, 1.22254229, 33.3821411, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3915. p358.Anchored = true
  3916. p358.FormFactor = Enum.FormFactor.Custom
  3917. p358.Size = Vector3.new(2.97999024, 1.79999804, 2.79999971)
  3918. p358.BottomSurface = Enum.SurfaceType.Smooth
  3919. p358.TopSurface = Enum.SurfaceType.Smooth
  3920. p359 = Instance.new("Part", m)
  3921. p359.BrickColor = BrickColor.new("Sand red")
  3922. p359.Material = Enum.Material.Concrete
  3923. p359.CFrame = CFrame.new(13.944519, 0.956779718, 25.8724365, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3924. p359.Anchored = true
  3925. p359.FormFactor = Enum.FormFactor.Custom
  3926. p359.Size = Vector3.new(17.399992, 1.79999804, 2.00000024)
  3927. p359.BottomSurface = Enum.SurfaceType.Smooth
  3928. p359.TopSurface = Enum.SurfaceType.Smooth
  3929. p360 = Instance.new("Part", m)
  3930. p360.BrickColor = BrickColor.new("Sand red")
  3931. p360.Material = Enum.Material.Concrete
  3932. p360.CFrame = CFrame.new(7.15487671, 0.933189631, 8.33374023, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  3933. p360.Anchored = true
  3934. p360.FormFactor = Enum.FormFactor.Custom
  3935. p360.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
  3936. p360.BottomSurface = Enum.SurfaceType.Smooth
  3937. p360.TopSurface = Enum.SurfaceType.Smooth
  3938. p361 = Instance.new("Part", m)
  3939. p361.BrickColor = BrickColor.new("Dusty Rose")
  3940. p361.Material = Enum.Material.Brick
  3941. p361.CFrame = CFrame.new(10.2698059, 10.7320004, 11.3355103, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
  3942. p361.Anchored = true
  3943. p361.FormFactor = Enum.FormFactor.Custom
  3944. p361.Size = Vector3.new(6.1999898, 2.59999824, 1.59998918)
  3945. p361.BottomSurface = Enum.SurfaceType.Smooth
  3946. p361.TopSurface = Enum.SurfaceType.Smooth
  3947. p362 = Instance.new("Part", m)
  3948. p362.BrickColor = BrickColor.new("Dark stone grey")
  3949. p362.Material = Enum.Material.Concrete
  3950. p362.CFrame = CFrame.new(13.9413147, 0.157570243, 26.5744019, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3951. p362.Anchored = true
  3952. p362.FormFactor = Enum.FormFactor.Custom
  3953. p362.Size = Vector3.new(18.7999878, 0.200000003, 0.399989128)
  3954. p362.BottomSurface = Enum.SurfaceType.Smooth
  3955. p362.TopSurface = Enum.SurfaceType.Smooth
  3956. p363 = Instance.new("Part", m)
  3957. p363.BrickColor = BrickColor.new("Dusty Rose")
  3958. p363.Material = Enum.Material.SmoothPlastic
  3959. p363.CFrame = CFrame.new(13.9616699, 7.15604591, 25.9575806, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3960. p363.Anchored = true
  3961. p363.FormFactor = Enum.FormFactor.Custom
  3962. p363.Size = Vector3.new(17.1999912, 0.200000003, 0.399989128)
  3963. p363.BottomSurface = Enum.SurfaceType.Smooth
  3964. p363.TopSurface = Enum.SurfaceType.Smooth
  3965. p364 = Instance.new("Part", m)
  3966. p364.BrickColor = BrickColor.new("Dusty Rose")
  3967. p364.Material = Enum.Material.Brick
  3968. p364.CFrame = CFrame.new(5.81231689, 6.93586159, 7.78338623, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3969. p364.Anchored = true
  3970. p364.FormFactor = Enum.FormFactor.Custom
  3971. p364.Size = Vector3.new(2.59999228, 10.2000017, 2.47998929)
  3972. p364.BottomSurface = Enum.SurfaceType.Smooth
  3973. p364.TopSurface = Enum.SurfaceType.Smooth
  3974. p365 = Instance.new("Part", m)
  3975. p365.BrickColor = BrickColor.new("Sand red")
  3976. p365.Material = Enum.Material.Concrete
  3977. p365.CFrame = CFrame.new(13.9504089, 0.932014704, 15.9375, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3978. p365.Anchored = true
  3979. p365.FormFactor = Enum.FormFactor.Custom
  3980. p365.Size = Vector3.new(2.86999059, 1.79999804, 2.79999971)
  3981. p365.BottomSurface = Enum.SurfaceType.Smooth
  3982. p365.TopSurface = Enum.SurfaceType.Smooth
  3983. p366 = Instance.new("Part", m)
  3984. p366.BrickColor = BrickColor.new("Dusty Rose")
  3985. p366.Material = Enum.Material.SmoothPlastic
  3986. p366.CFrame = CFrame.new(8.66400146, 1.03327203, 9.84411621, 0.706689656, -0.70751375, -0.00285567157, -0.000319581712, 0.00371683156, -0.999992311, 0.707518995, 0.706686258, 0.00240052212)
  3987. p366.Anchored = true
  3988. p366.FormFactor = Enum.FormFactor.Custom
  3989. p366.Size = Vector3.new(0.200000003, 0.800000012, 1.99998808)
  3990. p366.BottomSurface = Enum.SurfaceType.Smooth
  3991. p366.TopSurface = Enum.SurfaceType.Smooth
  3992. p367 = Instance.new("Part", m)
  3993. p367.BrickColor = BrickColor.new("Dusty Rose")
  3994. p367.Material = Enum.Material.SmoothPlastic
  3995. p367.CFrame = CFrame.new(13.9576416, 5.75615883, 25.9609375, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  3996. p367.Anchored = true
  3997. p367.FormFactor = Enum.FormFactor.Custom
  3998. p367.Size = Vector3.new(2.00000024, 7.40000486, 0.399989128)
  3999. p367.BottomSurface = Enum.SurfaceType.Smooth
  4000. p367.TopSurface = Enum.SurfaceType.Smooth
  4001. p368 = Instance.new("Part", m)
  4002. p368.BrickColor = BrickColor.new("Dusty Rose")
  4003. p368.Material = Enum.Material.Brick
  4004. p368.CFrame = CFrame.new(13.9533691, 6.07966042, 35.8600464, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4005. p368.Anchored = true
  4006. p368.FormFactor = Enum.FormFactor.Custom
  4007. p368.Size = Vector3.new(2.59999228, 12.0000038, 2.40000606)
  4008. p368.BottomSurface = Enum.SurfaceType.Smooth
  4009. p368.TopSurface = Enum.SurfaceType.Smooth
  4010. p369 = Instance.new("Part", m)
  4011. p369.BrickColor = BrickColor.new("Brick yellow")
  4012. p369.Material = Enum.Material.Concrete
  4013. p369.CFrame = CFrame.new(9.97796631, 14.5903978, 35.2023926, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4014. p369.Anchored = true
  4015. p369.FormFactor = Enum.FormFactor.Custom
  4016. p369.Size = Vector3.new(41.8699913, 0.200000003, 5.1999979)
  4017. p369.BottomSurface = Enum.SurfaceType.Smooth
  4018. p369.TopSurface = Enum.SurfaceType.Smooth
  4019. p370 = Instance.new("Part", m)
  4020. p370.BrickColor = BrickColor.new("Sand red")
  4021. p370.Material = Enum.Material.Concrete
  4022. p370.CFrame = CFrame.new(-23.658844, 1.07817864, 31.9501343, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4023. p370.Anchored = true
  4024. p370.FormFactor = Enum.FormFactor.Custom
  4025. p370.Size = Vector3.new(45.9999886, 1.79999804, 2.00000024)
  4026. p370.BottomSurface = Enum.SurfaceType.Smooth
  4027. p370.TopSurface = Enum.SurfaceType.Smooth
  4028. p371 = Instance.new("Part", m)
  4029. p371.BrickColor = BrickColor.new("Black")
  4030. p371.Material = Enum.Material.Concrete
  4031. p371.CFrame = CFrame.new(8.95126343, 2.63311172, 10.1233521, -0.707513869, 0.00285561942, -0.706689596, 0.0037167829, 0.999992311, 0.000319567393, 0.706686318, -0.0024005333, -0.707519054)
  4032. p371.Anchored = true
  4033. p371.CanCollide = false
  4034. p371.FormFactor = Enum.FormFactor.Custom
  4035. p371.Size = Vector3.new(0.500000536, 1.60000014, 0.200000003)
  4036. p371.BottomSurface = Enum.SurfaceType.Smooth
  4037. p371.TopSurface = Enum.SurfaceType.Smooth
  4038. p372 = Instance.new("Part", m)
  4039. p372.BrickColor = BrickColor.new("Dusty Rose")
  4040. p372.Material = Enum.Material.Brick
  4041. p372.CFrame = CFrame.new(13.9456787, 1.35678923, 25.871521, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4042. p372.Anchored = true
  4043. p372.FormFactor = Enum.FormFactor.Custom
  4044. p372.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
  4045. p372.BottomSurface = Enum.SurfaceType.Smooth
  4046. p372.TopSurface = Enum.SurfaceType.Smooth
  4047. p373 = Instance.new("Part", m)
  4048. p373.BrickColor = BrickColor.new("Dark stone grey")
  4049. p373.Material = Enum.Material.DiamondPlate
  4050. p373.CFrame = CFrame.new(-22.3479919, 5.63326454, 35.8400879, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4051. p373.Anchored = true
  4052. p373.FormFactor = Enum.FormFactor.Custom
  4053. p373.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4054. p373.BottomSurface = Enum.SurfaceType.Smooth
  4055. p373.TopSurface = Enum.SurfaceType.Smooth
  4056. p374 = Instance.new("Part", m)
  4057. p374.BrickColor = BrickColor.new("Sand red")
  4058. p374.Material = Enum.Material.Concrete
  4059. p374.CFrame = CFrame.new(12.0791626, 0.930488825, 13.1986084, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
  4060. p374.Anchored = true
  4061. p374.FormFactor = Enum.FormFactor.Custom
  4062. p374.Size = Vector3.new(0.600000024, 1.79999804, 1.99999952)
  4063. p374.BottomSurface = Enum.SurfaceType.Smooth
  4064. p374.TopSurface = Enum.SurfaceType.Smooth
  4065. p375 = Instance.new("Part", m)
  4066. p375.BrickColor = BrickColor.new("Dark stone grey")
  4067. p375.Material = Enum.Material.Pebble
  4068. p375.CFrame = CFrame.new(14.1765442, 14.1796007, 35.7058716, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4069. p375.Anchored = true
  4070. p375.FormFactor = Enum.FormFactor.Custom
  4071. p375.Size = Vector3.new(42.8699951, 0.599997938, 3.19999981)
  4072. p375.BottomSurface = Enum.SurfaceType.Smooth
  4073. p375.TopSurface = Enum.SurfaceType.Smooth
  4074. p376 = Instance.new("Part", m)
  4075. p376.BrickColor = BrickColor.new("Brick yellow")
  4076. p376.Material = Enum.Material.WoodPlanks
  4077. p376.CFrame = CFrame.new(10.2368469, 0.189979911, 35.3371582, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4078. p376.Anchored = true
  4079. p376.FormFactor = Enum.FormFactor.Custom
  4080. p376.Size = Vector3.new(42.0699921, 0.200000003, 5.79999733)
  4081. p376.BottomSurface = Enum.SurfaceType.Smooth
  4082. p376.TopSurface = Enum.SurfaceType.Smooth
  4083. p377 = Instance.new("Part", m)
  4084. p377.BrickColor = BrickColor.new("Dark stone grey")
  4085. p377.Material = Enum.Material.DiamondPlate
  4086. p377.CFrame = CFrame.new(-22.3536682, 3.63321877, 35.8449097, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4087. p377.Anchored = true
  4088. p377.FormFactor = Enum.FormFactor.Custom
  4089. p377.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4090. p377.BottomSurface = Enum.SurfaceType.Smooth
  4091. p377.TopSurface = Enum.SurfaceType.Smooth
  4092. p378 = Instance.new("Part", m)
  4093. p378.BrickColor = BrickColor.new("Sand red")
  4094. p378.Material = Enum.Material.Concrete
  4095. p378.CFrame = CFrame.new(13.9388123, 0.979927301, 35.8723755, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4096. p378.Anchored = true
  4097. p378.FormFactor = Enum.FormFactor.Custom
  4098. p378.Size = Vector3.new(2.99999022, 1.79999804, 2.79999971)
  4099. p378.BottomSurface = Enum.SurfaceType.Smooth
  4100. p378.TopSurface = Enum.SurfaceType.Smooth
  4101. p379 = Instance.new("Part", m)
  4102. p379.BrickColor = BrickColor.new("Brick yellow")
  4103. p379.Material = Enum.Material.Concrete
  4104. p379.CFrame = CFrame.new(-7.2204895, 14.6339769, 32.8923035, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4105. p379.Anchored = true
  4106. p379.FormFactor = Enum.FormFactor.Custom
  4107. p379.Size = Vector3.new(47.6700096, 0.200000003, 29.200016)
  4108. p379.BottomSurface = Enum.SurfaceType.Smooth
  4109. p379.TopSurface = Enum.SurfaceType.Smooth
  4110. p380 = Instance.new("Seat", m)
  4111. p380.BrickColor = BrickColor.new("Sand red")
  4112. p380.Transparency = 1
  4113. p380.CFrame = CFrame.new(-6.77450562, 1.98368204, 12.4279785, -0.000582925277, 0.00285565224, -0.999992788, 0.0024022474, 0.999992371, 0.00285414211, 0.999994338, -0.00240059383, -0.000588951225)
  4114. p380.Anchored = true
  4115. p380.FormFactor = Enum.FormFactor.Custom
  4116. p380.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4117. p380.FrontSurface = Enum.SurfaceType.Hinge
  4118. p381 = Instance.new("Seat", m)
  4119. p381.BrickColor = BrickColor.new("Sand red")
  4120. p381.Transparency = 1
  4121. p381.CFrame = CFrame.new(-19.774353, 2.02077627, 12.4203491, -0.000582925277, 0.00285565224, -0.999992788, 0.0024022474, 0.999992371, 0.00285414211, 0.999994338, -0.00240059383, -0.000588951225)
  4122. p381.Anchored = true
  4123. p381.FormFactor = Enum.FormFactor.Custom
  4124. p381.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4125. p381.FrontSurface = Enum.SurfaceType.Hinge
  4126. p382 = Instance.new("Seat", m)
  4127. p382.BrickColor = BrickColor.new("Sand red")
  4128. p382.Transparency = 1
  4129. p382.CFrame = CFrame.new(-13.1743774, 2.00179434, 12.354248, 0.000582925277, 0.00285565224, 0.999992788, -0.0024022474, 0.999992371, -0.00285414211, -0.999994338, -0.00240059383, 0.000588951225)
  4130. p382.Anchored = true
  4131. p382.FormFactor = Enum.FormFactor.Custom
  4132. p382.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4133. p382.FrontSurface = Enum.SurfaceType.Hinge
  4134. p383 = Instance.new("Part", m)
  4135. p383.BrickColor = BrickColor.new("Brick yellow")
  4136. p383.Material = Enum.Material.WoodPlanks
  4137. p383.CFrame = CFrame.new(-8.46124268, 0.235893577, 32.2262268, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4138. p383.Anchored = true
  4139. p383.FormFactor = Enum.FormFactor.Custom
  4140. p383.Size = Vector3.new(47.8700218, 0.200000003, 31.6000099)
  4141. p383.BottomSurface = Enum.SurfaceType.Smooth
  4142. p383.TopSurface = Enum.SurfaceType.Smooth
  4143. p384 = Instance.new("Part", m)
  4144. p384.BrickColor = BrickColor.new("Dark stone grey")
  4145. p384.Material = Enum.Material.Pebble
  4146. p384.CFrame = CFrame.new(10.2986145, 12.9324236, 11.4180298, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4147. p384.Anchored = true
  4148. p384.FormFactor = Enum.FormFactor.Custom
  4149. p384.Size = Vector3.new(11.6699915, 1.79999804, 2.79999971)
  4150. p384.BottomSurface = Enum.SurfaceType.Smooth
  4151. p384.TopSurface = Enum.SurfaceType.Smooth
  4152. p385 = Instance.new("Part", m)
  4153. p385.BrickColor = BrickColor.new("Dark stone grey")
  4154. p385.Material = Enum.Material.Pebble
  4155. p385.CFrame = CFrame.new(13.973053, 12.9804735, 35.8086548, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4156. p385.Anchored = true
  4157. p385.FormFactor = Enum.FormFactor.Custom
  4158. p385.Size = Vector3.new(42.670002, 1.79999804, 2.79999971)
  4159. p385.BottomSurface = Enum.SurfaceType.Smooth
  4160. p385.TopSurface = Enum.SurfaceType.Smooth
  4161. p386 = Instance.new("Part", m)
  4162. p386.BrickColor = BrickColor.new("Dusty Rose")
  4163. p386.Material = Enum.Material.Brick
  4164. p386.CFrame = CFrame.new(13.9474792, 6.10491371, 45.8598938, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4165. p386.Anchored = true
  4166. p386.FormFactor = Enum.FormFactor.Custom
  4167. p386.Size = Vector3.new(17.399992, 11.9999962, 1.59998918)
  4168. p386.BottomSurface = Enum.SurfaceType.Smooth
  4169. p386.TopSurface = Enum.SurfaceType.Smooth
  4170. p387 = Instance.new("Part", m)
  4171. p387.BrickColor = BrickColor.new("Dusty Rose")
  4172. p387.Material = Enum.Material.SmoothPlastic
  4173. p387.CFrame = CFrame.new(4.46984863, 6.03962135, 7.75482178, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4174. p387.Anchored = true
  4175. p387.FormFactor = Enum.FormFactor.Custom
  4176. p387.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
  4177. p387.BottomSurface = Enum.SurfaceType.Smooth
  4178. p387.TopSurface = Enum.SurfaceType.Smooth
  4179. p388 = Instance.new("Part", m)
  4180. p388.BrickColor = BrickColor.new("Dark stone grey")
  4181. p388.Material = Enum.Material.DiamondPlate
  4182. p388.CFrame = CFrame.new(-21.7542725, 3.43152809, 35.8457031, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4183. p388.Anchored = true
  4184. p388.FormFactor = Enum.FormFactor.Custom
  4185. p388.Size = Vector3.new(4.60001373, 0.200000003, 1.4000001)
  4186. p388.BottomSurface = Enum.SurfaceType.Smooth
  4187. p388.TopSurface = Enum.SurfaceType.Smooth
  4188. p389 = Instance.new("Part", m)
  4189. p389.BrickColor = BrickColor.new("Dark stone grey")
  4190. p389.Material = Enum.Material.DiamondPlate
  4191. p389.CFrame = CFrame.new(-22.3468323, 6.0332737, 35.8391724, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4192. p389.Anchored = true
  4193. p389.FormFactor = Enum.FormFactor.Custom
  4194. p389.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4195. p389.BottomSurface = Enum.SurfaceType.Smooth
  4196. p389.TopSurface = Enum.SurfaceType.Smooth
  4197. p390 = Instance.new("Seat", m)
  4198. p390.BrickColor = BrickColor.new("Sand red")
  4199. p390.Transparency = 1
  4200. p390.CFrame = CFrame.new(9.17443848, 1.98542154, 31.1972961, -0.999992847, 0.00285565224, 0.000582820969, 0.00285412627, 0.999992371, -0.00240224763, -0.000589011179, -0.00240059383, -0.999994397)
  4201. p390.Anchored = true
  4202. p390.FormFactor = Enum.FormFactor.Custom
  4203. p390.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4204. p390.FrontSurface = Enum.SurfaceType.Hinge
  4205. p391 = Instance.new("Seat", m)
  4206. p391.BrickColor = BrickColor.new("Sand red")
  4207. p391.Transparency = 1
  4208. p391.CFrame = CFrame.new(9.2406311, 2.00110769, 37.7972412, 0.999992847, 0.00285565224, -0.000582820969, -0.00285412627, 0.999992371, 0.00240224763, 0.000589011179, -0.00240059383, 0.999994397)
  4209. p391.Anchored = true
  4210. p391.FormFactor = Enum.FormFactor.Custom
  4211. p391.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4212. p391.FrontSurface = Enum.SurfaceType.Hinge
  4213. p392 = Instance.new("Part", m)
  4214. p392.BrickColor = BrickColor.new("Dusty Rose")
  4215. p392.Material = Enum.Material.Fabric
  4216. p392.CFrame = CFrame.new(-0.760528564, 0.362602532, 31.6954041, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4217. p392.Anchored = true
  4218. p392.FormFactor = Enum.FormFactor.Custom
  4219. p392.Size = Vector3.new(13.3999901, 0.200000003, 46.0000038)
  4220. p392.BottomSurface = Enum.SurfaceType.Smooth
  4221. p392.TopSurface = Enum.SurfaceType.Smooth
  4222. p393 = Instance.new("Part", m)
  4223. p393.BrickColor = BrickColor.new("Dusty Rose")
  4224. p393.Material = Enum.Material.Brick
  4225. p393.CFrame = CFrame.new(-2.79830933, 8.52252769, 33.3746033, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4226. p393.Anchored = true
  4227. p393.FormFactor = Enum.FormFactor.Custom
  4228. p393.Size = Vector3.new(2.59999228, 12.7999992, 2.47998929)
  4229. p393.BottomSurface = Enum.SurfaceType.Smooth
  4230. p393.TopSurface = Enum.SurfaceType.Smooth
  4231. p394 = Instance.new("Part", m)
  4232. p394.BrickColor = BrickColor.new("Dusty Rose")
  4233. p394.Material = Enum.Material.SmoothPlastic
  4234. p394.CFrame = CFrame.new(11.8674316, 1.03058648, 12.986145, 0.706689656, -0.70751375, -0.00285567157, -0.000319581712, 0.00371683156, -0.999992311, 0.707518995, 0.706686258, 0.00240052212)
  4235. p394.Anchored = true
  4236. p394.FormFactor = Enum.FormFactor.Custom
  4237. p394.Size = Vector3.new(0.400000036, 0.800000012, 1.99998808)
  4238. p394.BottomSurface = Enum.SurfaceType.Smooth
  4239. p394.TopSurface = Enum.SurfaceType.Smooth
  4240. p395 = Instance.new("Part", m)
  4241. p395.BrickColor = BrickColor.new("Dark stone grey")
  4242. p395.Material = Enum.Material.DiamondPlate
  4243. p395.CFrame = CFrame.new(-22.3502502, 4.83327675, 35.84198, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4244. p395.Anchored = true
  4245. p395.FormFactor = Enum.FormFactor.Custom
  4246. p395.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4247. p395.BottomSurface = Enum.SurfaceType.Smooth
  4248. p395.TopSurface = Enum.SurfaceType.Smooth
  4249. p396 = Instance.new("Part", m)
  4250. p396.BrickColor = BrickColor.new("Dusty Rose")
  4251. p396.Material = Enum.Material.Brick
  4252. p396.CFrame = CFrame.new(13.3869934, 6.02999306, 14.4810791, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
  4253. p396.Anchored = true
  4254. p396.FormFactor = Enum.FormFactor.Custom
  4255. p396.Size = Vector3.new(2.65999222, 12, 2.39998937)
  4256. p396.BottomSurface = Enum.SurfaceType.Smooth
  4257. p396.TopSurface = Enum.SurfaceType.Smooth
  4258. p397 = Instance.new("Part", m)
  4259. p397.BrickColor = BrickColor.new("Sand red")
  4260. p397.Material = Enum.Material.Concrete
  4261. p397.CFrame = CFrame.new(14.0153198, 27.7796001, 35.7730713, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4262. p397.Anchored = true
  4263. p397.FormFactor = Enum.FormFactor.Custom
  4264. p397.Size = Vector3.new(42.6699944, 26.6000023, 2.79999971)
  4265. p397.BottomSurface = Enum.SurfaceType.Smooth
  4266. p397.TopSurface = Enum.SurfaceType.Smooth
  4267. p398 = Instance.new("Part", m)
  4268. p398.BrickColor = BrickColor.new("Dusty Rose")
  4269. p398.Material = Enum.Material.Brick
  4270. p398.CFrame = CFrame.new(13.9649658, 6.03168678, 15.8602905, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4271. p398.Anchored = true
  4272. p398.FormFactor = Enum.FormFactor.Custom
  4273. p398.Size = Vector3.new(2.59999228, 12, 2.39998937)
  4274. p398.BottomSurface = Enum.SurfaceType.Smooth
  4275. p398.TopSurface = Enum.SurfaceType.Smooth
  4276. p399 = Instance.new("Part", m)
  4277. p399.BrickColor = BrickColor.new("Dusty Rose")
  4278. p399.Material = Enum.Material.SmoothPlastic
  4279. p399.CFrame = CFrame.new(13.9676514, 9.35797691, 26.4523315, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4280. p399.Anchored = true
  4281. p399.FormFactor = Enum.FormFactor.Custom
  4282. p399.Size = Vector3.new(18.5999889, 0.200000003, 0.399989128)
  4283. p399.BottomSurface = Enum.SurfaceType.Smooth
  4284. p399.TopSurface = Enum.SurfaceType.Smooth
  4285. p400 = Instance.new("Part", m)
  4286. p400.BrickColor = BrickColor.new("Dark stone grey")
  4287. p400.Material = Enum.Material.Pebble
  4288. p400.CFrame = CFrame.new(14.0558777, 41.9802856, 35.7390137, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4289. p400.Anchored = true
  4290. p400.FormFactor = Enum.FormFactor.Custom
  4291. p400.Size = Vector3.new(42.670002, 1.79999804, 2.79999971)
  4292. p400.BottomSurface = Enum.SurfaceType.Smooth
  4293. p400.TopSurface = Enum.SurfaceType.Smooth
  4294. p401 = Instance.new("Part", m)
  4295. p401.BrickColor = BrickColor.new("Reddish brown")
  4296. p401.Material = Enum.Material.Concrete
  4297. p401.CFrame = CFrame.new(-21.749176, 4.72577858, 33.442627, 0.000582970097, 0.00285563874, 0.999992609, -0.00240225135, 0.999992013, -0.00285413326, -0.999994159, -0.00240058731, 0.000589070609)
  4298. p401.Anchored = true
  4299. p401.FormFactor = Enum.FormFactor.Custom
  4300. p401.Size = Vector3.new(0.200000003, 2.80000019, 1.4000001)
  4301. p401.BottomSurface = Enum.SurfaceType.Smooth
  4302. p401.TopSurface = Enum.SurfaceType.Smooth
  4303. p402 = Instance.new("Part", m)
  4304. p402.BrickColor = BrickColor.new("Medium stone grey")
  4305. p402.Material = Enum.Material.DiamondPlate
  4306. p402.CFrame = CFrame.new(-21.8557129, 4.04500771, 41.3442383, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4307. p402.Anchored = true
  4308. p402.FormFactor = Enum.FormFactor.Custom
  4309. p402.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
  4310. p402.BottomSurface = Enum.SurfaceType.Smooth
  4311. p402.TopSurface = Enum.SurfaceType.Smooth
  4312. p403 = Instance.new("Part", m)
  4313. p403.BrickColor = BrickColor.new("Medium stone grey")
  4314. p403.Material = Enum.Material.Concrete
  4315. p403.CFrame = CFrame.new(10.2640381, 8.73155785, 11.340332, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
  4316. p403.Anchored = true
  4317. p403.FormFactor = Enum.FormFactor.Custom
  4318. p403.Size = Vector3.new(4.99999046, 2.99999928, 1.19998896)
  4319. p403.BottomSurface = Enum.SurfaceType.Smooth
  4320. p403.TopSurface = Enum.SurfaceType.Smooth
  4321. p404 = Instance.new("Part", m)
  4322. p404.BrickColor = BrickColor.new("Sand red")
  4323. p404.Material = Enum.Material.Concrete
  4324. p404.CFrame = CFrame.new(-17.9576111, 1.15897393, 30.5484314, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4325. p404.Anchored = true
  4326. p404.FormFactor = Enum.FormFactor.Custom
  4327. p404.Size = Vector3.new(2.26999044, 1.599998, 9.39999771)
  4328. p404.BottomSurface = Enum.SurfaceType.Smooth
  4329. p404.TopSurface = Enum.SurfaceType.Smooth
  4330. p405 = Instance.new("Part", m)
  4331. p405.BrickColor = BrickColor.new("Dusty Rose")
  4332. p405.Material = Enum.Material.Brick
  4333. p405.CFrame = CFrame.new(7.11993408, 6.03304482, 8.27191162, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4334. p405.Anchored = true
  4335. p405.FormFactor = Enum.FormFactor.Custom
  4336. p405.Size = Vector3.new(2.60999203, 12, 2.39998937)
  4337. p405.BottomSurface = Enum.SurfaceType.Smooth
  4338. p405.TopSurface = Enum.SurfaceType.Smooth
  4339. p406 = Instance.new("Part", m)
  4340. p406.BrickColor = BrickColor.new("Brown")
  4341. p406.Material = Enum.Material.Wood
  4342. p406.CFrame = CFrame.new(10.2252808, 3.33252907, 11.3950806, 0.706689596, 0.00285583455, -0.70751375, -0.000319865416, 0.999992073, 0.00371677568, 0.707519054, -0.0024003163, 0.706686199)
  4343. p406.Anchored = true
  4344. p406.CanCollide = false
  4345. p406.FormFactor = Enum.FormFactor.Custom
  4346. p406.Size = Vector3.new(5, 6.59999466, 0.400000006)
  4347. p406.BottomSurface = Enum.SurfaceType.Smooth
  4348. p406.TopSurface = Enum.SurfaceType.Smooth
  4349. p407 = Instance.new("Part", m)
  4350. p407.BrickColor = BrickColor.new("Dusty Rose")
  4351. p407.Material = Enum.Material.SmoothPlastic
  4352. p407.CFrame = CFrame.new(10.1169434, 6.73131752, 11.2035522, 0.706689656, -0.70751375, -0.00285567157, -0.000319581712, 0.00371683156, -0.999992311, 0.707518995, 0.706686258, 0.00240052212)
  4353. p407.Anchored = true
  4354. p407.FormFactor = Enum.FormFactor.Custom
  4355. p407.Size = Vector3.new(4.99999905, 0.800000012, 0.200000003)
  4356. p407.BottomSurface = Enum.SurfaceType.Smooth
  4357. p407.TopSurface = Enum.SurfaceType.Smooth
  4358. p408 = Instance.new("Part", m)
  4359. p408.BrickColor = BrickColor.new("Dark stone grey")
  4360. p408.Material = Enum.Material.Pebble
  4361. p408.CFrame = CFrame.new(10.4435425, 14.1316118, 11.2738037, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4362. p408.Anchored = true
  4363. p408.FormFactor = Enum.FormFactor.Custom
  4364. p408.Size = Vector3.new(12.0699911, 0.599997938, 3.19999981)
  4365. p408.BottomSurface = Enum.SurfaceType.Smooth
  4366. p408.TopSurface = Enum.SurfaceType.Smooth
  4367. p409 = Instance.new("Part", m)
  4368. p409.BrickColor = BrickColor.new("Dusty Rose")
  4369. p409.Material = Enum.Material.Brick
  4370. p409.CFrame = CFrame.new(12.2313232, 4.73038673, 13.3309937, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
  4371. p409.Anchored = true
  4372. p409.FormFactor = Enum.FormFactor.Custom
  4373. p409.Size = Vector3.new(0.59999007, 9.3999958, 1.59998918)
  4374. p409.BottomSurface = Enum.SurfaceType.Smooth
  4375. p409.TopSurface = Enum.SurfaceType.Smooth
  4376. p410 = Instance.new("Part", m)
  4377. p410.BrickColor = BrickColor.new("Dark stone grey")
  4378. p410.Material = Enum.Material.DiamondPlate
  4379. p410.CFrame = CFrame.new(-22.351593, 4.83855629, 38.0419922, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4380. p410.Anchored = true
  4381. p410.FormFactor = Enum.FormFactor.Custom
  4382. p410.Size = Vector3.new(0.200000003, 2.60000038, 0.200000003)
  4383. p410.BottomSurface = Enum.SurfaceType.Smooth
  4384. p410.TopSurface = Enum.SurfaceType.Smooth
  4385. p411 = Instance.new("Part", m)
  4386. p411.BrickColor = BrickColor.new("Dark stone grey")
  4387. p411.Material = Enum.Material.DiamondPlate
  4388. p411.CFrame = CFrame.new(-21.1549988, 4.44446754, 41.9436646, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4389. p411.Anchored = true
  4390. p411.FormFactor = Enum.FormFactor.Custom
  4391. p411.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
  4392. p411.BottomSurface = Enum.SurfaceType.Smooth
  4393. p411.TopSurface = Enum.SurfaceType.Smooth
  4394. p412 = Instance.new("Part", m)
  4395. p412.BrickColor = BrickColor.new("Dusty Rose")
  4396. p412.Material = Enum.Material.Brick
  4397. p412.CFrame = CFrame.new(13.9725342, 10.7574825, 25.848938, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4398. p412.Anchored = true
  4399. p412.FormFactor = Enum.FormFactor.Custom
  4400. p412.Size = Vector3.new(17.399992, 2.59999824, 1.59998918)
  4401. p412.BottomSurface = Enum.SurfaceType.Smooth
  4402. p412.TopSurface = Enum.SurfaceType.Smooth
  4403. p413 = Instance.new("Part", m)
  4404. p413.BrickColor = BrickColor.new("Sand red")
  4405. p413.Material = Enum.Material.Concrete
  4406. p413.CFrame = CFrame.new(-5.99685669, 27.887495, 56.9961853, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4407. p413.Anchored = true
  4408. p413.FormFactor = Enum.FormFactor.Custom
  4409. p413.Size = Vector3.new(0.200000003, 26.6000023, 37.2000084)
  4410. p413.BottomSurface = Enum.SurfaceType.Smooth
  4411. p413.TopSurface = Enum.SurfaceType.Smooth
  4412. p414 = Instance.new("Part", m)
  4413. p414.BrickColor = BrickColor.new("Medium stone grey")
  4414. p414.Material = Enum.Material.Concrete
  4415. p414.CFrame = CFrame.new(-10.1640625, 0.49607113, 38.4594116, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  4416. p414.Anchored = true
  4417. p414.FormFactor = Enum.FormFactor.Custom
  4418. p414.Size = Vector3.new(0.800000012, 0.200000003, 0.800000012)
  4419. p414.BottomSurface = Enum.SurfaceType.Smooth
  4420. p414.TopSurface = Enum.SurfaceType.Smooth
  4421. b127 = Instance.new("CylinderMesh", p414)
  4422. b127.Name = "Mesh"
  4423. p415 = Instance.new("Part", m)
  4424. p415.BrickColor = BrickColor.new("Grime")
  4425. p415.Material = Enum.Material.Concrete
  4426. p415.CFrame = CFrame.new(-13.2720337, 3.46993446, 40.680603, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4427. p415.Anchored = true
  4428. p415.FormFactor = Enum.FormFactor.Custom
  4429. p415.Size = Vector3.new(2.26999044, 0.200000003, 20.4000092)
  4430. p415.BottomSurface = Enum.SurfaceType.Smooth
  4431. p415.TopSurface = Enum.SurfaceType.Smooth
  4432. p416 = Instance.new("Part", m)
  4433. p416.BrickColor = BrickColor.new("Dark stone grey")
  4434. p416.Material = Enum.Material.Concrete
  4435. p416.CFrame = CFrame.new(8.61730957, 43.541153, 12.9698486, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4436. p416.Anchored = true
  4437. p416.FormFactor = Enum.FormFactor.Custom
  4438. p416.Size = Vector3.new(12.2699909, 0.200000003, 8.79999924)
  4439. p416.BottomSurface = Enum.SurfaceType.Smooth
  4440. p416.TopSurface = Enum.SurfaceType.Smooth
  4441. p417 = Instance.new("Part", m)
  4442. p417.BrickColor = BrickColor.new("Reddish brown")
  4443. p417.Material = Enum.Material.Wood
  4444. p417.CFrame = CFrame.new(10.2181702, 3.3325901, 11.4020996, 0.706689596, 0.00285583455, -0.70751375, -0.000319865416, 0.999992073, 0.00371677568, 0.707519054, -0.0024003163, 0.706686199)
  4445. p417.Anchored = true
  4446. p417.CanCollide = false
  4447. p417.FormFactor = Enum.FormFactor.Custom
  4448. p417.Size = Vector3.new(4.20000076, 6.19999456, 0.459999949)
  4449. p417.BottomSurface = Enum.SurfaceType.Smooth
  4450. p417.TopSurface = Enum.SurfaceType.Smooth
  4451. p418 = Instance.new("Part", m)
  4452. p418.BrickColor = BrickColor.new("Dusty Rose")
  4453. p418.Material = Enum.Material.SmoothPlastic
  4454. p418.CFrame = CFrame.new(13.9549561, 6.57662392, 34.4588623, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4455. p418.Anchored = true
  4456. p418.FormFactor = Enum.FormFactor.Custom
  4457. p418.Size = Vector3.new(0.200000003, 7.80000591, 0.399989128)
  4458. p418.BottomSurface = Enum.SurfaceType.Smooth
  4459. p418.TopSurface = Enum.SurfaceType.Smooth
  4460. p419 = Instance.new("Part", m)
  4461. p419.BrickColor = BrickColor.new("Grime")
  4462. p419.Material = Enum.Material.Concrete
  4463. p419.CFrame = CFrame.new(-13.2510986, 3.44553566, 30.5456543, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4464. p419.Anchored = true
  4465. p419.FormFactor = Enum.FormFactor.Custom
  4466. p419.Size = Vector3.new(2.26999044, 0.200000003, 2.39999795)
  4467. p419.BottomSurface = Enum.SurfaceType.Smooth
  4468. p419.TopSurface = Enum.SurfaceType.Smooth
  4469. b128 = Instance.new("CylinderMesh", p419)
  4470. b128.Name = "Mesh"
  4471. p420 = Instance.new("Part", m)
  4472. p420.BrickColor = BrickColor.new("Dark stone grey")
  4473. p420.Material = Enum.Material.DiamondPlate
  4474. p420.CFrame = CFrame.new(-21.7489624, 4.82627296, 33.6424866, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4475. p420.Anchored = true
  4476. p420.FormFactor = Enum.FormFactor.Custom
  4477. p420.Size = Vector3.new(0.200000003, 2.60000038, 1.4000001)
  4478. p420.BottomSurface = Enum.SurfaceType.Smooth
  4479. p420.TopSurface = Enum.SurfaceType.Smooth
  4480. p421 = Instance.new("Part", m)
  4481. p421.BrickColor = BrickColor.new("Dusty Rose")
  4482. p421.Material = Enum.Material.Brick
  4483. p421.CFrame = CFrame.new(-23.6441345, 6.17826271, 31.9378967, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4484. p421.Anchored = true
  4485. p421.FormFactor = Enum.FormFactor.Custom
  4486. p421.Size = Vector3.new(45.9999924, 11.9999962, 1.59998918)
  4487. p421.BottomSurface = Enum.SurfaceType.Smooth
  4488. p421.TopSurface = Enum.SurfaceType.Smooth
  4489. p422 = Instance.new("Part", m)
  4490. p422.BrickColor = BrickColor.new("Dusty Rose")
  4491. p422.Material = Enum.Material.SmoothPlastic
  4492. p422.CFrame = CFrame.new(0.869781494, 6.04989052, 7.75268555, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4493. p422.Anchored = true
  4494. p422.FormFactor = Enum.FormFactor.Custom
  4495. p422.Size = Vector3.new(0.200000003, 6.40000105, 0.399989128)
  4496. p422.BottomSurface = Enum.SurfaceType.Smooth
  4497. p422.TopSurface = Enum.SurfaceType.Smooth
  4498. p423 = Instance.new("Part", m)
  4499. p423.BrickColor = BrickColor.new("Medium stone grey")
  4500. p423.Material = Enum.Material.Brick
  4501. p423.CFrame = CFrame.new(10.5263367, 43.1314697, 11.2041626, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4502. p423.Anchored = true
  4503. p423.FormFactor = Enum.FormFactor.Custom
  4504. p423.Size = Vector3.new(12.0699911, 0.599997938, 3.19999981)
  4505. p423.BottomSurface = Enum.SurfaceType.Smooth
  4506. p423.TopSurface = Enum.SurfaceType.Smooth
  4507. p424 = Instance.new("Part", m)
  4508. p424.BrickColor = BrickColor.new("Dark stone grey")
  4509. p424.Material = Enum.Material.DiamondPlate
  4510. p424.CFrame = CFrame.new(-22.3514404, 4.43322182, 35.8430176, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4511. p424.Anchored = true
  4512. p424.FormFactor = Enum.FormFactor.Custom
  4513. p424.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4514. p424.BottomSurface = Enum.SurfaceType.Smooth
  4515. p424.TopSurface = Enum.SurfaceType.Smooth
  4516. p425 = Instance.new("Seat", m)
  4517. p425.BrickColor = BrickColor.new("Sand red")
  4518. p425.Transparency = 1
  4519. p425.CFrame = CFrame.new(-10.1565552, 2.28652334, 34.4550781, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
  4520. p425.Anchored = true
  4521. p425.FormFactor = Enum.FormFactor.Custom
  4522. p425.Size = Vector3.new(1.19999933, 0.200000003, 2)
  4523. p425.FrontSurface = Enum.SurfaceType.Hinge
  4524. p426 = Instance.new("Seat", m)
  4525. p426.BrickColor = BrickColor.new("Sand red")
  4526. p426.Transparency = 1
  4527. p426.CFrame = CFrame.new(-10.1589355, 2.29612112, 38.4550781, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
  4528. p426.Anchored = true
  4529. p426.FormFactor = Enum.FormFactor.Custom
  4530. p426.Size = Vector3.new(1.19999933, 0.200000003, 2)
  4531. p426.FrontSurface = Enum.SurfaceType.Hinge
  4532. p427 = Instance.new("Part", m)
  4533. p427.BrickColor = BrickColor.new("Dusty Rose")
  4534. p427.Material = Enum.Material.Brick
  4535. p427.CFrame = CFrame.new(10.2591553, 7.03139687, 11.3444214, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
  4536. p427.Anchored = true
  4537. p427.FormFactor = Enum.FormFactor.Custom
  4538. p427.Size = Vector3.new(4.99999046, 0.400000006, 1.59998918)
  4539. p427.BottomSurface = Enum.SurfaceType.Smooth
  4540. p427.TopSurface = Enum.SurfaceType.Smooth
  4541. p428 = Instance.new("Part", m)
  4542. p428.BrickColor = BrickColor.new("Brick yellow")
  4543. p428.Material = Enum.Material.Concrete
  4544. p428.CFrame = CFrame.new(-17.8533936, 2.65867019, 30.5448914, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4545. p428.Anchored = true
  4546. p428.FormFactor = Enum.FormFactor.Custom
  4547. p428.Size = Vector3.new(1.86999035, 1.39999795, 9.1999979)
  4548. p428.BottomSurface = Enum.SurfaceType.Smooth
  4549. p428.TopSurface = Enum.SurfaceType.Smooth
  4550. p429 = Instance.new("Part", m)
  4551. p429.BrickColor = BrickColor.new("Brick yellow")
  4552. p429.Material = Enum.Material.Concrete
  4553. p429.CFrame = CFrame.new(-13.2745667, 2.56968093, 40.5827942, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4554. p429.Anchored = true
  4555. p429.FormFactor = Enum.FormFactor.Custom
  4556. p429.Size = Vector3.new(1.86999035, 1.599998, 20.2000084)
  4557. p429.BottomSurface = Enum.SurfaceType.Smooth
  4558. p429.TopSurface = Enum.SurfaceType.Smooth
  4559. p430 = Instance.new("Part", m)
  4560. p430.BrickColor = BrickColor.new("Dusty Rose")
  4561. p430.Material = Enum.Material.SmoothPlastic
  4562. p430.CFrame = CFrame.new(13.9490967, 2.75597548, 25.9682007, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4563. p430.Anchored = true
  4564. p430.FormFactor = Enum.FormFactor.Custom
  4565. p430.Size = Vector3.new(17.1999912, 0.200000003, 0.399989128)
  4566. p430.BottomSurface = Enum.SurfaceType.Smooth
  4567. p430.TopSurface = Enum.SurfaceType.Smooth
  4568. p431 = Instance.new("Part", m)
  4569. p431.BrickColor = BrickColor.new("Dusty Rose")
  4570. p431.Material = Enum.Material.SmoothPlastic
  4571. p431.CFrame = CFrame.new(13.962738, 5.73526955, 17.2609863, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4572. p431.Anchored = true
  4573. p431.FormFactor = Enum.FormFactor.Custom
  4574. p431.Size = Vector3.new(0.200000003, 7.40000486, 0.399989128)
  4575. p431.BottomSurface = Enum.SurfaceType.Smooth
  4576. p431.TopSurface = Enum.SurfaceType.Smooth
  4577. p432 = Instance.new("Part", m)
  4578. p432.BrickColor = BrickColor.new("Sand red")
  4579. p432.Material = Enum.Material.Concrete
  4580. p432.CFrame = CFrame.new(10.3467407, 27.7313824, 11.3230591, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
  4581. p432.Anchored = true
  4582. p432.FormFactor = Enum.FormFactor.Custom
  4583. p432.Size = Vector3.new(11.6199875, 26.5999908, 2.79999971)
  4584. p432.BottomSurface = Enum.SurfaceType.Smooth
  4585. p432.TopSurface = Enum.SurfaceType.Smooth
  4586. p433 = Instance.new("Part", m)
  4587. p433.BrickColor = BrickColor.new("Dark stone grey")
  4588. p433.Material = Enum.Material.Pebble
  4589. p433.CFrame = CFrame.new(-23.6243286, 13.0781145, 31.7565002, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4590. p433.Anchored = true
  4591. p433.FormFactor = Enum.FormFactor.Custom
  4592. p433.Size = Vector3.new(45.2700005, 1.79999804, 2.80001736)
  4593. p433.BottomSurface = Enum.SurfaceType.Smooth
  4594. p433.TopSurface = Enum.SurfaceType.Smooth
  4595. p434 = Instance.new("Part", m)
  4596. p434.BrickColor = BrickColor.new("Brick yellow")
  4597. p434.Material = Enum.Material.WoodPlanks
  4598. p434.CFrame = CFrame.new(7.64456177, 0.145286918, 13.6392822, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4599. p434.Anchored = true
  4600. p434.FormFactor = Enum.FormFactor.Custom
  4601. p434.Size = Vector3.new(12.6699905, 0.200000003, 6.79999876)
  4602. p434.BottomSurface = Enum.SurfaceType.Smooth
  4603. p434.TopSurface = Enum.SurfaceType.Smooth
  4604. p435 = Instance.new("Part", m)
  4605. p435.BrickColor = BrickColor.new("Brick yellow")
  4606. p435.Material = Enum.Material.Concrete
  4607. p435.CFrame = CFrame.new(-10.1698303, 1.99614847, 38.4557495, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  4608. p435.Anchored = true
  4609. p435.FormFactor = Enum.FormFactor.Custom
  4610. p435.Size = Vector3.new(2.1400001, 0.200000003, 2.06000042)
  4611. p435.BottomSurface = Enum.SurfaceType.Smooth
  4612. p435.TopSurface = Enum.SurfaceType.Smooth
  4613. b129 = Instance.new("CylinderMesh", p435)
  4614. b129.Name = "Mesh"
  4615. p436 = Instance.new("Part", m)
  4616. p436.BrickColor = BrickColor.new("Dark stone grey")
  4617. p436.Material = Enum.Material.DiamondPlate
  4618. p436.CFrame = CFrame.new(-22.3525696, 4.03321266, 35.8439331, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4619. p436.Anchored = true
  4620. p436.FormFactor = Enum.FormFactor.Custom
  4621. p436.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4622. p436.BottomSurface = Enum.SurfaceType.Smooth
  4623. p436.TopSurface = Enum.SurfaceType.Smooth
  4624. p437 = Instance.new("Part", m)
  4625. p437.BrickColor = BrickColor.new("Sand red")
  4626. p437.Material = Enum.Material.Concrete
  4627. p437.CFrame = CFrame.new(13.3335571, 0.930229425, 14.4545288, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
  4628. p437.Anchored = true
  4629. p437.FormFactor = Enum.FormFactor.Custom
  4630. p437.Size = Vector3.new(2.94999003, 1.79999804, 2.79999971)
  4631. p437.BottomSurface = Enum.SurfaceType.Smooth
  4632. p437.TopSurface = Enum.SurfaceType.Smooth
  4633. p438 = Instance.new("Part", m)
  4634. p438.BrickColor = BrickColor.new("Medium stone grey")
  4635. p438.Material = Enum.Material.Concrete
  4636. p438.CFrame = CFrame.new(-10.1620483, 1.19509149, 38.4577332, -0.999992847, 0.00285565224, 0.000583000132, 0.00285412814, 0.999992371, -0.00240225391, -0.000589070667, -0.00240059383, -0.999994338)
  4637. p438.Anchored = true
  4638. p438.FormFactor = Enum.FormFactor.Custom
  4639. p438.Size = Vector3.new(0.400000006, 1.20000076, 0.400000006)
  4640. p438.BottomSurface = Enum.SurfaceType.Smooth
  4641. p438.TopSurface = Enum.SurfaceType.Smooth
  4642. b130 = Instance.new("CylinderMesh", p438)
  4643. b130.Name = "Mesh"
  4644. p439 = Instance.new("Part", m)
  4645. p439.BrickColor = BrickColor.new("Dark stone grey")
  4646. p439.Material = Enum.Material.Pebble
  4647. p439.CFrame = CFrame.new(-23.8559265, 14.2786608, 31.7185364, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4648. p439.Anchored = true
  4649. p439.FormFactor = Enum.FormFactor.Custom
  4650. p439.Size = Vector3.new(3.26999068, 0.599997938, 45.2000122)
  4651. p439.BottomSurface = Enum.SurfaceType.Smooth
  4652. p439.TopSurface = Enum.SurfaceType.Smooth
  4653. p440 = Instance.new("Part", m)
  4654. p440.BrickColor = BrickColor.new("Dusty Rose")
  4655. p440.Material = Enum.Material.Brick
  4656. p440.CFrame = CFrame.new(8.25042725, 4.73241615, 9.41070557, 0.706689656, 0.00285571627, -0.70751375, -0.000319607789, 0.999992311, 0.00371686602, 0.707519054, -0.00240055937, 0.706686199)
  4657. p440.Anchored = true
  4658. p440.FormFactor = Enum.FormFactor.Custom
  4659. p440.Size = Vector3.new(0.59999007, 9.3999958, 1.59998918)
  4660. p440.BottomSurface = Enum.SurfaceType.Smooth
  4661. p440.TopSurface = Enum.SurfaceType.Smooth
  4662. p441 = Instance.new("Part", m)
  4663. p441.BrickColor = BrickColor.new("Pastel yellow")
  4664. p441.Material = Enum.Material.Fabric
  4665. p441.CFrame = CFrame.new(-0.760803223, 0.252601951, 31.6956787, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4666. p441.Anchored = true
  4667. p441.FormFactor = Enum.FormFactor.Custom
  4668. p441.Size = Vector3.new(14.5999889, 0.200000003, 46.0000038)
  4669. p441.BottomSurface = Enum.SurfaceType.Smooth
  4670. p441.TopSurface = Enum.SurfaceType.Smooth
  4671. p442 = Instance.new("Part", m)
  4672. p442.BrickColor = BrickColor.new("Dusty Rose")
  4673. p442.Material = Enum.Material.Concrete
  4674. p442.Reflectance = 0.20000000298023
  4675. p442.CFrame = CFrame.new(-10.1597595, 1.99611795, 38.4558105, -0.999992847, -0.00285560009, -0.000583045126, 0.00285403873, -0.999992371, 0.00240225228, -0.000589072471, 0.00240054913, 0.999994397)
  4676. p442.Anchored = true
  4677. p442.FormFactor = Enum.FormFactor.Custom
  4678. p442.Size = Vector3.new(2.00001645, 0.399999976, 2)
  4679. p442.BottomSurface = Enum.SurfaceType.Smooth
  4680. p442.TopSurface = Enum.SurfaceType.Smooth
  4681. b131 = Instance.new("CylinderMesh", p442)
  4682. b131.Name = "Mesh"
  4683. p443 = Instance.new("Part", m)
  4684. p443.BrickColor = BrickColor.new("Dark stone grey")
  4685. p443.Material = Enum.Material.Pebble
  4686. p443.CFrame = CFrame.new(10.3814087, 41.9322205, 11.3484497, 0.706689537, 0.00285582361, -0.707513988, -0.000319601502, 0.999992371, 0.00371701922, 0.707519114, -0.00240068324, 0.706686199)
  4687. p443.Anchored = true
  4688. p443.FormFactor = Enum.FormFactor.Custom
  4689. p443.Size = Vector3.new(11.6699915, 1.79999804, 2.79999971)
  4690. p443.BottomSurface = Enum.SurfaceType.Smooth
  4691. p443.TopSurface = Enum.SurfaceType.Smooth
  4692. p444 = Instance.new("Part", m)
  4693. p444.BrickColor = BrickColor.new("Grime")
  4694. p444.Material = Enum.Material.Concrete
  4695. p444.CFrame = CFrame.new(-17.9510803, 3.45896339, 30.5429382, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4696. p444.Anchored = true
  4697. p444.FormFactor = Enum.FormFactor.Custom
  4698. p444.Size = Vector3.new(2.26999044, 0.200000003, 9.39999771)
  4699. p444.BottomSurface = Enum.SurfaceType.Smooth
  4700. p444.TopSurface = Enum.SurfaceType.Smooth
  4701. p445 = Instance.new("Part", m)
  4702. p445.BrickColor = BrickColor.new("Dark stone grey")
  4703. p445.Material = Enum.Material.DiamondPlate
  4704. p445.CFrame = CFrame.new(-22.3491211, 5.23325539, 35.8410645, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4705. p445.Anchored = true
  4706. p445.FormFactor = Enum.FormFactor.Custom
  4707. p445.Size = Vector3.new(4.60001373, 0.200000003, 0.200000003)
  4708. p445.BottomSurface = Enum.SurfaceType.Smooth
  4709. p445.TopSurface = Enum.SurfaceType.Smooth
  4710. p446 = Instance.new("Part", m)
  4711. p446.BrickColor = BrickColor.new("Sand red")
  4712. p446.Material = Enum.Material.Concrete
  4713. p446.CFrame = CFrame.new(8.38095093, 0.932396173, 9.5612793, 0.706689477, 0.00285581616, -0.707513928, -0.000319605693, 0.999992371, 0.00371700851, 0.707519114, -0.00240067206, 0.706686139)
  4714. p446.Anchored = true
  4715. p446.FormFactor = Enum.FormFactor.Custom
  4716. p446.Size = Vector3.new(0.600000024, 1.79999804, 1.99999952)
  4717. p446.BottomSurface = Enum.SurfaceType.Smooth
  4718. p446.TopSurface = Enum.SurfaceType.Smooth
  4719. p447 = Instance.new("Part", m)
  4720. p447.BrickColor = BrickColor.new("Medium stone grey")
  4721. p447.Material = Enum.Material.SmoothPlastic
  4722. p447.Reflectance = 0.20000000298023
  4723. p447.Transparency = 0.5
  4724. p447.CFrame = CFrame.new(13.9788513, 6.05802345, 26.3601685, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4725. p447.Anchored = true
  4726. p447.FormFactor = Enum.FormFactor.Custom
  4727. p447.Size = Vector3.new(18.0000229, 6.80000496, 0.200000003)
  4728. p447.BottomSurface = Enum.SurfaceType.Smooth
  4729. p447.TopSurface = Enum.SurfaceType.Smooth
  4730. p448 = Instance.new("Part", m)
  4731. p448.BrickColor = BrickColor.new("Dusty Rose")
  4732. p448.Material = Enum.Material.SmoothPlastic
  4733. p448.CFrame = CFrame.new(8.53106689, 4.03229713, 9.69537354, 0.706689715, -0.70751363, -0.00285569415, -0.000319564599, 0.00371687044, -0.999992192, 0.707518935, 0.706686199, 0.00240054168)
  4734. p448.Anchored = true
  4735. p448.FormFactor = Enum.FormFactor.Custom
  4736. p448.Size = Vector3.new(0.200000003, 0.800000012, 5.19998789)
  4737. p448.BottomSurface = Enum.SurfaceType.Smooth
  4738. p448.TopSurface = Enum.SurfaceType.Smooth
  4739. p449 = Instance.new("Part", m)
  4740. p449.BrickColor = BrickColor.new("Sand red")
  4741. p449.Material = Enum.Material.Concrete
  4742. p449.CFrame = CFrame.new(-13.2576294, 1.14556146, 30.5511475, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4743. p449.Anchored = true
  4744. p449.FormFactor = Enum.FormFactor.Custom
  4745. p449.Size = Vector3.new(2.26999044, 1.599998, 2.39999795)
  4746. p449.BottomSurface = Enum.SurfaceType.Smooth
  4747. p449.TopSurface = Enum.SurfaceType.Smooth
  4748. b132 = Instance.new("CylinderMesh", p449)
  4749. b132.Name = "Mesh"
  4750. p450 = Instance.new("Seat", m)
  4751. p450.BrickColor = BrickColor.new("Sand red")
  4752. p450.Transparency = 1
  4753. p450.CFrame = CFrame.new(9.23294067, 2.0300231, 50.7971497, 0.999992847, 0.00285565224, -0.000582820969, -0.00285412627, 0.999992371, 0.00240224763, 0.000589011179, -0.00240059383, 0.999994397)
  4754. p450.Anchored = true
  4755. p450.FormFactor = Enum.FormFactor.Custom
  4756. p450.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4757. p450.FrontSurface = Enum.SurfaceType.Hinge
  4758. p451 = Instance.new("Seat", m)
  4759. p451.BrickColor = BrickColor.new("Sand red")
  4760. p451.Transparency = 1
  4761. p451.CFrame = CFrame.new(9.16677856, 2.01436758, 44.1972046, -0.999992847, 0.00285565224, 0.000582820969, 0.00285412627, 0.999992371, -0.00240224763, -0.000589011179, -0.00240059383, -0.999994397)
  4762. p451.Anchored = true
  4763. p451.FormFactor = Enum.FormFactor.Custom
  4764. p451.Size = Vector3.new(1.39999938, 0.200000003, 1.39999986)
  4765. p451.FrontSurface = Enum.SurfaceType.Hinge
  4766. p452 = Instance.new("Part", m)
  4767. p452.BrickColor = BrickColor.new("Dark stone grey")
  4768. p452.Material = Enum.Material.DiamondPlate
  4769. p452.CFrame = CFrame.new(-21.1525879, 5.85123634, 44.7402344, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4770. p452.Anchored = true
  4771. p452.FormFactor = Enum.FormFactor.Custom
  4772. p452.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
  4773. p452.BottomSurface = Enum.SurfaceType.Smooth
  4774. p452.TopSurface = Enum.SurfaceType.Smooth
  4775. p453 = Instance.new("Part", m)
  4776. p453.BrickColor = BrickColor.new("Dark stone grey")
  4777. p453.Material = Enum.Material.DiamondPlate
  4778. p453.CFrame = CFrame.new(-21.1566162, 4.45118141, 44.7435913, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4779. p453.Anchored = true
  4780. p453.FormFactor = Enum.FormFactor.Custom
  4781. p453.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
  4782. p453.BottomSurface = Enum.SurfaceType.Smooth
  4783. p453.TopSurface = Enum.SurfaceType.Smooth
  4784. p454 = Instance.new("Part", m)
  4785. p454.BrickColor = BrickColor.new("Dark stone grey")
  4786. p454.Material = Enum.Material.DiamondPlate
  4787. p454.CFrame = CFrame.new(-21.7527161, 6.25821877, 46.9388428, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4788. p454.Anchored = true
  4789. p454.FormFactor = Enum.FormFactor.Custom
  4790. p454.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
  4791. p454.BottomSurface = Enum.SurfaceType.Smooth
  4792. p454.TopSurface = Enum.SurfaceType.Smooth
  4793. p455 = Instance.new("Part", m)
  4794. p455.BrickColor = BrickColor.new("Medium stone grey")
  4795. p455.Material = Enum.Material.DiamondPlate
  4796. p455.CFrame = CFrame.new(-21.8510437, 6.85848427, 46.9373474, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4797. p455.Anchored = true
  4798. p455.FormFactor = Enum.FormFactor.Custom
  4799. p455.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
  4800. p455.BottomSurface = Enum.SurfaceType.Smooth
  4801. p455.TopSurface = Enum.SurfaceType.Smooth
  4802. p456 = Instance.new("Part", m)
  4803. p456.BrickColor = BrickColor.new("Sand red")
  4804. p456.Material = Enum.Material.Concrete
  4805. p456.CFrame = CFrame.new(-13.278595, 1.169945, 40.6860962, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4806. p456.Anchored = true
  4807. p456.FormFactor = Enum.FormFactor.Custom
  4808. p456.Size = Vector3.new(2.26999044, 1.599998, 20.4000092)
  4809. p456.BottomSurface = Enum.SurfaceType.Smooth
  4810. p456.TopSurface = Enum.SurfaceType.Smooth
  4811. p457 = Instance.new("Part", m)
  4812. p457.BrickColor = BrickColor.new("Reddish brown")
  4813. p457.Material = Enum.Material.Concrete
  4814. p457.CFrame = CFrame.new(-21.7578735, 4.76180458, 48.4424438, 0.000582970097, 0.00285563874, 0.999992609, -0.00240225135, 0.999992013, -0.00285413326, -0.999994159, -0.00240058731, 0.000589070609)
  4815. p457.Anchored = true
  4816. p457.FormFactor = Enum.FormFactor.Custom
  4817. p457.Size = Vector3.new(0.200000003, 2.80000019, 1.4000001)
  4818. p457.BottomSurface = Enum.SurfaceType.Smooth
  4819. p457.TopSurface = Enum.SurfaceType.Smooth
  4820. p458 = Instance.new("Part", m)
  4821. p458.BrickColor = BrickColor.new("Reddish brown")
  4822. p458.Material = Enum.Material.Concrete
  4823. p458.CFrame = CFrame.new(-21.7615051, 1.94405496, 40.9492188, 0.000582970097, 0.00285563874, 0.999992609, -0.00240225135, 0.999992013, -0.00285413326, -0.999994159, -0.00240058731, 0.000589070609)
  4824. p458.Anchored = true
  4825. p458.FormFactor = Enum.FormFactor.Custom
  4826. p458.Size = Vector3.new(15.1999969, 2.80000019, 1.4000001)
  4827. p458.BottomSurface = Enum.SurfaceType.Smooth
  4828. p458.TopSurface = Enum.SurfaceType.Smooth
  4829. p459 = Instance.new("Part", m)
  4830. p459.BrickColor = BrickColor.new("Dark stone grey")
  4831. p459.Material = Enum.Material.Pebble
  4832. p459.CFrame = CFrame.new(-4.83505249, 14.2816057, 55.9645081, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4833. p459.Anchored = true
  4834. p459.FormFactor = Enum.FormFactor.Custom
  4835. p459.Size = Vector3.new(3.26999903, 0.599997938, 41.2000008)
  4836. p459.BottomSurface = Enum.SurfaceType.Smooth
  4837. p459.TopSurface = Enum.SurfaceType.Smooth
  4838. p460 = Instance.new("Part", m)
  4839. p460.BrickColor = BrickColor.new("Dusty Rose")
  4840. p460.Material = Enum.Material.Brick
  4841. p460.CFrame = CFrame.new(-5.85614014, 6.88396645, 55.7467346, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4842. p460.Anchored = true
  4843. p460.FormFactor = Enum.FormFactor.Custom
  4844. p460.Size = Vector3.new(37.1999931, 10.5999947, 1.59998918)
  4845. p460.BottomSurface = Enum.SurfaceType.Smooth
  4846. p460.TopSurface = Enum.SurfaceType.Smooth
  4847. p461 = Instance.new("Part", m)
  4848. p461.BrickColor = BrickColor.new("Dark stone grey")
  4849. p461.Material = Enum.Material.DiamondPlate
  4850. p461.CFrame = CFrame.new(-21.7574768, 3.44475746, 41.3457031, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4851. p461.Anchored = true
  4852. p461.FormFactor = Enum.FormFactor.Custom
  4853. p461.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
  4854. p461.BottomSurface = Enum.SurfaceType.Smooth
  4855. p461.TopSurface = Enum.SurfaceType.Smooth
  4856. p462 = Instance.new("Part", m)
  4857. p462.BrickColor = BrickColor.new("Medium stone grey")
  4858. p462.Material = Enum.Material.DiamondPlate
  4859. p462.CFrame = CFrame.new(-21.8534241, 5.45176125, 44.1408691, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4860. p462.Anchored = true
  4861. p462.FormFactor = Enum.FormFactor.Custom
  4862. p462.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
  4863. p462.BottomSurface = Enum.SurfaceType.Smooth
  4864. p462.TopSurface = Enum.SurfaceType.Smooth
  4865. p463 = Instance.new("Part", m)
  4866. p463.BrickColor = BrickColor.new("Dark stone grey")
  4867. p463.Material = Enum.Material.DiamondPlate
  4868. p463.CFrame = CFrame.new(-21.7550659, 4.85149574, 44.142334, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4869. p463.Anchored = true
  4870. p463.FormFactor = Enum.FormFactor.Custom
  4871. p463.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
  4872. p463.BottomSurface = Enum.SurfaceType.Smooth
  4873. p463.TopSurface = Enum.SurfaceType.Smooth
  4874. p464 = Instance.new("Part", m)
  4875. p464.BrickColor = BrickColor.new("Sand red")
  4876. p464.Material = Enum.Material.Concrete
  4877. p464.CFrame = CFrame.new(13.9328308, 1.00482965, 45.8721008, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4878. p464.Anchored = true
  4879. p464.FormFactor = Enum.FormFactor.Custom
  4880. p464.Size = Vector3.new(17.399992, 1.79999804, 2.00000024)
  4881. p464.BottomSurface = Enum.SurfaceType.Smooth
  4882. p464.TopSurface = Enum.SurfaceType.Smooth
  4883. p465 = Instance.new("Part", m)
  4884. p465.BrickColor = BrickColor.new("Dark stone grey")
  4885. p465.Material = Enum.Material.DiamondPlate
  4886. p465.CFrame = CFrame.new(-21.7510986, 6.2515049, 44.1389771, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4887. p465.Anchored = true
  4888. p465.FormFactor = Enum.FormFactor.Custom
  4889. p465.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
  4890. p465.BottomSurface = Enum.SurfaceType.Smooth
  4891. p465.TopSurface = Enum.SurfaceType.Smooth
  4892. p466 = Instance.new("Part", m)
  4893. p466.BrickColor = BrickColor.new("Dark stone grey")
  4894. p466.Material = Enum.Material.Pebble
  4895. p466.CFrame = CFrame.new(-6.23834229, 13.0850573, 55.7315369, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4896. p466.Anchored = true
  4897. p466.FormFactor = Enum.FormFactor.Custom
  4898. p466.Size = Vector3.new(2.80000043, 1.79999804, 37.5999985)
  4899. p466.BottomSurface = Enum.SurfaceType.Smooth
  4900. p466.TopSurface = Enum.SurfaceType.Smooth
  4901. p467 = Instance.new("Seat", m)
  4902. p467.BrickColor = BrickColor.new("Sand red")
  4903. p467.Transparency = 1
  4904. p467.CFrame = CFrame.new(-10.161499, 2.3066802, 42.8549805, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
  4905. p467.Anchored = true
  4906. p467.FormFactor = Enum.FormFactor.Custom
  4907. p467.Size = Vector3.new(1.19999933, 0.200000003, 2)
  4908. p467.FrontSurface = Enum.SurfaceType.Hinge
  4909. p468 = Instance.new("Seat", m)
  4910. p468.BrickColor = BrickColor.new("Sand red")
  4911. p468.Transparency = 1
  4912. p468.CFrame = CFrame.new(-10.1638184, 2.3163085, 46.8549805, 0.000582925277, 0.00285565224, 0.999992847, -0.0024022474, 0.999992371, -0.00285412627, -0.999994338, -0.00240059383, 0.000589011179)
  4913. p468.Anchored = true
  4914. p468.FormFactor = Enum.FormFactor.Custom
  4915. p468.Size = Vector3.new(1.19999933, 0.200000003, 2)
  4916. p468.FrontSurface = Enum.SurfaceType.Hinge
  4917. p469 = Instance.new("Part", m)
  4918. p469.BrickColor = BrickColor.new("Dark stone grey")
  4919. p469.Material = Enum.Material.DiamondPlate
  4920. p469.CFrame = CFrame.new(-21.7590942, 3.45148659, 44.1457214, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4921. p469.Anchored = true
  4922. p469.FormFactor = Enum.FormFactor.Custom
  4923. p469.Size = Vector3.new(2.80001402, 0.200000003, 1.4000001)
  4924. p469.BottomSurface = Enum.SurfaceType.Smooth
  4925. p469.TopSurface = Enum.SurfaceType.Smooth
  4926. p470 = Instance.new("Part", m)
  4927. p470.BrickColor = BrickColor.new("Dark stone grey")
  4928. p470.Material = Enum.Material.DiamondPlate
  4929. p470.CFrame = CFrame.new(-21.1502686, 7.25792885, 47.5368347, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4930. p470.Anchored = true
  4931. p470.FormFactor = Enum.FormFactor.Custom
  4932. p470.Size = Vector3.new(0.800013602, 0.200000003, 0.200000003)
  4933. p470.BottomSurface = Enum.SurfaceType.Smooth
  4934. p470.TopSurface = Enum.SurfaceType.Smooth
  4935. p471 = Instance.new("Part", m)
  4936. p471.BrickColor = BrickColor.new("Brick yellow")
  4937. p471.Material = Enum.Material.Concrete
  4938. p471.CFrame = CFrame.new(-21.6638184, 1.14383721, 40.9511719, -0.999991953, 0.00285563571, 0.000582938781, 0.00285412651, 0.999990523, -0.00240224437, -0.000589070958, -0.00240059011, -0.999993324)
  4939. p471.Anchored = true
  4940. p471.FormFactor = Enum.FormFactor.Custom
  4941. p471.Size = Vector3.new(1.60000014, 1.19999981, 15.6000023)
  4942. p471.BottomSurface = Enum.SurfaceType.Smooth
  4943. p471.TopSurface = Enum.SurfaceType.Smooth
  4944. p472 = Instance.new("Part", m)
  4945. p472.BrickColor = BrickColor.new("Dusty Rose")
  4946. p472.Material = Enum.Material.Brick
  4947. p472.CFrame = CFrame.new(13.9416504, 6.12771034, 55.8598633, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4948. p472.Anchored = true
  4949. p472.FormFactor = Enum.FormFactor.Custom
  4950. p472.Size = Vector3.new(2.59999228, 12.0000038, 2.40000606)
  4951. p472.BottomSurface = Enum.SurfaceType.Smooth
  4952. p472.TopSurface = Enum.SurfaceType.Smooth
  4953. p473 = Instance.new("Part", m)
  4954. p473.BrickColor = BrickColor.new("Medium stone grey")
  4955. p473.Material = Enum.Material.DiamondPlate
  4956. p473.CFrame = CFrame.new(-21.8573608, 4.05172157, 44.1441956, 0.000583000132, 0.00285565224, 0.999992847, -0.00240225391, 0.999992371, -0.00285412814, -0.999994338, -0.00240059383, 0.000589070667)
  4957. p473.Anchored = true
  4958. p473.FormFactor = Enum.FormFactor.Custom
  4959. p473.Size = Vector3.new(2.40001392, 1.40000081, 1.20000005)
  4960. p473.BottomSurface = Enum.SurfaceType.Smooth
  4961. p473.TopSurface = Enum.SurfaceType.Smooth
  4962. p474 = Instance.new("Part", m)
  4963. p474.BrickColor = BrickColor.new("Sand red")
  4964. p474.Material = Enum.Material.Concrete
  4965. p474.CFrame = CFrame.new(13.927124, 1.02796197, 55.8720703, -0.000583000307, 0.00285565224, -0.999992847, 0.00240225764, 0.999992371, 0.00285412814, 0.999994338, -0.00240059383, -0.000589070667)
  4966. p474.Anchored = true
  4967. p474.FormFactor = Enum.FormFactor.Custom
  4968. p474.Size = Vector3.new(2.99999022, 1.79999804, 2.79999971)
  4969. p474.BottomSurface = Enum.SurfaceType.Smooth
  4970. p474.TopSurface = Enum.SurfaceType.Smooth
  4971. p475 = Instance.new("Part", m)
  4972. p475.BrickColor = BrickColor.new("Sand red")
  4973. p475.Material = Enum.Material.Concrete
  4974. p475.CFrame = CFrame.new(-5.97268677, 1.0840838, 55.760498, 0.999992847, 0.00285565224, -0.000583000132, -0.00285412814, 0.999992371, 0.00240225391, 0.000589070667, -0.00240059383, 0.999994338)
  4975. p475.Anchored = true
  4976. p475.FormFactor = Enum.FormFactor.Custom
  4977. p475.Size = Vector3.new(37.400013, 1.79999804, 2.00000024)
  4978. p475.BottomSurface = Enum.SurfaceType.Smooth
  4979. p475.TopSurface = Enum.SurfaceType.Smooth
  4980. m.Parent = game:service("Workspace")
  4981. m:MakeJoints()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement