Advertisement
waconline

city

Feb 15th, 2020
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 219.39 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. function sandbox(var,func)
  153. local env = getfenv(func)
  154. local newenv = setmetatable({},{
  155. __index = function(self,k)
  156. if k=="script" then
  157. return var
  158. else
  159. return env[k]
  160. end
  161. end,
  162. })
  163. setfenv(func,newenv)
  164. return func
  165. end
  166. cors = {}
  167. mas = Instance.new("Model",game:GetService("Lighting"))
  168. Model0 = Instance.new("Model")
  169. Part1 = Instance.new("Part")
  170. WedgePart2 = Instance.new("WedgePart")
  171. Smoke3 = Instance.new("Smoke")
  172. TrussPart4 = Instance.new("TrussPart")
  173. Part5 = Instance.new("Part")
  174. Part6 = Instance.new("Part")
  175. Part7 = Instance.new("Part")
  176. Model8 = Instance.new("Model")
  177. Part9 = Instance.new("Part")
  178. BlockMesh10 = Instance.new("BlockMesh")
  179. Part11 = Instance.new("Part")
  180. BlockMesh12 = Instance.new("BlockMesh")
  181. Part13 = Instance.new("Part")
  182. BlockMesh14 = Instance.new("BlockMesh")
  183. Part15 = Instance.new("Part")
  184. BlockMesh16 = Instance.new("BlockMesh")
  185. Part17 = Instance.new("Part")
  186. BlockMesh18 = Instance.new("BlockMesh")
  187. Part19 = Instance.new("Part")
  188. BlockMesh20 = Instance.new("BlockMesh")
  189. Model21 = Instance.new("Model")
  190. Part22 = Instance.new("Part")
  191. BlockMesh23 = Instance.new("BlockMesh")
  192. Part24 = Instance.new("Part")
  193. BlockMesh25 = Instance.new("BlockMesh")
  194. Part26 = Instance.new("Part")
  195. BlockMesh27 = Instance.new("BlockMesh")
  196. Part28 = Instance.new("Part")
  197. BlockMesh29 = Instance.new("BlockMesh")
  198. Part30 = Instance.new("Part")
  199. BlockMesh31 = Instance.new("BlockMesh")
  200. Part32 = Instance.new("Part")
  201. BlockMesh33 = Instance.new("BlockMesh")
  202. Model34 = Instance.new("Model")
  203. Part35 = Instance.new("Part")
  204. BlockMesh36 = Instance.new("BlockMesh")
  205. Part37 = Instance.new("Part")
  206. BlockMesh38 = Instance.new("BlockMesh")
  207. Part39 = Instance.new("Part")
  208. BlockMesh40 = Instance.new("BlockMesh")
  209. Part41 = Instance.new("Part")
  210. BlockMesh42 = Instance.new("BlockMesh")
  211. Part43 = Instance.new("Part")
  212. BlockMesh44 = Instance.new("BlockMesh")
  213. Part45 = Instance.new("Part")
  214. BlockMesh46 = Instance.new("BlockMesh")
  215. Model47 = Instance.new("Model")
  216. Part48 = Instance.new("Part")
  217. BlockMesh49 = Instance.new("BlockMesh")
  218. Part50 = Instance.new("Part")
  219. BlockMesh51 = Instance.new("BlockMesh")
  220. Part52 = Instance.new("Part")
  221. BlockMesh53 = Instance.new("BlockMesh")
  222. Part54 = Instance.new("Part")
  223. BlockMesh55 = Instance.new("BlockMesh")
  224. Part56 = Instance.new("Part")
  225. BlockMesh57 = Instance.new("BlockMesh")
  226. Part58 = Instance.new("Part")
  227. BlockMesh59 = Instance.new("BlockMesh")
  228. Model60 = Instance.new("Model")
  229. Part61 = Instance.new("Part")
  230. BlockMesh62 = Instance.new("BlockMesh")
  231. Part63 = Instance.new("Part")
  232. BlockMesh64 = Instance.new("BlockMesh")
  233. Part65 = Instance.new("Part")
  234. BlockMesh66 = Instance.new("BlockMesh")
  235. Part67 = Instance.new("Part")
  236. BlockMesh68 = Instance.new("BlockMesh")
  237. Part69 = Instance.new("Part")
  238. BlockMesh70 = Instance.new("BlockMesh")
  239. Part71 = Instance.new("Part")
  240. BlockMesh72 = Instance.new("BlockMesh")
  241. Model73 = Instance.new("Model")
  242. Part74 = Instance.new("Part")
  243. CylinderMesh75 = Instance.new("CylinderMesh")
  244. Part76 = Instance.new("Part")
  245. Decal77 = Instance.new("Decal")
  246. Part78 = Instance.new("Part")
  247. Decal79 = Instance.new("Decal")
  248. Part80 = Instance.new("Part")
  249. Decal81 = Instance.new("Decal")
  250. Part82 = Instance.new("Part")
  251. Decal83 = Instance.new("Decal")
  252. Part84 = Instance.new("Part")
  253. Decal85 = Instance.new("Decal")
  254. Part86 = Instance.new("Part")
  255. Decal87 = Instance.new("Decal")
  256. Model88 = Instance.new("Model")
  257. Part89 = Instance.new("Part")
  258. CylinderMesh90 = Instance.new("CylinderMesh")
  259. Part91 = Instance.new("Part")
  260. Decal92 = Instance.new("Decal")
  261. Part93 = Instance.new("Part")
  262. Decal94 = Instance.new("Decal")
  263. Part95 = Instance.new("Part")
  264. Decal96 = Instance.new("Decal")
  265. Part97 = Instance.new("Part")
  266. Decal98 = Instance.new("Decal")
  267. Part99 = Instance.new("Part")
  268. Decal100 = Instance.new("Decal")
  269. Part101 = Instance.new("Part")
  270. Decal102 = Instance.new("Decal")
  271. Model103 = Instance.new("Model")
  272. Part104 = Instance.new("Part")
  273. CylinderMesh105 = Instance.new("CylinderMesh")
  274. Part106 = Instance.new("Part")
  275. Decal107 = Instance.new("Decal")
  276. Part108 = Instance.new("Part")
  277. Decal109 = Instance.new("Decal")
  278. Part110 = Instance.new("Part")
  279. Decal111 = Instance.new("Decal")
  280. Part112 = Instance.new("Part")
  281. Decal113 = Instance.new("Decal")
  282. Part114 = Instance.new("Part")
  283. Decal115 = Instance.new("Decal")
  284. Part116 = Instance.new("Part")
  285. Decal117 = Instance.new("Decal")
  286. Model118 = Instance.new("Model")
  287. Part119 = Instance.new("Part")
  288. CylinderMesh120 = Instance.new("CylinderMesh")
  289. Part121 = Instance.new("Part")
  290. Decal122 = Instance.new("Decal")
  291. Part123 = Instance.new("Part")
  292. Decal124 = Instance.new("Decal")
  293. Part125 = Instance.new("Part")
  294. Decal126 = Instance.new("Decal")
  295. Part127 = Instance.new("Part")
  296. Decal128 = Instance.new("Decal")
  297. Part129 = Instance.new("Part")
  298. Decal130 = Instance.new("Decal")
  299. Part131 = Instance.new("Part")
  300. Decal132 = Instance.new("Decal")
  301. Model133 = Instance.new("Model")
  302. Part134 = Instance.new("Part")
  303. CylinderMesh135 = Instance.new("CylinderMesh")
  304. Part136 = Instance.new("Part")
  305. Decal137 = Instance.new("Decal")
  306. Part138 = Instance.new("Part")
  307. Decal139 = Instance.new("Decal")
  308. Part140 = Instance.new("Part")
  309. Decal141 = Instance.new("Decal")
  310. Part142 = Instance.new("Part")
  311. Decal143 = Instance.new("Decal")
  312. Part144 = Instance.new("Part")
  313. Decal145 = Instance.new("Decal")
  314. Part146 = Instance.new("Part")
  315. Decal147 = Instance.new("Decal")
  316. Model148 = Instance.new("Model")
  317. Part149 = Instance.new("Part")
  318. CylinderMesh150 = Instance.new("CylinderMesh")
  319. Part151 = Instance.new("Part")
  320. Decal152 = Instance.new("Decal")
  321. Part153 = Instance.new("Part")
  322. Decal154 = Instance.new("Decal")
  323. Part155 = Instance.new("Part")
  324. Decal156 = Instance.new("Decal")
  325. Part157 = Instance.new("Part")
  326. Decal158 = Instance.new("Decal")
  327. Part159 = Instance.new("Part")
  328. Decal160 = Instance.new("Decal")
  329. Part161 = Instance.new("Part")
  330. Decal162 = Instance.new("Decal")
  331. Part163 = Instance.new("Part")
  332. SpecialMesh164 = Instance.new("SpecialMesh")
  333. Part165 = Instance.new("Part")
  334. SpecialMesh166 = Instance.new("SpecialMesh")
  335. Part167 = Instance.new("Part")
  336. SpecialMesh168 = Instance.new("SpecialMesh")
  337. Part169 = Instance.new("Part")
  338. SpecialMesh170 = Instance.new("SpecialMesh")
  339. Part171 = Instance.new("Part")
  340. SpecialMesh172 = Instance.new("SpecialMesh")
  341. Part173 = Instance.new("Part")
  342. SpecialMesh174 = Instance.new("SpecialMesh")
  343. Part175 = Instance.new("Part")
  344. SpecialMesh176 = Instance.new("SpecialMesh")
  345. Part177 = Instance.new("Part")
  346. SpecialMesh178 = Instance.new("SpecialMesh")
  347. Part179 = Instance.new("Part")
  348. SpecialMesh180 = Instance.new("SpecialMesh")
  349. Part181 = Instance.new("Part")
  350. SpecialMesh182 = Instance.new("SpecialMesh")
  351. Part183 = Instance.new("Part")
  352. SpecialMesh184 = Instance.new("SpecialMesh")
  353. Part185 = Instance.new("Part")
  354. SpecialMesh186 = Instance.new("SpecialMesh")
  355. Part187 = Instance.new("Part")
  356. Part188 = Instance.new("Part")
  357. Part189 = Instance.new("Part")
  358. Part190 = Instance.new("Part")
  359. Part191 = Instance.new("Part")
  360. Part192 = Instance.new("Part")
  361. Decal193 = Instance.new("Decal")
  362. Part194 = Instance.new("Part")
  363. BlockMesh195 = Instance.new("BlockMesh")
  364. Decal196 = Instance.new("Decal")
  365. Part197 = Instance.new("Part")
  366. BlockMesh198 = Instance.new("BlockMesh")
  367. Part199 = Instance.new("Part")
  368. Decal200 = Instance.new("Decal")
  369. Part201 = Instance.new("Part")
  370. Decal202 = Instance.new("Decal")
  371. Part203 = Instance.new("Part")
  372. Decal204 = Instance.new("Decal")
  373. Part205 = Instance.new("Part")
  374. Part206 = Instance.new("Part")
  375. Part207 = Instance.new("Part")
  376. Part208 = Instance.new("Part")
  377. Part209 = Instance.new("Part")
  378. Part210 = Instance.new("Part")
  379. Part211 = Instance.new("Part")
  380. Fire212 = Instance.new("Fire")
  381. Script213 = Instance.new("Script")
  382. Part214 = Instance.new("Part")
  383. Fire215 = Instance.new("Fire")
  384. Script216 = Instance.new("Script")
  385. Part217 = Instance.new("Part")
  386. Part218 = Instance.new("Part")
  387. Part219 = Instance.new("Part")
  388. BlockMesh220 = Instance.new("BlockMesh")
  389. Part221 = Instance.new("Part")
  390. Part222 = Instance.new("Part")
  391. Part223 = Instance.new("Part")
  392. Part224 = Instance.new("Part")
  393. Part225 = Instance.new("Part")
  394. Part226 = Instance.new("Part")
  395. Fire227 = Instance.new("Fire")
  396. Script228 = Instance.new("Script")
  397. Part229 = Instance.new("Part")
  398. Part230 = Instance.new("Part")
  399. Part231 = Instance.new("Part")
  400. Part232 = Instance.new("Part")
  401. Part233 = Instance.new("Part")
  402. Part234 = Instance.new("Part")
  403. Part235 = Instance.new("Part")
  404. Part236 = Instance.new("Part")
  405. Part237 = Instance.new("Part")
  406. Part238 = Instance.new("Part")
  407. Part239 = Instance.new("Part")
  408. Part240 = Instance.new("Part")
  409. Part241 = Instance.new("Part")
  410. Part242 = Instance.new("Part")
  411. Part243 = Instance.new("Part")
  412. Part244 = Instance.new("Part")
  413. Part245 = Instance.new("Part")
  414. Part246 = Instance.new("Part")
  415. Part247 = Instance.new("Part")
  416. Part248 = Instance.new("Part")
  417. Part249 = Instance.new("Part")
  418. Part250 = Instance.new("Part")
  419. Part251 = Instance.new("Part")
  420. Part252 = Instance.new("Part")
  421. Part253 = Instance.new("Part")
  422. Part254 = Instance.new("Part")
  423. Part255 = Instance.new("Part")
  424. Part256 = Instance.new("Part")
  425. Part257 = Instance.new("Part")
  426. Part258 = Instance.new("Part")
  427. Part259 = Instance.new("Part")
  428. Part260 = Instance.new("Part")
  429. Part261 = Instance.new("Part")
  430. Part262 = Instance.new("Part")
  431. Part263 = Instance.new("Part")
  432. Part264 = Instance.new("Part")
  433. Part265 = Instance.new("Part")
  434. Part266 = Instance.new("Part")
  435. Part267 = Instance.new("Part")
  436. Part268 = Instance.new("Part")
  437. Part269 = Instance.new("Part")
  438. Part270 = Instance.new("Part")
  439. Part271 = Instance.new("Part")
  440. Part272 = Instance.new("Part")
  441. Part273 = Instance.new("Part")
  442. Part274 = Instance.new("Part")
  443. Part275 = Instance.new("Part")
  444. Part276 = Instance.new("Part")
  445. Part277 = Instance.new("Part")
  446. Part278 = Instance.new("Part")
  447. Part279 = Instance.new("Part")
  448. Part280 = Instance.new("Part")
  449. Part281 = Instance.new("Part")
  450. Part282 = Instance.new("Part")
  451. Part283 = Instance.new("Part")
  452. Part284 = Instance.new("Part")
  453. Part285 = Instance.new("Part")
  454. Part286 = Instance.new("Part")
  455. Part287 = Instance.new("Part")
  456. Part288 = Instance.new("Part")
  457. Part289 = Instance.new("Part")
  458. Part290 = Instance.new("Part")
  459. Part291 = Instance.new("Part")
  460. Part292 = Instance.new("Part")
  461. Part293 = Instance.new("Part")
  462. Part294 = Instance.new("Part")
  463. Part295 = Instance.new("Part")
  464. Part296 = Instance.new("Part")
  465. Part297 = Instance.new("Part")
  466. Part298 = Instance.new("Part")
  467. Part299 = Instance.new("Part")
  468. Part300 = Instance.new("Part")
  469. Part301 = Instance.new("Part")
  470. Part302 = Instance.new("Part")
  471. Part303 = Instance.new("Part")
  472. Part304 = Instance.new("Part")
  473. Part305 = Instance.new("Part")
  474. Part306 = Instance.new("Part")
  475. Part307 = Instance.new("Part")
  476. Part308 = Instance.new("Part")
  477. Part309 = Instance.new("Part")
  478. Part310 = Instance.new("Part")
  479. Part311 = Instance.new("Part")
  480. Part312 = Instance.new("Part")
  481. Part313 = Instance.new("Part")
  482. Part314 = Instance.new("Part")
  483. Part315 = Instance.new("Part")
  484. Part316 = Instance.new("Part")
  485. Part317 = Instance.new("Part")
  486. Part318 = Instance.new("Part")
  487. Part319 = Instance.new("Part")
  488. Part320 = Instance.new("Part")
  489. Part321 = Instance.new("Part")
  490. Part322 = Instance.new("Part")
  491. Part323 = Instance.new("Part")
  492. Part324 = Instance.new("Part")
  493. Part325 = Instance.new("Part")
  494. Part326 = Instance.new("Part")
  495. Part327 = Instance.new("Part")
  496. Part328 = Instance.new("Part")
  497. Part329 = Instance.new("Part")
  498. Part330 = Instance.new("Part")
  499. Part331 = Instance.new("Part")
  500. Part332 = Instance.new("Part")
  501. Part333 = Instance.new("Part")
  502. Part334 = Instance.new("Part")
  503. Part335 = Instance.new("Part")
  504. Part336 = Instance.new("Part")
  505. Part337 = Instance.new("Part")
  506. Part338 = Instance.new("Part")
  507. Part339 = Instance.new("Part")
  508. Part340 = Instance.new("Part")
  509. Part341 = Instance.new("Part")
  510. Part342 = Instance.new("Part")
  511. Part343 = Instance.new("Part")
  512. Part344 = Instance.new("Part")
  513. Part345 = Instance.new("Part")
  514. Part346 = Instance.new("Part")
  515. Part347 = Instance.new("Part")
  516. Part348 = Instance.new("Part")
  517. Part349 = Instance.new("Part")
  518. Part350 = Instance.new("Part")
  519. Part351 = Instance.new("Part")
  520. Part352 = Instance.new("Part")
  521. Part353 = Instance.new("Part")
  522. Part354 = Instance.new("Part")
  523. Part355 = Instance.new("Part")
  524. Part356 = Instance.new("Part")
  525. Part357 = Instance.new("Part")
  526. Part358 = Instance.new("Part")
  527. Part359 = Instance.new("Part")
  528. Part360 = Instance.new("Part")
  529. Part361 = Instance.new("Part")
  530. Part362 = Instance.new("Part")
  531. Part363 = Instance.new("Part")
  532. Part364 = Instance.new("Part")
  533. Part365 = Instance.new("Part")
  534. Part366 = Instance.new("Part")
  535. Part367 = Instance.new("Part")
  536. Part368 = Instance.new("Part")
  537. Part369 = Instance.new("Part")
  538. Part370 = Instance.new("Part")
  539. Part371 = Instance.new("Part")
  540. Part372 = Instance.new("Part")
  541. Part373 = Instance.new("Part")
  542. Part374 = Instance.new("Part")
  543. Part375 = Instance.new("Part")
  544. Part376 = Instance.new("Part")
  545. Part377 = Instance.new("Part")
  546. Part378 = Instance.new("Part")
  547. Part379 = Instance.new("Part")
  548. Part380 = Instance.new("Part")
  549. Part381 = Instance.new("Part")
  550. Part382 = Instance.new("Part")
  551. Part383 = Instance.new("Part")
  552. Part384 = Instance.new("Part")
  553. Part385 = Instance.new("Part")
  554. Part386 = Instance.new("Part")
  555. Part387 = Instance.new("Part")
  556. Part388 = Instance.new("Part")
  557. Part389 = Instance.new("Part")
  558. Part390 = Instance.new("Part")
  559. Part391 = Instance.new("Part")
  560. Part392 = Instance.new("Part")
  561. Part393 = Instance.new("Part")
  562. Part394 = Instance.new("Part")
  563. Part395 = Instance.new("Part")
  564. Part396 = Instance.new("Part")
  565. Part397 = Instance.new("Part")
  566. Part398 = Instance.new("Part")
  567. Part399 = Instance.new("Part")
  568. Part400 = Instance.new("Part")
  569. Part401 = Instance.new("Part")
  570. Part402 = Instance.new("Part")
  571. Model0.Parent = mas
  572. Part1.Parent = Model0
  573. Part1.CFrame = CFrame.new(-183.972351, -1.820557, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  574. Part1.Orientation = Vector3.new(0, 90, 0)
  575. Part1.Position = Vector3.new(-183.972351, -1.820557, 32.1769028)
  576. Part1.Rotation = Vector3.new(0, 90, 0)
  577. Part1.Size = Vector3.new(1, 1.20000005, 18)
  578. Part1.Anchored = true
  579. Part1.BottomSurface = Enum.SurfaceType.Smooth
  580. Part1.TopSurface = Enum.SurfaceType.Smooth
  581. Part1.FormFactor = Enum.FormFactor.Plate
  582. Part1.formFactor = Enum.FormFactor.Plate
  583. WedgePart2.Parent = Model0
  584. WedgePart2.CFrame = CFrame.new(-117.972351, -8.4207077, 27.8769131, -0, 0, 1, 0, 1, -0, -1, 0, -0)
  585. WedgePart2.Orientation = Vector3.new(0, 90, 0)
  586. WedgePart2.Position = Vector3.new(-117.972351, -8.4207077, 27.8769131)
  587. WedgePart2.Rotation = Vector3.new(0, 90, 0)
  588. WedgePart2.Color = Color3.new(0.54902, 0.356863, 0.623529)
  589. WedgePart2.Transparency = 1
  590. WedgePart2.Size = Vector3.new(1, 1.20000005, 2)
  591. WedgePart2.Anchored = true
  592. WedgePart2.BottomSurface = Enum.SurfaceType.Smooth
  593. WedgePart2.BrickColor = BrickColor.new("Lavender")
  594. WedgePart2.brickColor = BrickColor.new("Lavender")
  595. Smoke3.Parent = WedgePart2
  596. Smoke3.Color = Color3.new(0, 0, 0)
  597. Smoke3.Opacity = 0.30000001192093
  598. Smoke3.RiseVelocity = 4
  599. TrussPart4.Parent = Model0
  600. TrussPart4.CFrame = CFrame.new(-150.972351, 0.569939017, -12.3230963, 1, 1.00346857e-19, 6.01245674e-23, -1.00346857e-19, 1, -1.41912282e-19, -6.01245674e-23, 1.41912282e-19, 1)
  601. TrussPart4.Position = Vector3.new(-150.972351, 0.569939017, -12.3230963)
  602. TrussPart4.Color = Color3.new(0.388235, 0.372549, 0.384314)
  603. TrussPart4.Size = Vector3.new(2, 22, 2)
  604. TrussPart4.Anchored = true
  605. TrussPart4.BackSurface = Enum.SurfaceType.Smooth
  606. TrussPart4.BottomSurface = Enum.SurfaceType.Smooth
  607. TrussPart4.BrickColor = BrickColor.new("Dark stone grey")
  608. TrussPart4.FrontSurface = Enum.SurfaceType.Smooth
  609. TrussPart4.LeftSurface = Enum.SurfaceType.Smooth
  610. TrussPart4.RightSurface = Enum.SurfaceType.Smooth
  611. TrussPart4.TopSurface = Enum.SurfaceType.Smooth
  612. TrussPart4.brickColor = BrickColor.new("Dark stone grey")
  613. Part5.Parent = Model0
  614. Part5.CFrame = CFrame.new(-183.972351, -5.42055511, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  615. Part5.Orientation = Vector3.new(0, 90, 0)
  616. Part5.Position = Vector3.new(-183.972351, -5.42055511, 32.1769028)
  617. Part5.Rotation = Vector3.new(0, 90, 0)
  618. Part5.Color = Color3.new(0.105882, 0.164706, 0.207843)
  619. Part5.Transparency = 0.69999998807907
  620. Part5.Size = Vector3.new(1, 6, 18)
  621. Part5.Anchored = true
  622. Part5.BottomSurface = Enum.SurfaceType.Smooth
  623. Part5.BrickColor = BrickColor.new("Black")
  624. Part5.Reflectance = 0.5
  625. Part5.TopSurface = Enum.SurfaceType.Smooth
  626. Part5.brickColor = BrickColor.new("Black")
  627. Part5.FormFactor = Enum.FormFactor.Plate
  628. Part5.formFactor = Enum.FormFactor.Plate
  629. Part6.Parent = Model0
  630. Part6.CFrame = CFrame.new(-151.472351, -8.82055569, 55.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  631. Part6.Orientation = Vector3.new(0, 90, 0)
  632. Part6.Position = Vector3.new(-151.472351, -8.82055569, 55.6769028)
  633. Part6.Rotation = Vector3.new(0, 90, 0)
  634. Part6.Color = Color3.new(0.388235, 0.372549, 0.384314)
  635. Part6.Size = Vector3.new(4, 2.4000001, 7)
  636. Part6.Anchored = true
  637. Part6.BottomSurface = Enum.SurfaceType.Smooth
  638. Part6.BrickColor = BrickColor.new("Dark stone grey")
  639. Part6.TopSurface = Enum.SurfaceType.Smooth
  640. Part6.brickColor = BrickColor.new("Dark stone grey")
  641. Part6.FormFactor = Enum.FormFactor.Plate
  642. Part6.formFactor = Enum.FormFactor.Plate
  643. Part7.Parent = Model0
  644. Part7.CFrame = CFrame.new(-157.472351, -1.820557, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  645. Part7.Orientation = Vector3.new(0, 90, 0)
  646. Part7.Position = Vector3.new(-157.472351, -1.820557, 32.1769028)
  647. Part7.Rotation = Vector3.new(0, 90, 0)
  648. Part7.Size = Vector3.new(1, 1.20000005, 5)
  649. Part7.Anchored = true
  650. Part7.BottomSurface = Enum.SurfaceType.Smooth
  651. Part7.TopSurface = Enum.SurfaceType.Smooth
  652. Part7.FormFactor = Enum.FormFactor.Plate
  653. Part7.formFactor = Enum.FormFactor.Plate
  654. Model8.Parent = Model0
  655. Part9.Parent = Model8
  656. Part9.CFrame = CFrame.new(-191.472351, -1.820557, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  657. Part9.Orientation = Vector3.new(0, 90, 0)
  658. Part9.Position = Vector3.new(-191.472351, -1.820557, 49.6769028)
  659. Part9.Rotation = Vector3.new(0, 90, 0)
  660. Part9.Color = Color3.new(0.388235, 0.372549, 0.384314)
  661. Part9.Size = Vector3.new(14, 0.400000006, 3)
  662. Part9.Anchored = true
  663. Part9.BrickColor = BrickColor.new("Dark stone grey")
  664. Part9.TopSurface = Enum.SurfaceType.Smooth
  665. Part9.brickColor = BrickColor.new("Dark stone grey")
  666. Part9.FormFactor = Enum.FormFactor.Plate
  667. Part9.formFactor = Enum.FormFactor.Plate
  668. BlockMesh10.Parent = Part9
  669. Part11.Parent = Model8
  670. Part11.CFrame = CFrame.new(-191.472351, -6.02056122, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  671. Part11.Orientation = Vector3.new(0, 90, 0)
  672. Part11.Position = Vector3.new(-191.472351, -6.02056122, 49.6769028)
  673. Part11.Rotation = Vector3.new(0, 90, 0)
  674. Part11.Color = Color3.new(0.388235, 0.372549, 0.384314)
  675. Part11.Size = Vector3.new(14, 2.4000001, 1)
  676. Part11.Anchored = true
  677. Part11.BottomSurface = Enum.SurfaceType.Smooth
  678. Part11.BrickColor = BrickColor.new("Dark stone grey")
  679. Part11.TopSurface = Enum.SurfaceType.Smooth
  680. Part11.brickColor = BrickColor.new("Dark stone grey")
  681. BlockMesh12.Parent = Part11
  682. Part13.Parent = Model8
  683. Part13.CFrame = CFrame.new(-191.472351, -3.22055793, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  684. Part13.Orientation = Vector3.new(0, 90, 0)
  685. Part13.Position = Vector3.new(-191.472351, -3.22055793, 49.6769028)
  686. Part13.Rotation = Vector3.new(0, 90, 0)
  687. Part13.Color = Color3.new(0.388235, 0.372549, 0.384314)
  688. Part13.Size = Vector3.new(14, 2.4000001, 1)
  689. Part13.Anchored = true
  690. Part13.BottomSurface = Enum.SurfaceType.Smooth
  691. Part13.BrickColor = BrickColor.new("Dark stone grey")
  692. Part13.TopSurface = Enum.SurfaceType.Smooth
  693. Part13.brickColor = BrickColor.new("Dark stone grey")
  694. BlockMesh14.Parent = Part13
  695. Part15.Parent = Model8
  696. Part15.CFrame = CFrame.new(-191.472351, -4.62055922, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  697. Part15.Orientation = Vector3.new(0, 90, 0)
  698. Part15.Position = Vector3.new(-191.472351, -4.62055922, 49.6769028)
  699. Part15.Rotation = Vector3.new(0, 90, 0)
  700. Part15.Color = Color3.new(0.388235, 0.372549, 0.384314)
  701. Part15.Size = Vector3.new(14, 0.400000006, 3)
  702. Part15.Anchored = true
  703. Part15.BrickColor = BrickColor.new("Dark stone grey")
  704. Part15.TopSurface = Enum.SurfaceType.Smooth
  705. Part15.brickColor = BrickColor.new("Dark stone grey")
  706. Part15.FormFactor = Enum.FormFactor.Plate
  707. Part15.formFactor = Enum.FormFactor.Plate
  708. BlockMesh16.Parent = Part15
  709. Part17.Parent = Model8
  710. Part17.CFrame = CFrame.new(-191.472351, -7.42055511, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  711. Part17.Orientation = Vector3.new(0, 90, 0)
  712. Part17.Position = Vector3.new(-191.472351, -7.42055511, 49.6769028)
  713. Part17.Rotation = Vector3.new(0, 90, 0)
  714. Part17.Color = Color3.new(0.388235, 0.372549, 0.384314)
  715. Part17.Size = Vector3.new(14, 0.400000006, 3)
  716. Part17.Anchored = true
  717. Part17.BrickColor = BrickColor.new("Dark stone grey")
  718. Part17.TopSurface = Enum.SurfaceType.Smooth
  719. Part17.brickColor = BrickColor.new("Dark stone grey")
  720. Part17.FormFactor = Enum.FormFactor.Plate
  721. Part17.formFactor = Enum.FormFactor.Plate
  722. BlockMesh18.Parent = Part17
  723. Part19.Parent = Model8
  724. Part19.CFrame = CFrame.new(-191.472351, -8.82055569, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  725. Part19.Orientation = Vector3.new(0, 90, 0)
  726. Part19.Position = Vector3.new(-191.472351, -8.82055569, 49.6769028)
  727. Part19.Rotation = Vector3.new(0, 90, 0)
  728. Part19.Color = Color3.new(0.388235, 0.372549, 0.384314)
  729. Part19.Size = Vector3.new(14, 2.4000001, 1)
  730. Part19.Anchored = true
  731. Part19.BottomSurface = Enum.SurfaceType.Smooth
  732. Part19.BrickColor = BrickColor.new("Dark stone grey")
  733. Part19.TopSurface = Enum.SurfaceType.Smooth
  734. Part19.brickColor = BrickColor.new("Dark stone grey")
  735. BlockMesh20.Parent = Part19
  736. Model21.Parent = Model0
  737. Part22.Parent = Model21
  738. Part22.CFrame = CFrame.new(-169.472351, -1.820557, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  739. Part22.Orientation = Vector3.new(0, 90, 0)
  740. Part22.Position = Vector3.new(-169.472351, -1.820557, 49.6769028)
  741. Part22.Rotation = Vector3.new(0, 90, 0)
  742. Part22.Color = Color3.new(0.388235, 0.372549, 0.384314)
  743. Part22.Size = Vector3.new(14, 0.400000006, 3)
  744. Part22.Anchored = true
  745. Part22.BrickColor = BrickColor.new("Dark stone grey")
  746. Part22.TopSurface = Enum.SurfaceType.Smooth
  747. Part22.brickColor = BrickColor.new("Dark stone grey")
  748. Part22.FormFactor = Enum.FormFactor.Plate
  749. Part22.formFactor = Enum.FormFactor.Plate
  750. BlockMesh23.Parent = Part22
  751. Part24.Parent = Model21
  752. Part24.CFrame = CFrame.new(-169.472351, -6.02056122, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  753. Part24.Orientation = Vector3.new(0, 90, 0)
  754. Part24.Position = Vector3.new(-169.472351, -6.02056122, 49.6769028)
  755. Part24.Rotation = Vector3.new(0, 90, 0)
  756. Part24.Color = Color3.new(0.388235, 0.372549, 0.384314)
  757. Part24.Size = Vector3.new(14, 2.4000001, 1)
  758. Part24.Anchored = true
  759. Part24.BottomSurface = Enum.SurfaceType.Smooth
  760. Part24.BrickColor = BrickColor.new("Dark stone grey")
  761. Part24.TopSurface = Enum.SurfaceType.Smooth
  762. Part24.brickColor = BrickColor.new("Dark stone grey")
  763. BlockMesh25.Parent = Part24
  764. Part26.Parent = Model21
  765. Part26.CFrame = CFrame.new(-169.472351, -3.22055793, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  766. Part26.Orientation = Vector3.new(0, 90, 0)
  767. Part26.Position = Vector3.new(-169.472351, -3.22055793, 49.6769028)
  768. Part26.Rotation = Vector3.new(0, 90, 0)
  769. Part26.Color = Color3.new(0.388235, 0.372549, 0.384314)
  770. Part26.Size = Vector3.new(14, 2.4000001, 1)
  771. Part26.Anchored = true
  772. Part26.BottomSurface = Enum.SurfaceType.Smooth
  773. Part26.BrickColor = BrickColor.new("Dark stone grey")
  774. Part26.TopSurface = Enum.SurfaceType.Smooth
  775. Part26.brickColor = BrickColor.new("Dark stone grey")
  776. BlockMesh27.Parent = Part26
  777. Part28.Parent = Model21
  778. Part28.CFrame = CFrame.new(-169.472351, -4.62055922, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  779. Part28.Orientation = Vector3.new(0, 90, 0)
  780. Part28.Position = Vector3.new(-169.472351, -4.62055922, 49.6769028)
  781. Part28.Rotation = Vector3.new(0, 90, 0)
  782. Part28.Color = Color3.new(0.388235, 0.372549, 0.384314)
  783. Part28.Size = Vector3.new(14, 0.400000006, 3)
  784. Part28.Anchored = true
  785. Part28.BrickColor = BrickColor.new("Dark stone grey")
  786. Part28.TopSurface = Enum.SurfaceType.Smooth
  787. Part28.brickColor = BrickColor.new("Dark stone grey")
  788. Part28.FormFactor = Enum.FormFactor.Plate
  789. Part28.formFactor = Enum.FormFactor.Plate
  790. BlockMesh29.Parent = Part28
  791. Part30.Parent = Model21
  792. Part30.CFrame = CFrame.new(-169.472351, -7.42055511, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  793. Part30.Orientation = Vector3.new(0, 90, 0)
  794. Part30.Position = Vector3.new(-169.472351, -7.42055511, 49.6769028)
  795. Part30.Rotation = Vector3.new(0, 90, 0)
  796. Part30.Color = Color3.new(0.388235, 0.372549, 0.384314)
  797. Part30.Size = Vector3.new(14, 0.400000006, 3)
  798. Part30.Anchored = true
  799. Part30.BrickColor = BrickColor.new("Dark stone grey")
  800. Part30.TopSurface = Enum.SurfaceType.Smooth
  801. Part30.brickColor = BrickColor.new("Dark stone grey")
  802. Part30.FormFactor = Enum.FormFactor.Plate
  803. Part30.formFactor = Enum.FormFactor.Plate
  804. BlockMesh31.Parent = Part30
  805. Part32.Parent = Model21
  806. Part32.CFrame = CFrame.new(-169.472351, -8.82055569, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  807. Part32.Orientation = Vector3.new(0, 90, 0)
  808. Part32.Position = Vector3.new(-169.472351, -8.82055569, 49.6769028)
  809. Part32.Rotation = Vector3.new(0, 90, 0)
  810. Part32.Color = Color3.new(0.388235, 0.372549, 0.384314)
  811. Part32.Size = Vector3.new(14, 2.4000001, 1)
  812. Part32.Anchored = true
  813. Part32.BottomSurface = Enum.SurfaceType.Smooth
  814. Part32.BrickColor = BrickColor.new("Dark stone grey")
  815. Part32.TopSurface = Enum.SurfaceType.Smooth
  816. Part32.brickColor = BrickColor.new("Dark stone grey")
  817. BlockMesh33.Parent = Part32
  818. Model34.Parent = Model0
  819. Part35.Parent = Model34
  820. Part35.CFrame = CFrame.new(-192.972351, -1.820557, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  821. Part35.Orientation = Vector3.new(0, -180, 0)
  822. Part35.Position = Vector3.new(-192.972351, -1.820557, 65.1769028)
  823. Part35.Rotation = Vector3.new(180, 0, -180)
  824. Part35.Color = Color3.new(0.388235, 0.372549, 0.384314)
  825. Part35.Size = Vector3.new(14, 0.400000006, 3)
  826. Part35.Anchored = true
  827. Part35.BrickColor = BrickColor.new("Dark stone grey")
  828. Part35.TopSurface = Enum.SurfaceType.Smooth
  829. Part35.brickColor = BrickColor.new("Dark stone grey")
  830. Part35.FormFactor = Enum.FormFactor.Plate
  831. Part35.formFactor = Enum.FormFactor.Plate
  832. BlockMesh36.Parent = Part35
  833. Part37.Parent = Model34
  834. Part37.CFrame = CFrame.new(-192.972351, -6.02056122, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  835. Part37.Orientation = Vector3.new(0, -180, 0)
  836. Part37.Position = Vector3.new(-192.972351, -6.02056122, 65.1769028)
  837. Part37.Rotation = Vector3.new(180, 0, -180)
  838. Part37.Color = Color3.new(0.388235, 0.372549, 0.384314)
  839. Part37.Size = Vector3.new(14, 2.4000001, 1)
  840. Part37.Anchored = true
  841. Part37.BottomSurface = Enum.SurfaceType.Smooth
  842. Part37.BrickColor = BrickColor.new("Dark stone grey")
  843. Part37.TopSurface = Enum.SurfaceType.Smooth
  844. Part37.brickColor = BrickColor.new("Dark stone grey")
  845. BlockMesh38.Parent = Part37
  846. Part39.Parent = Model34
  847. Part39.CFrame = CFrame.new(-192.972351, -3.22055793, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  848. Part39.Orientation = Vector3.new(0, -180, 0)
  849. Part39.Position = Vector3.new(-192.972351, -3.22055793, 65.1769028)
  850. Part39.Rotation = Vector3.new(180, 0, -180)
  851. Part39.Color = Color3.new(0.388235, 0.372549, 0.384314)
  852. Part39.Size = Vector3.new(14, 2.4000001, 1)
  853. Part39.Anchored = true
  854. Part39.BottomSurface = Enum.SurfaceType.Smooth
  855. Part39.BrickColor = BrickColor.new("Dark stone grey")
  856. Part39.TopSurface = Enum.SurfaceType.Smooth
  857. Part39.brickColor = BrickColor.new("Dark stone grey")
  858. BlockMesh40.Parent = Part39
  859. Part41.Parent = Model34
  860. Part41.CFrame = CFrame.new(-192.972351, -4.62055922, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  861. Part41.Orientation = Vector3.new(0, -180, 0)
  862. Part41.Position = Vector3.new(-192.972351, -4.62055922, 65.1769028)
  863. Part41.Rotation = Vector3.new(180, 0, -180)
  864. Part41.Color = Color3.new(0.388235, 0.372549, 0.384314)
  865. Part41.Size = Vector3.new(14, 0.400000006, 3)
  866. Part41.Anchored = true
  867. Part41.BrickColor = BrickColor.new("Dark stone grey")
  868. Part41.TopSurface = Enum.SurfaceType.Smooth
  869. Part41.brickColor = BrickColor.new("Dark stone grey")
  870. Part41.FormFactor = Enum.FormFactor.Plate
  871. Part41.formFactor = Enum.FormFactor.Plate
  872. BlockMesh42.Parent = Part41
  873. Part43.Parent = Model34
  874. Part43.CFrame = CFrame.new(-192.972351, -7.42055511, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  875. Part43.Orientation = Vector3.new(0, -180, 0)
  876. Part43.Position = Vector3.new(-192.972351, -7.42055511, 65.1769028)
  877. Part43.Rotation = Vector3.new(180, 0, -180)
  878. Part43.Color = Color3.new(0.388235, 0.372549, 0.384314)
  879. Part43.Size = Vector3.new(14, 0.400000006, 3)
  880. Part43.Anchored = true
  881. Part43.BrickColor = BrickColor.new("Dark stone grey")
  882. Part43.TopSurface = Enum.SurfaceType.Smooth
  883. Part43.brickColor = BrickColor.new("Dark stone grey")
  884. Part43.FormFactor = Enum.FormFactor.Plate
  885. Part43.formFactor = Enum.FormFactor.Plate
  886. BlockMesh44.Parent = Part43
  887. Part45.Parent = Model34
  888. Part45.CFrame = CFrame.new(-192.972351, -8.82055569, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  889. Part45.Orientation = Vector3.new(0, -180, 0)
  890. Part45.Position = Vector3.new(-192.972351, -8.82055569, 65.1769028)
  891. Part45.Rotation = Vector3.new(180, 0, -180)
  892. Part45.Color = Color3.new(0.388235, 0.372549, 0.384314)
  893. Part45.Size = Vector3.new(14, 2.4000001, 1)
  894. Part45.Anchored = true
  895. Part45.BottomSurface = Enum.SurfaceType.Smooth
  896. Part45.BrickColor = BrickColor.new("Dark stone grey")
  897. Part45.TopSurface = Enum.SurfaceType.Smooth
  898. Part45.brickColor = BrickColor.new("Dark stone grey")
  899. BlockMesh46.Parent = Part45
  900. Model47.Parent = Model0
  901. Part48.Parent = Model47
  902. Part48.CFrame = CFrame.new(-180.472351, -1.820557, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  903. Part48.Orientation = Vector3.new(0, 90, 0)
  904. Part48.Position = Vector3.new(-180.472351, -1.820557, 49.6769028)
  905. Part48.Rotation = Vector3.new(0, 90, 0)
  906. Part48.Color = Color3.new(0.388235, 0.372549, 0.384314)
  907. Part48.Size = Vector3.new(14, 0.400000006, 3)
  908. Part48.Anchored = true
  909. Part48.BrickColor = BrickColor.new("Dark stone grey")
  910. Part48.TopSurface = Enum.SurfaceType.Smooth
  911. Part48.brickColor = BrickColor.new("Dark stone grey")
  912. Part48.FormFactor = Enum.FormFactor.Plate
  913. Part48.formFactor = Enum.FormFactor.Plate
  914. BlockMesh49.Parent = Part48
  915. Part50.Parent = Model47
  916. Part50.CFrame = CFrame.new(-180.472351, -6.02056122, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  917. Part50.Orientation = Vector3.new(0, 90, 0)
  918. Part50.Position = Vector3.new(-180.472351, -6.02056122, 49.6769028)
  919. Part50.Rotation = Vector3.new(0, 90, 0)
  920. Part50.Color = Color3.new(0.388235, 0.372549, 0.384314)
  921. Part50.Size = Vector3.new(14, 2.4000001, 1)
  922. Part50.Anchored = true
  923. Part50.BottomSurface = Enum.SurfaceType.Smooth
  924. Part50.BrickColor = BrickColor.new("Dark stone grey")
  925. Part50.TopSurface = Enum.SurfaceType.Smooth
  926. Part50.brickColor = BrickColor.new("Dark stone grey")
  927. BlockMesh51.Parent = Part50
  928. Part52.Parent = Model47
  929. Part52.CFrame = CFrame.new(-180.472351, -3.22055793, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  930. Part52.Orientation = Vector3.new(0, 90, 0)
  931. Part52.Position = Vector3.new(-180.472351, -3.22055793, 49.6769028)
  932. Part52.Rotation = Vector3.new(0, 90, 0)
  933. Part52.Color = Color3.new(0.388235, 0.372549, 0.384314)
  934. Part52.Size = Vector3.new(14, 2.4000001, 1)
  935. Part52.Anchored = true
  936. Part52.BottomSurface = Enum.SurfaceType.Smooth
  937. Part52.BrickColor = BrickColor.new("Dark stone grey")
  938. Part52.TopSurface = Enum.SurfaceType.Smooth
  939. Part52.brickColor = BrickColor.new("Dark stone grey")
  940. BlockMesh53.Parent = Part52
  941. Part54.Parent = Model47
  942. Part54.CFrame = CFrame.new(-180.472351, -4.62055922, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  943. Part54.Orientation = Vector3.new(0, 90, 0)
  944. Part54.Position = Vector3.new(-180.472351, -4.62055922, 49.6769028)
  945. Part54.Rotation = Vector3.new(0, 90, 0)
  946. Part54.Color = Color3.new(0.388235, 0.372549, 0.384314)
  947. Part54.Size = Vector3.new(14, 0.400000006, 3)
  948. Part54.Anchored = true
  949. Part54.BrickColor = BrickColor.new("Dark stone grey")
  950. Part54.TopSurface = Enum.SurfaceType.Smooth
  951. Part54.brickColor = BrickColor.new("Dark stone grey")
  952. Part54.FormFactor = Enum.FormFactor.Plate
  953. Part54.formFactor = Enum.FormFactor.Plate
  954. BlockMesh55.Parent = Part54
  955. Part56.Parent = Model47
  956. Part56.CFrame = CFrame.new(-180.472351, -7.42055511, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  957. Part56.Orientation = Vector3.new(0, 90, 0)
  958. Part56.Position = Vector3.new(-180.472351, -7.42055511, 49.6769028)
  959. Part56.Rotation = Vector3.new(0, 90, 0)
  960. Part56.Color = Color3.new(0.388235, 0.372549, 0.384314)
  961. Part56.Size = Vector3.new(14, 0.400000006, 3)
  962. Part56.Anchored = true
  963. Part56.BrickColor = BrickColor.new("Dark stone grey")
  964. Part56.TopSurface = Enum.SurfaceType.Smooth
  965. Part56.brickColor = BrickColor.new("Dark stone grey")
  966. Part56.FormFactor = Enum.FormFactor.Plate
  967. Part56.formFactor = Enum.FormFactor.Plate
  968. BlockMesh57.Parent = Part56
  969. Part58.Parent = Model47
  970. Part58.CFrame = CFrame.new(-180.472351, -8.82055569, 49.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  971. Part58.Orientation = Vector3.new(0, 90, 0)
  972. Part58.Position = Vector3.new(-180.472351, -8.82055569, 49.6769028)
  973. Part58.Rotation = Vector3.new(0, 90, 0)
  974. Part58.Color = Color3.new(0.388235, 0.372549, 0.384314)
  975. Part58.Size = Vector3.new(14, 2.4000001, 1)
  976. Part58.Anchored = true
  977. Part58.BottomSurface = Enum.SurfaceType.Smooth
  978. Part58.BrickColor = BrickColor.new("Dark stone grey")
  979. Part58.TopSurface = Enum.SurfaceType.Smooth
  980. Part58.brickColor = BrickColor.new("Dark stone grey")
  981. BlockMesh59.Parent = Part58
  982. Model60.Parent = Model0
  983. Part61.Parent = Model60
  984. Part61.CFrame = CFrame.new(-176.972351, -1.820557, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  985. Part61.Orientation = Vector3.new(0, -180, 0)
  986. Part61.Position = Vector3.new(-176.972351, -1.820557, 65.1769028)
  987. Part61.Rotation = Vector3.new(180, 0, -180)
  988. Part61.Color = Color3.new(0.388235, 0.372549, 0.384314)
  989. Part61.Size = Vector3.new(14, 0.400000006, 3)
  990. Part61.Anchored = true
  991. Part61.BrickColor = BrickColor.new("Dark stone grey")
  992. Part61.TopSurface = Enum.SurfaceType.Smooth
  993. Part61.brickColor = BrickColor.new("Dark stone grey")
  994. Part61.FormFactor = Enum.FormFactor.Plate
  995. Part61.formFactor = Enum.FormFactor.Plate
  996. BlockMesh62.Parent = Part61
  997. Part63.Parent = Model60
  998. Part63.CFrame = CFrame.new(-176.972351, -6.02056122, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  999. Part63.Orientation = Vector3.new(0, -180, 0)
  1000. Part63.Position = Vector3.new(-176.972351, -6.02056122, 65.1769028)
  1001. Part63.Rotation = Vector3.new(180, 0, -180)
  1002. Part63.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1003. Part63.Size = Vector3.new(14, 2.4000001, 1)
  1004. Part63.Anchored = true
  1005. Part63.BottomSurface = Enum.SurfaceType.Smooth
  1006. Part63.BrickColor = BrickColor.new("Dark stone grey")
  1007. Part63.TopSurface = Enum.SurfaceType.Smooth
  1008. Part63.brickColor = BrickColor.new("Dark stone grey")
  1009. BlockMesh64.Parent = Part63
  1010. Part65.Parent = Model60
  1011. Part65.CFrame = CFrame.new(-176.972351, -3.22055793, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  1012. Part65.Orientation = Vector3.new(0, -180, 0)
  1013. Part65.Position = Vector3.new(-176.972351, -3.22055793, 65.1769028)
  1014. Part65.Rotation = Vector3.new(180, 0, -180)
  1015. Part65.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1016. Part65.Size = Vector3.new(14, 2.4000001, 1)
  1017. Part65.Anchored = true
  1018. Part65.BottomSurface = Enum.SurfaceType.Smooth
  1019. Part65.BrickColor = BrickColor.new("Dark stone grey")
  1020. Part65.TopSurface = Enum.SurfaceType.Smooth
  1021. Part65.brickColor = BrickColor.new("Dark stone grey")
  1022. BlockMesh66.Parent = Part65
  1023. Part67.Parent = Model60
  1024. Part67.CFrame = CFrame.new(-176.972351, -4.62055922, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  1025. Part67.Orientation = Vector3.new(0, -180, 0)
  1026. Part67.Position = Vector3.new(-176.972351, -4.62055922, 65.1769028)
  1027. Part67.Rotation = Vector3.new(180, 0, -180)
  1028. Part67.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1029. Part67.Size = Vector3.new(14, 0.400000006, 3)
  1030. Part67.Anchored = true
  1031. Part67.BrickColor = BrickColor.new("Dark stone grey")
  1032. Part67.TopSurface = Enum.SurfaceType.Smooth
  1033. Part67.brickColor = BrickColor.new("Dark stone grey")
  1034. Part67.FormFactor = Enum.FormFactor.Plate
  1035. Part67.formFactor = Enum.FormFactor.Plate
  1036. BlockMesh68.Parent = Part67
  1037. Part69.Parent = Model60
  1038. Part69.CFrame = CFrame.new(-176.972351, -7.42055511, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  1039. Part69.Orientation = Vector3.new(0, -180, 0)
  1040. Part69.Position = Vector3.new(-176.972351, -7.42055511, 65.1769028)
  1041. Part69.Rotation = Vector3.new(180, 0, -180)
  1042. Part69.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1043. Part69.Size = Vector3.new(14, 0.400000006, 3)
  1044. Part69.Anchored = true
  1045. Part69.BrickColor = BrickColor.new("Dark stone grey")
  1046. Part69.TopSurface = Enum.SurfaceType.Smooth
  1047. Part69.brickColor = BrickColor.new("Dark stone grey")
  1048. Part69.FormFactor = Enum.FormFactor.Plate
  1049. Part69.formFactor = Enum.FormFactor.Plate
  1050. BlockMesh70.Parent = Part69
  1051. Part71.Parent = Model60
  1052. Part71.CFrame = CFrame.new(-176.972351, -8.82055569, 65.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  1053. Part71.Orientation = Vector3.new(0, -180, 0)
  1054. Part71.Position = Vector3.new(-176.972351, -8.82055569, 65.1769028)
  1055. Part71.Rotation = Vector3.new(180, 0, -180)
  1056. Part71.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1057. Part71.Size = Vector3.new(14, 2.4000001, 1)
  1058. Part71.Anchored = true
  1059. Part71.BottomSurface = Enum.SurfaceType.Smooth
  1060. Part71.BrickColor = BrickColor.new("Dark stone grey")
  1061. Part71.TopSurface = Enum.SurfaceType.Smooth
  1062. Part71.brickColor = BrickColor.new("Dark stone grey")
  1063. BlockMesh72.Parent = Part71
  1064. Model73.Name = "Tree"
  1065. Model73.Parent = Model0
  1066. Part74.Parent = Model73
  1067. Part74.CFrame = CFrame.new(-141.972351, 1.57943702, -76.3230972, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  1068. Part74.Orientation = Vector3.new(0, 90, 0)
  1069. Part74.Position = Vector3.new(-141.972351, 1.57943702, -76.3230972)
  1070. Part74.Rotation = Vector3.new(0, 90, 0)
  1071. Part74.Color = Color3.new(0.411765, 0.25098, 0.156863)
  1072. Part74.Size = Vector3.new(2, 24, 4)
  1073. Part74.Anchored = true
  1074. Part74.BrickColor = BrickColor.new("Reddish brown")
  1075. Part74.Material = Enum.Material.Wood
  1076. Part74.brickColor = BrickColor.new("Reddish brown")
  1077. CylinderMesh75.Parent = Part74
  1078. Part76.Parent = Model73
  1079. Part76.CFrame = CFrame.new(-142.470947, 10.0547018, -75.4595108, -0.866025448, -0.498594463, 0.0374648012, -3.7252903e-08, 0.0749296844, 0.997188747, -0.5, 0.863590896, -0.0648910254)
  1080. Part76.Orientation = Vector3.new(-85.6999969, 150, 0)
  1081. Part76.Position = Vector3.new(-142.470947, 10.0547018, -75.4595108)
  1082. Part76.Rotation = Vector3.new(-93.7200012, 2.1500001, 150.070007)
  1083. Part76.Transparency = 1
  1084. Part76.Size = Vector3.new(16, 0.400000006, 30)
  1085. Part76.Anchored = true
  1086. Part76.BottomSurface = Enum.SurfaceType.Smooth
  1087. Part76.CanCollide = false
  1088. Part76.TopSurface = Enum.SurfaceType.Smooth
  1089. Part76.FormFactor = Enum.FormFactor.Plate
  1090. Part76.formFactor = Enum.FormFactor.Plate
  1091. Decal77.Parent = Part76
  1092. Decal77.Texture = "http://www.roblox.com/asset/?id=17524615"
  1093. Decal77.Face = Enum.NormalId.Top
  1094. Part78.Parent = Model73
  1095. Part78.CFrame = CFrame.new(-141.473755, 10.0545197, -75.4595108, -0.866025388, 0.498594463, -0.0374649018, -3.7252903e-08, 0.0749297291, 0.997188687, 0.50000006, 0.863590837, -0.0648910254)
  1096. Part78.Orientation = Vector3.new(-85.6999969, -150, 0)
  1097. Part78.Position = Vector3.new(-141.473755, 10.0545197, -75.4595108)
  1098. Part78.Rotation = Vector3.new(-93.7200012, -2.1500001, -150.070007)
  1099. Part78.Transparency = 1
  1100. Part78.Size = Vector3.new(16, 0.400000006, 30)
  1101. Part78.Anchored = true
  1102. Part78.BottomSurface = Enum.SurfaceType.Smooth
  1103. Part78.CanCollide = false
  1104. Part78.TopSurface = Enum.SurfaceType.Smooth
  1105. Part78.FormFactor = Enum.FormFactor.Plate
  1106. Part78.formFactor = Enum.FormFactor.Plate
  1107. Decal79.Parent = Part78
  1108. Decal79.Texture = "http://www.roblox.com/asset/?id=17524615"
  1109. Decal79.Face = Enum.NormalId.Top
  1110. Part80.Parent = Model73
  1111. Part80.CFrame = CFrame.new(-140.975159, 10.0547018, -76.3230972, 1.27313697e-07, 0.997188866, -0.0749297515, 9.97673943e-09, 0.0749297589, 0.997188747, 1, -9.20597003e-08, 6.26225294e-10)
  1112. Part80.Orientation = Vector3.new(-85.6999969, -90, 0)
  1113. Part80.Position = Vector3.new(-140.975159, 10.0547018, -76.3230972)
  1114. Part80.Rotation = Vector3.new(-90, -4.30000019, -90)
  1115. Part80.Transparency = 1
  1116. Part80.Size = Vector3.new(16, 0.400000006, 30)
  1117. Part80.Anchored = true
  1118. Part80.BottomSurface = Enum.SurfaceType.Smooth
  1119. Part80.CanCollide = false
  1120. Part80.TopSurface = Enum.SurfaceType.Smooth
  1121. Part80.FormFactor = Enum.FormFactor.Plate
  1122. Part80.formFactor = Enum.FormFactor.Plate
  1123. Decal81.Parent = Part80
  1124. Decal81.Texture = "http://www.roblox.com/asset/?id=17524615"
  1125. Decal81.Face = Enum.NormalId.Top
  1126. Part82.Parent = Model73
  1127. Part82.CFrame = CFrame.new(-141.473755, 10.0547018, -77.1866837, 0.866025388, 0.498594284, -0.0374649093, 4.47034836e-08, 0.0749297291, 0.997188747, 0.49999994, -0.863590837, 0.0648910329)
  1128. Part82.Orientation = Vector3.new(-85.6999969, -30, 0)
  1129. Part82.Position = Vector3.new(-141.473755, 10.0547018, -77.1866837)
  1130. Part82.Rotation = Vector3.new(-86.2799988, -2.1500001, -29.9300003)
  1131. Part82.Transparency = 1
  1132. Part82.Size = Vector3.new(16, 0.400000006, 30)
  1133. Part82.Anchored = true
  1134. Part82.BottomSurface = Enum.SurfaceType.Smooth
  1135. Part82.CanCollide = false
  1136. Part82.TopSurface = Enum.SurfaceType.Smooth
  1137. Part82.FormFactor = Enum.FormFactor.Plate
  1138. Part82.formFactor = Enum.FormFactor.Plate
  1139. Decal83.Parent = Part82
  1140. Decal83.Texture = "http://www.roblox.com/asset/?id=17524615"
  1141. Decal83.Face = Enum.NormalId.Top
  1142. Part84.Parent = Model73
  1143. Part84.CFrame = CFrame.new(-142.470947, 10.0547018, -77.1866837, 0.866025448, -0.498594344, 0.0374648012, 3.7252903e-08, 0.0749296844, 0.997188687, -0.499999881, -0.863590956, 0.0648910403)
  1144. Part84.Orientation = Vector3.new(-85.6999969, 30, 0)
  1145. Part84.Position = Vector3.new(-142.470947, 10.0547018, -77.1866837)
  1146. Part84.Rotation = Vector3.new(-86.2799988, 2.1500001, 29.9300003)
  1147. Part84.Transparency = 1
  1148. Part84.Size = Vector3.new(16, 0.400000006, 30)
  1149. Part84.Anchored = true
  1150. Part84.BottomSurface = Enum.SurfaceType.Smooth
  1151. Part84.CanCollide = false
  1152. Part84.TopSurface = Enum.SurfaceType.Smooth
  1153. Part84.FormFactor = Enum.FormFactor.Plate
  1154. Part84.formFactor = Enum.FormFactor.Plate
  1155. Decal85.Parent = Part84
  1156. Decal85.Texture = "http://www.roblox.com/asset/?id=17524615"
  1157. Decal85.Face = Enum.NormalId.Top
  1158. Part86.Parent = Model73
  1159. Part86.CFrame = CFrame.new(-142.969543, 10.0547018, -76.3230972, -1.60653144e-07, -0.997188866, 0.074929662, 0, 0.0749296546, 0.997188747, -1, 1.53202564e-07, -7.4505806e-09)
  1160. Part86.Orientation = Vector3.new(-85.6999969, 90, 0)
  1161. Part86.Position = Vector3.new(-142.969543, 10.0547018, -76.3230972)
  1162. Part86.Rotation = Vector3.new(-90, 4.30000019, 90)
  1163. Part86.Transparency = 1
  1164. Part86.Size = Vector3.new(16, 0.400000006, 30)
  1165. Part86.Anchored = true
  1166. Part86.BottomSurface = Enum.SurfaceType.Smooth
  1167. Part86.CanCollide = false
  1168. Part86.TopSurface = Enum.SurfaceType.Smooth
  1169. Part86.FormFactor = Enum.FormFactor.Plate
  1170. Part86.formFactor = Enum.FormFactor.Plate
  1171. Decal87.Parent = Part86
  1172. Decal87.Texture = "http://www.roblox.com/asset/?id=17524615"
  1173. Decal87.Face = Enum.NormalId.Top
  1174. Model88.Name = "Tree"
  1175. Model88.Parent = Model0
  1176. Part89.Parent = Model88
  1177. Part89.CFrame = CFrame.new(-84.5429077, 1.70283496, 105.676903, 0.863590837, -0.0749297291, -0.498594463, 0.0648910254, 0.997188807, -0.0374649018, 0.50000006, 3.78551732e-08, 0.866025388)
  1178. Part89.Orientation = Vector3.new(2.1500001, -29.9300003, 3.72000003)
  1179. Part89.Position = Vector3.new(-84.5429077, 1.70283496, 105.676903)
  1180. Part89.Rotation = Vector3.new(2.48000002, -29.9099998, 4.96000004)
  1181. Part89.Color = Color3.new(0.411765, 0.25098, 0.156863)
  1182. Part89.Size = Vector3.new(2, 24, 4)
  1183. Part89.Anchored = true
  1184. Part89.BrickColor = BrickColor.new("Reddish brown")
  1185. Part89.Material = Enum.Material.Wood
  1186. Part89.brickColor = BrickColor.new("Reddish brown")
  1187. CylinderMesh90.Parent = Part89
  1188. Part91.Parent = Model88
  1189. Part91.CFrame = CFrame.new(-85.6751709, 10.1169577, 104.813316, 0.863590896, -0.50280726, -0.037359532, 0.0648910329, 0.0373595282, 0.9971928, -0.5, -0.863590896, 0.0648910329)
  1190. Part91.Orientation = Vector3.new(-85.7099991, -29.9300003, 60.0699997)
  1191. Part91.Position = Vector3.new(-85.6751709, 10.1169577, 104.813316)
  1192. Part91.Rotation = Vector3.new(-86.2799988, -2.1400001, 30.2099991)
  1193. Part91.Transparency = 1
  1194. Part91.Size = Vector3.new(16, 0.400000006, 30)
  1195. Part91.Anchored = true
  1196. Part91.BottomSurface = Enum.SurfaceType.Smooth
  1197. Part91.CanCollide = false
  1198. Part91.TopSurface = Enum.SurfaceType.Smooth
  1199. Part91.FormFactor = Enum.FormFactor.Plate
  1200. Part91.formFactor = Enum.FormFactor.Plate
  1201. Decal92.Parent = Part91
  1202. Decal92.Texture = "http://www.roblox.com/asset/?id=17524615"
  1203. Decal92.Face = Enum.NormalId.Top
  1204. Part93.Parent = Model88
  1205. Part93.CFrame = CFrame.new(-86.1723633, 10.0794363, 105.676903, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1206. Part93.Orientation = Vector3.new(-90, 90, 0)
  1207. Part93.Position = Vector3.new(-86.1723633, 10.0794363, 105.676903)
  1208. Part93.Rotation = Vector3.new(-90, 0, 90)
  1209. Part93.Transparency = 1
  1210. Part93.Size = Vector3.new(16, 0.400000006, 30)
  1211. Part93.Anchored = true
  1212. Part93.BottomSurface = Enum.SurfaceType.Smooth
  1213. Part93.CanCollide = false
  1214. Part93.TopSurface = Enum.SurfaceType.Smooth
  1215. Part93.FormFactor = Enum.FormFactor.Plate
  1216. Part93.formFactor = Enum.FormFactor.Plate
  1217. Decal94.Parent = Part93
  1218. Decal94.Texture = "http://www.roblox.com/asset/?id=17524615"
  1219. Decal94.Face = Enum.NormalId.Top
  1220. Part95.Parent = Model88
  1221. Part95.CFrame = CFrame.new(-85.6751709, 10.1169577, 106.540489, -0.863590896, -0.5028072, -0.0373595357, -0.0648910254, 0.0373595357, 0.9971928, -0.49999997, 0.863590896, -0.0648910329)
  1222. Part95.Orientation = Vector3.new(-85.7099991, -150.070007, -60.0699997)
  1223. Part95.Position = Vector3.new(-85.6751709, 10.1169577, 106.540489)
  1224. Part95.Rotation = Vector3.new(-93.7200012, -2.1400001, 149.789993)
  1225. Part95.Transparency = 1
  1226. Part95.Size = Vector3.new(16, 0.400000006, 30)
  1227. Part95.Anchored = true
  1228. Part95.BottomSurface = Enum.SurfaceType.Smooth
  1229. Part95.CanCollide = false
  1230. Part95.TopSurface = Enum.SurfaceType.Smooth
  1231. Part95.FormFactor = Enum.FormFactor.Plate
  1232. Part95.formFactor = Enum.FormFactor.Plate
  1233. Decal96.Parent = Part95
  1234. Decal96.Texture = "http://www.roblox.com/asset/?id=17524615"
  1235. Decal96.Face = Enum.NormalId.Top
  1236. Part97.Parent = Model88
  1237. Part97.CFrame = CFrame.new(-84.6807861, 10.1916656, 106.540489, -0.863590837, 0.491578341, -0.1120786, -0.0648910254, 0.1120786, 0.991578341, 0.5, 0.863590837, -0.0648910329)
  1238. Part97.Orientation = Vector3.new(-82.5599976, -120.07, -30.0699997)
  1239. Part97.Position = Vector3.new(-84.6807861, 10.1916656, 106.540489)
  1240. Part97.Rotation = Vector3.new(-93.7399979, -6.44000006, -150.350006)
  1241. Part97.Transparency = 1
  1242. Part97.Size = Vector3.new(16, 0.400000006, 30)
  1243. Part97.Anchored = true
  1244. Part97.BottomSurface = Enum.SurfaceType.Smooth
  1245. Part97.CanCollide = false
  1246. Part97.TopSurface = Enum.SurfaceType.Smooth
  1247. Part97.FormFactor = Enum.FormFactor.Plate
  1248. Part97.formFactor = Enum.FormFactor.Plate
  1249. Decal98.Parent = Part97
  1250. Decal98.Texture = "http://www.roblox.com/asset/?id=17524615"
  1251. Decal98.Face = Enum.NormalId.Top
  1252. Part99.Parent = Model88
  1253. Part99.CFrame = CFrame.new(-84.1835938, 10.2290182, 105.676903, -1.81650407e-07, 0.988771081, -0.149438128, -1.44053089e-08, 0.149438128, 0.988771081, 1, 1.81650407e-07, -1.06800186e-08)
  1254. Part99.Orientation = Vector3.new(-81.4100037, -90, 0)
  1255. Part99.Position = Vector3.new(-84.1835938, 10.2290182, 105.676903)
  1256. Part99.Rotation = Vector3.new(-90, -8.59000015, -90)
  1257. Part99.Transparency = 1
  1258. Part99.Size = Vector3.new(16, 0.400000006, 30)
  1259. Part99.Anchored = true
  1260. Part99.BottomSurface = Enum.SurfaceType.Smooth
  1261. Part99.CanCollide = false
  1262. Part99.TopSurface = Enum.SurfaceType.Smooth
  1263. Part99.FormFactor = Enum.FormFactor.Plate
  1264. Part99.formFactor = Enum.FormFactor.Plate
  1265. Decal100.Parent = Part99
  1266. Decal100.Texture = "http://www.roblox.com/asset/?id=17524615"
  1267. Decal100.Face = Enum.NormalId.Top
  1268. Part101.Parent = Model88
  1269. Part101.CFrame = CFrame.new(-84.6807861, 10.1916656, 104.813316, 0.863590896, 0.491578221, -0.112078592, 0.0648910329, 0.112078592, 0.991578281, 0.499999911, -0.863590896, 0.0648910329)
  1270. Part101.Orientation = Vector3.new(-82.5599976, -59.9300003, 30.0699997)
  1271. Part101.Position = Vector3.new(-84.6807861, 10.1916656, 104.813316)
  1272. Part101.Rotation = Vector3.new(-86.2600021, -6.44000006, -29.6499996)
  1273. Part101.Transparency = 1
  1274. Part101.Size = Vector3.new(16, 0.400000006, 30)
  1275. Part101.Anchored = true
  1276. Part101.BottomSurface = Enum.SurfaceType.Smooth
  1277. Part101.CanCollide = false
  1278. Part101.TopSurface = Enum.SurfaceType.Smooth
  1279. Part101.FormFactor = Enum.FormFactor.Plate
  1280. Part101.formFactor = Enum.FormFactor.Plate
  1281. Decal102.Parent = Part101
  1282. Decal102.Texture = "http://www.roblox.com/asset/?id=17524615"
  1283. Decal102.Face = Enum.NormalId.Top
  1284. Model103.Name = "Tree"
  1285. Model103.Parent = Model0
  1286. Part104.Parent = Model103
  1287. Part104.CFrame = CFrame.new(-123.542908, 1.70283496, 93.6769028, 0.863590837, -0.0749297291, -0.498594463, 0.0648910254, 0.997188807, -0.0374649018, 0.50000006, 3.78551732e-08, 0.866025388)
  1288. Part104.Orientation = Vector3.new(2.1500001, -29.9300003, 3.72000003)
  1289. Part104.Position = Vector3.new(-123.542908, 1.70283496, 93.6769028)
  1290. Part104.Rotation = Vector3.new(2.48000002, -29.9099998, 4.96000004)
  1291. Part104.Color = Color3.new(0.411765, 0.25098, 0.156863)
  1292. Part104.Size = Vector3.new(2, 24, 4)
  1293. Part104.Anchored = true
  1294. Part104.BrickColor = BrickColor.new("Reddish brown")
  1295. Part104.Material = Enum.Material.Wood
  1296. Part104.brickColor = BrickColor.new("Reddish brown")
  1297. CylinderMesh105.Parent = Part104
  1298. Part106.Parent = Model103
  1299. Part106.CFrame = CFrame.new(-124.675171, 10.1169577, 92.8133163, 0.863590896, -0.50280726, -0.037359532, 0.0648910329, 0.0373595282, 0.9971928, -0.5, -0.863590896, 0.0648910329)
  1300. Part106.Orientation = Vector3.new(-85.7099991, -29.9300003, 60.0699997)
  1301. Part106.Position = Vector3.new(-124.675171, 10.1169577, 92.8133163)
  1302. Part106.Rotation = Vector3.new(-86.2799988, -2.1400001, 30.2099991)
  1303. Part106.Transparency = 1
  1304. Part106.Size = Vector3.new(16, 0.400000006, 30)
  1305. Part106.Anchored = true
  1306. Part106.BottomSurface = Enum.SurfaceType.Smooth
  1307. Part106.CanCollide = false
  1308. Part106.TopSurface = Enum.SurfaceType.Smooth
  1309. Part106.FormFactor = Enum.FormFactor.Plate
  1310. Part106.formFactor = Enum.FormFactor.Plate
  1311. Decal107.Parent = Part106
  1312. Decal107.Texture = "http://www.roblox.com/asset/?id=17524615"
  1313. Decal107.Face = Enum.NormalId.Top
  1314. Part108.Parent = Model103
  1315. Part108.CFrame = CFrame.new(-125.172363, 10.0794363, 93.6769028, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1316. Part108.Orientation = Vector3.new(-90, 90, 0)
  1317. Part108.Position = Vector3.new(-125.172363, 10.0794363, 93.6769028)
  1318. Part108.Rotation = Vector3.new(-90, 0, 90)
  1319. Part108.Transparency = 1
  1320. Part108.Size = Vector3.new(16, 0.400000006, 30)
  1321. Part108.Anchored = true
  1322. Part108.BottomSurface = Enum.SurfaceType.Smooth
  1323. Part108.CanCollide = false
  1324. Part108.TopSurface = Enum.SurfaceType.Smooth
  1325. Part108.FormFactor = Enum.FormFactor.Plate
  1326. Part108.formFactor = Enum.FormFactor.Plate
  1327. Decal109.Parent = Part108
  1328. Decal109.Texture = "http://www.roblox.com/asset/?id=17524615"
  1329. Decal109.Face = Enum.NormalId.Top
  1330. Part110.Parent = Model103
  1331. Part110.CFrame = CFrame.new(-124.675171, 10.1169577, 94.5404892, -0.863590896, -0.5028072, -0.0373595357, -0.0648910254, 0.0373595357, 0.9971928, -0.49999997, 0.863590896, -0.0648910329)
  1332. Part110.Orientation = Vector3.new(-85.7099991, -150.070007, -60.0699997)
  1333. Part110.Position = Vector3.new(-124.675171, 10.1169577, 94.5404892)
  1334. Part110.Rotation = Vector3.new(-93.7200012, -2.1400001, 149.789993)
  1335. Part110.Transparency = 1
  1336. Part110.Size = Vector3.new(16, 0.400000006, 30)
  1337. Part110.Anchored = true
  1338. Part110.BottomSurface = Enum.SurfaceType.Smooth
  1339. Part110.CanCollide = false
  1340. Part110.TopSurface = Enum.SurfaceType.Smooth
  1341. Part110.FormFactor = Enum.FormFactor.Plate
  1342. Part110.formFactor = Enum.FormFactor.Plate
  1343. Decal111.Parent = Part110
  1344. Decal111.Texture = "http://www.roblox.com/asset/?id=17524615"
  1345. Decal111.Face = Enum.NormalId.Top
  1346. Part112.Parent = Model103
  1347. Part112.CFrame = CFrame.new(-123.680786, 10.1916656, 94.5404892, -0.863590837, 0.491578341, -0.1120786, -0.0648910254, 0.1120786, 0.991578341, 0.5, 0.863590837, -0.0648910329)
  1348. Part112.Orientation = Vector3.new(-82.5599976, -120.07, -30.0699997)
  1349. Part112.Position = Vector3.new(-123.680786, 10.1916656, 94.5404892)
  1350. Part112.Rotation = Vector3.new(-93.7399979, -6.44000006, -150.350006)
  1351. Part112.Transparency = 1
  1352. Part112.Size = Vector3.new(16, 0.400000006, 30)
  1353. Part112.Anchored = true
  1354. Part112.BottomSurface = Enum.SurfaceType.Smooth
  1355. Part112.CanCollide = false
  1356. Part112.TopSurface = Enum.SurfaceType.Smooth
  1357. Part112.FormFactor = Enum.FormFactor.Plate
  1358. Part112.formFactor = Enum.FormFactor.Plate
  1359. Decal113.Parent = Part112
  1360. Decal113.Texture = "http://www.roblox.com/asset/?id=17524615"
  1361. Decal113.Face = Enum.NormalId.Top
  1362. Part114.Parent = Model103
  1363. Part114.CFrame = CFrame.new(-123.183594, 10.2290182, 93.6769028, -1.81650407e-07, 0.988771081, -0.149438128, -1.44053089e-08, 0.149438128, 0.988771081, 1, 1.81650407e-07, -1.06800186e-08)
  1364. Part114.Orientation = Vector3.new(-81.4100037, -90, 0)
  1365. Part114.Position = Vector3.new(-123.183594, 10.2290182, 93.6769028)
  1366. Part114.Rotation = Vector3.new(-90, -8.59000015, -90)
  1367. Part114.Transparency = 1
  1368. Part114.Size = Vector3.new(16, 0.400000006, 30)
  1369. Part114.Anchored = true
  1370. Part114.BottomSurface = Enum.SurfaceType.Smooth
  1371. Part114.CanCollide = false
  1372. Part114.TopSurface = Enum.SurfaceType.Smooth
  1373. Part114.FormFactor = Enum.FormFactor.Plate
  1374. Part114.formFactor = Enum.FormFactor.Plate
  1375. Decal115.Parent = Part114
  1376. Decal115.Texture = "http://www.roblox.com/asset/?id=17524615"
  1377. Decal115.Face = Enum.NormalId.Top
  1378. Part116.Parent = Model103
  1379. Part116.CFrame = CFrame.new(-123.680786, 10.1916656, 92.8133163, 0.863590896, 0.491578221, -0.112078592, 0.0648910329, 0.112078592, 0.991578281, 0.499999911, -0.863590896, 0.0648910329)
  1380. Part116.Orientation = Vector3.new(-82.5599976, -59.9300003, 30.0699997)
  1381. Part116.Position = Vector3.new(-123.680786, 10.1916656, 92.8133163)
  1382. Part116.Rotation = Vector3.new(-86.2600021, -6.44000006, -29.6499996)
  1383. Part116.Transparency = 1
  1384. Part116.Size = Vector3.new(16, 0.400000006, 30)
  1385. Part116.Anchored = true
  1386. Part116.BottomSurface = Enum.SurfaceType.Smooth
  1387. Part116.CanCollide = false
  1388. Part116.TopSurface = Enum.SurfaceType.Smooth
  1389. Part116.FormFactor = Enum.FormFactor.Plate
  1390. Part116.formFactor = Enum.FormFactor.Plate
  1391. Decal117.Parent = Part116
  1392. Decal117.Texture = "http://www.roblox.com/asset/?id=17524615"
  1393. Decal117.Face = Enum.NormalId.Top
  1394. Model118.Name = "Tree"
  1395. Model118.Parent = Model0
  1396. Part119.Parent = Model118
  1397. Part119.CFrame = CFrame.new(-202.542908, 1.702896, 85.6769028, 0.863590837, -0.0749297291, -0.498594463, 0.0648910254, 0.997188807, -0.0374649018, 0.50000006, 3.78551732e-08, 0.866025388)
  1398. Part119.Orientation = Vector3.new(2.1500001, -29.9300003, 3.72000003)
  1399. Part119.Position = Vector3.new(-202.542908, 1.702896, 85.6769028)
  1400. Part119.Rotation = Vector3.new(2.48000002, -29.9099998, 4.96000004)
  1401. Part119.Color = Color3.new(0.411765, 0.25098, 0.156863)
  1402. Part119.Size = Vector3.new(2, 24, 4)
  1403. Part119.Anchored = true
  1404. Part119.BrickColor = BrickColor.new("Reddish brown")
  1405. Part119.Material = Enum.Material.Wood
  1406. Part119.brickColor = BrickColor.new("Reddish brown")
  1407. CylinderMesh120.Parent = Part119
  1408. Part121.Parent = Model118
  1409. Part121.CFrame = CFrame.new(-203.675171, 10.1169577, 84.8133163, 0.863590896, -0.50280726, -0.037359532, 0.0648910329, 0.0373595282, 0.9971928, -0.5, -0.863590896, 0.0648910329)
  1410. Part121.Orientation = Vector3.new(-85.7099991, -29.9300003, 60.0699997)
  1411. Part121.Position = Vector3.new(-203.675171, 10.1169577, 84.8133163)
  1412. Part121.Rotation = Vector3.new(-86.2799988, -2.1400001, 30.2099991)
  1413. Part121.Transparency = 1
  1414. Part121.Size = Vector3.new(16, 0.400000006, 30)
  1415. Part121.Anchored = true
  1416. Part121.BottomSurface = Enum.SurfaceType.Smooth
  1417. Part121.CanCollide = false
  1418. Part121.TopSurface = Enum.SurfaceType.Smooth
  1419. Part121.FormFactor = Enum.FormFactor.Plate
  1420. Part121.formFactor = Enum.FormFactor.Plate
  1421. Decal122.Parent = Part121
  1422. Decal122.Texture = "http://www.roblox.com/asset/?id=17524615"
  1423. Decal122.Face = Enum.NormalId.Top
  1424. Part123.Parent = Model118
  1425. Part123.CFrame = CFrame.new(-204.172363, 10.0794363, 85.6769028, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1426. Part123.Orientation = Vector3.new(-90, 90, 0)
  1427. Part123.Position = Vector3.new(-204.172363, 10.0794363, 85.6769028)
  1428. Part123.Rotation = Vector3.new(-90, 0, 90)
  1429. Part123.Transparency = 1
  1430. Part123.Size = Vector3.new(16, 0.400000006, 30)
  1431. Part123.Anchored = true
  1432. Part123.BottomSurface = Enum.SurfaceType.Smooth
  1433. Part123.CanCollide = false
  1434. Part123.TopSurface = Enum.SurfaceType.Smooth
  1435. Part123.FormFactor = Enum.FormFactor.Plate
  1436. Part123.formFactor = Enum.FormFactor.Plate
  1437. Decal124.Parent = Part123
  1438. Decal124.Texture = "http://www.roblox.com/asset/?id=17524615"
  1439. Decal124.Face = Enum.NormalId.Top
  1440. Part125.Parent = Model118
  1441. Part125.CFrame = CFrame.new(-203.675171, 10.1169577, 86.5404892, -0.863590896, -0.5028072, -0.0373595357, -0.0648910254, 0.0373595357, 0.9971928, -0.49999997, 0.863590896, -0.0648910329)
  1442. Part125.Orientation = Vector3.new(-85.7099991, -150.070007, -60.0699997)
  1443. Part125.Position = Vector3.new(-203.675171, 10.1169577, 86.5404892)
  1444. Part125.Rotation = Vector3.new(-93.7200012, -2.1400001, 149.789993)
  1445. Part125.Transparency = 1
  1446. Part125.Size = Vector3.new(16, 0.400000006, 30)
  1447. Part125.Anchored = true
  1448. Part125.BottomSurface = Enum.SurfaceType.Smooth
  1449. Part125.CanCollide = false
  1450. Part125.TopSurface = Enum.SurfaceType.Smooth
  1451. Part125.FormFactor = Enum.FormFactor.Plate
  1452. Part125.formFactor = Enum.FormFactor.Plate
  1453. Decal126.Parent = Part125
  1454. Decal126.Texture = "http://www.roblox.com/asset/?id=17524615"
  1455. Decal126.Face = Enum.NormalId.Top
  1456. Part127.Parent = Model118
  1457. Part127.CFrame = CFrame.new(-202.680786, 10.1916656, 86.5404892, -0.863590837, 0.491578341, -0.1120786, -0.0648910254, 0.1120786, 0.991578341, 0.5, 0.863590837, -0.0648910329)
  1458. Part127.Orientation = Vector3.new(-82.5599976, -120.07, -30.0699997)
  1459. Part127.Position = Vector3.new(-202.680786, 10.1916656, 86.5404892)
  1460. Part127.Rotation = Vector3.new(-93.7399979, -6.44000006, -150.350006)
  1461. Part127.Transparency = 1
  1462. Part127.Size = Vector3.new(16, 0.400000006, 30)
  1463. Part127.Anchored = true
  1464. Part127.BottomSurface = Enum.SurfaceType.Smooth
  1465. Part127.CanCollide = false
  1466. Part127.TopSurface = Enum.SurfaceType.Smooth
  1467. Part127.FormFactor = Enum.FormFactor.Plate
  1468. Part127.formFactor = Enum.FormFactor.Plate
  1469. Decal128.Parent = Part127
  1470. Decal128.Texture = "http://www.roblox.com/asset/?id=17524615"
  1471. Decal128.Face = Enum.NormalId.Top
  1472. Part129.Parent = Model118
  1473. Part129.CFrame = CFrame.new(-202.183594, 10.2290182, 85.6769028, -1.81650407e-07, 0.988771081, -0.149438128, -1.44053089e-08, 0.149438128, 0.988771081, 1, 1.81650407e-07, -1.06800186e-08)
  1474. Part129.Orientation = Vector3.new(-81.4100037, -90, 0)
  1475. Part129.Position = Vector3.new(-202.183594, 10.2290182, 85.6769028)
  1476. Part129.Rotation = Vector3.new(-90, -8.59000015, -90)
  1477. Part129.Transparency = 1
  1478. Part129.Size = Vector3.new(16, 0.400000006, 30)
  1479. Part129.Anchored = true
  1480. Part129.BottomSurface = Enum.SurfaceType.Smooth
  1481. Part129.CanCollide = false
  1482. Part129.TopSurface = Enum.SurfaceType.Smooth
  1483. Part129.FormFactor = Enum.FormFactor.Plate
  1484. Part129.formFactor = Enum.FormFactor.Plate
  1485. Decal130.Parent = Part129
  1486. Decal130.Texture = "http://www.roblox.com/asset/?id=17524615"
  1487. Decal130.Face = Enum.NormalId.Top
  1488. Part131.Parent = Model118
  1489. Part131.CFrame = CFrame.new(-202.680786, 10.1916656, 84.8133163, 0.863590896, 0.491578221, -0.112078592, 0.0648910329, 0.112078592, 0.991578281, 0.499999911, -0.863590896, 0.0648910329)
  1490. Part131.Orientation = Vector3.new(-82.5599976, -59.9300003, 30.0699997)
  1491. Part131.Position = Vector3.new(-202.680786, 10.1916656, 84.8133163)
  1492. Part131.Rotation = Vector3.new(-86.2600021, -6.44000006, -29.6499996)
  1493. Part131.Transparency = 1
  1494. Part131.Size = Vector3.new(16, 0.400000006, 30)
  1495. Part131.Anchored = true
  1496. Part131.BottomSurface = Enum.SurfaceType.Smooth
  1497. Part131.CanCollide = false
  1498. Part131.TopSurface = Enum.SurfaceType.Smooth
  1499. Part131.FormFactor = Enum.FormFactor.Plate
  1500. Part131.formFactor = Enum.FormFactor.Plate
  1501. Decal132.Parent = Part131
  1502. Decal132.Texture = "http://www.roblox.com/asset/?id=17524615"
  1503. Decal132.Face = Enum.NormalId.Top
  1504. Model133.Name = "Tree"
  1505. Model133.Parent = Model0
  1506. Part134.Parent = Model133
  1507. Part134.CFrame = CFrame.new(-170.542908, 1.70307899, -89.3230972, 0.863590837, -0.0749297291, -0.498594463, 0.0648910254, 0.997188807, -0.0374649018, 0.50000006, 3.78551732e-08, 0.866025388)
  1508. Part134.Orientation = Vector3.new(2.1500001, -29.9300003, 3.72000003)
  1509. Part134.Position = Vector3.new(-170.542908, 1.70307899, -89.3230972)
  1510. Part134.Rotation = Vector3.new(2.48000002, -29.9099998, 4.96000004)
  1511. Part134.Color = Color3.new(0.411765, 0.25098, 0.156863)
  1512. Part134.Size = Vector3.new(2, 24, 4)
  1513. Part134.Anchored = true
  1514. Part134.BrickColor = BrickColor.new("Reddish brown")
  1515. Part134.Material = Enum.Material.Wood
  1516. Part134.brickColor = BrickColor.new("Reddish brown")
  1517. CylinderMesh135.Parent = Part134
  1518. Part136.Parent = Model133
  1519. Part136.CFrame = CFrame.new(-171.675171, 10.1170797, -90.1866837, 0.863590896, -0.50280726, -0.037359532, 0.0648910329, 0.0373595282, 0.9971928, -0.5, -0.863590896, 0.0648910329)
  1520. Part136.Orientation = Vector3.new(-85.7099991, -29.9300003, 60.0699997)
  1521. Part136.Position = Vector3.new(-171.675171, 10.1170797, -90.1866837)
  1522. Part136.Rotation = Vector3.new(-86.2799988, -2.1400001, 30.2099991)
  1523. Part136.Transparency = 1
  1524. Part136.Size = Vector3.new(16, 0.400000006, 30)
  1525. Part136.Anchored = true
  1526. Part136.BottomSurface = Enum.SurfaceType.Smooth
  1527. Part136.CanCollide = false
  1528. Part136.TopSurface = Enum.SurfaceType.Smooth
  1529. Part136.FormFactor = Enum.FormFactor.Plate
  1530. Part136.formFactor = Enum.FormFactor.Plate
  1531. Decal137.Parent = Part136
  1532. Decal137.Texture = "http://www.roblox.com/asset/?id=17524615"
  1533. Decal137.Face = Enum.NormalId.Top
  1534. Part138.Parent = Model133
  1535. Part138.CFrame = CFrame.new(-172.172363, 10.0794363, -89.3230972, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1536. Part138.Orientation = Vector3.new(-90, 90, 0)
  1537. Part138.Position = Vector3.new(-172.172363, 10.0794363, -89.3230972)
  1538. Part138.Rotation = Vector3.new(-90, 0, 90)
  1539. Part138.Transparency = 1
  1540. Part138.Size = Vector3.new(16, 0.400000006, 30)
  1541. Part138.Anchored = true
  1542. Part138.BottomSurface = Enum.SurfaceType.Smooth
  1543. Part138.CanCollide = false
  1544. Part138.TopSurface = Enum.SurfaceType.Smooth
  1545. Part138.FormFactor = Enum.FormFactor.Plate
  1546. Part138.formFactor = Enum.FormFactor.Plate
  1547. Decal139.Parent = Part138
  1548. Decal139.Texture = "http://www.roblox.com/asset/?id=17524615"
  1549. Decal139.Face = Enum.NormalId.Top
  1550. Part140.Parent = Model133
  1551. Part140.CFrame = CFrame.new(-171.675171, 10.1170797, -88.4595108, -0.863590896, -0.5028072, -0.0373595357, -0.0648910254, 0.0373595357, 0.9971928, -0.49999997, 0.863590896, -0.0648910329)
  1552. Part140.Orientation = Vector3.new(-85.7099991, -150.070007, -60.0699997)
  1553. Part140.Position = Vector3.new(-171.675171, 10.1170797, -88.4595108)
  1554. Part140.Rotation = Vector3.new(-93.7200012, -2.1400001, 149.789993)
  1555. Part140.Transparency = 1
  1556. Part140.Size = Vector3.new(16, 0.400000006, 30)
  1557. Part140.Anchored = true
  1558. Part140.BottomSurface = Enum.SurfaceType.Smooth
  1559. Part140.CanCollide = false
  1560. Part140.TopSurface = Enum.SurfaceType.Smooth
  1561. Part140.FormFactor = Enum.FormFactor.Plate
  1562. Part140.formFactor = Enum.FormFactor.Plate
  1563. Decal141.Parent = Part140
  1564. Decal141.Texture = "http://www.roblox.com/asset/?id=17524615"
  1565. Decal141.Face = Enum.NormalId.Top
  1566. Part142.Parent = Model133
  1567. Part142.CFrame = CFrame.new(-170.680786, 10.1918478, -88.4595108, -0.863590837, 0.491578341, -0.1120786, -0.0648910254, 0.1120786, 0.991578341, 0.5, 0.863590837, -0.0648910329)
  1568. Part142.Orientation = Vector3.new(-82.5599976, -120.07, -30.0699997)
  1569. Part142.Position = Vector3.new(-170.680786, 10.1918478, -88.4595108)
  1570. Part142.Rotation = Vector3.new(-93.7399979, -6.44000006, -150.350006)
  1571. Part142.Transparency = 1
  1572. Part142.Size = Vector3.new(16, 0.400000006, 30)
  1573. Part142.Anchored = true
  1574. Part142.BottomSurface = Enum.SurfaceType.Smooth
  1575. Part142.CanCollide = false
  1576. Part142.TopSurface = Enum.SurfaceType.Smooth
  1577. Part142.FormFactor = Enum.FormFactor.Plate
  1578. Part142.formFactor = Enum.FormFactor.Plate
  1579. Decal143.Parent = Part142
  1580. Decal143.Texture = "http://www.roblox.com/asset/?id=17524615"
  1581. Decal143.Face = Enum.NormalId.Top
  1582. Part144.Parent = Model133
  1583. Part144.CFrame = CFrame.new(-170.183594, 10.2292023, -89.3230972, -1.81650407e-07, 0.988771081, -0.149438128, -1.44053089e-08, 0.149438128, 0.988771081, 1, 1.81650407e-07, -1.06800186e-08)
  1584. Part144.Orientation = Vector3.new(-81.4100037, -90, 0)
  1585. Part144.Position = Vector3.new(-170.183594, 10.2292023, -89.3230972)
  1586. Part144.Rotation = Vector3.new(-90, -8.59000015, -90)
  1587. Part144.Transparency = 1
  1588. Part144.Size = Vector3.new(16, 0.400000006, 30)
  1589. Part144.Anchored = true
  1590. Part144.BottomSurface = Enum.SurfaceType.Smooth
  1591. Part144.CanCollide = false
  1592. Part144.TopSurface = Enum.SurfaceType.Smooth
  1593. Part144.FormFactor = Enum.FormFactor.Plate
  1594. Part144.formFactor = Enum.FormFactor.Plate
  1595. Decal145.Parent = Part144
  1596. Decal145.Texture = "http://www.roblox.com/asset/?id=17524615"
  1597. Decal145.Face = Enum.NormalId.Top
  1598. Part146.Parent = Model133
  1599. Part146.CFrame = CFrame.new(-170.680786, 10.1918478, -90.1866837, 0.863590896, 0.491578221, -0.112078592, 0.0648910329, 0.112078592, 0.991578281, 0.499999911, -0.863590896, 0.0648910329)
  1600. Part146.Orientation = Vector3.new(-82.5599976, -59.9300003, 30.0699997)
  1601. Part146.Position = Vector3.new(-170.680786, 10.1918478, -90.1866837)
  1602. Part146.Rotation = Vector3.new(-86.2600021, -6.44000006, -29.6499996)
  1603. Part146.Transparency = 1
  1604. Part146.Size = Vector3.new(16, 0.400000006, 30)
  1605. Part146.Anchored = true
  1606. Part146.BottomSurface = Enum.SurfaceType.Smooth
  1607. Part146.CanCollide = false
  1608. Part146.TopSurface = Enum.SurfaceType.Smooth
  1609. Part146.FormFactor = Enum.FormFactor.Plate
  1610. Part146.formFactor = Enum.FormFactor.Plate
  1611. Decal147.Parent = Part146
  1612. Decal147.Texture = "http://www.roblox.com/asset/?id=17524615"
  1613. Decal147.Face = Enum.NormalId.Top
  1614. Model148.Name = "Tree"
  1615. Model148.Parent = Model0
  1616. Part149.Parent = Model148
  1617. Part149.CFrame = CFrame.new(-194.972351, 1.57943702, -61.3230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1618. Part149.Position = Vector3.new(-194.972351, 1.57943702, -61.3230972)
  1619. Part149.Color = Color3.new(0.411765, 0.25098, 0.156863)
  1620. Part149.Size = Vector3.new(2, 24, 4)
  1621. Part149.Anchored = true
  1622. Part149.BrickColor = BrickColor.new("Reddish brown")
  1623. Part149.Material = Enum.Material.Wood
  1624. Part149.brickColor = BrickColor.new("Reddish brown")
  1625. CylinderMesh150.Parent = Part149
  1626. Part151.Parent = Model148
  1627. Part151.CFrame = CFrame.new(-195.835938, 10.0542765, -61.8216934, 0.5, -0.863590956, 0.0648910403, -4.47034836e-08, 0.0749296844, 0.997188807, -0.866025448, -0.498594403, 0.0374648124)
  1628. Part151.Orientation = Vector3.new(-85.6999969, 60, 0)
  1629. Part151.Position = Vector3.new(-195.835938, 10.0542765, -61.8216934)
  1630. Part151.Rotation = Vector3.new(-87.8499985, 3.72000003, 59.9300003)
  1631. Part151.Transparency = 1
  1632. Part151.Size = Vector3.new(16, 0.400000006, 30)
  1633. Part151.Anchored = true
  1634. Part151.BottomSurface = Enum.SurfaceType.Smooth
  1635. Part151.CanCollide = false
  1636. Part151.TopSurface = Enum.SurfaceType.Smooth
  1637. Part151.FormFactor = Enum.FormFactor.Plate
  1638. Part151.formFactor = Enum.FormFactor.Plate
  1639. Decal152.Parent = Part151
  1640. Decal152.Texture = "http://www.roblox.com/asset/?id=17524615"
  1641. Decal152.Face = Enum.NormalId.Top
  1642. Part153.Parent = Model148
  1643. Part153.CFrame = CFrame.new(-195.835938, 10.0541515, -60.824501, -0.50000006, -0.863590837, 0.0648910254, -3.78551732e-08, 0.0749297291, 0.997188807, -0.866025388, 0.498594463, -0.0374649018)
  1644. Part153.Orientation = Vector3.new(-85.6999969, 120, 0)
  1645. Part153.Position = Vector3.new(-195.835938, 10.0541515, -60.824501)
  1646. Part153.Rotation = Vector3.new(-92.1500015, 3.72000003, 120.07)
  1647. Part153.Transparency = 1
  1648. Part153.Size = Vector3.new(16, 0.400000006, 30)
  1649. Part153.Anchored = true
  1650. Part153.BottomSurface = Enum.SurfaceType.Smooth
  1651. Part153.CanCollide = false
  1652. Part153.TopSurface = Enum.SurfaceType.Smooth
  1653. Part153.FormFactor = Enum.FormFactor.Plate
  1654. Part153.formFactor = Enum.FormFactor.Plate
  1655. Decal154.Parent = Part153
  1656. Decal154.Texture = "http://www.roblox.com/asset/?id=17524615"
  1657. Decal154.Face = Enum.NormalId.Top
  1658. Part155.Parent = Model148
  1659. Part155.CFrame = CFrame.new(-194.972351, 10.0542765, -60.3259048, -1, 1.18045136e-07, -7.4505806e-09, 7.4505806e-09, 0.0749297515, 0.997188807, 1.00815669e-07, 0.997188866, -0.0749297515)
  1660. Part155.Orientation = Vector3.new(-85.6999969, -180, 0)
  1661. Part155.Position = Vector3.new(-194.972351, 10.0542765, -60.3259048)
  1662. Part155.Rotation = Vector3.new(-94.3000031, 0, -180)
  1663. Part155.Transparency = 1
  1664. Part155.Size = Vector3.new(16, 0.400000006, 30)
  1665. Part155.Anchored = true
  1666. Part155.BottomSurface = Enum.SurfaceType.Smooth
  1667. Part155.CanCollide = false
  1668. Part155.TopSurface = Enum.SurfaceType.Smooth
  1669. Part155.FormFactor = Enum.FormFactor.Plate
  1670. Part155.formFactor = Enum.FormFactor.Plate
  1671. Decal156.Parent = Part155
  1672. Decal156.Texture = "http://www.roblox.com/asset/?id=17524615"
  1673. Decal156.Face = Enum.NormalId.Top
  1674. Part157.Parent = Model148
  1675. Part157.CFrame = CFrame.new(-194.108765, 10.0542765, -60.824501, -0.49999994, 0.863590896, -0.0648910329, 4.47034836e-08, 0.0749297291, 0.997188807, 0.866025448, 0.498594344, -0.0374648981)
  1676. Part157.Orientation = Vector3.new(-85.6999969, -120, 0)
  1677. Part157.Position = Vector3.new(-194.108765, 10.0542765, -60.824501)
  1678. Part157.Rotation = Vector3.new(-92.1500015, -3.72000003, -120.07)
  1679. Part157.Transparency = 1
  1680. Part157.Size = Vector3.new(16, 0.400000006, 30)
  1681. Part157.Anchored = true
  1682. Part157.BottomSurface = Enum.SurfaceType.Smooth
  1683. Part157.CanCollide = false
  1684. Part157.TopSurface = Enum.SurfaceType.Smooth
  1685. Part157.FormFactor = Enum.FormFactor.Plate
  1686. Part157.formFactor = Enum.FormFactor.Plate
  1687. Decal158.Parent = Part157
  1688. Decal158.Texture = "http://www.roblox.com/asset/?id=17524615"
  1689. Decal158.Face = Enum.NormalId.Top
  1690. Part159.Parent = Model148
  1691. Part159.CFrame = CFrame.new(-194.108765, 10.0542765, -61.8216934, 0.499999911, 0.863590956, -0.0648910329, 3.71013762e-08, 0.0749296844, 0.997188807, 0.866025507, -0.498594344, 0.0374648049)
  1692. Part159.Orientation = Vector3.new(-85.6999969, -60, 0)
  1693. Part159.Position = Vector3.new(-194.108765, 10.0542765, -61.8216934)
  1694. Part159.Rotation = Vector3.new(-87.8499985, -3.72000003, -59.9300003)
  1695. Part159.Transparency = 1
  1696. Part159.Size = Vector3.new(16, 0.400000006, 30)
  1697. Part159.Anchored = true
  1698. Part159.BottomSurface = Enum.SurfaceType.Smooth
  1699. Part159.CanCollide = false
  1700. Part159.TopSurface = Enum.SurfaceType.Smooth
  1701. Part159.FormFactor = Enum.FormFactor.Plate
  1702. Part159.formFactor = Enum.FormFactor.Plate
  1703. Decal160.Parent = Part159
  1704. Decal160.Texture = "http://www.roblox.com/asset/?id=17524615"
  1705. Decal160.Face = Enum.NormalId.Top
  1706. Part161.Parent = Model148
  1707. Part161.CFrame = CFrame.new(-194.972351, 10.0542765, -62.3202896, 1, -1.53202564e-07, 7.4505806e-09, 0, 0.0749296546, 0.997188747, -1.60653144e-07, -0.997188866, 0.074929662)
  1708. Part161.Orientation = Vector3.new(-85.6999969, 0, 0)
  1709. Part161.Position = Vector3.new(-194.972351, 10.0542765, -62.3202896)
  1710. Part161.Rotation = Vector3.new(-85.6999969, 0, 0)
  1711. Part161.Transparency = 1
  1712. Part161.Size = Vector3.new(16, 0.400000006, 30)
  1713. Part161.Anchored = true
  1714. Part161.BottomSurface = Enum.SurfaceType.Smooth
  1715. Part161.CanCollide = false
  1716. Part161.TopSurface = Enum.SurfaceType.Smooth
  1717. Part161.FormFactor = Enum.FormFactor.Plate
  1718. Part161.formFactor = Enum.FormFactor.Plate
  1719. Decal162.Parent = Part161
  1720. Decal162.Texture = "http://www.roblox.com/asset/?id=17524615"
  1721. Decal162.Face = Enum.NormalId.Top
  1722. Part163.Name = "Grass"
  1723. Part163.Parent = Model0
  1724. Part163.CFrame = CFrame.new(-148.772339, -9.92055416, 76.1769028, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1725. Part163.Orientation = Vector3.new(-90, 90, 0)
  1726. Part163.Position = Vector3.new(-148.772339, -9.92055416, 76.1769028)
  1727. Part163.Rotation = Vector3.new(-90, 0, 90)
  1728. Part163.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1729. Part163.Size = Vector3.new(9, 9.60000038, 1)
  1730. Part163.Anchored = true
  1731. Part163.BottomSurface = Enum.SurfaceType.Smooth
  1732. Part163.BrickColor = BrickColor.new("Grime")
  1733. Part163.CanCollide = false
  1734. Part163.TopSurface = Enum.SurfaceType.Smooth
  1735. Part163.brickColor = BrickColor.new("Grime")
  1736. Part163.FormFactor = Enum.FormFactor.Plate
  1737. Part163.formFactor = Enum.FormFactor.Plate
  1738. SpecialMesh164.Parent = Part163
  1739. SpecialMesh164.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1740. SpecialMesh164.Scale = Vector3.new(10, 10, 15)
  1741. SpecialMesh164.MeshType = Enum.MeshType.FileMesh
  1742. Part165.Name = "Grass"
  1743. Part165.Parent = Model0
  1744. Part165.CFrame = CFrame.new(1.22766101, -9.92055416, 0.176902995, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1745. Part165.Orientation = Vector3.new(-90, 90, 0)
  1746. Part165.Position = Vector3.new(1.22766101, -9.92055416, 0.176902995)
  1747. Part165.Rotation = Vector3.new(-90, 0, 90)
  1748. Part165.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1749. Part165.Size = Vector3.new(9, 9.60000038, 1)
  1750. Part165.Anchored = true
  1751. Part165.BottomSurface = Enum.SurfaceType.Smooth
  1752. Part165.BrickColor = BrickColor.new("Grime")
  1753. Part165.CanCollide = false
  1754. Part165.TopSurface = Enum.SurfaceType.Smooth
  1755. Part165.brickColor = BrickColor.new("Grime")
  1756. Part165.FormFactor = Enum.FormFactor.Plate
  1757. Part165.formFactor = Enum.FormFactor.Plate
  1758. SpecialMesh166.Parent = Part165
  1759. SpecialMesh166.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1760. SpecialMesh166.Scale = Vector3.new(10, 10, 15)
  1761. SpecialMesh166.MeshType = Enum.MeshType.FileMesh
  1762. Part167.Name = "Grass"
  1763. Part167.Parent = Model0
  1764. Part167.CFrame = CFrame.new(-3.77233911, -9.92055416, -14.8230963, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1765. Part167.Orientation = Vector3.new(-90, 90, 0)
  1766. Part167.Position = Vector3.new(-3.77233911, -9.92055416, -14.8230963)
  1767. Part167.Rotation = Vector3.new(-90, 0, 90)
  1768. Part167.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1769. Part167.Size = Vector3.new(9, 9.60000038, 1)
  1770. Part167.Anchored = true
  1771. Part167.BottomSurface = Enum.SurfaceType.Smooth
  1772. Part167.BrickColor = BrickColor.new("Grime")
  1773. Part167.CanCollide = false
  1774. Part167.TopSurface = Enum.SurfaceType.Smooth
  1775. Part167.brickColor = BrickColor.new("Grime")
  1776. Part167.FormFactor = Enum.FormFactor.Plate
  1777. Part167.formFactor = Enum.FormFactor.Plate
  1778. SpecialMesh168.Parent = Part167
  1779. SpecialMesh168.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1780. SpecialMesh168.Scale = Vector3.new(10, 10, 15)
  1781. SpecialMesh168.MeshType = Enum.MeshType.FileMesh
  1782. Part169.Name = "Grass"
  1783. Part169.Parent = Model0
  1784. Part169.CFrame = CFrame.new(-28.7723389, -9.92055416, -7.82309723, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1785. Part169.Orientation = Vector3.new(-90, 90, 0)
  1786. Part169.Position = Vector3.new(-28.7723389, -9.92055416, -7.82309723)
  1787. Part169.Rotation = Vector3.new(-90, 0, 90)
  1788. Part169.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1789. Part169.Size = Vector3.new(9, 9.60000038, 1)
  1790. Part169.Anchored = true
  1791. Part169.BottomSurface = Enum.SurfaceType.Smooth
  1792. Part169.BrickColor = BrickColor.new("Grime")
  1793. Part169.CanCollide = false
  1794. Part169.TopSurface = Enum.SurfaceType.Smooth
  1795. Part169.brickColor = BrickColor.new("Grime")
  1796. Part169.FormFactor = Enum.FormFactor.Plate
  1797. Part169.formFactor = Enum.FormFactor.Plate
  1798. SpecialMesh170.Parent = Part169
  1799. SpecialMesh170.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1800. SpecialMesh170.Scale = Vector3.new(10, 10, 15)
  1801. SpecialMesh170.MeshType = Enum.MeshType.FileMesh
  1802. Part171.Name = "Grass"
  1803. Part171.Parent = Model0
  1804. Part171.CFrame = CFrame.new(4.22766113, -9.92055416, 105.176903, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1805. Part171.Orientation = Vector3.new(-90, 90, 0)
  1806. Part171.Position = Vector3.new(4.22766113, -9.92055416, 105.176903)
  1807. Part171.Rotation = Vector3.new(-90, 0, 90)
  1808. Part171.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1809. Part171.Size = Vector3.new(9, 9.60000038, 1)
  1810. Part171.Anchored = true
  1811. Part171.BottomSurface = Enum.SurfaceType.Smooth
  1812. Part171.BrickColor = BrickColor.new("Grime")
  1813. Part171.CanCollide = false
  1814. Part171.TopSurface = Enum.SurfaceType.Smooth
  1815. Part171.brickColor = BrickColor.new("Grime")
  1816. Part171.FormFactor = Enum.FormFactor.Plate
  1817. Part171.formFactor = Enum.FormFactor.Plate
  1818. SpecialMesh172.Parent = Part171
  1819. SpecialMesh172.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1820. SpecialMesh172.Scale = Vector3.new(10, 10, 15)
  1821. SpecialMesh172.MeshType = Enum.MeshType.FileMesh
  1822. Part173.Name = "Grass"
  1823. Part173.Parent = Model0
  1824. Part173.CFrame = CFrame.new(102.227631, -9.92055416, 80.1769028, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1825. Part173.Orientation = Vector3.new(-90, 90, 0)
  1826. Part173.Position = Vector3.new(102.227631, -9.92055416, 80.1769028)
  1827. Part173.Rotation = Vector3.new(-90, 0, 90)
  1828. Part173.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1829. Part173.Size = Vector3.new(9, 9.60000038, 1)
  1830. Part173.Anchored = true
  1831. Part173.BottomSurface = Enum.SurfaceType.Smooth
  1832. Part173.BrickColor = BrickColor.new("Grime")
  1833. Part173.CanCollide = false
  1834. Part173.TopSurface = Enum.SurfaceType.Smooth
  1835. Part173.brickColor = BrickColor.new("Grime")
  1836. Part173.FormFactor = Enum.FormFactor.Plate
  1837. Part173.formFactor = Enum.FormFactor.Plate
  1838. SpecialMesh174.Parent = Part173
  1839. SpecialMesh174.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1840. SpecialMesh174.Scale = Vector3.new(10, 10, 15)
  1841. SpecialMesh174.MeshType = Enum.MeshType.FileMesh
  1842. Part175.Name = "Grass"
  1843. Part175.Parent = Model0
  1844. Part175.CFrame = CFrame.new(100.227631, -9.92055416, 99.1769028, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1845. Part175.Orientation = Vector3.new(-90, 90, 0)
  1846. Part175.Position = Vector3.new(100.227631, -9.92055416, 99.1769028)
  1847. Part175.Rotation = Vector3.new(-90, 0, 90)
  1848. Part175.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1849. Part175.Size = Vector3.new(9, 9.60000038, 1)
  1850. Part175.Anchored = true
  1851. Part175.BottomSurface = Enum.SurfaceType.Smooth
  1852. Part175.BrickColor = BrickColor.new("Grime")
  1853. Part175.CanCollide = false
  1854. Part175.TopSurface = Enum.SurfaceType.Smooth
  1855. Part175.brickColor = BrickColor.new("Grime")
  1856. Part175.FormFactor = Enum.FormFactor.Plate
  1857. Part175.formFactor = Enum.FormFactor.Plate
  1858. SpecialMesh176.Parent = Part175
  1859. SpecialMesh176.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1860. SpecialMesh176.Scale = Vector3.new(10, 10, 15)
  1861. SpecialMesh176.MeshType = Enum.MeshType.FileMesh
  1862. Part177.Name = "Grass"
  1863. Part177.Parent = Model0
  1864. Part177.CFrame = CFrame.new(-106.772339, -9.92055416, -48.8230972, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1865. Part177.Orientation = Vector3.new(-90, 90, 0)
  1866. Part177.Position = Vector3.new(-106.772339, -9.92055416, -48.8230972)
  1867. Part177.Rotation = Vector3.new(-90, 0, 90)
  1868. Part177.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1869. Part177.Size = Vector3.new(9, 9.60000038, 1)
  1870. Part177.Anchored = true
  1871. Part177.BottomSurface = Enum.SurfaceType.Smooth
  1872. Part177.BrickColor = BrickColor.new("Grime")
  1873. Part177.CanCollide = false
  1874. Part177.TopSurface = Enum.SurfaceType.Smooth
  1875. Part177.brickColor = BrickColor.new("Grime")
  1876. Part177.FormFactor = Enum.FormFactor.Plate
  1877. Part177.formFactor = Enum.FormFactor.Plate
  1878. SpecialMesh178.Parent = Part177
  1879. SpecialMesh178.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1880. SpecialMesh178.Scale = Vector3.new(10, 10, 15)
  1881. SpecialMesh178.MeshType = Enum.MeshType.FileMesh
  1882. Part179.Name = "Grass"
  1883. Part179.Parent = Model0
  1884. Part179.CFrame = CFrame.new(-137.772339, -9.92055416, -57.8230972, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1885. Part179.Orientation = Vector3.new(-90, 90, 0)
  1886. Part179.Position = Vector3.new(-137.772339, -9.92055416, -57.8230972)
  1887. Part179.Rotation = Vector3.new(-90, 0, 90)
  1888. Part179.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1889. Part179.Size = Vector3.new(9, 9.60000038, 1)
  1890. Part179.Anchored = true
  1891. Part179.BottomSurface = Enum.SurfaceType.Smooth
  1892. Part179.BrickColor = BrickColor.new("Grime")
  1893. Part179.CanCollide = false
  1894. Part179.TopSurface = Enum.SurfaceType.Smooth
  1895. Part179.brickColor = BrickColor.new("Grime")
  1896. Part179.FormFactor = Enum.FormFactor.Plate
  1897. Part179.formFactor = Enum.FormFactor.Plate
  1898. SpecialMesh180.Parent = Part179
  1899. SpecialMesh180.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1900. SpecialMesh180.Scale = Vector3.new(10, 10, 15)
  1901. SpecialMesh180.MeshType = Enum.MeshType.FileMesh
  1902. Part181.Name = "Grass"
  1903. Part181.Parent = Model0
  1904. Part181.CFrame = CFrame.new(-176.772339, -9.92055416, 99.1769028, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1905. Part181.Orientation = Vector3.new(-90, 90, 0)
  1906. Part181.Position = Vector3.new(-176.772339, -9.92055416, 99.1769028)
  1907. Part181.Rotation = Vector3.new(-90, 0, 90)
  1908. Part181.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1909. Part181.Size = Vector3.new(9, 9.60000038, 1)
  1910. Part181.Anchored = true
  1911. Part181.BottomSurface = Enum.SurfaceType.Smooth
  1912. Part181.BrickColor = BrickColor.new("Grime")
  1913. Part181.CanCollide = false
  1914. Part181.TopSurface = Enum.SurfaceType.Smooth
  1915. Part181.brickColor = BrickColor.new("Grime")
  1916. Part181.FormFactor = Enum.FormFactor.Plate
  1917. Part181.formFactor = Enum.FormFactor.Plate
  1918. SpecialMesh182.Parent = Part181
  1919. SpecialMesh182.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1920. SpecialMesh182.Scale = Vector3.new(10, 10, 15)
  1921. SpecialMesh182.MeshType = Enum.MeshType.FileMesh
  1922. Part183.Name = "Grass"
  1923. Part183.Parent = Model0
  1924. Part183.CFrame = CFrame.new(-100.772339, -9.92055416, 104.176903, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1925. Part183.Orientation = Vector3.new(-90, 90, 0)
  1926. Part183.Position = Vector3.new(-100.772339, -9.92055416, 104.176903)
  1927. Part183.Rotation = Vector3.new(-90, 0, 90)
  1928. Part183.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1929. Part183.Size = Vector3.new(9, 9.60000038, 1)
  1930. Part183.Anchored = true
  1931. Part183.BottomSurface = Enum.SurfaceType.Smooth
  1932. Part183.BrickColor = BrickColor.new("Grime")
  1933. Part183.CanCollide = false
  1934. Part183.TopSurface = Enum.SurfaceType.Smooth
  1935. Part183.brickColor = BrickColor.new("Grime")
  1936. Part183.FormFactor = Enum.FormFactor.Plate
  1937. Part183.formFactor = Enum.FormFactor.Plate
  1938. SpecialMesh184.Parent = Part183
  1939. SpecialMesh184.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1940. SpecialMesh184.Scale = Vector3.new(10, 10, 15)
  1941. SpecialMesh184.MeshType = Enum.MeshType.FileMesh
  1942. Part185.Name = "Grass"
  1943. Part185.Parent = Model0
  1944. Part185.CFrame = CFrame.new(-198.772339, -9.92055416, 101.176903, -0, -1, 0, -0, -0, 1, -1, -0, 0)
  1945. Part185.Orientation = Vector3.new(-90, 90, 0)
  1946. Part185.Position = Vector3.new(-198.772339, -9.92055416, 101.176903)
  1947. Part185.Rotation = Vector3.new(-90, 0, 90)
  1948. Part185.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1949. Part185.Size = Vector3.new(9, 9.60000038, 1)
  1950. Part185.Anchored = true
  1951. Part185.BottomSurface = Enum.SurfaceType.Smooth
  1952. Part185.BrickColor = BrickColor.new("Grime")
  1953. Part185.CanCollide = false
  1954. Part185.TopSurface = Enum.SurfaceType.Smooth
  1955. Part185.brickColor = BrickColor.new("Grime")
  1956. Part185.FormFactor = Enum.FormFactor.Plate
  1957. Part185.formFactor = Enum.FormFactor.Plate
  1958. SpecialMesh186.Parent = Part185
  1959. SpecialMesh186.MeshId = "http://www.roblox.com/asset/?id=1080954"
  1960. SpecialMesh186.Scale = Vector3.new(10, 10, 15)
  1961. SpecialMesh186.MeshType = Enum.MeshType.FileMesh
  1962. Part187.Parent = Model0
  1963. Part187.CFrame = CFrame.new(-162.972351, -5.62055922, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  1964. Part187.Orientation = Vector3.new(0, 90, 0)
  1965. Part187.Position = Vector3.new(-162.972351, -5.62055922, 32.1769028)
  1966. Part187.Rotation = Vector3.new(0, 90, 0)
  1967. Part187.Size = Vector3.new(1, 8.80000019, 6)
  1968. Part187.Anchored = true
  1969. Part187.BottomSurface = Enum.SurfaceType.Smooth
  1970. Part187.TopSurface = Enum.SurfaceType.Smooth
  1971. Part187.FormFactor = Enum.FormFactor.Plate
  1972. Part187.formFactor = Enum.FormFactor.Plate
  1973. Part188.Parent = Model0
  1974. Part188.CFrame = CFrame.new(-197.472351, -4.82055616, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  1975. Part188.Orientation = Vector3.new(0, 90, 0)
  1976. Part188.Position = Vector3.new(-197.472351, -4.82055616, 32.1769028)
  1977. Part188.Rotation = Vector3.new(0, 90, 0)
  1978. Part188.Size = Vector3.new(1, 7.20000029, 9)
  1979. Part188.Anchored = true
  1980. Part188.BottomSurface = Enum.SurfaceType.Smooth
  1981. Part188.TopSurface = Enum.SurfaceType.Smooth
  1982. Part188.FormFactor = Enum.FormFactor.Plate
  1983. Part188.formFactor = Enum.FormFactor.Plate
  1984. Part189.Parent = Model0
  1985. Part189.CFrame = CFrame.new(-151.472351, -5.62055922, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  1986. Part189.Orientation = Vector3.new(0, 90, 0)
  1987. Part189.Position = Vector3.new(-151.472351, -5.62055922, 32.1769028)
  1988. Part189.Rotation = Vector3.new(0, 90, 0)
  1989. Part189.Size = Vector3.new(1, 8.80000019, 7)
  1990. Part189.Anchored = true
  1991. Part189.BottomSurface = Enum.SurfaceType.Smooth
  1992. Part189.TopSurface = Enum.SurfaceType.Smooth
  1993. Part189.FormFactor = Enum.FormFactor.Plate
  1994. Part189.formFactor = Enum.FormFactor.Plate
  1995. Part190.Parent = Model0
  1996. Part190.CFrame = CFrame.new(-170.472351, -4.82055616, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  1997. Part190.Orientation = Vector3.new(0, 90, 0)
  1998. Part190.Position = Vector3.new(-170.472351, -4.82055616, 32.1769028)
  1999. Part190.Rotation = Vector3.new(0, 90, 0)
  2000. Part190.Size = Vector3.new(1, 7.20000029, 9)
  2001. Part190.Anchored = true
  2002. Part190.BottomSurface = Enum.SurfaceType.Smooth
  2003. Part190.TopSurface = Enum.SurfaceType.Smooth
  2004. Part190.FormFactor = Enum.FormFactor.Plate
  2005. Part190.formFactor = Enum.FormFactor.Plate
  2006. Part191.Parent = Model0
  2007. Part191.CFrame = CFrame.new(-119.972351, 0.979445994, -24.8230972, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2008. Part191.Orientation = Vector3.new(0, -90, 0)
  2009. Part191.Position = Vector3.new(-119.972351, 0.979445994, -24.8230972)
  2010. Part191.Rotation = Vector3.new(0, -90, 0)
  2011. Part191.Color = Color3.new(0.470588, 0.564706, 0.509804)
  2012. Part191.Size = Vector3.new(33, 22.8000011, 60)
  2013. Part191.Anchored = true
  2014. Part191.BottomSurface = Enum.SurfaceType.Smooth
  2015. Part191.BrickColor = BrickColor.new("Sand green")
  2016. Part191.TopSurface = Enum.SurfaceType.Smooth
  2017. Part191.brickColor = BrickColor.new("Sand green")
  2018. Part191.FormFactor = Enum.FormFactor.Plate
  2019. Part191.formFactor = Enum.FormFactor.Plate
  2020. Part192.Parent = Model0
  2021. Part192.CFrame = CFrame.new(-20.9723511, 37.9794464, 41.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2022. Part192.Orientation = Vector3.new(0, -180, 0)
  2023. Part192.Position = Vector3.new(-20.9723511, 37.9794464, 41.1769028)
  2024. Part192.Rotation = Vector3.new(180, 0, -180)
  2025. Part192.Transparency = 1
  2026. Part192.Size = Vector3.new(18, 10.4000006, 1)
  2027. Part192.Anchored = true
  2028. Part192.BottomSurface = Enum.SurfaceType.Smooth
  2029. Part192.TopSurface = Enum.SurfaceType.Smooth
  2030. Part192.FormFactor = Enum.FormFactor.Plate
  2031. Part192.formFactor = Enum.FormFactor.Plate
  2032. Decal193.Parent = Part192
  2033. Decal193.Texture = "http://www.roblox.com/asset/?id=25751548"
  2034. Part194.Parent = Model0
  2035. Part194.CFrame = CFrame.new(-161.972351, 3.97944593, 37.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2036. Part194.Orientation = Vector3.new(0, -90, 0)
  2037. Part194.Position = Vector3.new(-161.972351, 3.97944593, 37.1769028)
  2038. Part194.Rotation = Vector3.new(0, -90, 0)
  2039. Part194.Size = Vector3.new(1, 5.5999999, 16)
  2040. Part194.Anchored = true
  2041. Part194.TopSurface = Enum.SurfaceType.Smooth
  2042. Part194.FormFactor = Enum.FormFactor.Plate
  2043. Part194.formFactor = Enum.FormFactor.Plate
  2044. BlockMesh195.Parent = Part194
  2045. Decal196.Parent = Part194
  2046. Decal196.Texture = "http://www.roblox.com/asset/?id=8750653"
  2047. Decal196.Face = Enum.NormalId.Left
  2048. Part197.Parent = Model0
  2049. Part197.CFrame = CFrame.new(-169.472351, 0.179443002, 37.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2050. Part197.Orientation = Vector3.new(0, -90, 0)
  2051. Part197.Position = Vector3.new(-169.472351, 0.179443002, 37.1769028)
  2052. Part197.Rotation = Vector3.new(0, -90, 0)
  2053. Part197.Size = Vector3.new(1, 2, 1)
  2054. Part197.Anchored = true
  2055. Part197.TopSurface = Enum.SurfaceType.Smooth
  2056. Part197.FormFactor = Enum.FormFactor.Plate
  2057. Part197.formFactor = Enum.FormFactor.Plate
  2058. BlockMesh198.Parent = Part197
  2059. Part199.Parent = Model0
  2060. Part199.CFrame = CFrame.new(15.027648, 25.1794434, -68.8230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2061. Part199.Position = Vector3.new(15.027648, 25.1794434, -68.8230972)
  2062. Part199.Transparency = 1
  2063. Part199.Size = Vector3.new(18, 10.4000006, 1)
  2064. Part199.Anchored = true
  2065. Part199.BottomSurface = Enum.SurfaceType.Smooth
  2066. Part199.TopSurface = Enum.SurfaceType.Smooth
  2067. Part199.FormFactor = Enum.FormFactor.Plate
  2068. Part199.formFactor = Enum.FormFactor.Plate
  2069. Decal200.Parent = Part199
  2070. Decal200.Texture = "http://www.roblox.com/asset/?id=25751731"
  2071. Part201.Parent = Model0
  2072. Part201.CFrame = CFrame.new(24.5276489, 25.1794434, -59.3230972, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2073. Part201.Orientation = Vector3.new(0, -90, 0)
  2074. Part201.Position = Vector3.new(24.5276489, 25.1794434, -59.3230972)
  2075. Part201.Rotation = Vector3.new(0, -90, 0)
  2076. Part201.Transparency = 1
  2077. Part201.Size = Vector3.new(18, 10.4000006, 1)
  2078. Part201.Anchored = true
  2079. Part201.BottomSurface = Enum.SurfaceType.Smooth
  2080. Part201.TopSurface = Enum.SurfaceType.Smooth
  2081. Part201.FormFactor = Enum.FormFactor.Plate
  2082. Part201.formFactor = Enum.FormFactor.Plate
  2083. Decal202.Parent = Part201
  2084. Decal202.Texture = "http://www.roblox.com/asset/?id=25751548"
  2085. Part203.Parent = Model0
  2086. Part203.CFrame = CFrame.new(-11.4723501, 37.9794464, 31.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2087. Part203.Orientation = Vector3.new(0, -90, 0)
  2088. Part203.Position = Vector3.new(-11.4723501, 37.9794464, 31.6769028)
  2089. Part203.Rotation = Vector3.new(0, -90, 0)
  2090. Part203.Transparency = 1
  2091. Part203.Size = Vector3.new(18, 10.4000006, 1)
  2092. Part203.Anchored = true
  2093. Part203.BottomSurface = Enum.SurfaceType.Smooth
  2094. Part203.TopSurface = Enum.SurfaceType.Smooth
  2095. Part203.FormFactor = Enum.FormFactor.Plate
  2096. Part203.formFactor = Enum.FormFactor.Plate
  2097. Decal204.Parent = Part203
  2098. Decal204.Texture = "http://www.roblox.com/asset/?id=25751731"
  2099. Part205.Parent = Model0
  2100. Part205.CFrame = CFrame.new(-34.9723511, 7.77944899, -79.8230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2101. Part205.Position = Vector3.new(-34.9723511, 7.77944899, -79.8230972)
  2102. Part205.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2103. Part205.Size = Vector3.new(30, 36.4000015, 35)
  2104. Part205.Anchored = true
  2105. Part205.BottomSurface = Enum.SurfaceType.Smooth
  2106. Part205.BrickColor = BrickColor.new("Dark stone grey")
  2107. Part205.TopSurface = Enum.SurfaceType.Smooth
  2108. Part205.brickColor = BrickColor.new("Dark stone grey")
  2109. Part205.FormFactor = Enum.FormFactor.Plate
  2110. Part205.formFactor = Enum.FormFactor.Plate
  2111. Part206.Parent = Model0
  2112. Part206.CFrame = CFrame.new(-34.9723511, -2.62055993, -37.3230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2113. Part206.Position = Vector3.new(-34.9723511, -2.62055993, -37.3230972)
  2114. Part206.Size = Vector3.new(30, 15.6000004, 44)
  2115. Part206.Anchored = true
  2116. Part206.BottomSurface = Enum.SurfaceType.Smooth
  2117. Part206.TopSurface = Enum.SurfaceType.Smooth
  2118. Part206.FormFactor = Enum.FormFactor.Plate
  2119. Part206.formFactor = Enum.FormFactor.Plate
  2120. Part207.Parent = Model0
  2121. Part207.CFrame = CFrame.new(-151.472351, -8.82055569, 42.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  2122. Part207.Orientation = Vector3.new(0, 90, 0)
  2123. Part207.Position = Vector3.new(-151.472351, -8.82055569, 42.6769028)
  2124. Part207.Rotation = Vector3.new(0, 90, 0)
  2125. Part207.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2126. Part207.Size = Vector3.new(4, 2.4000001, 7)
  2127. Part207.Anchored = true
  2128. Part207.BottomSurface = Enum.SurfaceType.Smooth
  2129. Part207.BrickColor = BrickColor.new("Dark stone grey")
  2130. Part207.TopSurface = Enum.SurfaceType.Smooth
  2131. Part207.brickColor = BrickColor.new("Dark stone grey")
  2132. Part207.FormFactor = Enum.FormFactor.Plate
  2133. Part207.formFactor = Enum.FormFactor.Plate
  2134. Part208.Parent = Model0
  2135. Part208.CFrame = CFrame.new(68.8276367, 34.5794373, 27.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2136. Part208.Orientation = Vector3.new(0, -180, -90)
  2137. Part208.Position = Vector3.new(68.8276367, 34.5794373, 27.6769028)
  2138. Part208.Rotation = Vector3.new(180, 0, 90)
  2139. Part208.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2140. Part208.Size = Vector3.new(8, 0.400000006, 12)
  2141. Part208.Anchored = true
  2142. Part208.BottomSurface = Enum.SurfaceType.Smooth
  2143. Part208.BrickColor = BrickColor.new("Black")
  2144. Part208.CanCollide = false
  2145. Part208.Reflectance = 0.5
  2146. Part208.TopSurface = Enum.SurfaceType.Smooth
  2147. Part208.brickColor = BrickColor.new("Black")
  2148. Part208.FormFactor = Enum.FormFactor.Plate
  2149. Part208.formFactor = Enum.FormFactor.Plate
  2150. Part209.Parent = Model0
  2151. Part209.CFrame = CFrame.new(-108.472351, 15.5794363, -79.3230972, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2152. Part209.Orientation = Vector3.new(0, -180, 0)
  2153. Part209.Position = Vector3.new(-108.472351, 15.5794363, -79.3230972)
  2154. Part209.Rotation = Vector3.new(180, 0, -180)
  2155. Part209.Size = Vector3.new(39, 52, 48)
  2156. Part209.Anchored = true
  2157. Part209.BottomSurface = Enum.SurfaceType.Smooth
  2158. Part209.TopSurface = Enum.SurfaceType.Smooth
  2159. Part209.FormFactor = Enum.FormFactor.Plate
  2160. Part209.formFactor = Enum.FormFactor.Plate
  2161. Part210.Parent = Model0
  2162. Part210.CFrame = CFrame.new(-119.972351, 12.579422, 13.6769018, -0.400894642, 0.143368214, 0.904836476, 0, 0.987678885, -0.15649429, -0.916124165, -0.0627377257, -0.395955175)
  2163. Part210.Orientation = Vector3.new(9, 113.629997, 0)
  2164. Part210.Position = Vector3.new(-119.972351, 12.579422, 13.6769018)
  2165. Part210.Rotation = Vector3.new(158.429993, 64.8000031, -160.320007)
  2166. Part210.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2167. Part210.Size = Vector3.new(52, 0.400000006, 2)
  2168. Part210.Anchored = true
  2169. Part210.BottomSurface = Enum.SurfaceType.Smooth
  2170. Part210.BrickColor = BrickColor.new("Brown")
  2171. Part210.TopSurface = Enum.SurfaceType.Smooth
  2172. Part210.brickColor = BrickColor.new("Brown")
  2173. Part210.FormFactor = Enum.FormFactor.Plate
  2174. Part210.formFactor = Enum.FormFactor.Plate
  2175. Part211.Parent = Model0
  2176. Part211.CFrame = CFrame.new(64.5276489, -10.8205557, -17.3230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2177. Part211.Position = Vector3.new(64.5276489, -10.8205557, -17.3230972)
  2178. Part211.Size = Vector3.new(5, 0.800000012, 190)
  2179. Part211.Anchored = true
  2180. Part211.BottomSurface = Enum.SurfaceType.Smooth
  2181. Part211.TopSurface = Enum.SurfaceType.Smooth
  2182. Part211.FormFactor = Enum.FormFactor.Plate
  2183. Part211.formFactor = Enum.FormFactor.Plate
  2184. Fire212.Parent = Part211
  2185. Fire212.Color = Color3.new(1, 0.678431, 0)
  2186. Fire212.Enabled = false
  2187. Fire212.Size = 30
  2188. Fire212.Heat = 25
  2189. Fire212.SecondaryColor = Color3.new(1, 0, 0)
  2190. Fire212.size = 30
  2191. Script213.Name = "Spread"
  2192. Script213.Parent = Fire212
  2193. table.insert(cors,sandbox(Script213,function()
  2194. function Spread(part)
  2195. check = part:findFirstChild("Fire")
  2196. if check == nil then
  2197. script.Parent:Clone().Parent = part
  2198.  
  2199. elseif check ~= nil then
  2200. check.Size = check.Size + 1000000
  2201. check.Heat = check.Heat +1000000
  2202. end
  2203. end
  2204.  
  2205.  
  2206. script.Parent.Parent.Touched:connect(Spread)
  2207.  
  2208. end))
  2209. Part214.Parent = Model0
  2210. Part214.CFrame = CFrame.new(49.5276489, -11.0205603, -17.3230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2211. Part214.Position = Vector3.new(49.5276489, -11.0205603, -17.3230972)
  2212. Part214.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2213. Part214.Size = Vector3.new(25, 0.400000006, 190)
  2214. Part214.Anchored = true
  2215. Part214.BottomSurface = Enum.SurfaceType.Smooth
  2216. Part214.BrickColor = BrickColor.new("Black")
  2217. Part214.Locked = true
  2218. Part214.TopSurface = Enum.SurfaceType.Smooth
  2219. Part214.brickColor = BrickColor.new("Black")
  2220. Part214.FormFactor = Enum.FormFactor.Plate
  2221. Part214.formFactor = Enum.FormFactor.Plate
  2222. Fire215.Parent = Part214
  2223. Fire215.Color = Color3.new(1, 0.678431, 0)
  2224. Fire215.Enabled = false
  2225. Fire215.Size = 30
  2226. Fire215.Heat = 25
  2227. Fire215.SecondaryColor = Color3.new(1, 0, 0)
  2228. Fire215.size = 30
  2229. Script216.Name = "Spread"
  2230. Script216.Parent = Fire215
  2231. table.insert(cors,sandbox(Script216,function()
  2232. function Spread(part)
  2233. check = part:findFirstChild("Fire")
  2234. if check == nil then
  2235. script.Parent:Clone().Parent = part
  2236.  
  2237. elseif check ~= nil then
  2238. check.Size = check.Size + 1000000
  2239. check.Heat = check.Heat +1000000
  2240. end
  2241. end
  2242.  
  2243.  
  2244. script.Parent.Parent.Touched:connect(Spread)
  2245.  
  2246. end))
  2247. Part217.Parent = Model0
  2248. Part217.CFrame = CFrame.new(34.5276489, -10.8205557, -29.8230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2249. Part217.Position = Vector3.new(34.5276489, -10.8205557, -29.8230972)
  2250. Part217.Size = Vector3.new(5, 0.800000012, 165)
  2251. Part217.Anchored = true
  2252. Part217.BottomSurface = Enum.SurfaceType.Smooth
  2253. Part217.Locked = true
  2254. Part217.TopSurface = Enum.SurfaceType.Smooth
  2255. Part217.FormFactor = Enum.FormFactor.Plate
  2256. Part217.formFactor = Enum.FormFactor.Plate
  2257. Part218.Parent = Model0
  2258. Part218.CFrame = CFrame.new(-9.97235012, -10.8205557, -32.3230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2259. Part218.Position = Vector3.new(-9.97235012, -10.8205557, -32.3230972)
  2260. Part218.Color = Color3.new(0.152941, 0.27451, 0.176471)
  2261. Part218.Size = Vector3.new(84, 0.800000012, 160)
  2262. Part218.Anchored = true
  2263. Part218.BottomSurface = Enum.SurfaceType.Smooth
  2264. Part218.BrickColor = BrickColor.new("Earth green")
  2265. Part218.Locked = true
  2266. Part218.TopSurface = Enum.SurfaceType.Smooth
  2267. Part218.brickColor = BrickColor.new("Earth green")
  2268. Part218.FormFactor = Enum.FormFactor.Plate
  2269. Part218.formFactor = Enum.FormFactor.Plate
  2270. Part219.Parent = Model0
  2271. Part219.CFrame = CFrame.new(-154.472351, 0.179443002, 37.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2272. Part219.Orientation = Vector3.new(0, -90, 0)
  2273. Part219.Position = Vector3.new(-154.472351, 0.179443002, 37.1769028)
  2274. Part219.Rotation = Vector3.new(0, -90, 0)
  2275. Part219.Size = Vector3.new(1, 2, 1)
  2276. Part219.Anchored = true
  2277. Part219.TopSurface = Enum.SurfaceType.Smooth
  2278. Part219.FormFactor = Enum.FormFactor.Plate
  2279. Part219.formFactor = Enum.FormFactor.Plate
  2280. BlockMesh220.Parent = Part219
  2281. Part221.Parent = Model0
  2282. Part221.CFrame = CFrame.new(-153.472351, -8.82055569, 49.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2283. Part221.Orientation = Vector3.new(0, -180, 0)
  2284. Part221.Position = Vector3.new(-153.472351, -8.82055569, 49.1769028)
  2285. Part221.Rotation = Vector3.new(180, 0, -180)
  2286. Part221.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2287. Part221.Size = Vector3.new(3, 2.4000001, 9)
  2288. Part221.Anchored = true
  2289. Part221.BottomSurface = Enum.SurfaceType.Smooth
  2290. Part221.BrickColor = BrickColor.new("Dark stone grey")
  2291. Part221.TopSurface = Enum.SurfaceType.Smooth
  2292. Part221.brickColor = BrickColor.new("Dark stone grey")
  2293. Part221.FormFactor = Enum.FormFactor.Plate
  2294. Part221.formFactor = Enum.FormFactor.Plate
  2295. Part222.Parent = Model0
  2296. Part222.CFrame = CFrame.new(-174.972351, -1.02056098, 49.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2297. Part222.Orientation = Vector3.new(0, -90, 0)
  2298. Part222.Position = Vector3.new(-174.972351, -1.02056098, 49.6769028)
  2299. Part222.Rotation = Vector3.new(0, -90, 0)
  2300. Part222.Size = Vector3.new(36, 0.400000006, 56)
  2301. Part222.Anchored = true
  2302. Part222.BottomSurface = Enum.SurfaceType.Smooth
  2303. Part222.TopSurface = Enum.SurfaceType.Smooth
  2304. Part222.FormFactor = Enum.FormFactor.Plate
  2305. Part222.formFactor = Enum.FormFactor.Plate
  2306. Part223.Parent = Model0
  2307. Part223.CFrame = CFrame.new(41.0276489, -10.2205582, 101.176903, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2308. Part223.Orientation = Vector3.new(0, -90, 0)
  2309. Part223.Position = Vector3.new(41.0276489, -10.2205582, 101.176903)
  2310. Part223.Rotation = Vector3.new(0, -90, 0)
  2311. Part223.Size = Vector3.new(33, 0.400000006, 56)
  2312. Part223.Anchored = true
  2313. Part223.BottomSurface = Enum.SurfaceType.Smooth
  2314. Part223.TopSurface = Enum.SurfaceType.Smooth
  2315. Part223.FormFactor = Enum.FormFactor.Plate
  2316. Part223.formFactor = Enum.FormFactor.Plate
  2317. Part224.Parent = Model0
  2318. Part224.CFrame = CFrame.new(10.527648, -2.62055993, -91.3230972, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2319. Part224.Orientation = Vector3.new(0, -90, 0)
  2320. Part224.Position = Vector3.new(10.527648, -2.62055993, -91.3230972)
  2321. Part224.Rotation = Vector3.new(0, -90, 0)
  2322. Part224.Size = Vector3.new(30, 15.6000004, 39)
  2323. Part224.Anchored = true
  2324. Part224.BottomSurface = Enum.SurfaceType.Smooth
  2325. Part224.TopSurface = Enum.SurfaceType.Smooth
  2326. Part224.FormFactor = Enum.FormFactor.Plate
  2327. Part224.formFactor = Enum.FormFactor.Plate
  2328. Part225.Parent = Model0
  2329. Part225.CFrame = CFrame.new(80.0276489, -10.2205582, 89.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2330. Part225.Orientation = Vector3.new(0, -180, 0)
  2331. Part225.Position = Vector3.new(80.0276489, -10.2205582, 89.1769028)
  2332. Part225.Rotation = Vector3.new(180, 0, -180)
  2333. Part225.Size = Vector3.new(22, 0.400000006, 57)
  2334. Part225.Anchored = true
  2335. Part225.BottomSurface = Enum.SurfaceType.Smooth
  2336. Part225.TopSurface = Enum.SurfaceType.Smooth
  2337. Part225.FormFactor = Enum.FormFactor.Plate
  2338. Part225.formFactor = Enum.FormFactor.Plate
  2339. Part226.Parent = Model0
  2340. Part226.CFrame = CFrame.new(88.5276489, -10.8205557, -14.8230963, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2341. Part226.Position = Vector3.new(88.5276489, -10.8205557, -14.8230963)
  2342. Part226.Color = Color3.new(0.152941, 0.27451, 0.176471)
  2343. Part226.Size = Vector3.new(43, 0.800000012, 195)
  2344. Part226.Anchored = true
  2345. Part226.BottomSurface = Enum.SurfaceType.Smooth
  2346. Part226.BrickColor = BrickColor.new("Earth green")
  2347. Part226.TopSurface = Enum.SurfaceType.Smooth
  2348. Part226.brickColor = BrickColor.new("Earth green")
  2349. Part226.FormFactor = Enum.FormFactor.Plate
  2350. Part226.formFactor = Enum.FormFactor.Plate
  2351. Fire227.Parent = Part226
  2352. Fire227.Color = Color3.new(1, 0.678431, 0)
  2353. Fire227.Enabled = false
  2354. Fire227.Size = 30
  2355. Fire227.Heat = 25
  2356. Fire227.SecondaryColor = Color3.new(1, 0, 0)
  2357. Fire227.size = 30
  2358. Script228.Name = "Spread"
  2359. Script228.Parent = Fire227
  2360. table.insert(cors,sandbox(Script228,function()
  2361. function Spread(part)
  2362. check = part:findFirstChild("Fire")
  2363. if check == nil then
  2364. script.Parent:Clone().Parent = part
  2365.  
  2366. elseif check ~= nil then
  2367. check.Size = check.Size + 1000000
  2368. check.Heat = check.Heat +1000000
  2369. end
  2370. end
  2371.  
  2372.  
  2373. script.Parent.Parent.Touched:connect(Spread)
  2374.  
  2375. end))
  2376. Part229.Parent = Model0
  2377. Part229.CFrame = CFrame.new(-148.972351, -10.8205557, 77.6769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2378. Part229.Position = Vector3.new(-148.972351, -10.8205557, 77.6769028)
  2379. Part229.Color = Color3.new(0.152941, 0.27451, 0.176471)
  2380. Part229.Size = Vector3.new(124, 0.800000012, 96)
  2381. Part229.Anchored = true
  2382. Part229.BottomSurface = Enum.SurfaceType.Smooth
  2383. Part229.BrickColor = BrickColor.new("Earth green")
  2384. Part229.TopSurface = Enum.SurfaceType.Smooth
  2385. Part229.brickColor = BrickColor.new("Earth green")
  2386. Part229.FormFactor = Enum.FormFactor.Plate
  2387. Part229.formFactor = Enum.FormFactor.Plate
  2388. Part230.Parent = Model0
  2389. Part230.CFrame = CFrame.new(8.52764797, 4.77944899, -48.3230972, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2390. Part230.Orientation = Vector3.new(0, -180, 0)
  2391. Part230.Position = Vector3.new(8.52764797, 4.77944899, -48.3230972)
  2392. Part230.Rotation = Vector3.new(180, 0, -180)
  2393. Part230.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2394. Part230.Size = Vector3.new(43, 30.3999996, 50)
  2395. Part230.Anchored = true
  2396. Part230.BottomSurface = Enum.SurfaceType.Smooth
  2397. Part230.BrickColor = BrickColor.new("Cool yellow")
  2398. Part230.TopSurface = Enum.SurfaceType.Smooth
  2399. Part230.brickColor = BrickColor.new("Cool yellow")
  2400. Part230.FormFactor = Enum.FormFactor.Plate
  2401. Part230.formFactor = Enum.FormFactor.Plate
  2402. Part231.Parent = Model0
  2403. Part231.CFrame = CFrame.new(15.027648, -3.02056098, 26.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2404. Part231.Orientation = Vector3.new(0, -180, 0)
  2405. Part231.Position = Vector3.new(15.027648, -3.02056098, 26.1769028)
  2406. Part231.Rotation = Vector3.new(180, 0, -180)
  2407. Part231.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2408. Part231.Size = Vector3.new(30, 14.8000002, 39)
  2409. Part231.Anchored = true
  2410. Part231.BottomSurface = Enum.SurfaceType.Smooth
  2411. Part231.BrickColor = BrickColor.new("Dark stone grey")
  2412. Part231.TopSurface = Enum.SurfaceType.Smooth
  2413. Part231.brickColor = BrickColor.new("Dark stone grey")
  2414. Part231.FormFactor = Enum.FormFactor.Plate
  2415. Part231.formFactor = Enum.FormFactor.Plate
  2416. Part232.Parent = Model0
  2417. Part232.CFrame = CFrame.new(-146.472351, -11.0205603, 12.1769018, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2418. Part232.Orientation = Vector3.new(0, -90, 0)
  2419. Part232.Position = Vector3.new(-146.472351, -11.0205603, 12.1769018)
  2420. Part232.Rotation = Vector3.new(0, -90, 0)
  2421. Part232.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2422. Part232.Size = Vector3.new(25, 0.400000006, 129)
  2423. Part232.Anchored = true
  2424. Part232.BottomSurface = Enum.SurfaceType.Smooth
  2425. Part232.BrickColor = BrickColor.new("Black")
  2426. Part232.TopSurface = Enum.SurfaceType.Smooth
  2427. Part232.brickColor = BrickColor.new("Black")
  2428. Part232.FormFactor = Enum.FormFactor.Plate
  2429. Part232.formFactor = Enum.FormFactor.Plate
  2430. Part233.Parent = Model0
  2431. Part233.CFrame = CFrame.new(70.2276611, -6.72081709, 68.1769028, 0, -1, 0, -0.346245021, 0, 0.938144147, -0.938144147, 0, -0.346245021)
  2432. Part233.Orientation = Vector3.new(-69.7399979, 180, -90)
  2433. Part233.Position = Vector3.new(70.2276611, -6.72081709, 68.1769028)
  2434. Part233.Rotation = Vector3.new(-110.260002, 0, 90)
  2435. Part233.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2436. Part233.Size = Vector3.new(9, 0.400000006, 1)
  2437. Part233.Anchored = true
  2438. Part233.BottomSurface = Enum.SurfaceType.Smooth
  2439. Part233.BrickColor = BrickColor.new("Brown")
  2440. Part233.TopSurface = Enum.SurfaceType.Smooth
  2441. Part233.brickColor = BrickColor.new("Brown")
  2442. Part233.FormFactor = Enum.FormFactor.Plate
  2443. Part233.formFactor = Enum.FormFactor.Plate
  2444. Part234.Parent = Model0
  2445. Part234.CFrame = CFrame.new(-34.9723511, 0.979445994, 101.176903, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2446. Part234.Orientation = Vector3.new(0, -90, 0)
  2447. Part234.Position = Vector3.new(-34.9723511, 0.979445994, 101.176903)
  2448. Part234.Rotation = Vector3.new(0, -90, 0)
  2449. Part234.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2450. Part234.Size = Vector3.new(33, 22.8000011, 60)
  2451. Part234.Anchored = true
  2452. Part234.BottomSurface = Enum.SurfaceType.Smooth
  2453. Part234.BrickColor = BrickColor.new("Dark stone grey")
  2454. Part234.TopSurface = Enum.SurfaceType.Smooth
  2455. Part234.brickColor = BrickColor.new("Dark stone grey")
  2456. Part234.FormFactor = Enum.FormFactor.Plate
  2457. Part234.formFactor = Enum.FormFactor.Plate
  2458. Part235.Parent = Model0
  2459. Part235.CFrame = CFrame.new(-28.4723511, 11.1794424, 21.6769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2460. Part235.Orientation = Vector3.new(0, -180, 0)
  2461. Part235.Position = Vector3.new(-28.4723511, 11.1794424, 21.6769028)
  2462. Part235.Rotation = Vector3.new(180, 0, -180)
  2463. Part235.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2464. Part235.Size = Vector3.new(43, 43.2000008, 48)
  2465. Part235.Anchored = true
  2466. Part235.BottomSurface = Enum.SurfaceType.Smooth
  2467. Part235.BrickColor = BrickColor.new("Sand red")
  2468. Part235.TopSurface = Enum.SurfaceType.Smooth
  2469. Part235.brickColor = BrickColor.new("Sand red")
  2470. Part235.FormFactor = Enum.FormFactor.Plate
  2471. Part235.formFactor = Enum.FormFactor.Plate
  2472. Part236.Parent = Model0
  2473. Part236.CFrame = CFrame.new(-148.972351, -10.8205557, -58.8230972, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  2474. Part236.Orientation = Vector3.new(0, 90, 0)
  2475. Part236.Position = Vector3.new(-148.972351, -10.8205557, -58.8230972)
  2476. Part236.Rotation = Vector3.new(0, 90, 0)
  2477. Part236.Color = Color3.new(0.152941, 0.27451, 0.176471)
  2478. Part236.Size = Vector3.new(107, 0.800000012, 124)
  2479. Part236.Anchored = true
  2480. Part236.BottomSurface = Enum.SurfaceType.Smooth
  2481. Part236.BrickColor = BrickColor.new("Earth green")
  2482. Part236.TopSurface = Enum.SurfaceType.Smooth
  2483. Part236.brickColor = BrickColor.new("Earth green")
  2484. Part236.FormFactor = Enum.FormFactor.Plate
  2485. Part236.formFactor = Enum.FormFactor.Plate
  2486. Part237.Parent = Model0
  2487. Part237.CFrame = CFrame.new(-9.97235012, -11.0205603, 65.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  2488. Part237.Orientation = Vector3.new(0, 90, 0)
  2489. Part237.Position = Vector3.new(-9.97235012, -11.0205603, 65.1769028)
  2490. Part237.Rotation = Vector3.new(0, 90, 0)
  2491. Part237.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2492. Part237.Size = Vector3.new(25, 0.400000006, 94)
  2493. Part237.Anchored = true
  2494. Part237.BottomSurface = Enum.SurfaceType.Smooth
  2495. Part237.BrickColor = BrickColor.new("Black")
  2496. Part237.TopSurface = Enum.SurfaceType.Smooth
  2497. Part237.brickColor = BrickColor.new("Black")
  2498. Part237.FormFactor = Enum.FormFactor.Plate
  2499. Part237.formFactor = Enum.FormFactor.Plate
  2500. Part238.Parent = Model0
  2501. Part238.CFrame = CFrame.new(-69.4723511, -11.0205603, -17.3230972, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2502. Part238.Orientation = Vector3.new(0, -180, 0)
  2503. Part238.Position = Vector3.new(-69.4723511, -11.0205603, -17.3230972)
  2504. Part238.Rotation = Vector3.new(180, 0, -180)
  2505. Part238.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2506. Part238.Size = Vector3.new(25, 0.400000006, 190)
  2507. Part238.Anchored = true
  2508. Part238.BottomSurface = Enum.SurfaceType.Smooth
  2509. Part238.BrickColor = BrickColor.new("Black")
  2510. Part238.TopSurface = Enum.SurfaceType.Smooth
  2511. Part238.brickColor = BrickColor.new("Black")
  2512. Part238.FormFactor = Enum.FormFactor.Plate
  2513. Part238.formFactor = Enum.FormFactor.Plate
  2514. Part239.Parent = Model0
  2515. Part239.CFrame = CFrame.new(-54.4723511, -10.8205557, -32.3230972, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2516. Part239.Position = Vector3.new(-54.4723511, -10.8205557, -32.3230972)
  2517. Part239.Size = Vector3.new(5, 0.800000012, 160)
  2518. Part239.Anchored = true
  2519. Part239.BottomSurface = Enum.SurfaceType.Smooth
  2520. Part239.TopSurface = Enum.SurfaceType.Smooth
  2521. Part239.FormFactor = Enum.FormFactor.Plate
  2522. Part239.formFactor = Enum.FormFactor.Plate
  2523. Part240.Parent = Model0
  2524. Part240.CFrame = CFrame.new(-12.4723501, -10.8205557, 50.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  2525. Part240.Orientation = Vector3.new(0, 90, 0)
  2526. Part240.Position = Vector3.new(-12.4723501, -10.8205557, 50.1769028)
  2527. Part240.Rotation = Vector3.new(0, 90, 0)
  2528. Part240.Size = Vector3.new(5, 0.800000012, 89)
  2529. Part240.Anchored = true
  2530. Part240.BottomSurface = Enum.SurfaceType.Smooth
  2531. Part240.TopSurface = Enum.SurfaceType.Smooth
  2532. Part240.FormFactor = Enum.FormFactor.Plate
  2533. Part240.formFactor = Enum.FormFactor.Plate
  2534. Part241.Parent = Model0
  2535. Part241.CFrame = CFrame.new(-7.47235107, -10.8205557, 80.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  2536. Part241.Orientation = Vector3.new(0, 90, 0)
  2537. Part241.Position = Vector3.new(-7.47235107, -10.8205557, 80.1769028)
  2538. Part241.Rotation = Vector3.new(0, 90, 0)
  2539. Part241.Size = Vector3.new(5, 0.800000012, 149)
  2540. Part241.Anchored = true
  2541. Part241.BottomSurface = Enum.SurfaceType.Smooth
  2542. Part241.TopSurface = Enum.SurfaceType.Smooth
  2543. Part241.FormFactor = Enum.FormFactor.Plate
  2544. Part241.formFactor = Enum.FormFactor.Plate
  2545. Part242.Parent = Model0
  2546. Part242.CFrame = CFrame.new(-84.4723511, -10.8205557, 53.6769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2547. Part242.Orientation = Vector3.new(0, -180, 0)
  2548. Part242.Position = Vector3.new(-84.4723511, -10.8205557, 53.6769028)
  2549. Part242.Rotation = Vector3.new(180, 0, -180)
  2550. Part242.Size = Vector3.new(5, 0.800000012, 58)
  2551. Part242.Anchored = true
  2552. Part242.BottomSurface = Enum.SurfaceType.Smooth
  2553. Part242.TopSurface = Enum.SurfaceType.Smooth
  2554. Part242.FormFactor = Enum.FormFactor.Plate
  2555. Part242.formFactor = Enum.FormFactor.Plate
  2556. Part243.Parent = Model0
  2557. Part243.CFrame = CFrame.new(-84.4723511, -10.8205557, -56.3230972, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2558. Part243.Orientation = Vector3.new(0, -180, 0)
  2559. Part243.Position = Vector3.new(-84.4723511, -10.8205557, -56.3230972)
  2560. Part243.Rotation = Vector3.new(180, 0, -180)
  2561. Part243.Size = Vector3.new(5, 0.800000012, 112)
  2562. Part243.Anchored = true
  2563. Part243.BottomSurface = Enum.SurfaceType.Smooth
  2564. Part243.TopSurface = Enum.SurfaceType.Smooth
  2565. Part243.FormFactor = Enum.FormFactor.Plate
  2566. Part243.formFactor = Enum.FormFactor.Plate
  2567. Part244.Parent = Model0
  2568. Part244.CFrame = CFrame.new(11.527648, -10.8205557, 104.176903, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  2569. Part244.Orientation = Vector3.new(0, 90, 0)
  2570. Part244.Position = Vector3.new(11.527648, -10.8205557, 104.176903)
  2571. Part244.Rotation = Vector3.new(0, 90, 0)
  2572. Part244.Color = Color3.new(0.152941, 0.27451, 0.176471)
  2573. Part244.Size = Vector3.new(43, 0.800000012, 197)
  2574. Part244.Anchored = true
  2575. Part244.BottomSurface = Enum.SurfaceType.Smooth
  2576. Part244.BrickColor = BrickColor.new("Earth green")
  2577. Part244.TopSurface = Enum.SurfaceType.Smooth
  2578. Part244.brickColor = BrickColor.new("Earth green")
  2579. Part244.FormFactor = Enum.FormFactor.Plate
  2580. Part244.formFactor = Enum.FormFactor.Plate
  2581. Part245.Parent = Model0
  2582. Part245.CFrame = CFrame.new(-148.972351, -10.8205557, 27.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2583. Part245.Orientation = Vector3.new(0, -90, 0)
  2584. Part245.Position = Vector3.new(-148.972351, -10.8205557, 27.1769028)
  2585. Part245.Rotation = Vector3.new(0, -90, 0)
  2586. Part245.Size = Vector3.new(5, 0.800000012, 124)
  2587. Part245.Anchored = true
  2588. Part245.BottomSurface = Enum.SurfaceType.Smooth
  2589. Part245.TopSurface = Enum.SurfaceType.Smooth
  2590. Part245.FormFactor = Enum.FormFactor.Plate
  2591. Part245.formFactor = Enum.FormFactor.Plate
  2592. Part246.Parent = Model0
  2593. Part246.CFrame = CFrame.new(-148.972351, -10.8205557, -2.82309699, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2594. Part246.Orientation = Vector3.new(0, -90, 0)
  2595. Part246.Position = Vector3.new(-148.972351, -10.8205557, -2.82309699)
  2596. Part246.Rotation = Vector3.new(0, -90, 0)
  2597. Part246.Size = Vector3.new(5, 0.800000012, 124)
  2598. Part246.Anchored = true
  2599. Part246.BottomSurface = Enum.SurfaceType.Smooth
  2600. Part246.TopSurface = Enum.SurfaceType.Smooth
  2601. Part246.FormFactor = Enum.FormFactor.Plate
  2602. Part246.formFactor = Enum.FormFactor.Plate
  2603. Part247.Parent = Model0
  2604. Part247.CFrame = CFrame.new(88.5276489, 10.3794403, -72.3230972, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2605. Part247.Orientation = Vector3.new(0, -180, 0)
  2606. Part247.Position = Vector3.new(88.5276489, 10.3794403, -72.3230972)
  2607. Part247.Rotation = Vector3.new(180, 0, -180)
  2608. Part247.Color = Color3.new(0.470588, 0.564706, 0.509804)
  2609. Part247.Size = Vector3.new(39, 41.6000023, 62)
  2610. Part247.Anchored = true
  2611. Part247.BottomSurface = Enum.SurfaceType.Smooth
  2612. Part247.BrickColor = BrickColor.new("Sand green")
  2613. Part247.TopSurface = Enum.SurfaceType.Smooth
  2614. Part247.brickColor = BrickColor.new("Sand green")
  2615. Part247.FormFactor = Enum.FormFactor.Plate
  2616. Part247.formFactor = Enum.FormFactor.Plate
  2617. Part248.Parent = Model0
  2618. Part248.CFrame = CFrame.new(88.5276489, 6.57943678, -19.3230972, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2619. Part248.Orientation = Vector3.new(0, -180, 0)
  2620. Part248.Position = Vector3.new(88.5276489, 6.57943678, -19.3230972)
  2621. Part248.Rotation = Vector3.new(180, 0, -180)
  2622. Part248.Color = Color3.new(0.584314, 0.47451, 0.466667)
  2623. Part248.Size = Vector3.new(39, 34, 38)
  2624. Part248.Anchored = true
  2625. Part248.BottomSurface = Enum.SurfaceType.Smooth
  2626. Part248.BrickColor = BrickColor.new("Sand red")
  2627. Part248.TopSurface = Enum.SurfaceType.Smooth
  2628. Part248.brickColor = BrickColor.new("Sand red")
  2629. Part248.FormFactor = Enum.FormFactor.Plate
  2630. Part248.formFactor = Enum.FormFactor.Plate
  2631. Part249.Parent = Model0
  2632. Part249.CFrame = CFrame.new(88.5276489, 15.5794363, 27.6769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  2633. Part249.Orientation = Vector3.new(0, -180, 0)
  2634. Part249.Position = Vector3.new(88.5276489, 15.5794363, 27.6769028)
  2635. Part249.Rotation = Vector3.new(180, 0, -180)
  2636. Part249.Size = Vector3.new(39, 52, 48)
  2637. Part249.Anchored = true
  2638. Part249.BottomSurface = Enum.SurfaceType.Smooth
  2639. Part249.TopSurface = Enum.SurfaceType.Smooth
  2640. Part249.FormFactor = Enum.FormFactor.Plate
  2641. Part249.formFactor = Enum.FormFactor.Plate
  2642. Part250.Parent = Model0
  2643. Part250.CFrame = CFrame.new(-50.1723022, 19.5794373, -70.3230972, 0, 1, 4.80912195e-06, -1, 0, 0, 0, 4.80912195e-06, 1)
  2644. Part250.Orientation = Vector3.new(0, 0, -90)
  2645. Part250.Position = Vector3.new(-50.1723022, 19.5794373, -70.3230972)
  2646. Part250.Rotation = Vector3.new(0, 0, -90)
  2647. Part250.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2648. Part250.Size = Vector3.new(8, 0.400000006, 12)
  2649. Part250.Anchored = true
  2650. Part250.BottomSurface = Enum.SurfaceType.Smooth
  2651. Part250.BrickColor = BrickColor.new("Black")
  2652. Part250.CanCollide = false
  2653. Part250.Reflectance = 0.5
  2654. Part250.TopSurface = Enum.SurfaceType.Smooth
  2655. Part250.brickColor = BrickColor.new("Black")
  2656. Part250.FormFactor = Enum.FormFactor.Plate
  2657. Part250.formFactor = Enum.FormFactor.Plate
  2658. Part251.Parent = Model0
  2659. Part251.CFrame = CFrame.new(20.5276489, -6.02056122, -8.32309723, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  2660. Part251.Orientation = Vector3.new(0, -90, 0)
  2661. Part251.Position = Vector3.new(20.5276489, -6.02056122, -8.32309723)
  2662. Part251.Rotation = Vector3.new(0, -90, 0)
  2663. Part251.Size = Vector3.new(30, 8.80000019, 1)
  2664. Part251.Anchored = true
  2665. Part251.BottomSurface = Enum.SurfaceType.Smooth
  2666. Part251.TopSurface = Enum.SurfaceType.Smooth
  2667. Part251.FormFactor = Enum.FormFactor.Plate
  2668. Part251.formFactor = Enum.FormFactor.Plate
  2669. Part252.Parent = Model0
  2670. Part252.CFrame = CFrame.new(-13.9723501, -3.42077589, 84.4768906, 0, 0, -1, -1, 0, 0, 0, 1, 0)
  2671. Part252.Orientation = Vector3.new(0, -90, -90)
  2672. Part252.Position = Vector3.new(-13.9723501, -3.42077589, 84.4768906)
  2673. Part252.Rotation = Vector3.new(90, -90, 0)
  2674. Part252.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2675. Part252.Size = Vector3.new(8, 0.400000006, 12)
  2676. Part252.Anchored = true
  2677. Part252.BottomSurface = Enum.SurfaceType.Smooth
  2678. Part252.BrickColor = BrickColor.new("Black")
  2679. Part252.CanCollide = false
  2680. Part252.Reflectance = 0.5
  2681. Part252.TopSurface = Enum.SurfaceType.Smooth
  2682. Part252.brickColor = BrickColor.new("Black")
  2683. Part252.FormFactor = Enum.FormFactor.Plate
  2684. Part252.formFactor = Enum.FormFactor.Plate
  2685. Part253.Parent = Model0
  2686. Part253.CFrame = CFrame.new(-6.77233887, 26.5794373, 21.1769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  2687. Part253.Orientation = Vector3.new(0, 180, -90)
  2688. Part253.Position = Vector3.new(-6.77233887, 26.5794373, 21.1769028)
  2689. Part253.Rotation = Vector3.new(-180, 0, 90)
  2690. Part253.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2691. Part253.Size = Vector3.new(8, 0.400000006, 13)
  2692. Part253.Anchored = true
  2693. Part253.BottomSurface = Enum.SurfaceType.Smooth
  2694. Part253.BrickColor = BrickColor.new("Black")
  2695. Part253.CanCollide = false
  2696. Part253.Reflectance = 0.5
  2697. Part253.TopSurface = Enum.SurfaceType.Smooth
  2698. Part253.brickColor = BrickColor.new("Black")
  2699. Part253.FormFactor = Enum.FormFactor.Plate
  2700. Part253.formFactor = Enum.FormFactor.Plate
  2701. Part254.Parent = Model0
  2702. Part254.CFrame = CFrame.new(-41.9723511, -3.42077589, 84.4768906, 0, 0, -1, -1, 0, 0, 0, 1, 0)
  2703. Part254.Orientation = Vector3.new(0, -90, -90)
  2704. Part254.Position = Vector3.new(-41.9723511, -3.42077589, 84.4768906)
  2705. Part254.Rotation = Vector3.new(90, -90, 0)
  2706. Part254.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2707. Part254.Size = Vector3.new(8, 0.400000006, 12)
  2708. Part254.Anchored = true
  2709. Part254.BottomSurface = Enum.SurfaceType.Smooth
  2710. Part254.BrickColor = BrickColor.new("Black")
  2711. Part254.CanCollide = false
  2712. Part254.Reflectance = 0.5
  2713. Part254.TopSurface = Enum.SurfaceType.Smooth
  2714. Part254.brickColor = BrickColor.new("Black")
  2715. Part254.FormFactor = Enum.FormFactor.Plate
  2716. Part254.formFactor = Enum.FormFactor.Plate
  2717. Part255.Parent = Model0
  2718. Part255.CFrame = CFrame.new(68.8276367, -2.42055511, -93.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2719. Part255.Orientation = Vector3.new(0, -180, -90)
  2720. Part255.Position = Vector3.new(68.8276367, -2.42055511, -93.3230972)
  2721. Part255.Rotation = Vector3.new(180, 0, 90)
  2722. Part255.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2723. Part255.Size = Vector3.new(8, 0.400000006, 12)
  2724. Part255.Anchored = true
  2725. Part255.BottomSurface = Enum.SurfaceType.Smooth
  2726. Part255.BrickColor = BrickColor.new("Black")
  2727. Part255.CanCollide = false
  2728. Part255.Reflectance = 0.5
  2729. Part255.TopSurface = Enum.SurfaceType.Smooth
  2730. Part255.brickColor = BrickColor.new("Black")
  2731. Part255.FormFactor = Enum.FormFactor.Plate
  2732. Part255.formFactor = Enum.FormFactor.Plate
  2733. Part256.Parent = Model0
  2734. Part256.CFrame = CFrame.new(-27.9723511, -3.42077589, 84.4768906, 0, 0, -1, -1, 0, 0, 0, 1, 0)
  2735. Part256.Orientation = Vector3.new(0, -90, -90)
  2736. Part256.Position = Vector3.new(-27.9723511, -3.42077589, 84.4768906)
  2737. Part256.Rotation = Vector3.new(90, -90, 0)
  2738. Part256.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2739. Part256.Size = Vector3.new(8, 0.400000006, 12)
  2740. Part256.Anchored = true
  2741. Part256.BottomSurface = Enum.SurfaceType.Smooth
  2742. Part256.BrickColor = BrickColor.new("Black")
  2743. Part256.CanCollide = false
  2744. Part256.Reflectance = 0.5
  2745. Part256.TopSurface = Enum.SurfaceType.Smooth
  2746. Part256.brickColor = BrickColor.new("Black")
  2747. Part256.FormFactor = Enum.FormFactor.Plate
  2748. Part256.formFactor = Enum.FormFactor.Plate
  2749. Part257.Parent = Model0
  2750. Part257.CFrame = CFrame.new(-15.9723501, 12.5794363, 45.8769035, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  2751. Part257.Orientation = Vector3.new(0, -90, -90)
  2752. Part257.Position = Vector3.new(-15.9723501, 12.5794363, 45.8769035)
  2753. Part257.Rotation = Vector3.new(90, -90, 0)
  2754. Part257.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2755. Part257.Size = Vector3.new(8, 0.400000006, 12)
  2756. Part257.Anchored = true
  2757. Part257.BottomSurface = Enum.SurfaceType.Smooth
  2758. Part257.BrickColor = BrickColor.new("Black")
  2759. Part257.CanCollide = false
  2760. Part257.Reflectance = 0.5
  2761. Part257.TopSurface = Enum.SurfaceType.Smooth
  2762. Part257.brickColor = BrickColor.new("Black")
  2763. Part257.FormFactor = Enum.FormFactor.Plate
  2764. Part257.formFactor = Enum.FormFactor.Plate
  2765. Part258.Parent = Model0
  2766. Part258.CFrame = CFrame.new(-15.9723501, 26.5794373, 45.8769035, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  2767. Part258.Orientation = Vector3.new(0, -90, -90)
  2768. Part258.Position = Vector3.new(-15.9723501, 26.5794373, 45.8769035)
  2769. Part258.Rotation = Vector3.new(90, -90, 0)
  2770. Part258.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2771. Part258.Size = Vector3.new(8, 0.400000006, 12)
  2772. Part258.Anchored = true
  2773. Part258.BottomSurface = Enum.SurfaceType.Smooth
  2774. Part258.BrickColor = BrickColor.new("Black")
  2775. Part258.CanCollide = false
  2776. Part258.Reflectance = 0.5
  2777. Part258.TopSurface = Enum.SurfaceType.Smooth
  2778. Part258.brickColor = BrickColor.new("Black")
  2779. Part258.FormFactor = Enum.FormFactor.Plate
  2780. Part258.formFactor = Enum.FormFactor.Plate
  2781. Part259.Parent = Model0
  2782. Part259.CFrame = CFrame.new(-15.9723501, -2.42055511, 45.8769035, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  2783. Part259.Orientation = Vector3.new(0, -90, -90)
  2784. Part259.Position = Vector3.new(-15.9723501, -2.42055511, 45.8769035)
  2785. Part259.Rotation = Vector3.new(90, -90, 0)
  2786. Part259.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2787. Part259.Size = Vector3.new(8, 0.400000006, 12)
  2788. Part259.Anchored = true
  2789. Part259.BottomSurface = Enum.SurfaceType.Smooth
  2790. Part259.BrickColor = BrickColor.new("Black")
  2791. Part259.CanCollide = false
  2792. Part259.Reflectance = 0.5
  2793. Part259.TopSurface = Enum.SurfaceType.Smooth
  2794. Part259.brickColor = BrickColor.new("Black")
  2795. Part259.FormFactor = Enum.FormFactor.Plate
  2796. Part259.formFactor = Enum.FormFactor.Plate
  2797. Part260.Parent = Model0
  2798. Part260.CFrame = CFrame.new(-6.77233887, 26.5794373, 5.67690277, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  2799. Part260.Orientation = Vector3.new(0, 180, -90)
  2800. Part260.Position = Vector3.new(-6.77233887, 26.5794373, 5.67690277)
  2801. Part260.Rotation = Vector3.new(-180, 0, 90)
  2802. Part260.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2803. Part260.Size = Vector3.new(8, 0.400000006, 12)
  2804. Part260.Anchored = true
  2805. Part260.BottomSurface = Enum.SurfaceType.Smooth
  2806. Part260.BrickColor = BrickColor.new("Black")
  2807. Part260.CanCollide = false
  2808. Part260.Reflectance = 0.5
  2809. Part260.TopSurface = Enum.SurfaceType.Smooth
  2810. Part260.brickColor = BrickColor.new("Black")
  2811. Part260.FormFactor = Enum.FormFactor.Plate
  2812. Part260.formFactor = Enum.FormFactor.Plate
  2813. Part261.Parent = Model0
  2814. Part261.CFrame = CFrame.new(68.8276367, 11.1794424, -93.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2815. Part261.Orientation = Vector3.new(0, -180, -90)
  2816. Part261.Position = Vector3.new(68.8276367, 11.1794424, -93.3230972)
  2817. Part261.Rotation = Vector3.new(180, 0, 90)
  2818. Part261.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2819. Part261.Size = Vector3.new(8, 0.400000006, 12)
  2820. Part261.Anchored = true
  2821. Part261.BottomSurface = Enum.SurfaceType.Smooth
  2822. Part261.BrickColor = BrickColor.new("Black")
  2823. Part261.CanCollide = false
  2824. Part261.Reflectance = 0.5
  2825. Part261.TopSurface = Enum.SurfaceType.Smooth
  2826. Part261.brickColor = BrickColor.new("Black")
  2827. Part261.FormFactor = Enum.FormFactor.Plate
  2828. Part261.formFactor = Enum.FormFactor.Plate
  2829. Part262.Parent = Model0
  2830. Part262.CFrame = CFrame.new(68.8276367, 23.5794373, -93.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2831. Part262.Orientation = Vector3.new(0, -180, -90)
  2832. Part262.Position = Vector3.new(68.8276367, 23.5794373, -93.3230972)
  2833. Part262.Rotation = Vector3.new(180, 0, 90)
  2834. Part262.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2835. Part262.Size = Vector3.new(8, 0.400000006, 12)
  2836. Part262.Anchored = true
  2837. Part262.BottomSurface = Enum.SurfaceType.Smooth
  2838. Part262.BrickColor = BrickColor.new("Black")
  2839. Part262.CanCollide = false
  2840. Part262.Reflectance = 0.5
  2841. Part262.TopSurface = Enum.SurfaceType.Smooth
  2842. Part262.brickColor = BrickColor.new("Black")
  2843. Part262.FormFactor = Enum.FormFactor.Plate
  2844. Part262.formFactor = Enum.FormFactor.Plate
  2845. Part263.Parent = Model0
  2846. Part263.CFrame = CFrame.new(68.8276367, -2.42055511, -72.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2847. Part263.Orientation = Vector3.new(0, -180, -90)
  2848. Part263.Position = Vector3.new(68.8276367, -2.42055511, -72.3230972)
  2849. Part263.Rotation = Vector3.new(180, 0, 90)
  2850. Part263.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2851. Part263.Size = Vector3.new(8, 0.400000006, 12)
  2852. Part263.Anchored = true
  2853. Part263.BottomSurface = Enum.SurfaceType.Smooth
  2854. Part263.BrickColor = BrickColor.new("Black")
  2855. Part263.CanCollide = false
  2856. Part263.Reflectance = 0.5
  2857. Part263.TopSurface = Enum.SurfaceType.Smooth
  2858. Part263.brickColor = BrickColor.new("Black")
  2859. Part263.FormFactor = Enum.FormFactor.Plate
  2860. Part263.formFactor = Enum.FormFactor.Plate
  2861. Part264.Parent = Model0
  2862. Part264.CFrame = CFrame.new(68.8276367, 10.5794363, -72.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2863. Part264.Orientation = Vector3.new(0, -180, -90)
  2864. Part264.Position = Vector3.new(68.8276367, 10.5794363, -72.3230972)
  2865. Part264.Rotation = Vector3.new(180, 0, 90)
  2866. Part264.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2867. Part264.Size = Vector3.new(8, 0.400000006, 12)
  2868. Part264.Anchored = true
  2869. Part264.BottomSurface = Enum.SurfaceType.Smooth
  2870. Part264.BrickColor = BrickColor.new("Black")
  2871. Part264.CanCollide = false
  2872. Part264.Reflectance = 0.5
  2873. Part264.TopSurface = Enum.SurfaceType.Smooth
  2874. Part264.brickColor = BrickColor.new("Black")
  2875. Part264.FormFactor = Enum.FormFactor.Plate
  2876. Part264.formFactor = Enum.FormFactor.Plate
  2877. Part265.Parent = Model0
  2878. Part265.CFrame = CFrame.new(68.8276367, 23.5794373, -72.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2879. Part265.Orientation = Vector3.new(0, -180, -90)
  2880. Part265.Position = Vector3.new(68.8276367, 23.5794373, -72.3230972)
  2881. Part265.Rotation = Vector3.new(180, 0, 90)
  2882. Part265.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2883. Part265.Size = Vector3.new(8, 0.400000006, 12)
  2884. Part265.Anchored = true
  2885. Part265.BottomSurface = Enum.SurfaceType.Smooth
  2886. Part265.BrickColor = BrickColor.new("Black")
  2887. Part265.CanCollide = false
  2888. Part265.Reflectance = 0.5
  2889. Part265.TopSurface = Enum.SurfaceType.Smooth
  2890. Part265.brickColor = BrickColor.new("Black")
  2891. Part265.FormFactor = Enum.FormFactor.Plate
  2892. Part265.formFactor = Enum.FormFactor.Plate
  2893. Part266.Parent = Model0
  2894. Part266.CFrame = CFrame.new(68.8276367, -2.42055511, -51.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2895. Part266.Orientation = Vector3.new(0, -180, -90)
  2896. Part266.Position = Vector3.new(68.8276367, -2.42055511, -51.3230972)
  2897. Part266.Rotation = Vector3.new(180, 0, 90)
  2898. Part266.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2899. Part266.Size = Vector3.new(8, 0.400000006, 12)
  2900. Part266.Anchored = true
  2901. Part266.BottomSurface = Enum.SurfaceType.Smooth
  2902. Part266.BrickColor = BrickColor.new("Black")
  2903. Part266.CanCollide = false
  2904. Part266.Reflectance = 0.5
  2905. Part266.TopSurface = Enum.SurfaceType.Smooth
  2906. Part266.brickColor = BrickColor.new("Black")
  2907. Part266.FormFactor = Enum.FormFactor.Plate
  2908. Part266.formFactor = Enum.FormFactor.Plate
  2909. Part267.Parent = Model0
  2910. Part267.CFrame = CFrame.new(68.8276367, 10.5794363, -51.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2911. Part267.Orientation = Vector3.new(0, -180, -90)
  2912. Part267.Position = Vector3.new(68.8276367, 10.5794363, -51.3230972)
  2913. Part267.Rotation = Vector3.new(180, 0, 90)
  2914. Part267.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2915. Part267.Size = Vector3.new(8, 0.400000006, 12)
  2916. Part267.Anchored = true
  2917. Part267.BottomSurface = Enum.SurfaceType.Smooth
  2918. Part267.BrickColor = BrickColor.new("Black")
  2919. Part267.CanCollide = false
  2920. Part267.Reflectance = 0.5
  2921. Part267.TopSurface = Enum.SurfaceType.Smooth
  2922. Part267.brickColor = BrickColor.new("Black")
  2923. Part267.FormFactor = Enum.FormFactor.Plate
  2924. Part267.formFactor = Enum.FormFactor.Plate
  2925. Part268.Parent = Model0
  2926. Part268.CFrame = CFrame.new(68.8276367, 23.5794373, -51.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2927. Part268.Orientation = Vector3.new(0, -180, -90)
  2928. Part268.Position = Vector3.new(68.8276367, 23.5794373, -51.3230972)
  2929. Part268.Rotation = Vector3.new(180, 0, 90)
  2930. Part268.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2931. Part268.Size = Vector3.new(8, 0.400000006, 12)
  2932. Part268.Anchored = true
  2933. Part268.BottomSurface = Enum.SurfaceType.Smooth
  2934. Part268.BrickColor = BrickColor.new("Black")
  2935. Part268.CanCollide = false
  2936. Part268.Reflectance = 0.5
  2937. Part268.TopSurface = Enum.SurfaceType.Smooth
  2938. Part268.brickColor = BrickColor.new("Black")
  2939. Part268.FormFactor = Enum.FormFactor.Plate
  2940. Part268.formFactor = Enum.FormFactor.Plate
  2941. Part269.Parent = Model0
  2942. Part269.CFrame = CFrame.new(68.8276367, 16.5794353, -29.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2943. Part269.Orientation = Vector3.new(0, -180, -90)
  2944. Part269.Position = Vector3.new(68.8276367, 16.5794353, -29.3230972)
  2945. Part269.Rotation = Vector3.new(180, 0, 90)
  2946. Part269.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2947. Part269.Size = Vector3.new(8, 0.400000006, 12)
  2948. Part269.Anchored = true
  2949. Part269.BottomSurface = Enum.SurfaceType.Smooth
  2950. Part269.BrickColor = BrickColor.new("Black")
  2951. Part269.CanCollide = false
  2952. Part269.Reflectance = 0.5
  2953. Part269.TopSurface = Enum.SurfaceType.Smooth
  2954. Part269.brickColor = BrickColor.new("Black")
  2955. Part269.FormFactor = Enum.FormFactor.Plate
  2956. Part269.formFactor = Enum.FormFactor.Plate
  2957. Part270.Parent = Model0
  2958. Part270.CFrame = CFrame.new(68.8276367, 5.57943678, -29.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2959. Part270.Orientation = Vector3.new(0, -180, -90)
  2960. Part270.Position = Vector3.new(68.8276367, 5.57943678, -29.3230972)
  2961. Part270.Rotation = Vector3.new(180, 0, 90)
  2962. Part270.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2963. Part270.Size = Vector3.new(8, 0.400000006, 12)
  2964. Part270.Anchored = true
  2965. Part270.BottomSurface = Enum.SurfaceType.Smooth
  2966. Part270.BrickColor = BrickColor.new("Black")
  2967. Part270.CanCollide = false
  2968. Part270.Reflectance = 0.5
  2969. Part270.TopSurface = Enum.SurfaceType.Smooth
  2970. Part270.brickColor = BrickColor.new("Black")
  2971. Part270.FormFactor = Enum.FormFactor.Plate
  2972. Part270.formFactor = Enum.FormFactor.Plate
  2973. Part271.Parent = Model0
  2974. Part271.CFrame = CFrame.new(68.8276367, 16.5794353, -9.32309628, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2975. Part271.Orientation = Vector3.new(0, -180, -90)
  2976. Part271.Position = Vector3.new(68.8276367, 16.5794353, -9.32309628)
  2977. Part271.Rotation = Vector3.new(180, 0, 90)
  2978. Part271.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2979. Part271.Size = Vector3.new(8, 0.400000006, 12)
  2980. Part271.Anchored = true
  2981. Part271.BottomSurface = Enum.SurfaceType.Smooth
  2982. Part271.BrickColor = BrickColor.new("Black")
  2983. Part271.CanCollide = false
  2984. Part271.Reflectance = 0.5
  2985. Part271.TopSurface = Enum.SurfaceType.Smooth
  2986. Part271.brickColor = BrickColor.new("Black")
  2987. Part271.FormFactor = Enum.FormFactor.Plate
  2988. Part271.formFactor = Enum.FormFactor.Plate
  2989. Part272.Parent = Model0
  2990. Part272.CFrame = CFrame.new(68.8276367, 5.57943678, -9.32309628, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  2991. Part272.Orientation = Vector3.new(0, -180, -90)
  2992. Part272.Position = Vector3.new(68.8276367, 5.57943678, -9.32309628)
  2993. Part272.Rotation = Vector3.new(180, 0, 90)
  2994. Part272.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2995. Part272.Size = Vector3.new(8, 0.400000006, 12)
  2996. Part272.Anchored = true
  2997. Part272.BottomSurface = Enum.SurfaceType.Smooth
  2998. Part272.BrickColor = BrickColor.new("Black")
  2999. Part272.CanCollide = false
  3000. Part272.Reflectance = 0.5
  3001. Part272.TopSurface = Enum.SurfaceType.Smooth
  3002. Part272.brickColor = BrickColor.new("Black")
  3003. Part272.FormFactor = Enum.FormFactor.Plate
  3004. Part272.formFactor = Enum.FormFactor.Plate
  3005. Part273.Parent = Model0
  3006. Part273.CFrame = CFrame.new(68.8276367, -5.42055511, -9.32309628, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3007. Part273.Orientation = Vector3.new(0, -180, -90)
  3008. Part273.Position = Vector3.new(68.8276367, -5.42055511, -9.32309628)
  3009. Part273.Rotation = Vector3.new(180, 0, 90)
  3010. Part273.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3011. Part273.Size = Vector3.new(8, 0.400000006, 12)
  3012. Part273.Anchored = true
  3013. Part273.BottomSurface = Enum.SurfaceType.Smooth
  3014. Part273.BrickColor = BrickColor.new("Black")
  3015. Part273.CanCollide = false
  3016. Part273.Reflectance = 0.5
  3017. Part273.TopSurface = Enum.SurfaceType.Smooth
  3018. Part273.brickColor = BrickColor.new("Black")
  3019. Part273.FormFactor = Enum.FormFactor.Plate
  3020. Part273.formFactor = Enum.FormFactor.Plate
  3021. Part274.Parent = Model0
  3022. Part274.CFrame = CFrame.new(68.8276367, -5.42055511, -29.3230972, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3023. Part274.Orientation = Vector3.new(0, -180, -90)
  3024. Part274.Position = Vector3.new(68.8276367, -5.42055511, -29.3230972)
  3025. Part274.Rotation = Vector3.new(180, 0, 90)
  3026. Part274.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3027. Part274.Size = Vector3.new(8, 0.400000006, 12)
  3028. Part274.Anchored = true
  3029. Part274.BottomSurface = Enum.SurfaceType.Smooth
  3030. Part274.BrickColor = BrickColor.new("Black")
  3031. Part274.CanCollide = false
  3032. Part274.Reflectance = 0.5
  3033. Part274.TopSurface = Enum.SurfaceType.Smooth
  3034. Part274.brickColor = BrickColor.new("Black")
  3035. Part274.FormFactor = Enum.FormFactor.Plate
  3036. Part274.formFactor = Enum.FormFactor.Plate
  3037. Part275.Parent = Model0
  3038. Part275.CFrame = CFrame.new(68.8276367, 34.5794373, 12.6769018, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3039. Part275.Orientation = Vector3.new(0, -180, -90)
  3040. Part275.Position = Vector3.new(68.8276367, 34.5794373, 12.6769018)
  3041. Part275.Rotation = Vector3.new(180, 0, 90)
  3042. Part275.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3043. Part275.Size = Vector3.new(8, 0.400000006, 12)
  3044. Part275.Anchored = true
  3045. Part275.BottomSurface = Enum.SurfaceType.Smooth
  3046. Part275.BrickColor = BrickColor.new("Black")
  3047. Part275.CanCollide = false
  3048. Part275.Reflectance = 0.5
  3049. Part275.TopSurface = Enum.SurfaceType.Smooth
  3050. Part275.brickColor = BrickColor.new("Black")
  3051. Part275.FormFactor = Enum.FormFactor.Plate
  3052. Part275.formFactor = Enum.FormFactor.Plate
  3053. Part276.Parent = Model0
  3054. Part276.CFrame = CFrame.new(68.8276367, 22.5794373, 12.6769018, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3055. Part276.Orientation = Vector3.new(0, -180, -90)
  3056. Part276.Position = Vector3.new(68.8276367, 22.5794373, 12.6769018)
  3057. Part276.Rotation = Vector3.new(180, 0, 90)
  3058. Part276.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3059. Part276.Size = Vector3.new(8, 0.400000006, 12)
  3060. Part276.Anchored = true
  3061. Part276.BottomSurface = Enum.SurfaceType.Smooth
  3062. Part276.BrickColor = BrickColor.new("Black")
  3063. Part276.CanCollide = false
  3064. Part276.Reflectance = 0.5
  3065. Part276.TopSurface = Enum.SurfaceType.Smooth
  3066. Part276.brickColor = BrickColor.new("Black")
  3067. Part276.FormFactor = Enum.FormFactor.Plate
  3068. Part276.formFactor = Enum.FormFactor.Plate
  3069. Part277.Parent = Model0
  3070. Part277.CFrame = CFrame.new(68.8276367, 10.5794363, 12.6769018, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3071. Part277.Orientation = Vector3.new(0, -180, -90)
  3072. Part277.Position = Vector3.new(68.8276367, 10.5794363, 12.6769018)
  3073. Part277.Rotation = Vector3.new(180, 0, 90)
  3074. Part277.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3075. Part277.Size = Vector3.new(8, 0.400000006, 12)
  3076. Part277.Anchored = true
  3077. Part277.BottomSurface = Enum.SurfaceType.Smooth
  3078. Part277.BrickColor = BrickColor.new("Black")
  3079. Part277.CanCollide = false
  3080. Part277.Reflectance = 0.5
  3081. Part277.TopSurface = Enum.SurfaceType.Smooth
  3082. Part277.brickColor = BrickColor.new("Black")
  3083. Part277.FormFactor = Enum.FormFactor.Plate
  3084. Part277.formFactor = Enum.FormFactor.Plate
  3085. Part278.Parent = Model0
  3086. Part278.CFrame = CFrame.new(68.8276367, -1.420555, 12.6769018, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3087. Part278.Orientation = Vector3.new(0, -180, -90)
  3088. Part278.Position = Vector3.new(68.8276367, -1.420555, 12.6769018)
  3089. Part278.Rotation = Vector3.new(180, 0, 90)
  3090. Part278.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3091. Part278.Size = Vector3.new(8, 0.400000006, 12)
  3092. Part278.Anchored = true
  3093. Part278.BottomSurface = Enum.SurfaceType.Smooth
  3094. Part278.BrickColor = BrickColor.new("Black")
  3095. Part278.CanCollide = false
  3096. Part278.Reflectance = 0.5
  3097. Part278.TopSurface = Enum.SurfaceType.Smooth
  3098. Part278.brickColor = BrickColor.new("Black")
  3099. Part278.FormFactor = Enum.FormFactor.Plate
  3100. Part278.formFactor = Enum.FormFactor.Plate
  3101. Part279.Parent = Model0
  3102. Part279.CFrame = CFrame.new(68.8276367, 34.5794373, 42.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3103. Part279.Orientation = Vector3.new(0, -180, -90)
  3104. Part279.Position = Vector3.new(68.8276367, 34.5794373, 42.6769028)
  3105. Part279.Rotation = Vector3.new(180, 0, 90)
  3106. Part279.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3107. Part279.Size = Vector3.new(8, 0.400000006, 12)
  3108. Part279.Anchored = true
  3109. Part279.BottomSurface = Enum.SurfaceType.Smooth
  3110. Part279.BrickColor = BrickColor.new("Black")
  3111. Part279.CanCollide = false
  3112. Part279.Reflectance = 0.5
  3113. Part279.TopSurface = Enum.SurfaceType.Smooth
  3114. Part279.brickColor = BrickColor.new("Black")
  3115. Part279.FormFactor = Enum.FormFactor.Plate
  3116. Part279.formFactor = Enum.FormFactor.Plate
  3117. Part280.Parent = Model0
  3118. Part280.CFrame = CFrame.new(68.8276367, 22.5794373, 42.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3119. Part280.Orientation = Vector3.new(0, -180, -90)
  3120. Part280.Position = Vector3.new(68.8276367, 22.5794373, 42.6769028)
  3121. Part280.Rotation = Vector3.new(180, 0, 90)
  3122. Part280.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3123. Part280.Size = Vector3.new(8, 0.400000006, 12)
  3124. Part280.Anchored = true
  3125. Part280.BottomSurface = Enum.SurfaceType.Smooth
  3126. Part280.BrickColor = BrickColor.new("Black")
  3127. Part280.CanCollide = false
  3128. Part280.Reflectance = 0.5
  3129. Part280.TopSurface = Enum.SurfaceType.Smooth
  3130. Part280.brickColor = BrickColor.new("Black")
  3131. Part280.FormFactor = Enum.FormFactor.Plate
  3132. Part280.formFactor = Enum.FormFactor.Plate
  3133. Part281.Parent = Model0
  3134. Part281.CFrame = CFrame.new(68.8276367, 10.5794363, 42.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3135. Part281.Orientation = Vector3.new(0, -180, -90)
  3136. Part281.Position = Vector3.new(68.8276367, 10.5794363, 42.6769028)
  3137. Part281.Rotation = Vector3.new(180, 0, 90)
  3138. Part281.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3139. Part281.Size = Vector3.new(8, 0.400000006, 12)
  3140. Part281.Anchored = true
  3141. Part281.BottomSurface = Enum.SurfaceType.Smooth
  3142. Part281.BrickColor = BrickColor.new("Black")
  3143. Part281.CanCollide = false
  3144. Part281.Reflectance = 0.5
  3145. Part281.TopSurface = Enum.SurfaceType.Smooth
  3146. Part281.brickColor = BrickColor.new("Black")
  3147. Part281.FormFactor = Enum.FormFactor.Plate
  3148. Part281.formFactor = Enum.FormFactor.Plate
  3149. Part282.Parent = Model0
  3150. Part282.CFrame = CFrame.new(68.8276367, -1.420555, 42.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3151. Part282.Orientation = Vector3.new(0, -180, -90)
  3152. Part282.Position = Vector3.new(68.8276367, -1.420555, 42.6769028)
  3153. Part282.Rotation = Vector3.new(180, 0, 90)
  3154. Part282.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3155. Part282.Size = Vector3.new(8, 0.400000006, 12)
  3156. Part282.Anchored = true
  3157. Part282.BottomSurface = Enum.SurfaceType.Smooth
  3158. Part282.BrickColor = BrickColor.new("Black")
  3159. Part282.CanCollide = false
  3160. Part282.Reflectance = 0.5
  3161. Part282.TopSurface = Enum.SurfaceType.Smooth
  3162. Part282.brickColor = BrickColor.new("Black")
  3163. Part282.FormFactor = Enum.FormFactor.Plate
  3164. Part282.formFactor = Enum.FormFactor.Plate
  3165. Part283.Parent = Model0
  3166. Part283.CFrame = CFrame.new(68.8276367, -1.420555, 27.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3167. Part283.Orientation = Vector3.new(0, -180, -90)
  3168. Part283.Position = Vector3.new(68.8276367, -1.420555, 27.6769028)
  3169. Part283.Rotation = Vector3.new(180, 0, 90)
  3170. Part283.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3171. Part283.Size = Vector3.new(8, 0.400000006, 12)
  3172. Part283.Anchored = true
  3173. Part283.BottomSurface = Enum.SurfaceType.Smooth
  3174. Part283.BrickColor = BrickColor.new("Black")
  3175. Part283.CanCollide = false
  3176. Part283.Reflectance = 0.5
  3177. Part283.TopSurface = Enum.SurfaceType.Smooth
  3178. Part283.brickColor = BrickColor.new("Black")
  3179. Part283.FormFactor = Enum.FormFactor.Plate
  3180. Part283.formFactor = Enum.FormFactor.Plate
  3181. Part284.Parent = Model0
  3182. Part284.CFrame = CFrame.new(68.8276367, 10.5794363, 27.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3183. Part284.Orientation = Vector3.new(0, -180, -90)
  3184. Part284.Position = Vector3.new(68.8276367, 10.5794363, 27.6769028)
  3185. Part284.Rotation = Vector3.new(180, 0, 90)
  3186. Part284.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3187. Part284.Size = Vector3.new(8, 0.400000006, 12)
  3188. Part284.Anchored = true
  3189. Part284.BottomSurface = Enum.SurfaceType.Smooth
  3190. Part284.BrickColor = BrickColor.new("Black")
  3191. Part284.CanCollide = false
  3192. Part284.Reflectance = 0.5
  3193. Part284.TopSurface = Enum.SurfaceType.Smooth
  3194. Part284.brickColor = BrickColor.new("Black")
  3195. Part284.FormFactor = Enum.FormFactor.Plate
  3196. Part284.formFactor = Enum.FormFactor.Plate
  3197. Part285.Parent = Model0
  3198. Part285.CFrame = CFrame.new(68.8276367, 22.5794373, 27.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3199. Part285.Orientation = Vector3.new(0, -180, -90)
  3200. Part285.Position = Vector3.new(68.8276367, 22.5794373, 27.6769028)
  3201. Part285.Rotation = Vector3.new(180, 0, 90)
  3202. Part285.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3203. Part285.Size = Vector3.new(8, 0.400000006, 12)
  3204. Part285.Anchored = true
  3205. Part285.BottomSurface = Enum.SurfaceType.Smooth
  3206. Part285.BrickColor = BrickColor.new("Black")
  3207. Part285.CanCollide = false
  3208. Part285.Reflectance = 0.5
  3209. Part285.TopSurface = Enum.SurfaceType.Smooth
  3210. Part285.brickColor = BrickColor.new("Black")
  3211. Part285.FormFactor = Enum.FormFactor.Plate
  3212. Part285.formFactor = Enum.FormFactor.Plate
  3213. Part286.Parent = Model0
  3214. Part286.CFrame = CFrame.new(30.2276611, -3.42077589, -32.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3215. Part286.Orientation = Vector3.new(0, 180, -90)
  3216. Part286.Position = Vector3.new(30.2276611, -3.42077589, -32.3230972)
  3217. Part286.Rotation = Vector3.new(-180, 0, 90)
  3218. Part286.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3219. Part286.Size = Vector3.new(8, 0.400000006, 12)
  3220. Part286.Anchored = true
  3221. Part286.BottomSurface = Enum.SurfaceType.Smooth
  3222. Part286.BrickColor = BrickColor.new("Black")
  3223. Part286.CanCollide = false
  3224. Part286.Reflectance = 0.5
  3225. Part286.TopSurface = Enum.SurfaceType.Smooth
  3226. Part286.brickColor = BrickColor.new("Black")
  3227. Part286.FormFactor = Enum.FormFactor.Plate
  3228. Part286.formFactor = Enum.FormFactor.Plate
  3229. Part287.Parent = Model0
  3230. Part287.CFrame = CFrame.new(30.2276611, -3.42077589, -64.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3231. Part287.Orientation = Vector3.new(0, 180, -90)
  3232. Part287.Position = Vector3.new(30.2276611, -3.42077589, -64.3230972)
  3233. Part287.Rotation = Vector3.new(-180, 0, 90)
  3234. Part287.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3235. Part287.Size = Vector3.new(8, 0.400000006, 12)
  3236. Part287.Anchored = true
  3237. Part287.BottomSurface = Enum.SurfaceType.Smooth
  3238. Part287.BrickColor = BrickColor.new("Black")
  3239. Part287.CanCollide = false
  3240. Part287.Reflectance = 0.5
  3241. Part287.TopSurface = Enum.SurfaceType.Smooth
  3242. Part287.brickColor = BrickColor.new("Black")
  3243. Part287.FormFactor = Enum.FormFactor.Plate
  3244. Part287.formFactor = Enum.FormFactor.Plate
  3245. Part288.Parent = Model0
  3246. Part288.CFrame = CFrame.new(30.2276611, -3.42077589, -48.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3247. Part288.Orientation = Vector3.new(0, 180, -90)
  3248. Part288.Position = Vector3.new(30.2276611, -3.42077589, -48.3230972)
  3249. Part288.Rotation = Vector3.new(-180, 0, 90)
  3250. Part288.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3251. Part288.Size = Vector3.new(8, 0.400000006, 12)
  3252. Part288.Anchored = true
  3253. Part288.BottomSurface = Enum.SurfaceType.Smooth
  3254. Part288.BrickColor = BrickColor.new("Black")
  3255. Part288.CanCollide = false
  3256. Part288.Reflectance = 0.5
  3257. Part288.TopSurface = Enum.SurfaceType.Smooth
  3258. Part288.brickColor = BrickColor.new("Black")
  3259. Part288.FormFactor = Enum.FormFactor.Plate
  3260. Part288.formFactor = Enum.FormFactor.Plate
  3261. Part289.Parent = Model0
  3262. Part289.CFrame = CFrame.new(30.2276611, 10.579422, -32.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3263. Part289.Orientation = Vector3.new(0, 180, -90)
  3264. Part289.Position = Vector3.new(30.2276611, 10.579422, -32.3230972)
  3265. Part289.Rotation = Vector3.new(-180, 0, 90)
  3266. Part289.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3267. Part289.Size = Vector3.new(8, 0.400000006, 12)
  3268. Part289.Anchored = true
  3269. Part289.BottomSurface = Enum.SurfaceType.Smooth
  3270. Part289.BrickColor = BrickColor.new("Black")
  3271. Part289.CanCollide = false
  3272. Part289.Reflectance = 0.5
  3273. Part289.TopSurface = Enum.SurfaceType.Smooth
  3274. Part289.brickColor = BrickColor.new("Black")
  3275. Part289.FormFactor = Enum.FormFactor.Plate
  3276. Part289.formFactor = Enum.FormFactor.Plate
  3277. Part290.Parent = Model0
  3278. Part290.CFrame = CFrame.new(30.2276611, 10.579422, -48.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3279. Part290.Orientation = Vector3.new(0, 180, -90)
  3280. Part290.Position = Vector3.new(30.2276611, 10.579422, -48.3230972)
  3281. Part290.Rotation = Vector3.new(-180, 0, 90)
  3282. Part290.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3283. Part290.Size = Vector3.new(8, 0.400000006, 12)
  3284. Part290.Anchored = true
  3285. Part290.BottomSurface = Enum.SurfaceType.Smooth
  3286. Part290.BrickColor = BrickColor.new("Black")
  3287. Part290.CanCollide = false
  3288. Part290.Reflectance = 0.5
  3289. Part290.TopSurface = Enum.SurfaceType.Smooth
  3290. Part290.brickColor = BrickColor.new("Black")
  3291. Part290.FormFactor = Enum.FormFactor.Plate
  3292. Part290.formFactor = Enum.FormFactor.Plate
  3293. Part291.Parent = Model0
  3294. Part291.CFrame = CFrame.new(30.2276611, 10.579422, -64.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3295. Part291.Orientation = Vector3.new(0, 180, -90)
  3296. Part291.Position = Vector3.new(30.2276611, 10.579422, -64.3230972)
  3297. Part291.Rotation = Vector3.new(-180, 0, 90)
  3298. Part291.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3299. Part291.Size = Vector3.new(8, 0.400000006, 12)
  3300. Part291.Anchored = true
  3301. Part291.BottomSurface = Enum.SurfaceType.Smooth
  3302. Part291.BrickColor = BrickColor.new("Black")
  3303. Part291.CanCollide = false
  3304. Part291.Reflectance = 0.5
  3305. Part291.TopSurface = Enum.SurfaceType.Smooth
  3306. Part291.brickColor = BrickColor.new("Black")
  3307. Part291.FormFactor = Enum.FormFactor.Plate
  3308. Part291.formFactor = Enum.FormFactor.Plate
  3309. Part292.Parent = Model0
  3310. Part292.CFrame = CFrame.new(23.5276489, -6.02056122, -74.8230972, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  3311. Part292.Orientation = Vector3.new(0, -90, 0)
  3312. Part292.Position = Vector3.new(23.5276489, -6.02056122, -74.8230972)
  3313. Part292.Rotation = Vector3.new(0, -90, 0)
  3314. Part292.Size = Vector3.new(3, 8.80000019, 1)
  3315. Part292.Anchored = true
  3316. Part292.BottomSurface = Enum.SurfaceType.Smooth
  3317. Part292.TopSurface = Enum.SurfaceType.Smooth
  3318. Part292.FormFactor = Enum.FormFactor.Plate
  3319. Part292.formFactor = Enum.FormFactor.Plate
  3320. Part293.Parent = Model0
  3321. Part293.CFrame = CFrame.new(73.5276489, -6.02056122, -39.8230972, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  3322. Part293.Orientation = Vector3.new(0, -90, 0)
  3323. Part293.Position = Vector3.new(73.5276489, -6.02056122, -39.8230972)
  3324. Part293.Rotation = Vector3.new(0, -90, 0)
  3325. Part293.Size = Vector3.new(3, 8.80000019, 1)
  3326. Part293.Anchored = true
  3327. Part293.BottomSurface = Enum.SurfaceType.Smooth
  3328. Part293.TopSurface = Enum.SurfaceType.Smooth
  3329. Part293.FormFactor = Enum.FormFactor.Plate
  3330. Part293.formFactor = Enum.FormFactor.Plate
  3331. Part294.Parent = Model0
  3332. Part294.CFrame = CFrame.new(-0.972351015, -3.42055511, -23.1230965, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3333. Part294.Orientation = Vector3.new(0, -90, -90)
  3334. Part294.Position = Vector3.new(-0.972351015, -3.42055511, -23.1230965)
  3335. Part294.Rotation = Vector3.new(90, -90, 0)
  3336. Part294.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3337. Part294.Size = Vector3.new(8, 0.400000006, 12)
  3338. Part294.Anchored = true
  3339. Part294.BottomSurface = Enum.SurfaceType.Smooth
  3340. Part294.BrickColor = BrickColor.new("Black")
  3341. Part294.CanCollide = false
  3342. Part294.Reflectance = 0.5
  3343. Part294.TopSurface = Enum.SurfaceType.Smooth
  3344. Part294.brickColor = BrickColor.new("Black")
  3345. Part294.FormFactor = Enum.FormFactor.Plate
  3346. Part294.formFactor = Enum.FormFactor.Plate
  3347. Part295.Parent = Model0
  3348. Part295.CFrame = CFrame.new(-0.972351015, 10.5794363, -23.1230965, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3349. Part295.Orientation = Vector3.new(0, -90, -90)
  3350. Part295.Position = Vector3.new(-0.972351015, 10.5794363, -23.1230965)
  3351. Part295.Rotation = Vector3.new(90, -90, 0)
  3352. Part295.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3353. Part295.Size = Vector3.new(8, 0.400000006, 12)
  3354. Part295.Anchored = true
  3355. Part295.BottomSurface = Enum.SurfaceType.Smooth
  3356. Part295.BrickColor = BrickColor.new("Black")
  3357. Part295.CanCollide = false
  3358. Part295.Reflectance = 0.5
  3359. Part295.TopSurface = Enum.SurfaceType.Smooth
  3360. Part295.brickColor = BrickColor.new("Black")
  3361. Part295.FormFactor = Enum.FormFactor.Plate
  3362. Part295.formFactor = Enum.FormFactor.Plate
  3363. Part296.Parent = Model0
  3364. Part296.CFrame = CFrame.new(30.2276611, -3.42077589, -84.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3365. Part296.Orientation = Vector3.new(0, 180, -90)
  3366. Part296.Position = Vector3.new(30.2276611, -3.42077589, -84.3230972)
  3367. Part296.Rotation = Vector3.new(-180, 0, 90)
  3368. Part296.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3369. Part296.Size = Vector3.new(8, 0.400000006, 12)
  3370. Part296.Anchored = true
  3371. Part296.BottomSurface = Enum.SurfaceType.Smooth
  3372. Part296.BrickColor = BrickColor.new("Black")
  3373. Part296.CanCollide = false
  3374. Part296.Reflectance = 0.5
  3375. Part296.TopSurface = Enum.SurfaceType.Smooth
  3376. Part296.brickColor = BrickColor.new("Black")
  3377. Part296.FormFactor = Enum.FormFactor.Plate
  3378. Part296.formFactor = Enum.FormFactor.Plate
  3379. Part297.Parent = Model0
  3380. Part297.CFrame = CFrame.new(30.2276611, -3.42077589, -98.3230972, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3381. Part297.Orientation = Vector3.new(0, 180, -90)
  3382. Part297.Position = Vector3.new(30.2276611, -3.42077589, -98.3230972)
  3383. Part297.Rotation = Vector3.new(-180, 0, 90)
  3384. Part297.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3385. Part297.Size = Vector3.new(8, 0.400000006, 12)
  3386. Part297.Anchored = true
  3387. Part297.BottomSurface = Enum.SurfaceType.Smooth
  3388. Part297.BrickColor = BrickColor.new("Black")
  3389. Part297.CanCollide = false
  3390. Part297.Reflectance = 0.5
  3391. Part297.TopSurface = Enum.SurfaceType.Smooth
  3392. Part297.brickColor = BrickColor.new("Black")
  3393. Part297.FormFactor = Enum.FormFactor.Plate
  3394. Part297.formFactor = Enum.FormFactor.Plate
  3395. Part298.Parent = Model0
  3396. Part298.CFrame = CFrame.new(30.2276611, -3.42077589, 15.6769018, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3397. Part298.Orientation = Vector3.new(0, 180, -90)
  3398. Part298.Position = Vector3.new(30.2276611, -3.42077589, 15.6769018)
  3399. Part298.Rotation = Vector3.new(-180, 0, 90)
  3400. Part298.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3401. Part298.Size = Vector3.new(8, 0.400000006, 12)
  3402. Part298.Anchored = true
  3403. Part298.BottomSurface = Enum.SurfaceType.Smooth
  3404. Part298.BrickColor = BrickColor.new("Black")
  3405. Part298.CanCollide = false
  3406. Part298.Reflectance = 0.5
  3407. Part298.TopSurface = Enum.SurfaceType.Smooth
  3408. Part298.brickColor = BrickColor.new("Black")
  3409. Part298.FormFactor = Enum.FormFactor.Plate
  3410. Part298.formFactor = Enum.FormFactor.Plate
  3411. Part299.Parent = Model0
  3412. Part299.CFrame = CFrame.new(30.2276611, -3.42077589, 36.6769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3413. Part299.Orientation = Vector3.new(0, 180, -90)
  3414. Part299.Position = Vector3.new(30.2276611, -3.42077589, 36.6769028)
  3415. Part299.Rotation = Vector3.new(-180, 0, 90)
  3416. Part299.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3417. Part299.Size = Vector3.new(8, 0.400000006, 12)
  3418. Part299.Anchored = true
  3419. Part299.BottomSurface = Enum.SurfaceType.Smooth
  3420. Part299.BrickColor = BrickColor.new("Black")
  3421. Part299.CanCollide = false
  3422. Part299.Reflectance = 0.5
  3423. Part299.TopSurface = Enum.SurfaceType.Smooth
  3424. Part299.brickColor = BrickColor.new("Black")
  3425. Part299.FormFactor = Enum.FormFactor.Plate
  3426. Part299.formFactor = Enum.FormFactor.Plate
  3427. Part300.Parent = Model0
  3428. Part300.CFrame = CFrame.new(22.0276489, -3.42055511, 45.8769035, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3429. Part300.Orientation = Vector3.new(0, -90, -90)
  3430. Part300.Position = Vector3.new(22.0276489, -3.42055511, 45.8769035)
  3431. Part300.Rotation = Vector3.new(90, -90, 0)
  3432. Part300.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3433. Part300.Size = Vector3.new(8, 0.400000006, 12)
  3434. Part300.Anchored = true
  3435. Part300.BottomSurface = Enum.SurfaceType.Smooth
  3436. Part300.BrickColor = BrickColor.new("Black")
  3437. Part300.CanCollide = false
  3438. Part300.Reflectance = 0.5
  3439. Part300.TopSurface = Enum.SurfaceType.Smooth
  3440. Part300.brickColor = BrickColor.new("Black")
  3441. Part300.FormFactor = Enum.FormFactor.Plate
  3442. Part300.formFactor = Enum.FormFactor.Plate
  3443. Part301.Parent = Model0
  3444. Part301.CFrame = CFrame.new(8.02764893, -3.42055511, 45.8769035, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3445. Part301.Orientation = Vector3.new(0, -90, -90)
  3446. Part301.Position = Vector3.new(8.02764893, -3.42055511, 45.8769035)
  3447. Part301.Rotation = Vector3.new(90, -90, 0)
  3448. Part301.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3449. Part301.Size = Vector3.new(8, 0.400000006, 12)
  3450. Part301.Anchored = true
  3451. Part301.BottomSurface = Enum.SurfaceType.Smooth
  3452. Part301.BrickColor = BrickColor.new("Black")
  3453. Part301.CanCollide = false
  3454. Part301.Reflectance = 0.5
  3455. Part301.TopSurface = Enum.SurfaceType.Smooth
  3456. Part301.brickColor = BrickColor.new("Black")
  3457. Part301.FormFactor = Enum.FormFactor.Plate
  3458. Part301.formFactor = Enum.FormFactor.Plate
  3459. Part302.Parent = Model0
  3460. Part302.CFrame = CFrame.new(-6.77233887, -2.42077589, 5.67690277, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3461. Part302.Orientation = Vector3.new(0, 180, -90)
  3462. Part302.Position = Vector3.new(-6.77233887, -2.42077589, 5.67690277)
  3463. Part302.Rotation = Vector3.new(-180, 0, 90)
  3464. Part302.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3465. Part302.Size = Vector3.new(8, 0.400000006, 12)
  3466. Part302.Anchored = true
  3467. Part302.BottomSurface = Enum.SurfaceType.Smooth
  3468. Part302.BrickColor = BrickColor.new("Black")
  3469. Part302.CanCollide = false
  3470. Part302.Reflectance = 0.5
  3471. Part302.TopSurface = Enum.SurfaceType.Smooth
  3472. Part302.brickColor = BrickColor.new("Black")
  3473. Part302.FormFactor = Enum.FormFactor.Plate
  3474. Part302.formFactor = Enum.FormFactor.Plate
  3475. Part303.Parent = Model0
  3476. Part303.CFrame = CFrame.new(-6.77233887, -2.42077589, 21.1769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3477. Part303.Orientation = Vector3.new(0, 180, -90)
  3478. Part303.Position = Vector3.new(-6.77233887, -2.42077589, 21.1769028)
  3479. Part303.Rotation = Vector3.new(-180, 0, 90)
  3480. Part303.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3481. Part303.Size = Vector3.new(8, 0.400000006, 13)
  3482. Part303.Anchored = true
  3483. Part303.BottomSurface = Enum.SurfaceType.Smooth
  3484. Part303.BrickColor = BrickColor.new("Black")
  3485. Part303.CanCollide = false
  3486. Part303.Reflectance = 0.5
  3487. Part303.TopSurface = Enum.SurfaceType.Smooth
  3488. Part303.brickColor = BrickColor.new("Black")
  3489. Part303.FormFactor = Enum.FormFactor.Plate
  3490. Part303.formFactor = Enum.FormFactor.Plate
  3491. Part304.Parent = Model0
  3492. Part304.CFrame = CFrame.new(-6.77233887, -2.42077589, 36.6769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3493. Part304.Orientation = Vector3.new(0, 180, -90)
  3494. Part304.Position = Vector3.new(-6.77233887, -2.42077589, 36.6769028)
  3495. Part304.Rotation = Vector3.new(-180, 0, 90)
  3496. Part304.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3497. Part304.Size = Vector3.new(8, 0.400000006, 12)
  3498. Part304.Anchored = true
  3499. Part304.BottomSurface = Enum.SurfaceType.Smooth
  3500. Part304.BrickColor = BrickColor.new("Black")
  3501. Part304.CanCollide = false
  3502. Part304.Reflectance = 0.5
  3503. Part304.TopSurface = Enum.SurfaceType.Smooth
  3504. Part304.brickColor = BrickColor.new("Black")
  3505. Part304.FormFactor = Enum.FormFactor.Plate
  3506. Part304.formFactor = Enum.FormFactor.Plate
  3507. Part305.Parent = Model0
  3508. Part305.CFrame = CFrame.new(-6.77233887, 12.579422, 21.1769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3509. Part305.Orientation = Vector3.new(0, 180, -90)
  3510. Part305.Position = Vector3.new(-6.77233887, 12.579422, 21.1769028)
  3511. Part305.Rotation = Vector3.new(-180, 0, 90)
  3512. Part305.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3513. Part305.Size = Vector3.new(8, 0.400000006, 13)
  3514. Part305.Anchored = true
  3515. Part305.BottomSurface = Enum.SurfaceType.Smooth
  3516. Part305.BrickColor = BrickColor.new("Black")
  3517. Part305.CanCollide = false
  3518. Part305.Reflectance = 0.5
  3519. Part305.TopSurface = Enum.SurfaceType.Smooth
  3520. Part305.brickColor = BrickColor.new("Black")
  3521. Part305.FormFactor = Enum.FormFactor.Plate
  3522. Part305.formFactor = Enum.FormFactor.Plate
  3523. Part306.Parent = Model0
  3524. Part306.CFrame = CFrame.new(-6.77233887, 12.579422, 5.67690277, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3525. Part306.Orientation = Vector3.new(0, 180, -90)
  3526. Part306.Position = Vector3.new(-6.77233887, 12.579422, 5.67690277)
  3527. Part306.Rotation = Vector3.new(-180, 0, 90)
  3528. Part306.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3529. Part306.Size = Vector3.new(8, 0.400000006, 12)
  3530. Part306.Anchored = true
  3531. Part306.BottomSurface = Enum.SurfaceType.Smooth
  3532. Part306.BrickColor = BrickColor.new("Black")
  3533. Part306.CanCollide = false
  3534. Part306.Reflectance = 0.5
  3535. Part306.TopSurface = Enum.SurfaceType.Smooth
  3536. Part306.brickColor = BrickColor.new("Black")
  3537. Part306.FormFactor = Enum.FormFactor.Plate
  3538. Part306.formFactor = Enum.FormFactor.Plate
  3539. Part307.Parent = Model0
  3540. Part307.CFrame = CFrame.new(-6.77233887, 12.579422, 36.6769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3541. Part307.Orientation = Vector3.new(0, 180, -90)
  3542. Part307.Position = Vector3.new(-6.77233887, 12.579422, 36.6769028)
  3543. Part307.Rotation = Vector3.new(-180, 0, 90)
  3544. Part307.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3545. Part307.Size = Vector3.new(8, 0.400000006, 12)
  3546. Part307.Anchored = true
  3547. Part307.BottomSurface = Enum.SurfaceType.Smooth
  3548. Part307.BrickColor = BrickColor.new("Black")
  3549. Part307.CanCollide = false
  3550. Part307.Reflectance = 0.5
  3551. Part307.TopSurface = Enum.SurfaceType.Smooth
  3552. Part307.brickColor = BrickColor.new("Black")
  3553. Part307.FormFactor = Enum.FormFactor.Plate
  3554. Part307.formFactor = Enum.FormFactor.Plate
  3555. Part308.Parent = Model0
  3556. Part308.CFrame = CFrame.new(-6.77233887, 26.5794373, 36.6769028, 0, -1, 0, -1, 0, 0, 0, 0, -1)
  3557. Part308.Orientation = Vector3.new(0, 180, -90)
  3558. Part308.Position = Vector3.new(-6.77233887, 26.5794373, 36.6769028)
  3559. Part308.Rotation = Vector3.new(-180, 0, 90)
  3560. Part308.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3561. Part308.Size = Vector3.new(8, 0.400000006, 12)
  3562. Part308.Anchored = true
  3563. Part308.BottomSurface = Enum.SurfaceType.Smooth
  3564. Part308.BrickColor = BrickColor.new("Black")
  3565. Part308.CanCollide = false
  3566. Part308.Reflectance = 0.5
  3567. Part308.TopSurface = Enum.SurfaceType.Smooth
  3568. Part308.brickColor = BrickColor.new("Black")
  3569. Part308.FormFactor = Enum.FormFactor.Plate
  3570. Part308.formFactor = Enum.FormFactor.Plate
  3571. Part309.Parent = Model0
  3572. Part309.CFrame = CFrame.new(-98.9723511, -1.420555, -8.12309647, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3573. Part309.Orientation = Vector3.new(0, -90, -90)
  3574. Part309.Position = Vector3.new(-98.9723511, -1.420555, -8.12309647)
  3575. Part309.Rotation = Vector3.new(90, -90, 0)
  3576. Part309.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3577. Part309.Size = Vector3.new(8, 0.400000006, 12)
  3578. Part309.Anchored = true
  3579. Part309.BottomSurface = Enum.SurfaceType.Smooth
  3580. Part309.BrickColor = BrickColor.new("Black")
  3581. Part309.CanCollide = false
  3582. Part309.Reflectance = 0.5
  3583. Part309.TopSurface = Enum.SurfaceType.Smooth
  3584. Part309.brickColor = BrickColor.new("Black")
  3585. Part309.FormFactor = Enum.FormFactor.Plate
  3586. Part309.formFactor = Enum.FormFactor.Plate
  3587. Part310.Parent = Model0
  3588. Part310.CFrame = CFrame.new(-112.972351, -1.420555, -8.12309647, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3589. Part310.Orientation = Vector3.new(0, -90, -90)
  3590. Part310.Position = Vector3.new(-112.972351, -1.420555, -8.12309647)
  3591. Part310.Rotation = Vector3.new(90, -90, 0)
  3592. Part310.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3593. Part310.Size = Vector3.new(8, 0.400000006, 12)
  3594. Part310.Anchored = true
  3595. Part310.BottomSurface = Enum.SurfaceType.Smooth
  3596. Part310.BrickColor = BrickColor.new("Black")
  3597. Part310.CanCollide = false
  3598. Part310.Reflectance = 0.5
  3599. Part310.TopSurface = Enum.SurfaceType.Smooth
  3600. Part310.brickColor = BrickColor.new("Black")
  3601. Part310.FormFactor = Enum.FormFactor.Plate
  3602. Part310.formFactor = Enum.FormFactor.Plate
  3603. Part311.Parent = Model0
  3604. Part311.CFrame = CFrame.new(-126.972351, -1.420555, -8.12309647, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3605. Part311.Orientation = Vector3.new(0, -90, -90)
  3606. Part311.Position = Vector3.new(-126.972351, -1.420555, -8.12309647)
  3607. Part311.Rotation = Vector3.new(90, -90, 0)
  3608. Part311.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3609. Part311.Size = Vector3.new(8, 0.400000006, 12)
  3610. Part311.Anchored = true
  3611. Part311.BottomSurface = Enum.SurfaceType.Smooth
  3612. Part311.BrickColor = BrickColor.new("Black")
  3613. Part311.CanCollide = false
  3614. Part311.Reflectance = 0.5
  3615. Part311.TopSurface = Enum.SurfaceType.Smooth
  3616. Part311.brickColor = BrickColor.new("Black")
  3617. Part311.FormFactor = Enum.FormFactor.Plate
  3618. Part311.formFactor = Enum.FormFactor.Plate
  3619. Part312.Parent = Model0
  3620. Part312.CFrame = CFrame.new(-140.972351, -1.420555, -8.12309647, -0, 0, -1, -1, 0, -0, -0, 1, -0)
  3621. Part312.Orientation = Vector3.new(0, -90, -90)
  3622. Part312.Position = Vector3.new(-140.972351, -1.420555, -8.12309647)
  3623. Part312.Rotation = Vector3.new(90, -90, 0)
  3624. Part312.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3625. Part312.Size = Vector3.new(8, 0.400000006, 12)
  3626. Part312.Anchored = true
  3627. Part312.BottomSurface = Enum.SurfaceType.Smooth
  3628. Part312.BrickColor = BrickColor.new("Black")
  3629. Part312.CanCollide = false
  3630. Part312.Reflectance = 0.5
  3631. Part312.TopSurface = Enum.SurfaceType.Smooth
  3632. Part312.brickColor = BrickColor.new("Black")
  3633. Part312.FormFactor = Enum.FormFactor.Plate
  3634. Part312.formFactor = Enum.FormFactor.Plate
  3635. Part313.Parent = Model0
  3636. Part313.CFrame = CFrame.new(-89.7723389, -1.420555, -17.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3637. Part313.Orientation = Vector3.new(0, 0, -90)
  3638. Part313.Position = Vector3.new(-89.7723389, -1.420555, -17.3230972)
  3639. Part313.Rotation = Vector3.new(0, 0, -90)
  3640. Part313.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3641. Part313.Size = Vector3.new(8, 0.400000006, 12)
  3642. Part313.Anchored = true
  3643. Part313.BottomSurface = Enum.SurfaceType.Smooth
  3644. Part313.BrickColor = BrickColor.new("Black")
  3645. Part313.CanCollide = false
  3646. Part313.Reflectance = 0.5
  3647. Part313.TopSurface = Enum.SurfaceType.Smooth
  3648. Part313.brickColor = BrickColor.new("Black")
  3649. Part313.FormFactor = Enum.FormFactor.Plate
  3650. Part313.formFactor = Enum.FormFactor.Plate
  3651. Part314.Parent = Model0
  3652. Part314.CFrame = CFrame.new(-89.7723389, -1.420555, -32.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3653. Part314.Orientation = Vector3.new(0, 0, -90)
  3654. Part314.Position = Vector3.new(-89.7723389, -1.420555, -32.3230972)
  3655. Part314.Rotation = Vector3.new(0, 0, -90)
  3656. Part314.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3657. Part314.Size = Vector3.new(8, 0.400000006, 12)
  3658. Part314.Anchored = true
  3659. Part314.BottomSurface = Enum.SurfaceType.Smooth
  3660. Part314.BrickColor = BrickColor.new("Black")
  3661. Part314.CanCollide = false
  3662. Part314.Reflectance = 0.5
  3663. Part314.TopSurface = Enum.SurfaceType.Smooth
  3664. Part314.brickColor = BrickColor.new("Black")
  3665. Part314.FormFactor = Enum.FormFactor.Plate
  3666. Part314.formFactor = Enum.FormFactor.Plate
  3667. Part315.Parent = Model0
  3668. Part315.CFrame = CFrame.new(-88.7723389, -1.420555, -67.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3669. Part315.Orientation = Vector3.new(0, 0, -90)
  3670. Part315.Position = Vector3.new(-88.7723389, -1.420555, -67.3230972)
  3671. Part315.Rotation = Vector3.new(0, 0, -90)
  3672. Part315.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3673. Part315.Size = Vector3.new(8, 0.400000006, 12)
  3674. Part315.Anchored = true
  3675. Part315.BottomSurface = Enum.SurfaceType.Smooth
  3676. Part315.BrickColor = BrickColor.new("Black")
  3677. Part315.CanCollide = false
  3678. Part315.Reflectance = 0.5
  3679. Part315.TopSurface = Enum.SurfaceType.Smooth
  3680. Part315.brickColor = BrickColor.new("Black")
  3681. Part315.FormFactor = Enum.FormFactor.Plate
  3682. Part315.formFactor = Enum.FormFactor.Plate
  3683. Part316.Parent = Model0
  3684. Part316.CFrame = CFrame.new(-88.7723389, -1.420555, -91.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3685. Part316.Orientation = Vector3.new(0, 0, -90)
  3686. Part316.Position = Vector3.new(-88.7723389, -1.420555, -91.3230972)
  3687. Part316.Rotation = Vector3.new(0, 0, -90)
  3688. Part316.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3689. Part316.Size = Vector3.new(8, 0.400000006, 12)
  3690. Part316.Anchored = true
  3691. Part316.BottomSurface = Enum.SurfaceType.Smooth
  3692. Part316.BrickColor = BrickColor.new("Black")
  3693. Part316.CanCollide = false
  3694. Part316.Reflectance = 0.5
  3695. Part316.TopSurface = Enum.SurfaceType.Smooth
  3696. Part316.brickColor = BrickColor.new("Black")
  3697. Part316.FormFactor = Enum.FormFactor.Plate
  3698. Part316.formFactor = Enum.FormFactor.Plate
  3699. Part317.Parent = Model0
  3700. Part317.CFrame = CFrame.new(-88.7723389, 13.5794363, -67.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3701. Part317.Orientation = Vector3.new(0, 0, -90)
  3702. Part317.Position = Vector3.new(-88.7723389, 13.5794363, -67.3230972)
  3703. Part317.Rotation = Vector3.new(0, 0, -90)
  3704. Part317.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3705. Part317.Size = Vector3.new(8, 0.400000006, 12)
  3706. Part317.Anchored = true
  3707. Part317.BottomSurface = Enum.SurfaceType.Smooth
  3708. Part317.BrickColor = BrickColor.new("Black")
  3709. Part317.CanCollide = false
  3710. Part317.Reflectance = 0.5
  3711. Part317.TopSurface = Enum.SurfaceType.Smooth
  3712. Part317.brickColor = BrickColor.new("Black")
  3713. Part317.FormFactor = Enum.FormFactor.Plate
  3714. Part317.formFactor = Enum.FormFactor.Plate
  3715. Part318.Parent = Model0
  3716. Part318.CFrame = CFrame.new(-88.7723389, 13.5794363, -91.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3717. Part318.Orientation = Vector3.new(0, 0, -90)
  3718. Part318.Position = Vector3.new(-88.7723389, 13.5794363, -91.3230972)
  3719. Part318.Rotation = Vector3.new(0, 0, -90)
  3720. Part318.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3721. Part318.Size = Vector3.new(8, 0.400000006, 12)
  3722. Part318.Anchored = true
  3723. Part318.BottomSurface = Enum.SurfaceType.Smooth
  3724. Part318.BrickColor = BrickColor.new("Black")
  3725. Part318.CanCollide = false
  3726. Part318.Reflectance = 0.5
  3727. Part318.TopSurface = Enum.SurfaceType.Smooth
  3728. Part318.brickColor = BrickColor.new("Black")
  3729. Part318.FormFactor = Enum.FormFactor.Plate
  3730. Part318.formFactor = Enum.FormFactor.Plate
  3731. Part319.Parent = Model0
  3732. Part319.CFrame = CFrame.new(-88.7723389, 28.5794373, -67.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3733. Part319.Orientation = Vector3.new(0, 0, -90)
  3734. Part319.Position = Vector3.new(-88.7723389, 28.5794373, -67.3230972)
  3735. Part319.Rotation = Vector3.new(0, 0, -90)
  3736. Part319.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3737. Part319.Size = Vector3.new(8, 0.400000006, 12)
  3738. Part319.Anchored = true
  3739. Part319.BottomSurface = Enum.SurfaceType.Smooth
  3740. Part319.BrickColor = BrickColor.new("Black")
  3741. Part319.CanCollide = false
  3742. Part319.Reflectance = 0.5
  3743. Part319.TopSurface = Enum.SurfaceType.Smooth
  3744. Part319.brickColor = BrickColor.new("Black")
  3745. Part319.FormFactor = Enum.FormFactor.Plate
  3746. Part319.formFactor = Enum.FormFactor.Plate
  3747. Part320.Parent = Model0
  3748. Part320.CFrame = CFrame.new(-88.7723389, 28.5794373, -91.3230972, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  3749. Part320.Orientation = Vector3.new(0, 0, -90)
  3750. Part320.Position = Vector3.new(-88.7723389, 28.5794373, -91.3230972)
  3751. Part320.Rotation = Vector3.new(0, 0, -90)
  3752. Part320.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3753. Part320.Size = Vector3.new(8, 0.400000006, 12)
  3754. Part320.Anchored = true
  3755. Part320.BottomSurface = Enum.SurfaceType.Smooth
  3756. Part320.BrickColor = BrickColor.new("Black")
  3757. Part320.CanCollide = false
  3758. Part320.Reflectance = 0.5
  3759. Part320.TopSurface = Enum.SurfaceType.Smooth
  3760. Part320.brickColor = BrickColor.new("Black")
  3761. Part320.FormFactor = Enum.FormFactor.Plate
  3762. Part320.formFactor = Enum.FormFactor.Plate
  3763. Part321.Parent = Model0
  3764. Part321.CFrame = CFrame.new(-50.1723633, -3.42077589, -23.3230972, 9.53674316e-07, 1, -7.15256306e-07, -1, -9.53674316e-07, 3.41060757e-13, -3.41060757e-13, -7.15256306e-07, 1)
  3765. Part321.Orientation = Vector3.new(0, 0, -90)
  3766. Part321.Position = Vector3.new(-50.1723633, -3.42077589, -23.3230972)
  3767. Part321.Rotation = Vector3.new(0, 0, -90)
  3768. Part321.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3769. Part321.Size = Vector3.new(8, 0.400000006, 12)
  3770. Part321.Anchored = true
  3771. Part321.BottomSurface = Enum.SurfaceType.Smooth
  3772. Part321.BrickColor = BrickColor.new("Black")
  3773. Part321.CanCollide = false
  3774. Part321.Reflectance = 0.5
  3775. Part321.TopSurface = Enum.SurfaceType.Smooth
  3776. Part321.brickColor = BrickColor.new("Black")
  3777. Part321.FormFactor = Enum.FormFactor.Plate
  3778. Part321.formFactor = Enum.FormFactor.Plate
  3779. Part322.Parent = Model0
  3780. Part322.CFrame = CFrame.new(-50.1723022, -3.42077589, -37.3230972, 6.67572021e-06, 1, 5.00679425e-06, -1, 6.67572021e-06, 1.6711979e-11, -1.6711979e-11, -5.00679425e-06, 1)
  3781. Part322.Orientation = Vector3.new(0, 0, -90)
  3782. Part322.Position = Vector3.new(-50.1723022, -3.42077589, -37.3230972)
  3783. Part322.Rotation = Vector3.new(0, 0, -90)
  3784. Part322.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3785. Part322.Size = Vector3.new(8, 0.400000006, 12)
  3786. Part322.Anchored = true
  3787. Part322.BottomSurface = Enum.SurfaceType.Smooth
  3788. Part322.BrickColor = BrickColor.new("Black")
  3789. Part322.CanCollide = false
  3790. Part322.Reflectance = 0.5
  3791. Part322.TopSurface = Enum.SurfaceType.Smooth
  3792. Part322.brickColor = BrickColor.new("Black")
  3793. Part322.FormFactor = Enum.FormFactor.Plate
  3794. Part322.formFactor = Enum.FormFactor.Plate
  3795. Part323.Parent = Model0
  3796. Part323.CFrame = CFrame.new(-50.1723022, -3.42077589, -51.3230972, 6.67572021e-06, 1, 5.00679425e-06, -1, 6.67572021e-06, 1.6711979e-11, -1.6711979e-11, -5.00679425e-06, 1)
  3797. Part323.Orientation = Vector3.new(0, 0, -90)
  3798. Part323.Position = Vector3.new(-50.1723022, -3.42077589, -51.3230972)
  3799. Part323.Rotation = Vector3.new(0, 0, -90)
  3800. Part323.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3801. Part323.Size = Vector3.new(8, 0.400000006, 12)
  3802. Part323.Anchored = true
  3803. Part323.BottomSurface = Enum.SurfaceType.Smooth
  3804. Part323.BrickColor = BrickColor.new("Black")
  3805. Part323.CanCollide = false
  3806. Part323.Reflectance = 0.5
  3807. Part323.TopSurface = Enum.SurfaceType.Smooth
  3808. Part323.brickColor = BrickColor.new("Black")
  3809. Part323.FormFactor = Enum.FormFactor.Plate
  3810. Part323.formFactor = Enum.FormFactor.Plate
  3811. Part324.Parent = Model0
  3812. Part324.CFrame = CFrame.new(-50.1723633, 25.7794495, 37.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3813. Part324.Orientation = Vector3.new(0, -180, -90)
  3814. Part324.Position = Vector3.new(-50.1723633, 25.7794495, 37.6769028)
  3815. Part324.Rotation = Vector3.new(180, 0, 90)
  3816. Part324.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3817. Part324.Size = Vector3.new(8, 0.400000006, 12)
  3818. Part324.Anchored = true
  3819. Part324.BottomSurface = Enum.SurfaceType.Smooth
  3820. Part324.BrickColor = BrickColor.new("Black")
  3821. Part324.CanCollide = false
  3822. Part324.Reflectance = 0.5
  3823. Part324.TopSurface = Enum.SurfaceType.Smooth
  3824. Part324.brickColor = BrickColor.new("Black")
  3825. Part324.FormFactor = Enum.FormFactor.Plate
  3826. Part324.formFactor = Enum.FormFactor.Plate
  3827. Part325.Parent = Model0
  3828. Part325.CFrame = CFrame.new(-50.1723633, 25.7794495, 6.67690277, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3829. Part325.Orientation = Vector3.new(0, -180, -90)
  3830. Part325.Position = Vector3.new(-50.1723633, 25.7794495, 6.67690277)
  3831. Part325.Rotation = Vector3.new(180, 0, 90)
  3832. Part325.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3833. Part325.Size = Vector3.new(8, 0.400000006, 12)
  3834. Part325.Anchored = true
  3835. Part325.BottomSurface = Enum.SurfaceType.Smooth
  3836. Part325.BrickColor = BrickColor.new("Black")
  3837. Part325.CanCollide = false
  3838. Part325.Reflectance = 0.5
  3839. Part325.TopSurface = Enum.SurfaceType.Smooth
  3840. Part325.brickColor = BrickColor.new("Black")
  3841. Part325.FormFactor = Enum.FormFactor.Plate
  3842. Part325.formFactor = Enum.FormFactor.Plate
  3843. Part326.Parent = Model0
  3844. Part326.CFrame = CFrame.new(-50.1723633, 25.7794495, 22.1769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3845. Part326.Orientation = Vector3.new(0, -180, -90)
  3846. Part326.Position = Vector3.new(-50.1723633, 25.7794495, 22.1769028)
  3847. Part326.Rotation = Vector3.new(180, 0, 90)
  3848. Part326.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3849. Part326.Size = Vector3.new(8, 0.400000006, 13)
  3850. Part326.Anchored = true
  3851. Part326.BottomSurface = Enum.SurfaceType.Smooth
  3852. Part326.BrickColor = BrickColor.new("Black")
  3853. Part326.CanCollide = false
  3854. Part326.Reflectance = 0.5
  3855. Part326.TopSurface = Enum.SurfaceType.Smooth
  3856. Part326.brickColor = BrickColor.new("Black")
  3857. Part326.FormFactor = Enum.FormFactor.Plate
  3858. Part326.formFactor = Enum.FormFactor.Plate
  3859. Part327.Parent = Model0
  3860. Part327.CFrame = CFrame.new(-50.1723633, 11.7794476, 6.67690277, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3861. Part327.Orientation = Vector3.new(0, -180, -90)
  3862. Part327.Position = Vector3.new(-50.1723633, 11.7794476, 6.67690277)
  3863. Part327.Rotation = Vector3.new(180, 0, 90)
  3864. Part327.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3865. Part327.Size = Vector3.new(8, 0.400000006, 12)
  3866. Part327.Anchored = true
  3867. Part327.BottomSurface = Enum.SurfaceType.Smooth
  3868. Part327.BrickColor = BrickColor.new("Black")
  3869. Part327.CanCollide = false
  3870. Part327.Reflectance = 0.5
  3871. Part327.TopSurface = Enum.SurfaceType.Smooth
  3872. Part327.brickColor = BrickColor.new("Black")
  3873. Part327.FormFactor = Enum.FormFactor.Plate
  3874. Part327.formFactor = Enum.FormFactor.Plate
  3875. Part328.Parent = Model0
  3876. Part328.CFrame = CFrame.new(-50.1723633, -3.22055793, 6.67690277, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3877. Part328.Orientation = Vector3.new(0, -180, -90)
  3878. Part328.Position = Vector3.new(-50.1723633, -3.22055793, 6.67690277)
  3879. Part328.Rotation = Vector3.new(180, 0, 90)
  3880. Part328.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3881. Part328.Size = Vector3.new(8, 0.400000006, 12)
  3882. Part328.Anchored = true
  3883. Part328.BottomSurface = Enum.SurfaceType.Smooth
  3884. Part328.BrickColor = BrickColor.new("Black")
  3885. Part328.CanCollide = false
  3886. Part328.Reflectance = 0.5
  3887. Part328.TopSurface = Enum.SurfaceType.Smooth
  3888. Part328.brickColor = BrickColor.new("Black")
  3889. Part328.FormFactor = Enum.FormFactor.Plate
  3890. Part328.formFactor = Enum.FormFactor.Plate
  3891. Part329.Parent = Model0
  3892. Part329.CFrame = CFrame.new(-50.1723633, -3.22055793, 22.1769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3893. Part329.Orientation = Vector3.new(0, -180, -90)
  3894. Part329.Position = Vector3.new(-50.1723633, -3.22055793, 22.1769028)
  3895. Part329.Rotation = Vector3.new(180, 0, 90)
  3896. Part329.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3897. Part329.Size = Vector3.new(8, 0.400000006, 13)
  3898. Part329.Anchored = true
  3899. Part329.BottomSurface = Enum.SurfaceType.Smooth
  3900. Part329.BrickColor = BrickColor.new("Black")
  3901. Part329.CanCollide = false
  3902. Part329.Reflectance = 0.5
  3903. Part329.TopSurface = Enum.SurfaceType.Smooth
  3904. Part329.brickColor = BrickColor.new("Black")
  3905. Part329.FormFactor = Enum.FormFactor.Plate
  3906. Part329.formFactor = Enum.FormFactor.Plate
  3907. Part330.Parent = Model0
  3908. Part330.CFrame = CFrame.new(-50.1723633, -3.22055793, 37.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3909. Part330.Orientation = Vector3.new(0, -180, -90)
  3910. Part330.Position = Vector3.new(-50.1723633, -3.22055793, 37.6769028)
  3911. Part330.Rotation = Vector3.new(180, 0, 90)
  3912. Part330.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3913. Part330.Size = Vector3.new(8, 0.400000006, 12)
  3914. Part330.Anchored = true
  3915. Part330.BottomSurface = Enum.SurfaceType.Smooth
  3916. Part330.BrickColor = BrickColor.new("Black")
  3917. Part330.CanCollide = false
  3918. Part330.Reflectance = 0.5
  3919. Part330.TopSurface = Enum.SurfaceType.Smooth
  3920. Part330.brickColor = BrickColor.new("Black")
  3921. Part330.FormFactor = Enum.FormFactor.Plate
  3922. Part330.formFactor = Enum.FormFactor.Plate
  3923. Part331.Parent = Model0
  3924. Part331.CFrame = CFrame.new(-50.1723633, 11.7794476, 37.6769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3925. Part331.Orientation = Vector3.new(0, -180, -90)
  3926. Part331.Position = Vector3.new(-50.1723633, 11.7794476, 37.6769028)
  3927. Part331.Rotation = Vector3.new(180, 0, 90)
  3928. Part331.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3929. Part331.Size = Vector3.new(8, 0.400000006, 12)
  3930. Part331.Anchored = true
  3931. Part331.BottomSurface = Enum.SurfaceType.Smooth
  3932. Part331.BrickColor = BrickColor.new("Black")
  3933. Part331.CanCollide = false
  3934. Part331.Reflectance = 0.5
  3935. Part331.TopSurface = Enum.SurfaceType.Smooth
  3936. Part331.brickColor = BrickColor.new("Black")
  3937. Part331.FormFactor = Enum.FormFactor.Plate
  3938. Part331.formFactor = Enum.FormFactor.Plate
  3939. Part332.Parent = Model0
  3940. Part332.CFrame = CFrame.new(-50.1723633, 11.7794476, 22.1769028, -0, -1, -0, -1, -0, -0, -0, -0, -1)
  3941. Part332.Orientation = Vector3.new(0, -180, -90)
  3942. Part332.Position = Vector3.new(-50.1723633, 11.7794476, 22.1769028)
  3943. Part332.Rotation = Vector3.new(180, 0, 90)
  3944. Part332.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3945. Part332.Size = Vector3.new(8, 0.400000006, 13)
  3946. Part332.Anchored = true
  3947. Part332.BottomSurface = Enum.SurfaceType.Smooth
  3948. Part332.BrickColor = BrickColor.new("Black")
  3949. Part332.CanCollide = false
  3950. Part332.Reflectance = 0.5
  3951. Part332.TopSurface = Enum.SurfaceType.Smooth
  3952. Part332.brickColor = BrickColor.new("Black")
  3953. Part332.FormFactor = Enum.FormFactor.Plate
  3954. Part332.formFactor = Enum.FormFactor.Plate
  3955. Part333.Parent = Model0
  3956. Part333.CFrame = CFrame.new(-50.1723633, -3.42077589, -70.3230972, 0, 1, 5.65779104e-08, -1, 0, 0, 0, 5.65779104e-08, 1)
  3957. Part333.Orientation = Vector3.new(0, 0, -90)
  3958. Part333.Position = Vector3.new(-50.1723633, -3.42077589, -70.3230972)
  3959. Part333.Rotation = Vector3.new(0, 0, -90)
  3960. Part333.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3961. Part333.Size = Vector3.new(8, 0.400000006, 12)
  3962. Part333.Anchored = true
  3963. Part333.BottomSurface = Enum.SurfaceType.Smooth
  3964. Part333.BrickColor = BrickColor.new("Black")
  3965. Part333.CanCollide = false
  3966. Part333.Reflectance = 0.5
  3967. Part333.TopSurface = Enum.SurfaceType.Smooth
  3968. Part333.brickColor = BrickColor.new("Black")
  3969. Part333.FormFactor = Enum.FormFactor.Plate
  3970. Part333.formFactor = Enum.FormFactor.Plate
  3971. Part334.Parent = Model0
  3972. Part334.CFrame = CFrame.new(-50.1723633, -3.42077589, -89.3230972, 0, 1, 1.88593035e-08, -1, 0, 0, 0, 1.88593035e-08, 1)
  3973. Part334.Orientation = Vector3.new(0, 0, -90)
  3974. Part334.Position = Vector3.new(-50.1723633, -3.42077589, -89.3230972)
  3975. Part334.Rotation = Vector3.new(0, 0, -90)
  3976. Part334.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3977. Part334.Size = Vector3.new(8, 0.400000006, 12)
  3978. Part334.Anchored = true
  3979. Part334.BottomSurface = Enum.SurfaceType.Smooth
  3980. Part334.BrickColor = BrickColor.new("Black")
  3981. Part334.CanCollide = false
  3982. Part334.Reflectance = 0.5
  3983. Part334.TopSurface = Enum.SurfaceType.Smooth
  3984. Part334.brickColor = BrickColor.new("Black")
  3985. Part334.FormFactor = Enum.FormFactor.Plate
  3986. Part334.formFactor = Enum.FormFactor.Plate
  3987. Part335.Parent = Model0
  3988. Part335.CFrame = CFrame.new(-50.1723633, 7.579391, -89.3230972, 0, 1, 1.88593035e-08, -1, 0, 0, 0, 1.88593035e-08, 1)
  3989. Part335.Orientation = Vector3.new(0, 0, -90)
  3990. Part335.Position = Vector3.new(-50.1723633, 7.579391, -89.3230972)
  3991. Part335.Rotation = Vector3.new(0, 0, -90)
  3992. Part335.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3993. Part335.Size = Vector3.new(8, 0.400000006, 12)
  3994. Part335.Anchored = true
  3995. Part335.BottomSurface = Enum.SurfaceType.Smooth
  3996. Part335.BrickColor = BrickColor.new("Black")
  3997. Part335.CanCollide = false
  3998. Part335.Reflectance = 0.5
  3999. Part335.TopSurface = Enum.SurfaceType.Smooth
  4000. Part335.brickColor = BrickColor.new("Black")
  4001. Part335.FormFactor = Enum.FormFactor.Plate
  4002. Part335.formFactor = Enum.FormFactor.Plate
  4003. Part336.Parent = Model0
  4004. Part336.CFrame = CFrame.new(-50.1723633, 7.579391, -70.3230972, 0, 1, 2.82889545e-07, -1, 0, 0, 0, 2.82889545e-07, 1)
  4005. Part336.Orientation = Vector3.new(0, 0, -90)
  4006. Part336.Position = Vector3.new(-50.1723633, 7.579391, -70.3230972)
  4007. Part336.Rotation = Vector3.new(0, 0, -90)
  4008. Part336.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4009. Part336.Size = Vector3.new(8, 0.400000006, 12)
  4010. Part336.Anchored = true
  4011. Part336.BottomSurface = Enum.SurfaceType.Smooth
  4012. Part336.BrickColor = BrickColor.new("Black")
  4013. Part336.CanCollide = false
  4014. Part336.Reflectance = 0.5
  4015. Part336.TopSurface = Enum.SurfaceType.Smooth
  4016. Part336.brickColor = BrickColor.new("Black")
  4017. Part336.FormFactor = Enum.FormFactor.Plate
  4018. Part336.formFactor = Enum.FormFactor.Plate
  4019. Part337.Parent = Model0
  4020. Part337.CFrame = CFrame.new(-50.1723633, 18.579422, -89.3230972, 0, 1, 5.65779104e-08, -1, 0, 0, 0, 5.65779104e-08, 1)
  4021. Part337.Orientation = Vector3.new(0, 0, -90)
  4022. Part337.Position = Vector3.new(-50.1723633, 18.579422, -89.3230972)
  4023. Part337.Rotation = Vector3.new(0, 0, -90)
  4024. Part337.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4025. Part337.Size = Vector3.new(8, 0.400000006, 12)
  4026. Part337.Anchored = true
  4027. Part337.BottomSurface = Enum.SurfaceType.Smooth
  4028. Part337.BrickColor = BrickColor.new("Black")
  4029. Part337.CanCollide = false
  4030. Part337.Reflectance = 0.5
  4031. Part337.TopSurface = Enum.SurfaceType.Smooth
  4032. Part337.brickColor = BrickColor.new("Black")
  4033. Part337.FormFactor = Enum.FormFactor.Plate
  4034. Part337.formFactor = Enum.FormFactor.Plate
  4035. Part338.Parent = Model0
  4036. Part338.CFrame = CFrame.new(74.5276489, -6.02056122, 1.67690301, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4037. Part338.Orientation = Vector3.new(0, -90, 0)
  4038. Part338.Position = Vector3.new(74.5276489, -6.02056122, 1.67690301)
  4039. Part338.Rotation = Vector3.new(0, -90, 0)
  4040. Part338.Size = Vector3.new(4, 8.80000019, 1)
  4041. Part338.Anchored = true
  4042. Part338.BottomSurface = Enum.SurfaceType.Smooth
  4043. Part338.TopSurface = Enum.SurfaceType.Smooth
  4044. Part338.FormFactor = Enum.FormFactor.Plate
  4045. Part338.formFactor = Enum.FormFactor.Plate
  4046. Part339.Parent = Model0
  4047. Part339.CFrame = CFrame.new(74.5276489, -6.02056122, 56.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4048. Part339.Orientation = Vector3.new(0, -90, 0)
  4049. Part339.Position = Vector3.new(74.5276489, -6.02056122, 56.1769028)
  4050. Part339.Rotation = Vector3.new(0, -90, 0)
  4051. Part339.Size = Vector3.new(9, 8.80000019, 1)
  4052. Part339.Anchored = true
  4053. Part339.BottomSurface = Enum.SurfaceType.Smooth
  4054. Part339.TopSurface = Enum.SurfaceType.Smooth
  4055. Part339.FormFactor = Enum.FormFactor.Plate
  4056. Part339.formFactor = Enum.FormFactor.Plate
  4057. Part340.Parent = Model0
  4058. Part340.CFrame = CFrame.new(4.02764893, -6.02056122, 92.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4059. Part340.Position = Vector3.new(4.02764893, -6.02056122, 92.1769028)
  4060. Part340.Size = Vector3.new(18, 8.80000019, 1)
  4061. Part340.Anchored = true
  4062. Part340.BottomSurface = Enum.SurfaceType.Smooth
  4063. Part340.TopSurface = Enum.SurfaceType.Smooth
  4064. Part340.FormFactor = Enum.FormFactor.Plate
  4065. Part340.formFactor = Enum.FormFactor.Plate
  4066. Part341.Parent = Model0
  4067. Part341.CFrame = CFrame.new(-3.47235107, -6.02056122, 43.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4068. Part341.Position = Vector3.new(-3.47235107, -6.02056122, 43.1769028)
  4069. Part341.Size = Vector3.new(7, 8.80000019, 1)
  4070. Part341.Anchored = true
  4071. Part341.BottomSurface = Enum.SurfaceType.Smooth
  4072. Part341.TopSurface = Enum.SurfaceType.Smooth
  4073. Part341.FormFactor = Enum.FormFactor.Plate
  4074. Part341.formFactor = Enum.FormFactor.Plate
  4075. Part342.Parent = Model0
  4076. Part342.CFrame = CFrame.new(-46.4723511, -6.02056122, -8.82309628, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4077. Part342.Orientation = Vector3.new(0, 90, 0)
  4078. Part342.Position = Vector3.new(-46.4723511, -6.02056122, -8.82309628)
  4079. Part342.Rotation = Vector3.new(0, 90, 0)
  4080. Part342.Size = Vector3.new(13, 8.80000019, 1)
  4081. Part342.Anchored = true
  4082. Part342.BottomSurface = Enum.SurfaceType.Smooth
  4083. Part342.TopSurface = Enum.SurfaceType.Smooth
  4084. Part342.FormFactor = Enum.FormFactor.Plate
  4085. Part342.formFactor = Enum.FormFactor.Plate
  4086. Part343.Parent = Model0
  4087. Part343.CFrame = CFrame.new(-45.4723511, -6.02056122, -60.8230972, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4088. Part343.Orientation = Vector3.new(0, -90, 0)
  4089. Part343.Position = Vector3.new(-45.4723511, -6.02056122, -60.8230972)
  4090. Part343.Rotation = Vector3.new(0, -90, 0)
  4091. Part343.Size = Vector3.new(3, 8.80000019, 1)
  4092. Part343.Anchored = true
  4093. Part343.BottomSurface = Enum.SurfaceType.Smooth
  4094. Part343.TopSurface = Enum.SurfaceType.Smooth
  4095. Part343.FormFactor = Enum.FormFactor.Plate
  4096. Part343.formFactor = Enum.FormFactor.Plate
  4097. Part344.Parent = Model0
  4098. Part344.CFrame = CFrame.new(-97.4723511, -6.02056122, -48.3230972, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4099. Part344.Orientation = Vector3.new(0, 90, 0)
  4100. Part344.Position = Vector3.new(-97.4723511, -6.02056122, -48.3230972)
  4101. Part344.Rotation = Vector3.new(0, 90, 0)
  4102. Part344.Size = Vector3.new(14, 8.80000019, 1)
  4103. Part344.Anchored = true
  4104. Part344.BottomSurface = Enum.SurfaceType.Smooth
  4105. Part344.TopSurface = Enum.SurfaceType.Smooth
  4106. Part344.FormFactor = Enum.FormFactor.Plate
  4107. Part344.formFactor = Enum.FormFactor.Plate
  4108. Part345.Parent = Model0
  4109. Part345.CFrame = CFrame.new(-112.972351, 0.979445994, 55.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4110. Part345.Orientation = Vector3.new(0, -90, 0)
  4111. Part345.Position = Vector3.new(-112.972351, 0.979445994, 55.6769028)
  4112. Part345.Rotation = Vector3.new(0, -90, 0)
  4113. Part345.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4114. Part345.Size = Vector3.new(48, 22.8000011, 48)
  4115. Part345.Anchored = true
  4116. Part345.BottomSurface = Enum.SurfaceType.Smooth
  4117. Part345.BrickColor = BrickColor.new("Dark stone grey")
  4118. Part345.TopSurface = Enum.SurfaceType.Smooth
  4119. Part345.brickColor = BrickColor.new("Dark stone grey")
  4120. Part345.FormFactor = Enum.FormFactor.Plate
  4121. Part345.formFactor = Enum.FormFactor.Plate
  4122. Part346.Parent = Model0
  4123. Part346.CFrame = CFrame.new(-79.9723511, -6.02056122, 92.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4124. Part346.Position = Vector3.new(-79.9723511, -6.02056122, 92.1769028)
  4125. Part346.Size = Vector3.new(30, 8.80000019, 1)
  4126. Part346.Anchored = true
  4127. Part346.BottomSurface = Enum.SurfaceType.Smooth
  4128. Part346.TopSurface = Enum.SurfaceType.Smooth
  4129. Part346.FormFactor = Enum.FormFactor.Plate
  4130. Part346.formFactor = Enum.FormFactor.Plate
  4131. Part347.Parent = Model0
  4132. Part347.CFrame = CFrame.new(-95.4723511, -6.02056122, 86.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4133. Part347.Orientation = Vector3.new(0, -90, 0)
  4134. Part347.Position = Vector3.new(-95.4723511, -6.02056122, 86.1769028)
  4135. Part347.Rotation = Vector3.new(0, -90, 0)
  4136. Part347.Size = Vector3.new(13, 8.80000019, 1)
  4137. Part347.Anchored = true
  4138. Part347.BottomSurface = Enum.SurfaceType.Smooth
  4139. Part347.TopSurface = Enum.SurfaceType.Smooth
  4140. Part347.FormFactor = Enum.FormFactor.Plate
  4141. Part347.formFactor = Enum.FormFactor.Plate
  4142. Part348.Parent = Model0
  4143. Part348.CFrame = CFrame.new(-174.972351, -10.2205582, 49.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4144. Part348.Orientation = Vector3.new(0, -90, 0)
  4145. Part348.Position = Vector3.new(-174.972351, -10.2205582, 49.6769028)
  4146. Part348.Rotation = Vector3.new(0, -90, 0)
  4147. Part348.Size = Vector3.new(36, 0.400000006, 56)
  4148. Part348.Anchored = true
  4149. Part348.BottomSurface = Enum.SurfaceType.Smooth
  4150. Part348.TopSurface = Enum.SurfaceType.Smooth
  4151. Part348.FormFactor = Enum.FormFactor.Plate
  4152. Part348.formFactor = Enum.FormFactor.Plate
  4153. Part349.Parent = Model0
  4154. Part349.CFrame = CFrame.new(-159.472351, -6.02056122, 74.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4155. Part349.Orientation = Vector3.new(0, -90, 0)
  4156. Part349.Position = Vector3.new(-159.472351, -6.02056122, 74.1769028)
  4157. Part349.Rotation = Vector3.new(0, -90, 0)
  4158. Part349.Size = Vector3.new(13, 8.80000019, 1)
  4159. Part349.Anchored = true
  4160. Part349.BottomSurface = Enum.SurfaceType.Smooth
  4161. Part349.TopSurface = Enum.SurfaceType.Smooth
  4162. Part349.FormFactor = Enum.FormFactor.Plate
  4163. Part349.formFactor = Enum.FormFactor.Plate
  4164. Part350.Parent = Model0
  4165. Part350.CFrame = CFrame.new(-173.472351, -6.02056122, 81.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4166. Part350.Position = Vector3.new(-173.472351, -6.02056122, 81.1769028)
  4167. Part350.Size = Vector3.new(29, 8.80000019, 1)
  4168. Part350.Anchored = true
  4169. Part350.BottomSurface = Enum.SurfaceType.Smooth
  4170. Part350.TopSurface = Enum.SurfaceType.Smooth
  4171. Part350.FormFactor = Enum.FormFactor.Plate
  4172. Part350.formFactor = Enum.FormFactor.Plate
  4173. Part351.Parent = Model0
  4174. Part351.CFrame = CFrame.new(-187.472351, -6.02056122, 74.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4175. Part351.Orientation = Vector3.new(0, 90, 0)
  4176. Part351.Position = Vector3.new(-187.472351, -6.02056122, 74.1769028)
  4177. Part351.Rotation = Vector3.new(0, 90, 0)
  4178. Part351.Size = Vector3.new(13, 8.80000019, 1)
  4179. Part351.Anchored = true
  4180. Part351.BottomSurface = Enum.SurfaceType.Smooth
  4181. Part351.TopSurface = Enum.SurfaceType.Smooth
  4182. Part351.FormFactor = Enum.FormFactor.Plate
  4183. Part351.formFactor = Enum.FormFactor.Plate
  4184. Part352.Parent = Model0
  4185. Part352.CFrame = CFrame.new(69.5276489, -8.62055969, 73.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4186. Part352.Orientation = Vector3.new(0, -90, 0)
  4187. Part352.Position = Vector3.new(69.5276489, -8.62055969, 73.6769028)
  4188. Part352.Rotation = Vector3.new(0, -90, 0)
  4189. Part352.Size = Vector3.new(24, 2.79999995, 1)
  4190. Part352.Anchored = true
  4191. Part352.BottomSurface = Enum.SurfaceType.Smooth
  4192. Part352.TopSurface = Enum.SurfaceType.Smooth
  4193. Part352.FormFactor = Enum.FormFactor.Plate
  4194. Part352.formFactor = Enum.FormFactor.Plate
  4195. Part353.Parent = Model0
  4196. Part353.CFrame = CFrame.new(56.5276489, -8.62055969, 85.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4197. Part353.Position = Vector3.new(56.5276489, -8.62055969, 85.1769028)
  4198. Part353.Size = Vector3.new(25, 2.79999995, 1)
  4199. Part353.Anchored = true
  4200. Part353.BottomSurface = Enum.SurfaceType.Smooth
  4201. Part353.TopSurface = Enum.SurfaceType.Smooth
  4202. Part353.FormFactor = Enum.FormFactor.Plate
  4203. Part353.formFactor = Enum.FormFactor.Plate
  4204. Part354.Parent = Model0
  4205. Part354.CFrame = CFrame.new(26.0276489, -8.62055969, 85.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4206. Part354.Position = Vector3.new(26.0276489, -8.62055969, 85.1769028)
  4207. Part354.Size = Vector3.new(24, 2.79999995, 1)
  4208. Part354.Anchored = true
  4209. Part354.BottomSurface = Enum.SurfaceType.Smooth
  4210. Part354.TopSurface = Enum.SurfaceType.Smooth
  4211. Part354.FormFactor = Enum.FormFactor.Plate
  4212. Part354.formFactor = Enum.FormFactor.Plate
  4213. Part355.Parent = Model0
  4214. Part355.CFrame = CFrame.new(13.527648, -5.82055616, 101.176903, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4215. Part355.Orientation = Vector3.new(0, 90, 0)
  4216. Part355.Position = Vector3.new(13.527648, -5.82055616, 101.176903)
  4217. Part355.Rotation = Vector3.new(0, 90, 0)
  4218. Part355.Size = Vector3.new(33, 8.40000057, 1)
  4219. Part355.Anchored = true
  4220. Part355.BottomSurface = Enum.SurfaceType.Smooth
  4221. Part355.TopSurface = Enum.SurfaceType.Smooth
  4222. Part355.FormFactor = Enum.FormFactor.Plate
  4223. Part355.formFactor = Enum.FormFactor.Plate
  4224. Part356.Parent = Model0
  4225. Part356.CFrame = CFrame.new(90.5276489, -5.82055616, 88.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4226. Part356.Orientation = Vector3.new(0, 90, 0)
  4227. Part356.Position = Vector3.new(90.5276489, -5.82055616, 88.6769028)
  4228. Part356.Rotation = Vector3.new(0, 90, 0)
  4229. Part356.Size = Vector3.new(56, 8.40000057, 1)
  4230. Part356.Anchored = true
  4231. Part356.BottomSurface = Enum.SurfaceType.Smooth
  4232. Part356.TopSurface = Enum.SurfaceType.Smooth
  4233. Part356.FormFactor = Enum.FormFactor.Plate
  4234. Part356.formFactor = Enum.FormFactor.Plate
  4235. Part357.Parent = Model0
  4236. Part357.CFrame = CFrame.new(52.5276489, -5.82055616, 117.176903, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  4237. Part357.Orientation = Vector3.new(0, -180, 0)
  4238. Part357.Position = Vector3.new(52.5276489, -5.82055616, 117.176903)
  4239. Part357.Rotation = Vector3.new(180, 0, -180)
  4240. Part357.Size = Vector3.new(77, 8.40000057, 1)
  4241. Part357.Anchored = true
  4242. Part357.BottomSurface = Enum.SurfaceType.Smooth
  4243. Part357.TopSurface = Enum.SurfaceType.Smooth
  4244. Part357.FormFactor = Enum.FormFactor.Plate
  4245. Part357.formFactor = Enum.FormFactor.Plate
  4246. Part358.Parent = Model0
  4247. Part358.CFrame = CFrame.new(79.5276489, -5.82055616, 61.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4248. Part358.Position = Vector3.new(79.5276489, -5.82055616, 61.1769028)
  4249. Part358.Size = Vector3.new(21, 8.40000057, 1)
  4250. Part358.Anchored = true
  4251. Part358.BottomSurface = Enum.SurfaceType.Smooth
  4252. Part358.TopSurface = Enum.SurfaceType.Smooth
  4253. Part358.FormFactor = Enum.FormFactor.Plate
  4254. Part358.formFactor = Enum.FormFactor.Plate
  4255. Part359.Parent = Model0
  4256. Part359.CFrame = CFrame.new(69.5276489, -4.42055511, 63.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4257. Part359.Orientation = Vector3.new(0, -90, 0)
  4258. Part359.Position = Vector3.new(69.5276489, -4.42055511, 63.6769028)
  4259. Part359.Rotation = Vector3.new(0, -90, 0)
  4260. Part359.Size = Vector3.new(4, 5.5999999, 1)
  4261. Part359.Anchored = true
  4262. Part359.BottomSurface = Enum.SurfaceType.Smooth
  4263. Part359.TopSurface = Enum.SurfaceType.Smooth
  4264. Part359.FormFactor = Enum.FormFactor.Plate
  4265. Part359.formFactor = Enum.FormFactor.Plate
  4266. Part360.Parent = Model0
  4267. Part360.CFrame = CFrame.new(69.5276489, -4.42055511, 83.6769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4268. Part360.Orientation = Vector3.new(0, -90, 0)
  4269. Part360.Position = Vector3.new(69.5276489, -4.42055511, 83.6769028)
  4270. Part360.Rotation = Vector3.new(0, -90, 0)
  4271. Part360.Size = Vector3.new(4, 5.5999999, 1)
  4272. Part360.Anchored = true
  4273. Part360.BottomSurface = Enum.SurfaceType.Smooth
  4274. Part360.TopSurface = Enum.SurfaceType.Smooth
  4275. Part360.FormFactor = Enum.FormFactor.Plate
  4276. Part360.formFactor = Enum.FormFactor.Plate
  4277. Part361.Parent = Model0
  4278. Part361.CFrame = CFrame.new(67.0276489, -4.42055511, 85.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4279. Part361.Position = Vector3.new(67.0276489, -4.42055511, 85.1769028)
  4280. Part361.Size = Vector3.new(4, 5.5999999, 1)
  4281. Part361.Anchored = true
  4282. Part361.BottomSurface = Enum.SurfaceType.Smooth
  4283. Part361.TopSurface = Enum.SurfaceType.Smooth
  4284. Part361.FormFactor = Enum.FormFactor.Plate
  4285. Part361.formFactor = Enum.FormFactor.Plate
  4286. Part362.Parent = Model0
  4287. Part362.CFrame = CFrame.new(69.5276489, -4.42055511, 73.6769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4288. Part362.Orientation = Vector3.new(0, 90, 0)
  4289. Part362.Position = Vector3.new(69.5276489, -4.42055511, 73.6769028)
  4290. Part362.Rotation = Vector3.new(0, 90, 0)
  4291. Part362.Size = Vector3.new(4, 5.5999999, 1)
  4292. Part362.Anchored = true
  4293. Part362.BottomSurface = Enum.SurfaceType.Smooth
  4294. Part362.TopSurface = Enum.SurfaceType.Smooth
  4295. Part362.FormFactor = Enum.FormFactor.Plate
  4296. Part362.formFactor = Enum.FormFactor.Plate
  4297. Part363.Parent = Model0
  4298. Part363.CFrame = CFrame.new(57.0276489, -4.42055511, 85.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  4299. Part363.Orientation = Vector3.new(0, -180, 0)
  4300. Part363.Position = Vector3.new(57.0276489, -4.42055511, 85.1769028)
  4301. Part363.Rotation = Vector3.new(180, 0, -180)
  4302. Part363.Size = Vector3.new(4, 5.5999999, 1)
  4303. Part363.Anchored = true
  4304. Part363.BottomSurface = Enum.SurfaceType.Smooth
  4305. Part363.TopSurface = Enum.SurfaceType.Smooth
  4306. Part363.FormFactor = Enum.FormFactor.Plate
  4307. Part363.formFactor = Enum.FormFactor.Plate
  4308. Part364.Parent = Model0
  4309. Part364.CFrame = CFrame.new(46.0276489, -4.42055511, 85.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4310. Part364.Position = Vector3.new(46.0276489, -4.42055511, 85.1769028)
  4311. Part364.Size = Vector3.new(4, 5.5999999, 1)
  4312. Part364.Anchored = true
  4313. Part364.BottomSurface = Enum.SurfaceType.Smooth
  4314. Part364.TopSurface = Enum.SurfaceType.Smooth
  4315. Part364.FormFactor = Enum.FormFactor.Plate
  4316. Part364.formFactor = Enum.FormFactor.Plate
  4317. Part365.Parent = Model0
  4318. Part365.CFrame = CFrame.new(36.0276489, -4.42055511, 85.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4319. Part365.Position = Vector3.new(36.0276489, -4.42055511, 85.1769028)
  4320. Part365.Size = Vector3.new(4, 5.5999999, 1)
  4321. Part365.Anchored = true
  4322. Part365.BottomSurface = Enum.SurfaceType.Smooth
  4323. Part365.TopSurface = Enum.SurfaceType.Smooth
  4324. Part365.FormFactor = Enum.FormFactor.Plate
  4325. Part365.formFactor = Enum.FormFactor.Plate
  4326. Part366.Parent = Model0
  4327. Part366.CFrame = CFrame.new(26.0276489, -4.42055511, 85.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  4328. Part366.Orientation = Vector3.new(0, -180, 0)
  4329. Part366.Position = Vector3.new(26.0276489, -4.42055511, 85.1769028)
  4330. Part366.Rotation = Vector3.new(180, 0, -180)
  4331. Part366.Size = Vector3.new(4, 5.5999999, 1)
  4332. Part366.Anchored = true
  4333. Part366.BottomSurface = Enum.SurfaceType.Smooth
  4334. Part366.TopSurface = Enum.SurfaceType.Smooth
  4335. Part366.FormFactor = Enum.FormFactor.Plate
  4336. Part366.formFactor = Enum.FormFactor.Plate
  4337. Part367.Parent = Model0
  4338. Part367.CFrame = CFrame.new(16.0276489, -4.42055511, 85.1769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4339. Part367.Position = Vector3.new(16.0276489, -4.42055511, 85.1769028)
  4340. Part367.Size = Vector3.new(4, 5.5999999, 1)
  4341. Part367.Anchored = true
  4342. Part367.BottomSurface = Enum.SurfaceType.Smooth
  4343. Part367.TopSurface = Enum.SurfaceType.Smooth
  4344. Part367.FormFactor = Enum.FormFactor.Plate
  4345. Part367.formFactor = Enum.FormFactor.Plate
  4346. Part368.Parent = Model0
  4347. Part368.CFrame = CFrame.new(41.0276489, 1.179443, 101.176903, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4348. Part368.Orientation = Vector3.new(0, -90, 0)
  4349. Part368.Position = Vector3.new(41.0276489, 1.179443, 101.176903)
  4350. Part368.Rotation = Vector3.new(0, -90, 0)
  4351. Part368.Size = Vector3.new(33, 5.5999999, 56)
  4352. Part368.Anchored = true
  4353. Part368.BottomSurface = Enum.SurfaceType.Smooth
  4354. Part368.TopSurface = Enum.SurfaceType.Smooth
  4355. Part368.FormFactor = Enum.FormFactor.Plate
  4356. Part368.formFactor = Enum.FormFactor.Plate
  4357. Part369.Parent = Model0
  4358. Part369.CFrame = CFrame.new(80.0276489, 1.179443, 89.1769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  4359. Part369.Orientation = Vector3.new(0, -180, 0)
  4360. Part369.Position = Vector3.new(80.0276489, 1.179443, 89.1769028)
  4361. Part369.Rotation = Vector3.new(180, 0, -180)
  4362. Part369.Size = Vector3.new(22, 5.5999999, 57)
  4363. Part369.Anchored = true
  4364. Part369.BottomSurface = Enum.SurfaceType.Smooth
  4365. Part369.TopSurface = Enum.SurfaceType.Smooth
  4366. Part369.FormFactor = Enum.FormFactor.Plate
  4367. Part369.formFactor = Enum.FormFactor.Plate
  4368. Part370.Parent = Model0
  4369. Part370.CFrame = CFrame.new(31.5276489, -2.72082496, 85.876915, -0.998264253, 0, -0.0588934906, -0.0588934906, 0, 0.998264253, 0, 0.99999994, 0)
  4370. Part370.Orientation = Vector3.new(-86.6200027, -90, -90)
  4371. Part370.Position = Vector3.new(31.5276489, -2.72082496, 85.876915)
  4372. Part370.Rotation = Vector3.new(-90, -3.38000011, -180)
  4373. Part370.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4374. Part370.Size = Vector3.new(9, 0.400000006, 1)
  4375. Part370.Anchored = true
  4376. Part370.BottomSurface = Enum.SurfaceType.Smooth
  4377. Part370.BrickColor = BrickColor.new("Brown")
  4378. Part370.TopSurface = Enum.SurfaceType.Smooth
  4379. Part370.brickColor = BrickColor.new("Brown")
  4380. Part370.FormFactor = Enum.FormFactor.Plate
  4381. Part370.formFactor = Enum.FormFactor.Plate
  4382. Part371.Parent = Model0
  4383. Part371.CFrame = CFrame.new(30.5276489, -5.72083282, 85.876915, -0.999228418, 0, -0.0392749533, -0.0392749533, 0, 0.999228418, 0, 1, 0)
  4384. Part371.Orientation = Vector3.new(-87.75, -90, -90)
  4385. Part371.Position = Vector3.new(30.5276489, -5.72083282, 85.876915)
  4386. Part371.Rotation = Vector3.new(-90, -2.25, -180)
  4387. Part371.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4388. Part371.Size = Vector3.new(9, 0.400000006, 1)
  4389. Part371.Anchored = true
  4390. Part371.BottomSurface = Enum.SurfaceType.Smooth
  4391. Part371.BrickColor = BrickColor.new("Brown")
  4392. Part371.TopSurface = Enum.SurfaceType.Smooth
  4393. Part371.brickColor = BrickColor.new("Brown")
  4394. Part371.FormFactor = Enum.FormFactor.Plate
  4395. Part371.formFactor = Enum.FormFactor.Plate
  4396. Part372.Parent = Model0
  4397. Part372.CFrame = CFrame.new(31.5276489, -4.72083282, 85.876915, -0.908073366, 0, -0.418811142, -0.418811142, 0, 0.908073366, 0, 1, 0)
  4398. Part372.Orientation = Vector3.new(-65.2399979, -90, -90)
  4399. Part372.Position = Vector3.new(31.5276489, -4.72083282, 85.876915)
  4400. Part372.Rotation = Vector3.new(-90, -24.7600002, -180)
  4401. Part372.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4402. Part372.Size = Vector3.new(9, 0.400000006, 1)
  4403. Part372.Anchored = true
  4404. Part372.BottomSurface = Enum.SurfaceType.Smooth
  4405. Part372.BrickColor = BrickColor.new("Brown")
  4406. Part372.TopSurface = Enum.SurfaceType.Smooth
  4407. Part372.brickColor = BrickColor.new("Brown")
  4408. Part372.FormFactor = Enum.FormFactor.Plate
  4409. Part372.formFactor = Enum.FormFactor.Plate
  4410. Part373.Parent = Model0
  4411. Part373.CFrame = CFrame.new(21.5276489, -4.02081299, 85.876915, -0.951019049, 0, -0.309132308, 0.309132308, 0, -0.951019049, 0, -1, 0)
  4412. Part373.Orientation = Vector3.new(71.9899979, -90, 90)
  4413. Part373.Position = Vector3.new(21.5276489, -4.02081299, 85.876915)
  4414. Part373.Rotation = Vector3.new(90, -18.0100002, -180)
  4415. Part373.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4416. Part373.Size = Vector3.new(9, 0.400000006, 1)
  4417. Part373.Anchored = true
  4418. Part373.BottomSurface = Enum.SurfaceType.Smooth
  4419. Part373.BrickColor = BrickColor.new("Brown")
  4420. Part373.TopSurface = Enum.SurfaceType.Smooth
  4421. Part373.brickColor = BrickColor.new("Brown")
  4422. Part373.FormFactor = Enum.FormFactor.Plate
  4423. Part373.formFactor = Enum.FormFactor.Plate
  4424. Part374.Parent = Model0
  4425. Part374.CFrame = CFrame.new(20.5276489, -5.72083282, 85.876915, -0.996914983, 0, -0.0784893036, -0.0784893036, 0, 0.996914983, 0, 1, 0)
  4426. Part374.Orientation = Vector3.new(-85.5, -90, -90)
  4427. Part374.Position = Vector3.new(20.5276489, -5.72083282, 85.876915)
  4428. Part374.Rotation = Vector3.new(-90, -4.5, -180)
  4429. Part374.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4430. Part374.Size = Vector3.new(9, 0.400000006, 1)
  4431. Part374.Anchored = true
  4432. Part374.BottomSurface = Enum.SurfaceType.Smooth
  4433. Part374.BrickColor = BrickColor.new("Brown")
  4434. Part374.TopSurface = Enum.SurfaceType.Smooth
  4435. Part374.brickColor = BrickColor.new("Brown")
  4436. Part374.FormFactor = Enum.FormFactor.Plate
  4437. Part374.formFactor = Enum.FormFactor.Plate
  4438. Part375.Parent = Model0
  4439. Part375.CFrame = CFrame.new(51.5276489, -5.72083282, 85.876915, 0.995181084, 0, 0.0980548337, -0.0980548337, 0, 0.995181024, 0, -0.99999994, 0)
  4440. Part375.Orientation = Vector3.new(-84.3700027, 90, -90)
  4441. Part375.Position = Vector3.new(51.5276489, -5.72083282, 85.876915)
  4442. Part375.Rotation = Vector3.new(-90, 5.63000011, 0)
  4443. Part375.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4444. Part375.Size = Vector3.new(9, 0.400000006, 1)
  4445. Part375.Anchored = true
  4446. Part375.BottomSurface = Enum.SurfaceType.Smooth
  4447. Part375.BrickColor = BrickColor.new("Brown")
  4448. Part375.TopSurface = Enum.SurfaceType.Smooth
  4449. Part375.brickColor = BrickColor.new("Brown")
  4450. Part375.FormFactor = Enum.FormFactor.Plate
  4451. Part375.formFactor = Enum.FormFactor.Plate
  4452. Part376.Parent = Model0
  4453. Part376.CFrame = CFrame.new(50.5276489, -3.52081299, 85.876915, 0.990562141, 0, 0.137064844, -0.137064859, 0, 0.990562081, 0, -0.99999994, 0)
  4454. Part376.Orientation = Vector3.new(-82.1200027, 90, -90)
  4455. Part376.Position = Vector3.new(50.5276489, -3.52081299, 85.876915)
  4456. Part376.Rotation = Vector3.new(-90, 7.88000011, 0)
  4457. Part376.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4458. Part376.Size = Vector3.new(9, 0.400000006, 1)
  4459. Part376.Anchored = true
  4460. Part376.BottomSurface = Enum.SurfaceType.Smooth
  4461. Part376.BrickColor = BrickColor.new("Brown")
  4462. Part376.TopSurface = Enum.SurfaceType.Smooth
  4463. Part376.brickColor = BrickColor.new("Brown")
  4464. Part376.FormFactor = Enum.FormFactor.Plate
  4465. Part376.formFactor = Enum.FormFactor.Plate
  4466. Part377.Parent = Model0
  4467. Part377.CFrame = CFrame.new(62.5276489, -5.72083282, 85.876915, 0.842098713, 0, 0.539323449, 0.53932339, 0, -0.842098713, 0, 0.99999994, 0)
  4468. Part377.Orientation = Vector3.new(57.3600006, 90, 90)
  4469. Part377.Position = Vector3.new(62.5276489, -5.72083282, 85.876915)
  4470. Part377.Rotation = Vector3.new(90, 32.6399994, 0)
  4471. Part377.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4472. Part377.Size = Vector3.new(9, 0.400000006, 1)
  4473. Part377.Anchored = true
  4474. Part377.BottomSurface = Enum.SurfaceType.Smooth
  4475. Part377.BrickColor = BrickColor.new("Brown")
  4476. Part377.TopSurface = Enum.SurfaceType.Smooth
  4477. Part377.brickColor = BrickColor.new("Brown")
  4478. Part377.FormFactor = Enum.FormFactor.Plate
  4479. Part377.formFactor = Enum.FormFactor.Plate
  4480. Part378.Parent = Model0
  4481. Part378.CFrame = CFrame.new(62.5276489, -3.72082496, 85.876915, 0.996914983, 0, 0.0784893036, -0.0784893036, 0, 0.996914983, 0, -1, 0)
  4482. Part378.Orientation = Vector3.new(-85.5, 90, -90)
  4483. Part378.Position = Vector3.new(62.5276489, -3.72082496, 85.876915)
  4484. Part378.Rotation = Vector3.new(-90, 4.5, 0)
  4485. Part378.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4486. Part378.Size = Vector3.new(9, 0.400000006, 1)
  4487. Part378.Anchored = true
  4488. Part378.BottomSurface = Enum.SurfaceType.Smooth
  4489. Part378.BrickColor = BrickColor.new("Brown")
  4490. Part378.TopSurface = Enum.SurfaceType.Smooth
  4491. Part378.brickColor = BrickColor.new("Brown")
  4492. Part378.FormFactor = Enum.FormFactor.Plate
  4493. Part378.formFactor = Enum.FormFactor.Plate
  4494. Part379.Parent = Model0
  4495. Part379.CFrame = CFrame.new(70.2276611, -3.52081299, 79.1769028, 0, -0.99999994, 0, -0.0980548337, 0, 0.995181024, -0.995181084, 0, -0.0980548337)
  4496. Part379.Orientation = Vector3.new(-84.3700027, 180, -90)
  4497. Part379.Position = Vector3.new(70.2276611, -3.52081299, 79.1769028)
  4498. Part379.Rotation = Vector3.new(-95.6299973, 0, 90)
  4499. Part379.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4500. Part379.Size = Vector3.new(9, 0.400000006, 1)
  4501. Part379.Anchored = true
  4502. Part379.BottomSurface = Enum.SurfaceType.Smooth
  4503. Part379.BrickColor = BrickColor.new("Brown")
  4504. Part379.TopSurface = Enum.SurfaceType.Smooth
  4505. Part379.brickColor = BrickColor.new("Brown")
  4506. Part379.FormFactor = Enum.FormFactor.Plate
  4507. Part379.formFactor = Enum.FormFactor.Plate
  4508. Part380.Parent = Model0
  4509. Part380.CFrame = CFrame.new(70.2276611, -5.72083282, 78.1769028, 0, -1, 0, -0.11758253, 0, 0.993063092, -0.993063152, 0, -0.11758253)
  4510. Part380.Orientation = Vector3.new(-83.25, 180, -90)
  4511. Part380.Position = Vector3.new(70.2276611, -5.72083282, 78.1769028)
  4512. Part380.Rotation = Vector3.new(-96.75, 0, 90)
  4513. Part380.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4514. Part380.Size = Vector3.new(9, 0.400000006, 1)
  4515. Part380.Anchored = true
  4516. Part380.BottomSurface = Enum.SurfaceType.Smooth
  4517. Part380.BrickColor = BrickColor.new("Brown")
  4518. Part380.TopSurface = Enum.SurfaceType.Smooth
  4519. Part380.brickColor = BrickColor.new("Brown")
  4520. Part380.FormFactor = Enum.FormFactor.Plate
  4521. Part380.formFactor = Enum.FormFactor.Plate
  4522. Part381.Parent = Model0
  4523. Part381.CFrame = CFrame.new(70.2276611, -3.72082496, 69.1769028, 0, -1, 0, -0.233533725, 0, 0.97234869, -0.97234869, 0, -0.23353374)
  4524. Part381.Orientation = Vector3.new(-76.4899979, 180, -90)
  4525. Part381.Position = Vector3.new(70.2276611, -3.72082496, 69.1769028)
  4526. Part381.Rotation = Vector3.new(-103.510002, 0, 90)
  4527. Part381.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4528. Part381.Size = Vector3.new(9, 0.400000006, 1)
  4529. Part381.Anchored = true
  4530. Part381.BottomSurface = Enum.SurfaceType.Smooth
  4531. Part381.BrickColor = BrickColor.new("Brown")
  4532. Part381.TopSurface = Enum.SurfaceType.Smooth
  4533. Part381.brickColor = BrickColor.new("Brown")
  4534. Part381.FormFactor = Enum.FormFactor.Plate
  4535. Part381.formFactor = Enum.FormFactor.Plate
  4536. Part382.Parent = Model0
  4537. Part382.CFrame = CFrame.new(-178.472351, 7.77944899, -23.3230972, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4538. Part382.Orientation = Vector3.new(0, 90, 0)
  4539. Part382.Position = Vector3.new(-178.472351, 7.77944899, -23.3230972)
  4540. Part382.Rotation = Vector3.new(0, 90, 0)
  4541. Part382.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4542. Part382.Size = Vector3.new(30, 36.4000015, 35)
  4543. Part382.Anchored = true
  4544. Part382.BottomSurface = Enum.SurfaceType.Smooth
  4545. Part382.BrickColor = BrickColor.new("Dark stone grey")
  4546. Part382.TopSurface = Enum.SurfaceType.Smooth
  4547. Part382.brickColor = BrickColor.new("Dark stone grey")
  4548. Part382.FormFactor = Enum.FormFactor.Plate
  4549. Part382.formFactor = Enum.FormFactor.Plate
  4550. Part383.Parent = Model0
  4551. Part383.CFrame = CFrame.new(-155.472351, -6.02056122, -15.8230963, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4552. Part383.Orientation = Vector3.new(0, 90, 0)
  4553. Part383.Position = Vector3.new(-155.472351, -6.02056122, -15.8230963)
  4554. Part383.Rotation = Vector3.new(0, 90, 0)
  4555. Part383.Size = Vector3.new(1, 8.80000019, 11)
  4556. Part383.Anchored = true
  4557. Part383.BottomSurface = Enum.SurfaceType.Smooth
  4558. Part383.TopSurface = Enum.SurfaceType.Smooth
  4559. Part383.FormFactor = Enum.FormFactor.Plate
  4560. Part383.formFactor = Enum.FormFactor.Plate
  4561. Part384.Parent = Model0
  4562. Part384.CFrame = CFrame.new(-141.972351, -6.02056122, 40.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4563. Part384.Orientation = Vector3.new(0, 90, 0)
  4564. Part384.Position = Vector3.new(-141.972351, -6.02056122, 40.1769028)
  4565. Part384.Rotation = Vector3.new(0, 90, 0)
  4566. Part384.Size = Vector3.new(1, 8.80000019, 10)
  4567. Part384.Anchored = true
  4568. Part384.BottomSurface = Enum.SurfaceType.Smooth
  4569. Part384.TopSurface = Enum.SurfaceType.Smooth
  4570. Part384.FormFactor = Enum.FormFactor.Plate
  4571. Part384.formFactor = Enum.FormFactor.Plate
  4572. Part385.Parent = Model0
  4573. Part385.CFrame = CFrame.new(-206.972351, -6.02056122, 38.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4574. Part385.Orientation = Vector3.new(0, 90, 0)
  4575. Part385.Position = Vector3.new(-206.972351, -6.02056122, 38.1769028)
  4576. Part385.Rotation = Vector3.new(0, 90, 0)
  4577. Part385.Size = Vector3.new(1, 8.80000019, 8)
  4578. Part385.Anchored = true
  4579. Part385.BottomSurface = Enum.SurfaceType.Smooth
  4580. Part385.TopSurface = Enum.SurfaceType.Smooth
  4581. Part385.FormFactor = Enum.FormFactor.Plate
  4582. Part385.formFactor = Enum.FormFactor.Plate
  4583. Part386.Parent = Model0
  4584. Part386.CFrame = CFrame.new(-203.472351, -6.02056122, -16.8230972, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4585. Part386.Orientation = Vector3.new(0, 90, 0)
  4586. Part386.Position = Vector3.new(-203.472351, -6.02056122, -16.8230972)
  4587. Part386.Rotation = Vector3.new(0, 90, 0)
  4588. Part386.Size = Vector3.new(1, 8.80000019, 15)
  4589. Part386.Anchored = true
  4590. Part386.BottomSurface = Enum.SurfaceType.Smooth
  4591. Part386.TopSurface = Enum.SurfaceType.Smooth
  4592. Part386.FormFactor = Enum.FormFactor.Plate
  4593. Part386.formFactor = Enum.FormFactor.Plate
  4594. Part387.Parent = Model0
  4595. Part387.CFrame = CFrame.new(-169.972351, 19.5794373, -8.12309647, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4596. Part387.Orientation = Vector3.new(0, 90, 90)
  4597. Part387.Position = Vector3.new(-169.972351, 19.5794373, -8.12309647)
  4598. Part387.Rotation = Vector3.new(90, 90, 0)
  4599. Part387.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4600. Part387.Size = Vector3.new(8, 0.400000006, 12)
  4601. Part387.Anchored = true
  4602. Part387.BottomSurface = Enum.SurfaceType.Smooth
  4603. Part387.BrickColor = BrickColor.new("Black")
  4604. Part387.CanCollide = false
  4605. Part387.Reflectance = 0.5
  4606. Part387.TopSurface = Enum.SurfaceType.Smooth
  4607. Part387.brickColor = BrickColor.new("Black")
  4608. Part387.FormFactor = Enum.FormFactor.Plate
  4609. Part387.formFactor = Enum.FormFactor.Plate
  4610. Part388.Parent = Model0
  4611. Part388.CFrame = CFrame.new(-169.972351, -3.42055511, -8.12309647, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4612. Part388.Orientation = Vector3.new(0, 90, 90)
  4613. Part388.Position = Vector3.new(-169.972351, -3.42055511, -8.12309647)
  4614. Part388.Rotation = Vector3.new(90, 90, 0)
  4615. Part388.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4616. Part388.Size = Vector3.new(8, 0.400000006, 12)
  4617. Part388.Anchored = true
  4618. Part388.BottomSurface = Enum.SurfaceType.Smooth
  4619. Part388.BrickColor = BrickColor.new("Black")
  4620. Part388.CanCollide = false
  4621. Part388.Reflectance = 0.5
  4622. Part388.TopSurface = Enum.SurfaceType.Smooth
  4623. Part388.brickColor = BrickColor.new("Black")
  4624. Part388.FormFactor = Enum.FormFactor.Plate
  4625. Part388.formFactor = Enum.FormFactor.Plate
  4626. Part389.Parent = Model0
  4627. Part389.CFrame = CFrame.new(-169.972351, 7.57943678, -8.12309647, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4628. Part389.Orientation = Vector3.new(0, 90, 90)
  4629. Part389.Position = Vector3.new(-169.972351, 7.57943678, -8.12309647)
  4630. Part389.Rotation = Vector3.new(90, 90, 0)
  4631. Part389.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4632. Part389.Size = Vector3.new(8, 0.400000006, 12)
  4633. Part389.Anchored = true
  4634. Part389.BottomSurface = Enum.SurfaceType.Smooth
  4635. Part389.BrickColor = BrickColor.new("Black")
  4636. Part389.CanCollide = false
  4637. Part389.Reflectance = 0.5
  4638. Part389.TopSurface = Enum.SurfaceType.Smooth
  4639. Part389.brickColor = BrickColor.new("Black")
  4640. Part389.FormFactor = Enum.FormFactor.Plate
  4641. Part389.formFactor = Enum.FormFactor.Plate
  4642. Part390.Parent = Model0
  4643. Part390.CFrame = CFrame.new(-125.972351, -2.42077589, 31.4768906, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4644. Part390.Orientation = Vector3.new(0, 90, 90)
  4645. Part390.Position = Vector3.new(-125.972351, -2.42077589, 31.4768906)
  4646. Part390.Rotation = Vector3.new(90, 90, 0)
  4647. Part390.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4648. Part390.Size = Vector3.new(8, 0.400000006, 12)
  4649. Part390.Anchored = true
  4650. Part390.BottomSurface = Enum.SurfaceType.Smooth
  4651. Part390.BrickColor = BrickColor.new("Black")
  4652. Part390.CanCollide = false
  4653. Part390.Reflectance = 0.5
  4654. Part390.TopSurface = Enum.SurfaceType.Smooth
  4655. Part390.brickColor = BrickColor.new("Black")
  4656. Part390.FormFactor = Enum.FormFactor.Plate
  4657. Part390.formFactor = Enum.FormFactor.Plate
  4658. Part391.Parent = Model0
  4659. Part391.CFrame = CFrame.new(-202.472351, -5.62055922, 49.6769028, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  4660. Part391.Position = Vector3.new(-202.472351, -5.62055922, 49.6769028)
  4661. Part391.Size = Vector3.new(1, 8.80000019, 36)
  4662. Part391.Anchored = true
  4663. Part391.BottomSurface = Enum.SurfaceType.Smooth
  4664. Part391.TopSurface = Enum.SurfaceType.Smooth
  4665. Part391.FormFactor = Enum.FormFactor.Plate
  4666. Part391.formFactor = Enum.FormFactor.Plate
  4667. Part392.Parent = Model0
  4668. Part392.CFrame = CFrame.new(-184.972351, -3.42055511, -8.12309647, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4669. Part392.Orientation = Vector3.new(0, 90, 90)
  4670. Part392.Position = Vector3.new(-184.972351, -3.42055511, -8.12309647)
  4671. Part392.Rotation = Vector3.new(90, 90, 0)
  4672. Part392.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4673. Part392.Size = Vector3.new(8, 0.400000006, 12)
  4674. Part392.Anchored = true
  4675. Part392.BottomSurface = Enum.SurfaceType.Smooth
  4676. Part392.BrickColor = BrickColor.new("Black")
  4677. Part392.CanCollide = false
  4678. Part392.Reflectance = 0.5
  4679. Part392.TopSurface = Enum.SurfaceType.Smooth
  4680. Part392.brickColor = BrickColor.new("Black")
  4681. Part392.FormFactor = Enum.FormFactor.Plate
  4682. Part392.formFactor = Enum.FormFactor.Plate
  4683. Part393.Parent = Model0
  4684. Part393.CFrame = CFrame.new(-111.972351, -2.42077589, 31.4768906, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4685. Part393.Orientation = Vector3.new(0, 90, 90)
  4686. Part393.Position = Vector3.new(-111.972351, -2.42077589, 31.4768906)
  4687. Part393.Rotation = Vector3.new(90, 90, 0)
  4688. Part393.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4689. Part393.Size = Vector3.new(8, 0.400000006, 12)
  4690. Part393.Anchored = true
  4691. Part393.BottomSurface = Enum.SurfaceType.Smooth
  4692. Part393.BrickColor = BrickColor.new("Black")
  4693. Part393.CanCollide = false
  4694. Part393.Reflectance = 0.5
  4695. Part393.TopSurface = Enum.SurfaceType.Smooth
  4696. Part393.brickColor = BrickColor.new("Black")
  4697. Part393.FormFactor = Enum.FormFactor.Plate
  4698. Part393.formFactor = Enum.FormFactor.Plate
  4699. Part394.Parent = Model0
  4700. Part394.CFrame = CFrame.new(-147.472351, -5.62055922, 49.6769028, -1, 0, -0, -0, 1, -0, -0, 0, -1)
  4701. Part394.Orientation = Vector3.new(0, -180, 0)
  4702. Part394.Position = Vector3.new(-147.472351, -5.62055922, 49.6769028)
  4703. Part394.Rotation = Vector3.new(180, 0, -180)
  4704. Part394.Size = Vector3.new(1, 8.80000019, 36)
  4705. Part394.Anchored = true
  4706. Part394.BottomSurface = Enum.SurfaceType.Smooth
  4707. Part394.TopSurface = Enum.SurfaceType.Smooth
  4708. Part394.FormFactor = Enum.FormFactor.Plate
  4709. Part394.formFactor = Enum.FormFactor.Plate
  4710. Part395.Parent = Model0
  4711. Part395.CFrame = CFrame.new(-184.972351, 7.57943678, -8.12309647, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4712. Part395.Orientation = Vector3.new(0, 90, 90)
  4713. Part395.Position = Vector3.new(-184.972351, 7.57943678, -8.12309647)
  4714. Part395.Rotation = Vector3.new(90, 90, 0)
  4715. Part395.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4716. Part395.Size = Vector3.new(8, 0.400000006, 12)
  4717. Part395.Anchored = true
  4718. Part395.BottomSurface = Enum.SurfaceType.Smooth
  4719. Part395.BrickColor = BrickColor.new("Black")
  4720. Part395.CanCollide = false
  4721. Part395.Reflectance = 0.5
  4722. Part395.TopSurface = Enum.SurfaceType.Smooth
  4723. Part395.brickColor = BrickColor.new("Black")
  4724. Part395.FormFactor = Enum.FormFactor.Plate
  4725. Part395.formFactor = Enum.FormFactor.Plate
  4726. Part396.Parent = Model0
  4727. Part396.CFrame = CFrame.new(-88.7723389, -2.42055511, 41.6769028, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  4728. Part396.Orientation = Vector3.new(0, 0, -90)
  4729. Part396.Position = Vector3.new(-88.7723389, -2.42055511, 41.6769028)
  4730. Part396.Rotation = Vector3.new(0, 0, -90)
  4731. Part396.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4732. Part396.Size = Vector3.new(8, 0.400000006, 12)
  4733. Part396.Anchored = true
  4734. Part396.BottomSurface = Enum.SurfaceType.Smooth
  4735. Part396.BrickColor = BrickColor.new("Black")
  4736. Part396.CanCollide = false
  4737. Part396.Reflectance = 0.5
  4738. Part396.TopSurface = Enum.SurfaceType.Smooth
  4739. Part396.brickColor = BrickColor.new("Black")
  4740. Part396.FormFactor = Enum.FormFactor.Plate
  4741. Part396.formFactor = Enum.FormFactor.Plate
  4742. Part397.Parent = Model0
  4743. Part397.CFrame = CFrame.new(-184.972351, 18.5794373, -8.12309647, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4744. Part397.Orientation = Vector3.new(0, 90, 90)
  4745. Part397.Position = Vector3.new(-184.972351, 18.5794373, -8.12309647)
  4746. Part397.Rotation = Vector3.new(90, 90, 0)
  4747. Part397.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4748. Part397.Size = Vector3.new(8, 0.400000006, 12)
  4749. Part397.Anchored = true
  4750. Part397.BottomSurface = Enum.SurfaceType.Smooth
  4751. Part397.BrickColor = BrickColor.new("Black")
  4752. Part397.CanCollide = false
  4753. Part397.Reflectance = 0.5
  4754. Part397.TopSurface = Enum.SurfaceType.Smooth
  4755. Part397.brickColor = BrickColor.new("Black")
  4756. Part397.FormFactor = Enum.FormFactor.Plate
  4757. Part397.formFactor = Enum.FormFactor.Plate
  4758. Part398.Parent = Model0
  4759. Part398.CFrame = CFrame.new(-174.972351, -5.62055922, 67.1769028, 0, 0, -1, 0, 1, -0, 1, 0, -0)
  4760. Part398.Orientation = Vector3.new(0, -90, 0)
  4761. Part398.Position = Vector3.new(-174.972351, -5.62055922, 67.1769028)
  4762. Part398.Rotation = Vector3.new(0, -90, 0)
  4763. Part398.Size = Vector3.new(1, 8.80000019, 54)
  4764. Part398.Anchored = true
  4765. Part398.BottomSurface = Enum.SurfaceType.Smooth
  4766. Part398.TopSurface = Enum.SurfaceType.Smooth
  4767. Part398.FormFactor = Enum.FormFactor.Plate
  4768. Part398.formFactor = Enum.FormFactor.Plate
  4769. Part399.Parent = Model0
  4770. Part399.CFrame = CFrame.new(-183.972351, -9.22055817, 32.1769028, -0, 0, 1, -0, 1, 0, -1, 0, 0)
  4771. Part399.Orientation = Vector3.new(0, 90, 0)
  4772. Part399.Position = Vector3.new(-183.972351, -9.22055817, 32.1769028)
  4773. Part399.Rotation = Vector3.new(0, 90, 0)
  4774. Part399.Size = Vector3.new(1, 1.60000002, 36)
  4775. Part399.Anchored = true
  4776. Part399.BottomSurface = Enum.SurfaceType.Smooth
  4777. Part399.TopSurface = Enum.SurfaceType.Smooth
  4778. Part399.FormFactor = Enum.FormFactor.Plate
  4779. Part399.formFactor = Enum.FormFactor.Plate
  4780. Part400.Parent = Model0
  4781. Part400.CFrame = CFrame.new(-97.9723511, -2.42077589, 31.4768906, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  4782. Part400.Orientation = Vector3.new(0, 90, 90)
  4783. Part400.Position = Vector3.new(-97.9723511, -2.42077589, 31.4768906)
  4784. Part400.Rotation = Vector3.new(90, 90, 0)
  4785. Part400.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4786. Part400.Size = Vector3.new(8, 0.400000006, 12)
  4787. Part400.Anchored = true
  4788. Part400.BottomSurface = Enum.SurfaceType.Smooth
  4789. Part400.BrickColor = BrickColor.new("Black")
  4790. Part400.CanCollide = false
  4791. Part400.Reflectance = 0.5
  4792. Part400.TopSurface = Enum.SurfaceType.Smooth
  4793. Part400.brickColor = BrickColor.new("Black")
  4794. Part400.FormFactor = Enum.FormFactor.Plate
  4795. Part400.formFactor = Enum.FormFactor.Plate
  4796. Part401.Parent = Model0
  4797. Part401.CFrame = CFrame.new(-88.7723389, -2.42055511, 69.6769028, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  4798. Part401.Orientation = Vector3.new(0, 0, -90)
  4799. Part401.Position = Vector3.new(-88.7723389, -2.42055511, 69.6769028)
  4800. Part401.Rotation = Vector3.new(0, 0, -90)
  4801. Part401.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4802. Part401.Size = Vector3.new(8, 0.400000006, 12)
  4803. Part401.Anchored = true
  4804. Part401.BottomSurface = Enum.SurfaceType.Smooth
  4805. Part401.BrickColor = BrickColor.new("Black")
  4806. Part401.CanCollide = false
  4807. Part401.Reflectance = 0.5
  4808. Part401.TopSurface = Enum.SurfaceType.Smooth
  4809. Part401.brickColor = BrickColor.new("Black")
  4810. Part401.FormFactor = Enum.FormFactor.Plate
  4811. Part401.formFactor = Enum.FormFactor.Plate
  4812. Part402.Parent = Model0
  4813. Part402.CFrame = CFrame.new(-88.7723389, -2.42055511, 55.6769028, -0, 1, 0, -1, 0, 0, -0, 0, 1)
  4814. Part402.Orientation = Vector3.new(0, 0, -90)
  4815. Part402.Position = Vector3.new(-88.7723389, -2.42055511, 55.6769028)
  4816. Part402.Rotation = Vector3.new(0, 0, -90)
  4817. Part402.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4818. Part402.Size = Vector3.new(8, 0.400000006, 12)
  4819. Part402.Anchored = true
  4820. Part402.BottomSurface = Enum.SurfaceType.Smooth
  4821. Part402.BrickColor = BrickColor.new("Black")
  4822. Part402.CanCollide = false
  4823. Part402.Reflectance = 0.5
  4824. Part402.TopSurface = Enum.SurfaceType.Smooth
  4825. Part402.brickColor = BrickColor.new("Black")
  4826. Part402.FormFactor = Enum.FormFactor.Plate
  4827. Part402.formFactor = Enum.FormFactor.Plate
  4828. for i,v in pairs(mas:GetChildren()) do
  4829. v.Parent = workspace
  4830. pcall(function() v:MakeJoints() end)
  4831. end
  4832. mas:Destroy()
  4833. for i,v in pairs(cors) do
  4834. spawn(function()
  4835. pcall(v)
  4836. end)
  4837. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement