Advertisement
samuelrichter66

mirror

Jun 29th, 2019
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 336.22 KB | None | 0 0
  1.  
  2. --https://github.com/Mokiros/roblox-FE-compatibility
  3. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  4. local Player,game,owner = owner,game
  5. local RealPlayer = Player
  6. do
  7. print("FE Compatibility code V2 by Mokiros")
  8. local RealPlayer = RealPlayer
  9. script.Parent = RealPlayer.Character
  10.  
  11. --Fake event to make stuff like Mouse.KeyDown work
  12. local Disconnect_Function = function(this)
  13. this[1].Functions[this[2]] = nil
  14. end
  15. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  16. local FakeEvent_Metatable = {__index={
  17. Connect = function(this,f)
  18. local i = tostring(math.random(0,10000))
  19. while this.Functions[i] do
  20. i = tostring(math.random(0,10000))
  21. end
  22. this.Functions[i] = f
  23. return setmetatable({this,i},Disconnect_Metatable)
  24. end
  25. }}
  26. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  27. local function fakeEvent()
  28. return setmetatable({Functions={}},FakeEvent_Metatable)
  29. end
  30.  
  31. --Creating fake input objects with fake variables
  32. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  33. FakeMouse.keyUp = FakeMouse.KeyUp
  34. FakeMouse.keyDown = FakeMouse.KeyDown
  35. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  36. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  37. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  38. end}
  39. --Merged 2 functions into one by checking amount of arguments
  40. CAS.UnbindAction = CAS.BindAction
  41.  
  42. --This function will trigger the events that have been :Connect()'ed
  43. local function TriggerEvent(self,ev,...)
  44. for _,f in pairs(self[ev].Functions) do
  45. f(...)
  46. end
  47. end
  48. FakeMouse.TriggerEvent = TriggerEvent
  49. UIS.TriggerEvent = TriggerEvent
  50.  
  51. --Client communication
  52. local Event = Instance.new("RemoteEvent")
  53. Event.Name = "UserInput_Event"
  54. Event.OnServerEvent:Connect(function(plr,io)
  55. if plr~=RealPlayer then return end
  56. FakeMouse.Target = io.Target
  57. FakeMouse.Hit = io.Hit
  58. if not io.isMouse then
  59. local b = io.UserInputState == Enum.UserInputState.Begin
  60. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  61. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  62. end
  63. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  64. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  65. end
  66. for _,t in pairs(CAS.Actions) do
  67. for _,k in pairs(t.Keys) do
  68. if k==io.KeyCode then
  69. t.Function(t.Name,io.UserInputState,io)
  70. end
  71. end
  72. end
  73. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  74. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  75. end
  76. end)
  77. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  78. local Mouse = owner:GetMouse()
  79. local UIS = game:GetService("UserInputService")
  80. local input = function(io,RobloxHandled)
  81. if RobloxHandled then return end
  82. --Since InputObject is a client-side instance, we create and pass table instead
  83. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  84. end
  85. UIS.InputBegan:Connect(input)
  86. UIS.InputEnded:Connect(input)
  87.  
  88. local h,t
  89. --Give the server mouse data every second frame, but only if the values changed
  90. --If player is not moving their mouse, client won't fire events
  91. local HB = game:GetService("RunService").Heartbeat
  92. while true do
  93. if h~=Mouse.Hit or t~=Mouse.Target then
  94. h,t=Mouse.Hit,Mouse.Target
  95. Event:FireServer({isMouse=true,Target=t,Hit=h})
  96. end
  97. --Wait 2 frames
  98. for i=1,2 do
  99. HB:Wait()
  100. end
  101. end]==],script)
  102.  
  103. ----Sandboxed game object that allows the usage of client-side methods and services
  104. --Real game object
  105. local RealGame = game
  106.  
  107. --Metatable for fake service
  108. local FakeService_Metatable = {
  109. __index = function(self,k)
  110. local s = rawget(self,"_RealService")
  111. if s then
  112. return typeof(s[k])=="function"
  113. and function(_,...)return s[k](s,...)end or s[k]
  114. end
  115. end,
  116. __newindex = function(self,k,v)
  117. local s = rawget(self,"_RealService")
  118. if s then s[k]=v end
  119. end
  120. }
  121. local function FakeService(t,RealService)
  122. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  123. return setmetatable(t,FakeService_Metatable)
  124. end
  125.  
  126. --Fake game object
  127. local FakeGame = {
  128. GetService = function(self,s)
  129. return rawget(self,s) or RealGame:GetService(s)
  130. end,
  131. Players = FakeService({
  132. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  133. },"Players"),
  134. UserInputService = FakeService(UIS,"UserInputService"),
  135. ContextActionService = FakeService(CAS,"ContextActionService"),
  136. RunService = FakeService({
  137. _btrs = {},
  138. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  139. BindToRenderStep = function(self,name,_,fun)
  140. self._btrs[name] = self.Heartbeat:Connect(fun)
  141. end,
  142. UnbindFromRenderStep = function(self,name)
  143. self._btrs[name]:Disconnect()
  144. end,
  145. },"RunService")
  146. }
  147. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  148. FakeGame.service = FakeGame.GetService
  149. FakeService(FakeGame,game)
  150. --Changing owner to fake player object to support owner:GetMouse()
  151. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  152. end
  153.  
  154.  
  155. --made by Intensivelake39 on YT my discord: bad#5159
  156. function sandbox(var,func)
  157. local env = getfenv(func)
  158. local newenv = setmetatable({},{
  159. __index = function(self,k)
  160. if k=="script" then
  161. return var
  162. else
  163. return env[k]
  164. end
  165. end,
  166. })
  167. setfenv(func,newenv)
  168. return func
  169. end
  170. cors = {}
  171. mas = Instance.new("Model",game:GetService("Lighting"))
  172. Model0 = Instance.new("Model")
  173. Script1 = Instance.new("Script")
  174. Script2 = Instance.new("Script")
  175. SpawnLocation3 = Instance.new("SpawnLocation")
  176. Decal4 = Instance.new("Decal")
  177. Decal5 = Instance.new("Decal")
  178. Model6 = Instance.new("Model")
  179. Part7 = Instance.new("Part")
  180. SpecialMesh8 = Instance.new("SpecialMesh")
  181. Decal9 = Instance.new("Decal")
  182. Part10 = Instance.new("Part")
  183. Part11 = Instance.new("Part")
  184. Part12 = Instance.new("Part")
  185. Part13 = Instance.new("Part")
  186. Part14 = Instance.new("Part")
  187. Humanoid15 = Instance.new("Humanoid")
  188. BodyColors16 = Instance.new("BodyColors")
  189. Hat17 = Instance.new("Hat")
  190. Part18 = Instance.new("Part")
  191. SpecialMesh19 = Instance.new("SpecialMesh")
  192. Shirt20 = Instance.new("Shirt")
  193. Pants21 = Instance.new("Pants")
  194. Model22 = Instance.new("Model")
  195. Part23 = Instance.new("Part")
  196. SpecialMesh24 = Instance.new("SpecialMesh")
  197. Decal25 = Instance.new("Decal")
  198. Part26 = Instance.new("Part")
  199. Motor27 = Instance.new("Motor")
  200. Snap28 = Instance.new("Snap")
  201. Motor29 = Instance.new("Motor")
  202. Motor30 = Instance.new("Motor")
  203. Motor31 = Instance.new("Motor")
  204. Decal32 = Instance.new("Decal")
  205. Part33 = Instance.new("Part")
  206. Part34 = Instance.new("Part")
  207. Humanoid35 = Instance.new("Humanoid")
  208. BodyColors36 = Instance.new("BodyColors")
  209. IntValue37 = Instance.new("IntValue")
  210. Part38 = Instance.new("Part")
  211. Part39 = Instance.new("Part")
  212. Script40 = Instance.new("Script")
  213. Script41 = Instance.new("Script")
  214. Pants42 = Instance.new("Pants")
  215. Shirt43 = Instance.new("Shirt")
  216. Model44 = Instance.new("Model")
  217. Model45 = Instance.new("Model")
  218. Part46 = Instance.new("Part")
  219. Script47 = Instance.new("Script")
  220. Part48 = Instance.new("Part")
  221. Script49 = Instance.new("Script")
  222. Part50 = Instance.new("Part")
  223. Script51 = Instance.new("Script")
  224. Part52 = Instance.new("Part")
  225. Script53 = Instance.new("Script")
  226. Part54 = Instance.new("Part")
  227. Decal55 = Instance.new("Decal")
  228. Script56 = Instance.new("Script")
  229. Humanoid57 = Instance.new("Humanoid")
  230. BodyColors58 = Instance.new("BodyColors")
  231. Pants59 = Instance.new("Pants")
  232. Shirt60 = Instance.new("Shirt")
  233. Hat61 = Instance.new("Hat")
  234. Part62 = Instance.new("Part")
  235. SpecialMesh63 = Instance.new("SpecialMesh")
  236. Script64 = Instance.new("Script")
  237. Script65 = Instance.new("Script")
  238. Model66 = Instance.new("Model")
  239. Part67 = Instance.new("Part")
  240. SpecialMesh68 = Instance.new("SpecialMesh")
  241. Decal69 = Instance.new("Decal")
  242. Script70 = Instance.new("Script")
  243. Part71 = Instance.new("Part")
  244. SpecialMesh72 = Instance.new("SpecialMesh")
  245. Decal73 = Instance.new("Decal")
  246. Script74 = Instance.new("Script")
  247. Part75 = Instance.new("Part")
  248. Script76 = Instance.new("Script")
  249. Part77 = Instance.new("Part")
  250. Script78 = Instance.new("Script")
  251. Model79 = Instance.new("Model")
  252. Fire80 = Instance.new("Fire")
  253. Model81 = Instance.new("Model")
  254. Part82 = Instance.new("Part")
  255. Part83 = Instance.new("Part")
  256. Fire84 = Instance.new("Fire")
  257. Decal85 = Instance.new("Decal")
  258. Part86 = Instance.new("Part")
  259. Fire87 = Instance.new("Fire")
  260. Part88 = Instance.new("Part")
  261. Part89 = Instance.new("Part")
  262. Fire90 = Instance.new("Fire")
  263. Part91 = Instance.new("Part")
  264. Fire92 = Instance.new("Fire")
  265. Model93 = Instance.new("Model")
  266. Part94 = Instance.new("Part")
  267. Part95 = Instance.new("Part")
  268. Part96 = Instance.new("Part")
  269. Part97 = Instance.new("Part")
  270. Part98 = Instance.new("Part")
  271. Part99 = Instance.new("Part")
  272. Part100 = Instance.new("Part")
  273. Part101 = Instance.new("Part")
  274. Part102 = Instance.new("Part")
  275. Part103 = Instance.new("Part")
  276. Part104 = Instance.new("Part")
  277. Part105 = Instance.new("Part")
  278. Part106 = Instance.new("Part")
  279. Part107 = Instance.new("Part")
  280. Part108 = Instance.new("Part")
  281. Part109 = Instance.new("Part")
  282. Part110 = Instance.new("Part")
  283. Part111 = Instance.new("Part")
  284. Part112 = Instance.new("Part")
  285. Part113 = Instance.new("Part")
  286. Part114 = Instance.new("Part")
  287. Part115 = Instance.new("Part")
  288. Part116 = Instance.new("Part")
  289. Part117 = Instance.new("Part")
  290. Part118 = Instance.new("Part")
  291. Part119 = Instance.new("Part")
  292. Part120 = Instance.new("Part")
  293. Part121 = Instance.new("Part")
  294. Part122 = Instance.new("Part")
  295. Part123 = Instance.new("Part")
  296. Part124 = Instance.new("Part")
  297. Part125 = Instance.new("Part")
  298. Part126 = Instance.new("Part")
  299. Part127 = Instance.new("Part")
  300. Part128 = Instance.new("Part")
  301. Part129 = Instance.new("Part")
  302. Part130 = Instance.new("Part")
  303. Part131 = Instance.new("Part")
  304. Part132 = Instance.new("Part")
  305. Part133 = Instance.new("Part")
  306. Part134 = Instance.new("Part")
  307. Part135 = Instance.new("Part")
  308. Part136 = Instance.new("Part")
  309. Part137 = Instance.new("Part")
  310. Part138 = Instance.new("Part")
  311. Part139 = Instance.new("Part")
  312. Part140 = Instance.new("Part")
  313. Part141 = Instance.new("Part")
  314. Part142 = Instance.new("Part")
  315. Part143 = Instance.new("Part")
  316. Part144 = Instance.new("Part")
  317. Part145 = Instance.new("Part")
  318. Part146 = Instance.new("Part")
  319. Part147 = Instance.new("Part")
  320. Part148 = Instance.new("Part")
  321. Part149 = Instance.new("Part")
  322. Part150 = Instance.new("Part")
  323. Part151 = Instance.new("Part")
  324. Part152 = Instance.new("Part")
  325. Part153 = Instance.new("Part")
  326. Part154 = Instance.new("Part")
  327. Part155 = Instance.new("Part")
  328. Part156 = Instance.new("Part")
  329. Part157 = Instance.new("Part")
  330. Part158 = Instance.new("Part")
  331. Part159 = Instance.new("Part")
  332. Part160 = Instance.new("Part")
  333. Part161 = Instance.new("Part")
  334. Part162 = Instance.new("Part")
  335. Part163 = Instance.new("Part")
  336. Part164 = Instance.new("Part")
  337. Part165 = Instance.new("Part")
  338. Part166 = Instance.new("Part")
  339. Part167 = Instance.new("Part")
  340. Part168 = Instance.new("Part")
  341. Part169 = Instance.new("Part")
  342. Part170 = Instance.new("Part")
  343. Part171 = Instance.new("Part")
  344. Part172 = Instance.new("Part")
  345. Part173 = Instance.new("Part")
  346. Part174 = Instance.new("Part")
  347. Part175 = Instance.new("Part")
  348. Part176 = Instance.new("Part")
  349. Part177 = Instance.new("Part")
  350. Model178 = Instance.new("Model")
  351. Part179 = Instance.new("Part")
  352. Part180 = Instance.new("Part")
  353. Part181 = Instance.new("Part")
  354. Part182 = Instance.new("Part")
  355. Part183 = Instance.new("Part")
  356. Part184 = Instance.new("Part")
  357. Part185 = Instance.new("Part")
  358. Part186 = Instance.new("Part")
  359. Part187 = Instance.new("Part")
  360. Part188 = Instance.new("Part")
  361. Part189 = Instance.new("Part")
  362. Part190 = Instance.new("Part")
  363. Part191 = Instance.new("Part")
  364. Part192 = Instance.new("Part")
  365. Part193 = Instance.new("Part")
  366. Part194 = Instance.new("Part")
  367. Part195 = Instance.new("Part")
  368. Part196 = Instance.new("Part")
  369. Part197 = Instance.new("Part")
  370. Part198 = Instance.new("Part")
  371. Part199 = Instance.new("Part")
  372. Part200 = Instance.new("Part")
  373. Part201 = Instance.new("Part")
  374. Part202 = Instance.new("Part")
  375. Part203 = Instance.new("Part")
  376. Part204 = Instance.new("Part")
  377. Part205 = Instance.new("Part")
  378. Part206 = Instance.new("Part")
  379. Part207 = Instance.new("Part")
  380. Part208 = Instance.new("Part")
  381. Part209 = Instance.new("Part")
  382. Part210 = Instance.new("Part")
  383. Part211 = Instance.new("Part")
  384. Part212 = Instance.new("Part")
  385. Part213 = Instance.new("Part")
  386. Part214 = Instance.new("Part")
  387. Part215 = Instance.new("Part")
  388. Part216 = Instance.new("Part")
  389. Part217 = Instance.new("Part")
  390. Part218 = Instance.new("Part")
  391. Part219 = Instance.new("Part")
  392. Part220 = Instance.new("Part")
  393. Part221 = Instance.new("Part")
  394. Part222 = Instance.new("Part")
  395. Part223 = Instance.new("Part")
  396. Part224 = Instance.new("Part")
  397. Part225 = Instance.new("Part")
  398. Part226 = Instance.new("Part")
  399. Part227 = Instance.new("Part")
  400. Part228 = Instance.new("Part")
  401. Part229 = Instance.new("Part")
  402. Part230 = Instance.new("Part")
  403. Part231 = Instance.new("Part")
  404. Part232 = Instance.new("Part")
  405. Part233 = Instance.new("Part")
  406. Part234 = Instance.new("Part")
  407. Part235 = Instance.new("Part")
  408. Part236 = Instance.new("Part")
  409. Part237 = Instance.new("Part")
  410. Part238 = Instance.new("Part")
  411. Part239 = Instance.new("Part")
  412. Part240 = Instance.new("Part")
  413. Part241 = Instance.new("Part")
  414. Part242 = Instance.new("Part")
  415. Part243 = Instance.new("Part")
  416. Part244 = Instance.new("Part")
  417. Part245 = Instance.new("Part")
  418. Part246 = Instance.new("Part")
  419. Part247 = Instance.new("Part")
  420. Part248 = Instance.new("Part")
  421. Part249 = Instance.new("Part")
  422. Part250 = Instance.new("Part")
  423. Part251 = Instance.new("Part")
  424. Part252 = Instance.new("Part")
  425. Part253 = Instance.new("Part")
  426. Part254 = Instance.new("Part")
  427. Part255 = Instance.new("Part")
  428. Part256 = Instance.new("Part")
  429. Part257 = Instance.new("Part")
  430. Part258 = Instance.new("Part")
  431. Part259 = Instance.new("Part")
  432. Part260 = Instance.new("Part")
  433. Part261 = Instance.new("Part")
  434. Part262 = Instance.new("Part")
  435. Part263 = Instance.new("Part")
  436. Part264 = Instance.new("Part")
  437. Attachment265 = Instance.new("Attachment")
  438. RopeConstraint266 = Instance.new("RopeConstraint")
  439. PointLight267 = Instance.new("PointLight")
  440. Part268 = Instance.new("Part")
  441. Attachment269 = Instance.new("Attachment")
  442. RopeConstraint270 = Instance.new("RopeConstraint")
  443. PointLight271 = Instance.new("PointLight")
  444. Part272 = Instance.new("Part")
  445. Part273 = Instance.new("Part")
  446. Part274 = Instance.new("Part")
  447. Part275 = Instance.new("Part")
  448. Part276 = Instance.new("Part")
  449. Part277 = Instance.new("Part")
  450. Part278 = Instance.new("Part")
  451. Part279 = Instance.new("Part")
  452. Part280 = Instance.new("Part")
  453. Part281 = Instance.new("Part")
  454. Part282 = Instance.new("Part")
  455. Part283 = Instance.new("Part")
  456. Part284 = Instance.new("Part")
  457. Part285 = Instance.new("Part")
  458. Part286 = Instance.new("Part")
  459. Part287 = Instance.new("Part")
  460. Part288 = Instance.new("Part")
  461. Part289 = Instance.new("Part")
  462. Part290 = Instance.new("Part")
  463. Part291 = Instance.new("Part")
  464. Part292 = Instance.new("Part")
  465. Part293 = Instance.new("Part")
  466. Part294 = Instance.new("Part")
  467. Part295 = Instance.new("Part")
  468. Part296 = Instance.new("Part")
  469. Part297 = Instance.new("Part")
  470. Part298 = Instance.new("Part")
  471. Part299 = Instance.new("Part")
  472. Part300 = Instance.new("Part")
  473. Part301 = Instance.new("Part")
  474. Part302 = Instance.new("Part")
  475. Part303 = Instance.new("Part")
  476. Part304 = Instance.new("Part")
  477. Part305 = Instance.new("Part")
  478. Part306 = Instance.new("Part")
  479. Part307 = Instance.new("Part")
  480. Part308 = Instance.new("Part")
  481. Part309 = Instance.new("Part")
  482. Part310 = Instance.new("Part")
  483. Part311 = Instance.new("Part")
  484. Part312 = Instance.new("Part")
  485. Part313 = Instance.new("Part")
  486. Part314 = Instance.new("Part")
  487. Part315 = Instance.new("Part")
  488. Part316 = Instance.new("Part")
  489. Part317 = Instance.new("Part")
  490. Part318 = Instance.new("Part")
  491. Part319 = Instance.new("Part")
  492. Part320 = Instance.new("Part")
  493. Part321 = Instance.new("Part")
  494. Part322 = Instance.new("Part")
  495. Part323 = Instance.new("Part")
  496. Part324 = Instance.new("Part")
  497. WedgePart325 = Instance.new("WedgePart")
  498. Attachment326 = Instance.new("Attachment")
  499. WedgePart327 = Instance.new("WedgePart")
  500. WedgePart328 = Instance.new("WedgePart")
  501. WedgePart329 = Instance.new("WedgePart")
  502. Attachment330 = Instance.new("Attachment")
  503. Model331 = Instance.new("Model")
  504. Model332 = Instance.new("Model")
  505. Part333 = Instance.new("Part")
  506. Script334 = Instance.new("Script")
  507. BlockMesh335 = Instance.new("BlockMesh")
  508. Sound336 = Instance.new("Sound")
  509. Part337 = Instance.new("Part")
  510. Script338 = Instance.new("Script")
  511. BlockMesh339 = Instance.new("BlockMesh")
  512. Sound340 = Instance.new("Sound")
  513. Part341 = Instance.new("Part")
  514. Script342 = Instance.new("Script")
  515. BlockMesh343 = Instance.new("BlockMesh")
  516. Sound344 = Instance.new("Sound")
  517. Part345 = Instance.new("Part")
  518. Script346 = Instance.new("Script")
  519. BlockMesh347 = Instance.new("BlockMesh")
  520. Sound348 = Instance.new("Sound")
  521. Part349 = Instance.new("Part")
  522. Script350 = Instance.new("Script")
  523. BlockMesh351 = Instance.new("BlockMesh")
  524. Sound352 = Instance.new("Sound")
  525. Part353 = Instance.new("Part")
  526. Script354 = Instance.new("Script")
  527. BlockMesh355 = Instance.new("BlockMesh")
  528. Sound356 = Instance.new("Sound")
  529. Part357 = Instance.new("Part")
  530. Script358 = Instance.new("Script")
  531. BlockMesh359 = Instance.new("BlockMesh")
  532. Sound360 = Instance.new("Sound")
  533. Part361 = Instance.new("Part")
  534. Script362 = Instance.new("Script")
  535. BlockMesh363 = Instance.new("BlockMesh")
  536. Sound364 = Instance.new("Sound")
  537. Part365 = Instance.new("Part")
  538. Script366 = Instance.new("Script")
  539. BlockMesh367 = Instance.new("BlockMesh")
  540. Sound368 = Instance.new("Sound")
  541. Part369 = Instance.new("Part")
  542. Script370 = Instance.new("Script")
  543. BlockMesh371 = Instance.new("BlockMesh")
  544. Sound372 = Instance.new("Sound")
  545. Part373 = Instance.new("Part")
  546. Script374 = Instance.new("Script")
  547. BlockMesh375 = Instance.new("BlockMesh")
  548. Sound376 = Instance.new("Sound")
  549. Part377 = Instance.new("Part")
  550. Script378 = Instance.new("Script")
  551. BlockMesh379 = Instance.new("BlockMesh")
  552. Sound380 = Instance.new("Sound")
  553. Part381 = Instance.new("Part")
  554. Script382 = Instance.new("Script")
  555. BlockMesh383 = Instance.new("BlockMesh")
  556. Sound384 = Instance.new("Sound")
  557. Part385 = Instance.new("Part")
  558. Script386 = Instance.new("Script")
  559. BlockMesh387 = Instance.new("BlockMesh")
  560. Sound388 = Instance.new("Sound")
  561. Part389 = Instance.new("Part")
  562. Script390 = Instance.new("Script")
  563. BlockMesh391 = Instance.new("BlockMesh")
  564. Sound392 = Instance.new("Sound")
  565. Part393 = Instance.new("Part")
  566. Script394 = Instance.new("Script")
  567. BlockMesh395 = Instance.new("BlockMesh")
  568. Sound396 = Instance.new("Sound")
  569. Part397 = Instance.new("Part")
  570. Script398 = Instance.new("Script")
  571. BlockMesh399 = Instance.new("BlockMesh")
  572. Sound400 = Instance.new("Sound")
  573. Part401 = Instance.new("Part")
  574. Script402 = Instance.new("Script")
  575. BlockMesh403 = Instance.new("BlockMesh")
  576. Sound404 = Instance.new("Sound")
  577. Part405 = Instance.new("Part")
  578. Script406 = Instance.new("Script")
  579. BlockMesh407 = Instance.new("BlockMesh")
  580. Sound408 = Instance.new("Sound")
  581. Part409 = Instance.new("Part")
  582. Script410 = Instance.new("Script")
  583. BlockMesh411 = Instance.new("BlockMesh")
  584. Sound412 = Instance.new("Sound")
  585. Part413 = Instance.new("Part")
  586. Script414 = Instance.new("Script")
  587. BlockMesh415 = Instance.new("BlockMesh")
  588. Sound416 = Instance.new("Sound")
  589. Part417 = Instance.new("Part")
  590. Script418 = Instance.new("Script")
  591. BlockMesh419 = Instance.new("BlockMesh")
  592. Sound420 = Instance.new("Sound")
  593. Part421 = Instance.new("Part")
  594. Script422 = Instance.new("Script")
  595. BlockMesh423 = Instance.new("BlockMesh")
  596. Sound424 = Instance.new("Sound")
  597. Part425 = Instance.new("Part")
  598. Script426 = Instance.new("Script")
  599. BlockMesh427 = Instance.new("BlockMesh")
  600. Sound428 = Instance.new("Sound")
  601. Part429 = Instance.new("Part")
  602. Script430 = Instance.new("Script")
  603. BlockMesh431 = Instance.new("BlockMesh")
  604. Sound432 = Instance.new("Sound")
  605. Part433 = Instance.new("Part")
  606. Script434 = Instance.new("Script")
  607. BlockMesh435 = Instance.new("BlockMesh")
  608. Sound436 = Instance.new("Sound")
  609. Part437 = Instance.new("Part")
  610. Script438 = Instance.new("Script")
  611. BlockMesh439 = Instance.new("BlockMesh")
  612. Sound440 = Instance.new("Sound")
  613. Part441 = Instance.new("Part")
  614. Script442 = Instance.new("Script")
  615. BlockMesh443 = Instance.new("BlockMesh")
  616. Sound444 = Instance.new("Sound")
  617. Part445 = Instance.new("Part")
  618. Script446 = Instance.new("Script")
  619. BlockMesh447 = Instance.new("BlockMesh")
  620. Sound448 = Instance.new("Sound")
  621. Part449 = Instance.new("Part")
  622. Script450 = Instance.new("Script")
  623. BlockMesh451 = Instance.new("BlockMesh")
  624. Sound452 = Instance.new("Sound")
  625. Part453 = Instance.new("Part")
  626. Script454 = Instance.new("Script")
  627. BlockMesh455 = Instance.new("BlockMesh")
  628. Sound456 = Instance.new("Sound")
  629. Part457 = Instance.new("Part")
  630. Script458 = Instance.new("Script")
  631. BlockMesh459 = Instance.new("BlockMesh")
  632. Sound460 = Instance.new("Sound")
  633. Part461 = Instance.new("Part")
  634. Script462 = Instance.new("Script")
  635. BlockMesh463 = Instance.new("BlockMesh")
  636. Sound464 = Instance.new("Sound")
  637. Part465 = Instance.new("Part")
  638. Script466 = Instance.new("Script")
  639. BlockMesh467 = Instance.new("BlockMesh")
  640. Sound468 = Instance.new("Sound")
  641. Part469 = Instance.new("Part")
  642. Script470 = Instance.new("Script")
  643. BlockMesh471 = Instance.new("BlockMesh")
  644. Sound472 = Instance.new("Sound")
  645. Part473 = Instance.new("Part")
  646. Script474 = Instance.new("Script")
  647. BlockMesh475 = Instance.new("BlockMesh")
  648. Sound476 = Instance.new("Sound")
  649. Part477 = Instance.new("Part")
  650. Script478 = Instance.new("Script")
  651. BlockMesh479 = Instance.new("BlockMesh")
  652. Sound480 = Instance.new("Sound")
  653. Part481 = Instance.new("Part")
  654. Script482 = Instance.new("Script")
  655. BlockMesh483 = Instance.new("BlockMesh")
  656. Sound484 = Instance.new("Sound")
  657. Part485 = Instance.new("Part")
  658. Script486 = Instance.new("Script")
  659. BlockMesh487 = Instance.new("BlockMesh")
  660. Sound488 = Instance.new("Sound")
  661. Part489 = Instance.new("Part")
  662. Script490 = Instance.new("Script")
  663. BlockMesh491 = Instance.new("BlockMesh")
  664. Sound492 = Instance.new("Sound")
  665. Part493 = Instance.new("Part")
  666. Script494 = Instance.new("Script")
  667. BlockMesh495 = Instance.new("BlockMesh")
  668. Sound496 = Instance.new("Sound")
  669. Part497 = Instance.new("Part")
  670. Script498 = Instance.new("Script")
  671. BlockMesh499 = Instance.new("BlockMesh")
  672. Sound500 = Instance.new("Sound")
  673. Part501 = Instance.new("Part")
  674. Script502 = Instance.new("Script")
  675. BlockMesh503 = Instance.new("BlockMesh")
  676. Sound504 = Instance.new("Sound")
  677. Model505 = Instance.new("Model")
  678. Part506 = Instance.new("Part")
  679. Script507 = Instance.new("Script")
  680. BlockMesh508 = Instance.new("BlockMesh")
  681. Sound509 = Instance.new("Sound")
  682. Part510 = Instance.new("Part")
  683. Script511 = Instance.new("Script")
  684. BlockMesh512 = Instance.new("BlockMesh")
  685. Sound513 = Instance.new("Sound")
  686. Part514 = Instance.new("Part")
  687. Script515 = Instance.new("Script")
  688. BlockMesh516 = Instance.new("BlockMesh")
  689. Sound517 = Instance.new("Sound")
  690. Part518 = Instance.new("Part")
  691. Script519 = Instance.new("Script")
  692. BlockMesh520 = Instance.new("BlockMesh")
  693. Sound521 = Instance.new("Sound")
  694. Part522 = Instance.new("Part")
  695. Script523 = Instance.new("Script")
  696. BlockMesh524 = Instance.new("BlockMesh")
  697. Sound525 = Instance.new("Sound")
  698. Part526 = Instance.new("Part")
  699. Script527 = Instance.new("Script")
  700. BlockMesh528 = Instance.new("BlockMesh")
  701. Sound529 = Instance.new("Sound")
  702. Part530 = Instance.new("Part")
  703. Script531 = Instance.new("Script")
  704. BlockMesh532 = Instance.new("BlockMesh")
  705. Sound533 = Instance.new("Sound")
  706. Part534 = Instance.new("Part")
  707. Script535 = Instance.new("Script")
  708. BlockMesh536 = Instance.new("BlockMesh")
  709. Sound537 = Instance.new("Sound")
  710. Part538 = Instance.new("Part")
  711. Script539 = Instance.new("Script")
  712. BlockMesh540 = Instance.new("BlockMesh")
  713. Sound541 = Instance.new("Sound")
  714. Part542 = Instance.new("Part")
  715. Script543 = Instance.new("Script")
  716. BlockMesh544 = Instance.new("BlockMesh")
  717. Sound545 = Instance.new("Sound")
  718. Part546 = Instance.new("Part")
  719. Script547 = Instance.new("Script")
  720. BlockMesh548 = Instance.new("BlockMesh")
  721. Sound549 = Instance.new("Sound")
  722. Part550 = Instance.new("Part")
  723. Script551 = Instance.new("Script")
  724. BlockMesh552 = Instance.new("BlockMesh")
  725. Sound553 = Instance.new("Sound")
  726. Part554 = Instance.new("Part")
  727. Script555 = Instance.new("Script")
  728. BlockMesh556 = Instance.new("BlockMesh")
  729. Sound557 = Instance.new("Sound")
  730. Part558 = Instance.new("Part")
  731. Script559 = Instance.new("Script")
  732. BlockMesh560 = Instance.new("BlockMesh")
  733. Sound561 = Instance.new("Sound")
  734. Part562 = Instance.new("Part")
  735. Script563 = Instance.new("Script")
  736. BlockMesh564 = Instance.new("BlockMesh")
  737. Sound565 = Instance.new("Sound")
  738. Part566 = Instance.new("Part")
  739. Script567 = Instance.new("Script")
  740. BlockMesh568 = Instance.new("BlockMesh")
  741. Sound569 = Instance.new("Sound")
  742. Part570 = Instance.new("Part")
  743. Script571 = Instance.new("Script")
  744. BlockMesh572 = Instance.new("BlockMesh")
  745. Sound573 = Instance.new("Sound")
  746. Part574 = Instance.new("Part")
  747. Script575 = Instance.new("Script")
  748. BlockMesh576 = Instance.new("BlockMesh")
  749. Sound577 = Instance.new("Sound")
  750. Part578 = Instance.new("Part")
  751. Script579 = Instance.new("Script")
  752. BlockMesh580 = Instance.new("BlockMesh")
  753. Sound581 = Instance.new("Sound")
  754. Part582 = Instance.new("Part")
  755. Script583 = Instance.new("Script")
  756. BlockMesh584 = Instance.new("BlockMesh")
  757. Sound585 = Instance.new("Sound")
  758. Part586 = Instance.new("Part")
  759. Script587 = Instance.new("Script")
  760. BlockMesh588 = Instance.new("BlockMesh")
  761. Sound589 = Instance.new("Sound")
  762. Part590 = Instance.new("Part")
  763. Script591 = Instance.new("Script")
  764. BlockMesh592 = Instance.new("BlockMesh")
  765. Sound593 = Instance.new("Sound")
  766. Part594 = Instance.new("Part")
  767. Script595 = Instance.new("Script")
  768. BlockMesh596 = Instance.new("BlockMesh")
  769. Sound597 = Instance.new("Sound")
  770. Part598 = Instance.new("Part")
  771. Script599 = Instance.new("Script")
  772. BlockMesh600 = Instance.new("BlockMesh")
  773. Sound601 = Instance.new("Sound")
  774. Part602 = Instance.new("Part")
  775. Script603 = Instance.new("Script")
  776. BlockMesh604 = Instance.new("BlockMesh")
  777. Sound605 = Instance.new("Sound")
  778. Part606 = Instance.new("Part")
  779. Script607 = Instance.new("Script")
  780. BlockMesh608 = Instance.new("BlockMesh")
  781. Sound609 = Instance.new("Sound")
  782. Part610 = Instance.new("Part")
  783. Script611 = Instance.new("Script")
  784. BlockMesh612 = Instance.new("BlockMesh")
  785. Sound613 = Instance.new("Sound")
  786. Part614 = Instance.new("Part")
  787. Script615 = Instance.new("Script")
  788. BlockMesh616 = Instance.new("BlockMesh")
  789. Sound617 = Instance.new("Sound")
  790. Part618 = Instance.new("Part")
  791. Script619 = Instance.new("Script")
  792. BlockMesh620 = Instance.new("BlockMesh")
  793. Sound621 = Instance.new("Sound")
  794. Part622 = Instance.new("Part")
  795. Script623 = Instance.new("Script")
  796. BlockMesh624 = Instance.new("BlockMesh")
  797. Sound625 = Instance.new("Sound")
  798. Part626 = Instance.new("Part")
  799. Script627 = Instance.new("Script")
  800. BlockMesh628 = Instance.new("BlockMesh")
  801. Sound629 = Instance.new("Sound")
  802. Part630 = Instance.new("Part")
  803. Script631 = Instance.new("Script")
  804. BlockMesh632 = Instance.new("BlockMesh")
  805. Sound633 = Instance.new("Sound")
  806. Part634 = Instance.new("Part")
  807. Script635 = Instance.new("Script")
  808. BlockMesh636 = Instance.new("BlockMesh")
  809. Sound637 = Instance.new("Sound")
  810. Part638 = Instance.new("Part")
  811. Script639 = Instance.new("Script")
  812. BlockMesh640 = Instance.new("BlockMesh")
  813. Sound641 = Instance.new("Sound")
  814. Part642 = Instance.new("Part")
  815. Script643 = Instance.new("Script")
  816. BlockMesh644 = Instance.new("BlockMesh")
  817. Sound645 = Instance.new("Sound")
  818. Part646 = Instance.new("Part")
  819. Script647 = Instance.new("Script")
  820. BlockMesh648 = Instance.new("BlockMesh")
  821. Sound649 = Instance.new("Sound")
  822. Part650 = Instance.new("Part")
  823. Script651 = Instance.new("Script")
  824. BlockMesh652 = Instance.new("BlockMesh")
  825. Sound653 = Instance.new("Sound")
  826. Part654 = Instance.new("Part")
  827. Script655 = Instance.new("Script")
  828. BlockMesh656 = Instance.new("BlockMesh")
  829. Sound657 = Instance.new("Sound")
  830. Part658 = Instance.new("Part")
  831. Script659 = Instance.new("Script")
  832. BlockMesh660 = Instance.new("BlockMesh")
  833. Sound661 = Instance.new("Sound")
  834. Part662 = Instance.new("Part")
  835. Script663 = Instance.new("Script")
  836. BlockMesh664 = Instance.new("BlockMesh")
  837. Sound665 = Instance.new("Sound")
  838. Part666 = Instance.new("Part")
  839. Script667 = Instance.new("Script")
  840. BlockMesh668 = Instance.new("BlockMesh")
  841. Sound669 = Instance.new("Sound")
  842. Part670 = Instance.new("Part")
  843. Script671 = Instance.new("Script")
  844. BlockMesh672 = Instance.new("BlockMesh")
  845. Sound673 = Instance.new("Sound")
  846. Part674 = Instance.new("Part")
  847. Script675 = Instance.new("Script")
  848. BlockMesh676 = Instance.new("BlockMesh")
  849. Sound677 = Instance.new("Sound")
  850. Part678 = Instance.new("Part")
  851. Part679 = Instance.new("Part")
  852. Part680 = Instance.new("Part")
  853. Part681 = Instance.new("Part")
  854. Model0.Parent = mas
  855. Script1.Name = "Night Script"
  856. Script1.Parent = Model0
  857. table.insert(cors,sandbox(Script1,function()
  858. -- Volren
  859.  
  860. while true do
  861.  
  862. wait(0.5)
  863. game.Lighting.TimeOfDay = "01:11:11"
  864.  
  865. end
  866.  
  867.  
  868.  
  869.  
  870.  
  871.  
  872.  
  873.  
  874.  
  875.  
  876.  
  877.  
  878.  
  879.  
  880.  
  881.  
  882.  
  883.  
  884.  
  885.  
  886.  
  887.  
  888.  
  889.  
  890.  
  891.  
  892.  
  893.  
  894.  
  895.  
  896.  
  897.  
  898.  
  899.  
  900.  
  901.  
  902.  
  903.  
  904.  
  905.  
  906.  
  907.  
  908.  
  909.  
  910.  
  911.  
  912.  
  913.  
  914.  
  915.  
  916.  
  917.  
  918.  
  919.  
  920.  
  921.  
  922.  
  923.  
  924.  
  925.  
  926.  
  927.  
  928.  
  929.  
  930.  
  931.  
  932.  
  933.  
  934.  
  935.  
  936.  
  937.  
  938.  
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945.  
  946.  
  947.  
  948.  
  949. --Volren
  950.  
  951. end))
  952. Script2.Parent = Model0
  953. table.insert(cors,sandbox(Script2,function()
  954. SID = 892233254 -- Change Sound Id Here
  955.  
  956. game:GetService('Players').PlayerAdded:connect(function(player)
  957.  
  958. player.CharacterAdded:connect(function(character)
  959.  
  960. character:WaitForChild("Humanoid").Died:connect(function()
  961.  
  962. local s = Instance.new("Sound", player.Backpack)
  963.  
  964. s.SoundId = "http://www.roblox.com/asset/?id="..SID
  965.  
  966. s:Play()
  967. s.Looped = false
  968. end)
  969.  
  970. end)
  971.  
  972. end)
  973.  
  974. -- BY Roboxlia
  975. end))
  976. SpawnLocation3.Parent = Model0
  977. SpawnLocation3.Material = Enum.Material.Grass
  978. SpawnLocation3.BrickColor = BrickColor.new("Smoky grey")
  979. SpawnLocation3.Anchored = true
  980. SpawnLocation3.Size = Vector3.new(6, 1, 6)
  981. SpawnLocation3.CFrame = CFrame.new(21, -1.5, 60, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  982. SpawnLocation3.TopSurface = Enum.SurfaceType.Smooth
  983. SpawnLocation3.Color = Color3.new(0.356863, 0.364706, 0.411765)
  984. SpawnLocation3.Position = Vector3.new(21, -1.5, 60)
  985. SpawnLocation3.Color = Color3.new(0.356863, 0.364706, 0.411765)
  986. Decal4.Parent = SpawnLocation3
  987. Decal4.Texture = "rbxasset://textures/SpawnLocation.png"
  988. Decal4.Face = Enum.NormalId.Top
  989. Decal5.Parent = SpawnLocation3
  990. Decal5.Texture = "http://www.roblox.com/asset/?id=145801207"
  991. Model6.Name = ""
  992. Model6.Parent = Model0
  993. Model6.PrimaryPart = Part7
  994. Part7.Name = "Head"
  995. Part7.Parent = Model6
  996. Part7.BrickColor = BrickColor.new("Cool yellow")
  997. Part7.Rotation = Vector3.new(152.330002, 88.5800018, -153)
  998. Part7.Anchored = true
  999. Part7.FormFactor = Enum.FormFactor.Symmetric
  1000. Part7.Size = Vector3.new(2, 1, 1)
  1001. Part7.CFrame = CFrame.new(-54.7708511, 4.87204027, 59.3788223, -0.0221067052, 0.0112660909, 0.999692142, -0.0115260007, 0.999867201, -0.0115229441, -0.999689221, -0.0117771858, -0.0219739135)
  1002. Part7.TopSurface = Enum.SurfaceType.Smooth
  1003. Part7.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1004. Part7.Position = Vector3.new(-54.7708511, 4.87204027, 59.3788223)
  1005. Part7.Orientation = Vector3.new(0.659999967, 91.2599945, -0.659999967)
  1006. Part7.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1007. SpecialMesh8.Parent = Part7
  1008. SpecialMesh8.Scale = Vector3.new(1.25, 1.25, 1.25)
  1009. SpecialMesh8.Scale = Vector3.new(1.25, 1.25, 1.25)
  1010. Decal9.Parent = Part7
  1011. Decal9.Texture = "http://www.roblox.com/asset/?id=639904643"
  1012. Part10.Name = "Left Arm"
  1013. Part10.Parent = Model6
  1014. Part10.BrickColor = BrickColor.new("Cool yellow")
  1015. Part10.Rotation = Vector3.new(-152.889999, 83.6500015, 156.800003)
  1016. Part10.Anchored = true
  1017. Part10.FormFactor = Enum.FormFactor.Symmetric
  1018. Part10.Size = Vector3.new(1, 2, 1)
  1019. Part10.CFrame = CFrame.new(-54.8912392, 3.44247079, 57.9059143, -0.101652481, -0.0435602888, 0.993865907, 0.0656573251, 0.996568918, 0.0503941849, -0.992650986, 0.0703772604, -0.0984436497)
  1020. Part10.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1021. Part10.Position = Vector3.new(-54.8912392, 3.44247079, 57.9059143)
  1022. Part10.Orientation = Vector3.new(-2.88999987, 95.659996, 3.76999998)
  1023. Part10.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1024. Part11.Name = "Left Leg"
  1025. Part11.Parent = Model6
  1026. Part11.BrickColor = BrickColor.new("Bright blue")
  1027. Part11.Rotation = Vector3.new(147.479996, 84.4199982, -150.519989)
  1028. Part11.Anchored = true
  1029. Part11.FormFactor = Enum.FormFactor.Symmetric
  1030. Part11.Size = Vector3.new(1, 2, 1)
  1031. Part11.CFrame = CFrame.new(-54.7161713, 1.41818595, 59.9688721, -0.0846181661, 0.0478351451, 0.99526453, -0.0508845896, 0.997336209, -0.0522609614, -0.995113313, -0.0550658591, -0.0819586888)
  1032. Part11.BottomSurface = Enum.SurfaceType.Weld
  1033. Part11.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1034. Part11.Position = Vector3.new(-54.7161713, 1.41818595, 59.9688721)
  1035. Part11.Orientation = Vector3.new(3, 94.7099991, -2.91999984)
  1036. Part11.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1037. Part12.Name = "Right Arm"
  1038. Part12.Parent = Model6
  1039. Part12.BrickColor = BrickColor.new("Cool yellow")
  1040. Part12.Rotation = Vector3.new(-48.1699982, -83.3799973, -44.4399986)
  1041. Part12.Anchored = true
  1042. Part12.FormFactor = Enum.FormFactor.Symmetric
  1043. Part12.Size = Vector3.new(1, 2, 1)
  1044. Part12.CFrame = CFrame.new(-54.6073074, 3.47404766, 60.8201065, 0.0823530108, 0.0807720721, -0.993324697, 0.0613759235, 0.994407296, 0.0859485716, 0.994711578, -0.0680443421, 0.0769349784)
  1045. Part12.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1046. Part12.Position = Vector3.new(-54.6073074, 3.47404766, 60.8201065)
  1047. Part12.Orientation = Vector3.new(-4.92999983, -85.5699997, 3.52999997)
  1048. Part12.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1049. Part13.Name = "Right Leg"
  1050. Part13.Parent = Model6
  1051. Part13.BrickColor = BrickColor.new("Bright blue")
  1052. Part13.Rotation = Vector3.new(150.970001, 83.5599976, -151.729996)
  1053. Part13.Anchored = true
  1054. Part13.FormFactor = Enum.FormFactor.Symmetric
  1055. Part13.Size = Vector3.new(1, 2, 1)
  1056. Part13.CFrame = CFrame.new(-54.8035469, 1.39231515, 58.9236374, -0.0988433883, 0.0531616434, 0.993681967, -0.0105094975, 0.998460531, -0.0544626936, -0.99504751, -0.015826378, -0.0981325284)
  1057. Part13.BottomSurface = Enum.SurfaceType.Weld
  1058. Part13.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1059. Part13.Position = Vector3.new(-54.8035469, 1.39231515, 58.9236374)
  1060. Part13.Orientation = Vector3.new(3.11999989, 95.6399994, -0.599999964)
  1061. Part13.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1062. Part14.Name = "Torso"
  1063. Part14.Parent = Model6
  1064. Part14.BrickColor = BrickColor.new("Dark green")
  1065. Part14.Rotation = Vector3.new(-176.209991, 84.1699982, 175.289993)
  1066. Part14.Anchored = true
  1067. Part14.FormFactor = Enum.FormFactor.Symmetric
  1068. Part14.Size = Vector3.new(2, 2, 1)
  1069. Part14.CFrame = CFrame.new(-54.6886482, 3.40081501, 59.3709335, -0.101179913, -0.00834373571, 0.994833171, -0.0164246447, 0.999842644, 0.00671527395, -0.994732559, -0.0156603325, -0.101301022)
  1070. Part14.LeftSurface = Enum.SurfaceType.Weld
  1071. Part14.RightSurface = Enum.SurfaceType.Weld
  1072. Part14.Color = Color3.new(0.156863, 0.498039, 0.278431)
  1073. Part14.Position = Vector3.new(-54.6886482, 3.40081501, 59.3709335)
  1074. Part14.Orientation = Vector3.new(-0.379999995, 95.8099976, -0.939999998)
  1075. Part14.Color = Color3.new(0.156863, 0.498039, 0.278431)
  1076. Humanoid15.Name = "Morph"
  1077. Humanoid15.Parent = Model6
  1078. Humanoid15.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  1079. Humanoid15.RightLeg = Part13
  1080. Humanoid15.LeftLeg = Part11
  1081. Humanoid15.Torso = Part14
  1082. Humanoid15.Health = 0
  1083. Humanoid15.MaxHealth = 0
  1084. Humanoid15.WalkSpeed = 0
  1085. BodyColors16.Parent = Model6
  1086. BodyColors16.HeadColor = BrickColor.new("Light orange")
  1087. BodyColors16.LeftArmColor = BrickColor.new("Light orange")
  1088. BodyColors16.LeftLegColor = BrickColor.new("Light orange")
  1089. BodyColors16.RightArmColor = BrickColor.new("Light orange")
  1090. BodyColors16.RightLegColor = BrickColor.new("Light orange")
  1091. BodyColors16.TorsoColor = BrickColor.new("Light orange")
  1092. Hat17.Parent = Model6
  1093. Part18.Name = "Cool Hair"
  1094. Part18.Parent = Hat17
  1095. Part18.BrickColor = BrickColor.new("Dark orange")
  1096. Part18.Rotation = Vector3.new(101.759995, 83.7099991, -102.5)
  1097. Part18.Anchored = true
  1098. Part18.FormFactor = Enum.FormFactor.Symmetric
  1099. Part18.Size = Vector3.new(2, 1, 1)
  1100. Part18.CFrame = CFrame.new(-54.7356758, 5.25940228, 59.3725586, -0.0237180293, 0.107019931, 0.99397403, -0.01150674, 0.994158626, -0.107314378, -0.999652505, -0.0139826862, -0.0223480314)
  1101. Part18.BottomSurface = Enum.SurfaceType.Smooth
  1102. Part18.TopSurface = Enum.SurfaceType.Smooth
  1103. Part18.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1104. Part18.Position = Vector3.new(-54.7356758, 5.25940228, 59.3725586)
  1105. Part18.Orientation = Vector3.new(6.15999985, 91.2900009, -0.659999967)
  1106. Part18.Color = Color3.new(0.627451, 0.372549, 0.207843)
  1107. SpecialMesh19.Parent = Part18
  1108. SpecialMesh19.MeshId = "http://www.roblox.com/asset/?id=16627529"
  1109. SpecialMesh19.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1110. SpecialMesh19.TextureId = "rbxgameasset://Images/Brown"
  1111. SpecialMesh19.MeshType = Enum.MeshType.FileMesh
  1112. SpecialMesh19.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  1113. Shirt20.Name = "Shirt"
  1114. Shirt20.Parent = Model6
  1115. Shirt20.ShirtTemplate = "rbxassetid://575732308"
  1116. Pants21.Name = "Pants"
  1117. Pants21.Parent = Model6
  1118. Pants21.PantsTemplate = "rbxassetid://474475040"
  1119. Model22.Name = " "
  1120. Model22.Parent = Model0
  1121. Model22.PrimaryPart = Part26
  1122. Part23.Name = "Head"
  1123. Part23.Parent = Model22
  1124. Part23.BrickColor = BrickColor.new("Cool yellow")
  1125. Part23.Rotation = Vector3.new(0, -90, 0)
  1126. Part23.CanCollide = false
  1127. Part23.FormFactor = Enum.FormFactor.Symmetric
  1128. Part23.Size = Vector3.new(2, 1, 1)
  1129. Part23.CFrame = CFrame.new(-197.049988, 4.50000811, 62.5500031, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1130. Part23.TopSurface = Enum.SurfaceType.Smooth
  1131. Part23.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1132. Part23.Position = Vector3.new(-197.049988, 4.50000811, 62.5500031)
  1133. Part23.Orientation = Vector3.new(0, -90, 0)
  1134. Part23.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1135. SpecialMesh24.Parent = Part23
  1136. SpecialMesh24.Scale = Vector3.new(1.25, 1.25, 1.25)
  1137. SpecialMesh24.Scale = Vector3.new(1.25, 1.25, 1.25)
  1138. Decal25.Parent = Part23
  1139. Decal25.Texture = "http://www.roblox.com/asset/?id=522021435"
  1140. Part26.Name = "Torso"
  1141. Part26.Parent = Model22
  1142. Part26.BrickColor = BrickColor.new("Dark green")
  1143. Part26.Rotation = Vector3.new(0, -90, 0)
  1144. Part26.CanCollide = false
  1145. Part26.FormFactor = Enum.FormFactor.Symmetric
  1146. Part26.Size = Vector3.new(2, 2, 1)
  1147. Part26.CFrame = CFrame.new(-196.949982, 3.00000811, 62.5500031, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1148. Part26.Color = Color3.new(0.156863, 0.498039, 0.278431)
  1149. Part26.Position = Vector3.new(-196.949982, 3.00000811, 62.5500031)
  1150. Part26.Orientation = Vector3.new(0, -90, 0)
  1151. Part26.Color = Color3.new(0.156863, 0.498039, 0.278431)
  1152. Motor27.Name = "Left Hip"
  1153. Motor27.Parent = Part26
  1154. Motor27.C0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1155. Motor27.C1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1156. Motor27.Part0 = Part26
  1157. Motor27.Part1 = Part33
  1158. Motor27.DesiredAngle = 0.089729152619839
  1159. Motor27.MaxVelocity = 0.10000000149012
  1160. Snap28.Name = "Neck"
  1161. Snap28.Parent = Part26
  1162. Snap28.C0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1163. Snap28.C1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  1164. Motor29.Name = "Right Hip"
  1165. Motor29.Parent = Part26
  1166. Motor29.C0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1167. Motor29.C1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1168. Motor29.Part0 = Part26
  1169. Motor29.Part1 = Part34
  1170. Motor29.DesiredAngle = 0.089729152619839
  1171. Motor29.MaxVelocity = 0.10000000149012
  1172. Motor30.Name = "Right Shoulder"
  1173. Motor30.Parent = Part26
  1174. Motor30.C0 = CFrame.new(-2, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1175. Motor30.C1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  1176. Motor30.Part0 = Part38
  1177. Motor30.Part1 = Part26
  1178. Motor30.DesiredAngle = 0.089729152619839
  1179. Motor30.MaxVelocity = 0.15000000596046
  1180. Motor31.Name = "Left Shoulder"
  1181. Motor31.Parent = Part26
  1182. Motor31.C0 = CFrame.new(2, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1183. Motor31.C1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1184. Motor31.Part0 = Part39
  1185. Motor31.Part1 = Part26
  1186. Motor31.DesiredAngle = -0.089729152619839
  1187. Motor31.MaxVelocity = 0.15000000596046
  1188. Decal32.Parent = Part26
  1189. Decal32.Texture = "http://www.roblox.com/asset/?id=116830967"
  1190. Part33.Name = "Left Leg"
  1191. Part33.Parent = Model22
  1192. Part33.BrickColor = BrickColor.new("Bright blue")
  1193. Part33.Rotation = Vector3.new(0, -90, 0)
  1194. Part33.CanCollide = false
  1195. Part33.FormFactor = Enum.FormFactor.Symmetric
  1196. Part33.Size = Vector3.new(1, 2, 1)
  1197. Part33.CFrame = CFrame.new(-196.949982, 1.00000811, 62.0500031, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1198. Part33.BottomSurface = Enum.SurfaceType.Smooth
  1199. Part33.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1200. Part33.Position = Vector3.new(-196.949982, 1.00000811, 62.0500031)
  1201. Part33.Orientation = Vector3.new(0, -90, 0)
  1202. Part33.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1203. Part34.Name = "Right Leg"
  1204. Part34.Parent = Model22
  1205. Part34.BrickColor = BrickColor.new("Bright blue")
  1206. Part34.Rotation = Vector3.new(0, -90, 0)
  1207. Part34.CanCollide = false
  1208. Part34.FormFactor = Enum.FormFactor.Symmetric
  1209. Part34.Size = Vector3.new(1, 2, 1)
  1210. Part34.CFrame = CFrame.new(-196.949982, 1.00000811, 63.0500031, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1211. Part34.BottomSurface = Enum.SurfaceType.Smooth
  1212. Part34.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1213. Part34.Position = Vector3.new(-196.949982, 1.00000811, 63.0500031)
  1214. Part34.Orientation = Vector3.new(0, -90, 0)
  1215. Part34.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  1216. Humanoid35.Name = "Zombie"
  1217. Humanoid35.Parent = Model22
  1218. Humanoid35.RightLeg = Part34
  1219. Humanoid35.LeftLeg = Part33
  1220. Humanoid35.Torso = Part26
  1221. Humanoid35.WalkSpeed = 25
  1222. BodyColors36.Parent = Model22
  1223. BodyColors36.HeadColor = BrickColor.new("Bright green")
  1224. BodyColors36.LeftArmColor = BrickColor.new("Bright red")
  1225. BodyColors36.LeftLegColor = BrickColor.new("Really blue")
  1226. BodyColors36.RightArmColor = BrickColor.new("Bright red")
  1227. BodyColors36.RightLegColor = BrickColor.new("Really blue")
  1228. BodyColors36.TorsoColor = BrickColor.new("Really black")
  1229. IntValue37.Name = "Mode"
  1230. IntValue37.Parent = Model22
  1231. Part38.Name = "Right Arm"
  1232. Part38.Parent = Model22
  1233. Part38.BrickColor = BrickColor.new("Cool yellow")
  1234. Part38.Rotation = Vector3.new(0, -90, 0)
  1235. Part38.CanCollide = false
  1236. Part38.FormFactor = Enum.FormFactor.Symmetric
  1237. Part38.Size = Vector3.new(1, 2, 1)
  1238. Part38.CFrame = CFrame.new(-196.949982, 3.00000811, 64.0500031, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1239. Part38.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1240. Part38.Position = Vector3.new(-196.949982, 3.00000811, 64.0500031)
  1241. Part38.Orientation = Vector3.new(0, -90, 0)
  1242. Part38.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1243. Part39.Name = "Left Arm"
  1244. Part39.Parent = Model22
  1245. Part39.BrickColor = BrickColor.new("Cool yellow")
  1246. Part39.Rotation = Vector3.new(0, -90, 0)
  1247. Part39.CanCollide = false
  1248. Part39.FormFactor = Enum.FormFactor.Symmetric
  1249. Part39.Size = Vector3.new(1, 2, 1)
  1250. Part39.CFrame = CFrame.new(-196.949982, 3.00000811, 61.0500031, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1251. Part39.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1252. Part39.Position = Vector3.new(-196.949982, 3.00000811, 61.0500031)
  1253. Part39.Orientation = Vector3.new(0, -90, 0)
  1254. Part39.Color = Color3.new(0.992157, 0.917647, 0.552941)
  1255. Script40.Name = "Robot"
  1256. Script40.Parent = Model22
  1257. table.insert(cors,sandbox(Script40,function()
  1258. model = script.Parent
  1259. backup = model:Clone()
  1260. regentime = 1
  1261.  
  1262. ------------------
  1263. --SPAWNING--
  1264. ------------------
  1265.  
  1266. miked=script.Parent
  1267.  
  1268. itlh=miked.Torso:findFirstChild("Left Hip")
  1269. itlh.Part0=miked.Torso
  1270. itlh.Part1=miked:findFirstChild("Left Leg")
  1271. itlh.C0=CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1272.  
  1273. itrh=miked.Torso:findFirstChild("Right Hip")
  1274. itrh.Part0=miked.Torso
  1275. itrh.Part1=miked:findFirstChild("Right Leg")
  1276. itrh.C0=CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1277.  
  1278. itls=miked.Torso:findFirstChild("Left Shoulder")
  1279. itls.Part1=miked.Torso
  1280. itls.C0=CFrame.new(2, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1281. itls.Part0=miked:findFirstChild("Left Arm")
  1282.  
  1283. itrs=miked.Torso:findFirstChild("Right Shoulder")
  1284. itrs.Part1=miked.Torso
  1285. itrs.C0=CFrame.new(-2, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1286. itrs.Part0=miked:findFirstChild("Right Arm")
  1287.  
  1288. miked.Head:makeJoints()
  1289. ------------------
  1290. ------------------
  1291.  
  1292.  
  1293. function waitForChild(parent, childName)
  1294. while true do
  1295. local child = parent:findFirstChild(childName)
  1296. if child then
  1297. return child
  1298. end
  1299. parent.ChildAdded:wait()
  1300. end
  1301. end
  1302.  
  1303. local Figure = script.Parent
  1304. local Torso = waitForChild(Figure, "Torso")
  1305. local RightShoulder = waitForChild(Torso, "Right Shoulder")
  1306. local LeftShoulder = waitForChild(Torso, "Left Shoulder")
  1307. local RightHip = waitForChild(Torso, "Right Hip")
  1308. local LeftHip = waitForChild(Torso, "Left Hip")
  1309. local Neck = waitForChild(Torso, "Neck")
  1310. local Humanoid = waitForChild(Figure, "Zombie")
  1311. local pose = "Standing"
  1312.  
  1313. local toolAnim = "None"
  1314. local toolAnimTime = 0
  1315.  
  1316. local isSeated = false
  1317.  
  1318.  
  1319. function onRunning(speed)
  1320. if isSeated then return end
  1321.  
  1322. if speed>0 then
  1323. pose = "Running"
  1324. else
  1325. pose = "Standing"
  1326. end
  1327. end
  1328.  
  1329. function onDied()
  1330. pose = "Dead"
  1331. wait(regentime)
  1332. wait(1)
  1333. model:remove()
  1334. model = backup:Clone()
  1335. wait(3)
  1336. model.Parent = game.Workspace
  1337. model:MakeJoints()
  1338. end
  1339.  
  1340. function onJumping()
  1341. isSeated = false
  1342. pose = "Jumping"
  1343. end
  1344.  
  1345. function onClimbing()
  1346. pose = "Climbing"
  1347. end
  1348.  
  1349. function onGettingUp()
  1350. pose = "GettingUp"
  1351. end
  1352.  
  1353. function onFreeFall()
  1354. pose = "FreeFall"
  1355. end
  1356.  
  1357. function onDancing()
  1358. pose = "Dancing"
  1359. end
  1360.  
  1361. function onFallingDown()
  1362. pose = "FallingDown"
  1363. end
  1364.  
  1365. function onSeated()
  1366. isSeated = true
  1367. pose = "Seated"
  1368. end
  1369.  
  1370.  
  1371.  
  1372. function moveJump()
  1373. RightShoulder.MaxVelocity = 0.5
  1374. LeftShoulder.MaxVelocity = 0.5
  1375. RightShoulder.DesiredAngle = -3.14
  1376. LeftShoulder.DesiredAngle = -3.14
  1377. RightHip.DesiredAngle = 0
  1378. LeftHip.DesiredAngle = 0
  1379. end
  1380.  
  1381. function moveFreeFall()
  1382. RightShoulder.MaxVelocity = 0.5
  1383. LeftShoulder.MaxVelocity = 0.5
  1384. RightShoulder.DesiredAngle = -1
  1385. LeftShoulder.DesiredAngle = -1
  1386. RightHip.DesiredAngle = 0
  1387. LeftHip.DesiredAngle = 0
  1388. end
  1389.  
  1390. function moveFloat()
  1391. RightShoulder.MaxVelocity = 0.5
  1392. LeftShoulder.MaxVelocity = 0.5
  1393. RightShoulder.DesiredAngle = -1.57
  1394. LeftShoulder.DesiredAngle = 1.57
  1395. RightHip.DesiredAngle = 1.57
  1396. LeftHip.DesiredAngle = -1.57
  1397. end
  1398.  
  1399. function moveBoogy()
  1400. while pose=="Boogy" do
  1401. wait(.5)
  1402. RightShoulder.MaxVelocity = 1
  1403. LeftShoulder.MaxVelocity = 1
  1404. RightShoulder.DesiredAngle = -3.14
  1405. LeftShoulder.DesiredAngle = 0
  1406. RightHip.DesiredAngle = 1.57
  1407. LeftHip.DesiredAngle = 0
  1408. wait(.5)
  1409. RightShoulder.MaxVelocity = 1
  1410. LeftShoulder.MaxVelocity = 1
  1411. RightShoulder.DesiredAngle = 0
  1412. LeftShoulder.DesiredAngle = -3.14
  1413. RightHip.DesiredAngle = 0
  1414. LeftHip.DesiredAngle = 1.57
  1415. end
  1416. end
  1417.  
  1418. function moveZombie()
  1419. RightShoulder.MaxVelocity = 0.5
  1420. LeftShoulder.MaxVelocity = 0.5
  1421. RightShoulder.DesiredAngle = -1.57
  1422. LeftShoulder.DesiredAngle = 1.57
  1423. RightHip.DesiredAngle = 0
  1424. LeftHip.DesiredAngle = 0
  1425. end
  1426.  
  1427. function movePunch()
  1428. script.Parent.Torso.Anchored=true
  1429. RightShoulder.MaxVelocity = 60
  1430. LeftShoulder.MaxVelocity = 0.5
  1431. RightShoulder.DesiredAngle = -1.57
  1432. LeftShoulder.DesiredAngle = 0
  1433. RightHip.DesiredAngle = 0
  1434. LeftHip.DesiredAngle = 0
  1435. wait(1)
  1436. script.Parent.Torso.Anchored=false
  1437. pose="Standing"
  1438.  
  1439. end
  1440.  
  1441. function moveKick()
  1442. RightShoulder.MaxVelocity = 0.5
  1443. LeftShoulder.MaxVelocity = 0.5
  1444. RightShoulder.DesiredAngle = 0
  1445. LeftShoulder.DesiredAngle = 0
  1446. RightHip.MaxVelocity = 40
  1447. RightHip.DesiredAngle = 1.57
  1448. LeftHip.DesiredAngle = 0
  1449. wait(1)
  1450. pose="Standing"
  1451.  
  1452. end
  1453.  
  1454. function moveFly()
  1455. RightShoulder.MaxVelocity = 0.5
  1456. LeftShoulder.MaxVelocity = 0.5
  1457. RightShoulder.DesiredAngle = 0
  1458. LeftShoulder.DesiredAngle = 0
  1459. RightHip.MaxVelocity = 40
  1460. RightHip.DesiredAngle = 1.57
  1461. LeftHip.DesiredAngle = 0
  1462. wait(1)
  1463. pose="Standing"
  1464.  
  1465. end
  1466.  
  1467.  
  1468. function moveClimb()
  1469. RightShoulder.MaxVelocity = 0.5
  1470. LeftShoulder.MaxVelocity = 0.5
  1471. RightShoulder.DesiredAngle = -3.14
  1472. LeftShoulder.DesiredAngle = 3.14
  1473. RightHip.DesiredAngle = 0
  1474. LeftHip.DesiredAngle = 0
  1475. end
  1476.  
  1477. function moveSit()
  1478. RightShoulder.MaxVelocity = 0.15
  1479. LeftShoulder.MaxVelocity = 0.15
  1480. RightShoulder.DesiredAngle = -3.14 /2
  1481. LeftShoulder.DesiredAngle = -3.14 /2
  1482. RightHip.DesiredAngle = 3.14 /2
  1483. LeftHip.DesiredAngle = -3.14 /2
  1484. end
  1485.  
  1486. function getTool()
  1487.  
  1488. kidTable = Figure:children()
  1489. if (kidTable ~= nil) then
  1490. numKids = #kidTable
  1491. for i=1,numKids do
  1492. if (kidTable[i].className == "Tool") then return kidTable[i] end
  1493. end
  1494. end
  1495.  
  1496. return nil
  1497. end
  1498.  
  1499. function getToolAnim(tool)
  1500.  
  1501. c = tool:children()
  1502. for i=1,#c do
  1503. if (c[i].Name == "toolanim" and c[i].className == "StringValue") then
  1504. return c[i]
  1505. end
  1506. end
  1507. return nil
  1508. end
  1509.  
  1510. function animateTool()
  1511.  
  1512. if (toolAnim == "None") then
  1513. RightShoulder.DesiredAngle = -1.57
  1514. return
  1515. end
  1516.  
  1517. if (toolAnim == "Slash") then
  1518. RightShoulder.MaxVelocity = 0.5
  1519. RightShoulder.DesiredAngle = 0
  1520. return
  1521. end
  1522.  
  1523. if (toolAnim == "Lunge") then
  1524. RightShoulder.MaxVelocity = 0.5
  1525. LeftShoulder.MaxVelocity = 0.5
  1526. RightHip.MaxVelocity = 0.5
  1527. LeftHip.MaxVelocity = 0.5
  1528. RightShoulder.DesiredAngle = -1.57
  1529. LeftShoulder.DesiredAngle = 1.0
  1530. RightHip.DesiredAngle = 1.57
  1531. LeftHip.DesiredAngle = 1.0
  1532. return
  1533. end
  1534. end
  1535.  
  1536. function move(time)
  1537. local amplitude
  1538. local frequency
  1539.  
  1540. if (pose == "Jumping") then
  1541. moveJump()
  1542. return
  1543. end
  1544.  
  1545. if (pose == "Zombie") then
  1546. moveZombie()
  1547. return
  1548. end
  1549.  
  1550. if (pose == "Boogy") then
  1551. moveBoogy()
  1552. return
  1553. end
  1554.  
  1555. if (pose == "Float") then
  1556. moveFloat()
  1557. return
  1558. end
  1559.  
  1560. if (pose == "Punch") then
  1561. movePunch()
  1562. return
  1563. end
  1564.  
  1565. if (pose == "Kick") then
  1566. moveKick()
  1567. return
  1568. end
  1569.  
  1570. if (pose == "Fly") then
  1571. moveFly()
  1572. return
  1573. end
  1574.  
  1575. if (pose == "FreeFall") then
  1576. moveFreeFall()
  1577. return
  1578. end
  1579.  
  1580. if (pose == "Climbing") then
  1581. moveClimb()
  1582. return
  1583. end
  1584.  
  1585. if (pose == "Seated") then
  1586. moveSit()
  1587. return
  1588. end
  1589.  
  1590. amplitude = 0.1
  1591. frequency = 1
  1592.  
  1593. RightShoulder.MaxVelocity = 0.15
  1594. LeftShoulder.MaxVelocity = 0.15
  1595. if (pose == "Running") then
  1596. amplitude = 1
  1597. frequency = 9
  1598. elseif (pose == "Dancing") then
  1599. amplitude = 2
  1600. frequency = 25
  1601. end
  1602.  
  1603.  
  1604. desiredAngle = amplitude * math.sin(time*frequency)
  1605. if pose~="Dancing" then
  1606. RightShoulder.DesiredAngle = -desiredAngle
  1607. LeftShoulder.DesiredAngle = desiredAngle
  1608. RightHip.DesiredAngle = -desiredAngle
  1609. LeftHip.DesiredAngle = -desiredAngle
  1610. else
  1611. RightShoulder.DesiredAngle = desiredAngle
  1612. LeftShoulder.DesiredAngle = desiredAngle
  1613. RightHip.DesiredAngle = -desiredAngle
  1614. LeftHip.DesiredAngle = -desiredAngle
  1615. end
  1616.  
  1617.  
  1618.  
  1619. local tool = getTool()
  1620.  
  1621. if tool ~= nil then
  1622.  
  1623. animStringValueObject = getToolAnim(tool)
  1624.  
  1625. if animStringValueObject ~= nil then
  1626. toolAnim = animStringValueObject.Value
  1627. -- message recieved, delete StringValue
  1628. animStringValueObject.Parent = nil
  1629. toolAnimTime = time + .3
  1630. end
  1631.  
  1632. if time > toolAnimTime then
  1633. toolAnimTime = 0
  1634. toolAnim = "None"
  1635. end
  1636.  
  1637. animateTool()
  1638.  
  1639.  
  1640. else
  1641. toolAnim = "None"
  1642. toolAnimTime = 0
  1643. end
  1644. end
  1645.  
  1646.  
  1647. -- connect events
  1648. -----------------------------------------------------------------------------------------------------------------------
  1649.  
  1650. function unequip()
  1651. local items=script.Parent:children()
  1652. for i=1, #items do
  1653. if items[i].className=="Tool" then items[i]:remove() end
  1654. end
  1655. end
  1656.  
  1657. function onChatted(msg, recipient)
  1658. msg = string.lower(msg)
  1659.  
  1660. if string.match(msg, string.lower(script.Parent.Name))~=nil or string.match(msg, "everyone") then
  1661. if string.match(msg, "equip") then
  1662. if game.Workspace:findFirstChild("Hub") then
  1663. if string.match(msg, "rocket") then unequip()
  1664. game.Workspace.Hub.Rocket:clone().Parent=script.Parent
  1665. elseif string.match(msg, "slingshot") then unequip()
  1666. game.Workspace.Hub.Slingshot:clone().Parent=script.Parent
  1667. elseif string.match(msg, "sword") then unequip()
  1668. game.Workspace.Hub.Sword:clone().Parent=script.Parent
  1669. elseif string.match(msg, "pbg") then unequip()
  1670. game.Workspace.Hub.PBG:clone().Parent=script.Parent
  1671. elseif string.match(msg, "superball") then unequip()
  1672. game.Workspace.Hub.Superball:clone().Parent=script.Parent
  1673. elseif string.match(msg, "trowel") then unequip()
  1674. game.Workspace.Hub.Trowel:clone().Parent=script.Parent
  1675. elseif string.match(msg, "bomb") then unequip()
  1676. game.Workspace.Hub.Bomb:clone().Parent=script.Parent
  1677. end
  1678. end
  1679. end
  1680. if string.match(msg, "unequip") then unequip() end
  1681. if string.match(msg, "run") then onRunning(1) end
  1682. if string.match(msg, "climb") then onClimbing() end
  1683. if string.match(msg, "jump") then onJumping() end
  1684. if string.match(msg, "zombie") then pose="Zombie" end
  1685. if string.match(msg, "disco") then pose="Boogy" end
  1686. if string.match(msg, "float") then pose="Float" end
  1687. if string.match(msg, "punch") then pose="Punch" end
  1688. if string.match(msg, "kick") then pose="Kick" end
  1689. if string.match(msg, "fly") then pose="Fly" end
  1690. if string.match(msg, "heal") then script.Parent.Humanoid.Health=script.Parent.Humanoid.MaxHealth end
  1691. if string.match(msg, "defend") then defence() end
  1692. if string.match(msg, "stop") then pose="Standing"; proxkill=false; following=false; stopmoving() end
  1693. if string.match(msg, "go home") then following=false; gohome() end
  1694. if string.match(msg, "follow") then
  1695. if string.match(msg, "all") then
  1696. followany()
  1697. else
  1698. local egg=game.Players:children()
  1699. for i=1, #egg do
  1700. if string.match(msg, string.lower(egg[i].Name)) then
  1701. follow(egg[i].Name)
  1702. return
  1703. end
  1704. end
  1705. end
  1706. end
  1707. if string.match(msg, "kill") then
  1708. if string.match(msg, "all") then
  1709. attackany()
  1710. else
  1711. local egg=game.Players:children()
  1712. for i=1, #egg do
  1713. if string.match(msg, string.lower(egg[i].Name)) then
  1714. attack(egg[i].Name)
  1715. return
  1716. end
  1717. end
  1718. end
  1719. end
  1720.  
  1721. end
  1722. end
  1723.  
  1724. if game.Players.NumPlayers>1 then
  1725. x=game.Players:children()
  1726.  
  1727. for i=1, #x do
  1728. if script.Parent:findFirstChild("Commander")~=nil then
  1729. if script.Parent.Commander:children()~=nil or script.Parent.Commander:children()>0 then
  1730. local ch=script.Parent.Commander:children()
  1731. for i=1, #ch do
  1732. if string.lower(ch[i].Name)==string.lower(x[i].Name) then
  1733. x[i].Chatted:connect(function(msg, recipient) onChatted(msg, recipient) end)
  1734. end
  1735. end
  1736. elseif string.lower(script.Parent.Commander.Value)==string.lower(x[i].Name) then
  1737. x[i].Chatted:connect(function(msg, recipient) onChatted(msg, recipient) end)
  1738. end
  1739. else
  1740. x[i].Chatted:connect(function(msg, recipient) onChatted(msg, recipient) end)
  1741. end
  1742. end
  1743. end
  1744.  
  1745.  
  1746. function onPlayerEntered(Player)
  1747. while Player.Name==nil do
  1748. wait(2)
  1749. end
  1750. if script.Parent:findFirstChild("Commander")~=nil then
  1751. if script.Parent.Commander:children()~=nil or script.Parent.Commander:children()>0 then
  1752. local ch=script.Parent.Commander:children()
  1753. for i=1, #ch do
  1754. if string.lower(ch[i].Name)==string.lower(Player.Name) then
  1755. Player.Chatted:connect(function(msg, recipient) onChatted(msg, recipient) end)
  1756. end
  1757. end
  1758. elseif string.lower(script.Parent.Commander.Value)==string.lower(Player.Name) then
  1759. Player.Chatted:connect(function(msg, recipient) onChatted(msg, recipient) end)
  1760. end
  1761. else
  1762. Player.Chatted:connect(function(msg, recipient) onChatted(msg, recipient) end)
  1763. end
  1764. end
  1765.  
  1766. game.Players.ChildAdded:connect(onPlayerEntered)
  1767.  
  1768.  
  1769.  
  1770. -----------------------------------------------------------------------------------------------------------------------
  1771. -----------------------------------------------------------------------------------------------------------------------
  1772. -----------------------------------------------------------------------------------------------------------------------
  1773. -----------------------------------------------------------------------------------------------------------------------
  1774. -----------------------------------------------------------------------------------------------------------------------
  1775. -----------------------------------------------------------------------------------------------------------------------
  1776. -----------------------------------------------------------------------------------------------------------------------
  1777. -----------------------------------------------------------------------------------------------------------------------
  1778. -----------------------------------------------------------------------------------------------------------------------
  1779. -----------------------------------------------------------------------------------------------------------------------
  1780. -----------------------------------------------------------------------------------------------------------------------
  1781. -----------------------------------------------------------------------------------------------------------------------
  1782. dist=20
  1783.  
  1784. function followany()
  1785. following=true
  1786. while following==true do
  1787.  
  1788. local ch=game.Players:children()
  1789. for i=1, #ch do
  1790. local l=game.Workspace:findFirstChild(ch[i].Name)
  1791. if l~=nil then
  1792. local s=l.Torso
  1793. local p=l.Torso.Position
  1794. local q=script.Parent.Torso.Position
  1795. local d=math.sqrt( ((p.x-q.x)^2)+((p.y-q.y)^2)+((p.z-q.z)^2) )
  1796. if smallest==nil then
  1797. smallest=d
  1798. target=s
  1799. elseif d<smallest then
  1800. smallest=d
  1801. target=s
  1802. end
  1803. end
  1804. end
  1805.  
  1806. if smallest==nil then stopmoving() return end
  1807.  
  1808. if smallest>6*dist then return end
  1809.  
  1810. script.Parent.Humanoid:MoveTo(target.Position, target)
  1811.  
  1812. wait(0.5)
  1813. for i=1, 6 do
  1814. if target.Parent.Humanoid.Health<1 then stopmoving() else wait(0.5) end
  1815. end
  1816. end
  1817. end
  1818.  
  1819.  
  1820.  
  1821. function gohome()
  1822. script.Parent.Humanoid:MoveTo(Vector3.new(0,0,0), game.Workspace.Bases.Base)
  1823. end
  1824. function stopmoving()
  1825. script.Parent.Humanoid:MoveTo(script.Parent.Torso.Position, script.Parent.Torso)
  1826. end
  1827.  
  1828. function follow(name)
  1829. following=true
  1830.  
  1831. local p=game.Workspace:findFirstChild(name)
  1832. if p==nil then return end
  1833. while following==true do
  1834. script.Parent.Humanoid:MoveTo(p.Torso.Position, p.Torso)
  1835. wait(0.5)
  1836. for i=1, 3 do
  1837. if p.Humanoid.Health<1 then following=false; stopmoving() return end
  1838. wait(0.5)
  1839. end
  1840. end
  1841. end
  1842.  
  1843. function attack(name)
  1844. if script.Parent:findFirstChild("Sword")~=nil then
  1845. following=true
  1846. local p=game.Workspace:findFirstChild(name)
  1847. if p==nil then return end
  1848. while following==true do
  1849. script.Parent.Humanoid:MoveTo(p.Torso.Position, p.Torso)
  1850. wait(0.5)
  1851. for i=1, 3 do
  1852. if p.Humanoid.Health<1 then following=false; stopmoving() return end
  1853. local l=p.Torso.Position
  1854. local q=script.Parent.Torso.Position
  1855. local d=math.sqrt( ((l.x-q.x)^2)+((l.y-q.y)^2)+((l.z-q.z)^2) )
  1856. if d<10 then
  1857. script.Parent.Humanoid:MoveTo(p.Torso.Position, p.Torso); slash()
  1858. if (q.y-l.y)>3 and (q.y-l.y)<7 then
  1859. script.Parent.Humanoid:MoveTo(p.Torso.Position+Vector3.new(math.random(-4,4),0,math.random(-4,4)), p.Torso);
  1860. end
  1861. end
  1862. wait(1)
  1863. end
  1864. end
  1865. end
  1866. end
  1867.  
  1868. function attackany()
  1869. if script.Parent:findFirstChild("Sword")~=nil then
  1870.  
  1871. following=true
  1872. while following==true do
  1873.  
  1874. local ch=game.Players:children()
  1875. for i=1, #ch do
  1876. local l=game.Workspace:findFirstChild(ch[i].Name)
  1877. if l~=nil then
  1878. local s=l.Torso
  1879. local p=l.Torso.Position
  1880. local q=script.Parent.Torso.Position
  1881. local d=math.sqrt( ((p.x-q.x)^2)+((p.y-q.y)^2)+((p.z-q.z)^2) )
  1882. if smallest==nil then
  1883. smallest=d
  1884. target=s
  1885. elseif d<smallest then
  1886. smallest=d
  1887. target=s
  1888. end
  1889. end
  1890. end
  1891.  
  1892. if smallest==nil then stopmoving() return end
  1893.  
  1894. if smallest>6*dist then return end
  1895.  
  1896. script.Parent.Humanoid:MoveTo(target.Position, target)
  1897.  
  1898. if smallest<10 then
  1899. slash()
  1900. end
  1901. if target.Parent==nil then stopmoving() return end
  1902. wait(0.5)
  1903. for i=1, 3 do
  1904. if target.Parent.Humanoid.Health<1 then
  1905. stopmoving()
  1906. else
  1907. local p=target.Position
  1908. local q=script.Parent.Torso.Position
  1909. local d=math.sqrt( ((p.x-q.x)^2)+((p.y-q.y)^2)+((p.z-q.z)^2) )
  1910. if d<10 then
  1911. script.Parent.Humanoid:MoveTo(target.Position, target); slash()
  1912. if (q.y-p.y)>3 and (q.y-p.y)<7 then
  1913. script.Parent.Humanoid:MoveTo(p.Torso.Position+Vector3.new(math.random(-4,4),0,math.random(-4,4)), p.Torso);
  1914. end
  1915. end
  1916. wait(1)
  1917. end
  1918. end
  1919. end
  1920. end
  1921. end
  1922.  
  1923.  
  1924. function patrol()
  1925. if points==nil then
  1926. points=0
  1927. if game.Workspace:findFirstChild("pp1")~=nil then
  1928. pp1=game.Workspace:findFirstChild("pp1")
  1929. local points=points+1
  1930. if game.Workspace:findFirstChild("pp2")~=nil then
  1931. pp2=game.Workspace:findFirstChild("pp2")
  1932. local points=points+1
  1933. if game.Workspace:findFirstChild("pp3")~=nil then
  1934. pp3=game.Workspace:findFirstChild("pp3")
  1935. local points=points+1
  1936. if game.Workspace:findFirstChild("pp4")~=nil then
  1937. pp4=game.Workspace:findFirstChild("pp4")
  1938. local points=points+1
  1939. if game.Workspace:findFirstChild("pp5")~=nil then
  1940. pp5=game.Workspace:findFirstChild("pp5")
  1941. local points=points+1
  1942. if game.Workspace:findFirstChild("pp6")~=nil then
  1943. pp6=game.Workspace:findFirstChild("pp6")
  1944. local points=points+1
  1945. if game.Workspace:findFirstChild("pp7")~=nil then
  1946. pp7=game.Workspace:findFirstChild("pp7")
  1947. local points=points+1
  1948. if game.Workspace:findFirstChild("pp8")~=nil then
  1949. pp8=game.Workspace:findFirstChild("pp8")
  1950. local points=points+1
  1951. if game.Workspace:findFirstChild("pp9")~=nil then
  1952. pp9=game.Workspace:findFirstChild("pp9")
  1953. local points=points+1
  1954. end
  1955. end
  1956. end
  1957. end
  1958. end
  1959. end
  1960. end
  1961. end
  1962. end
  1963. end
  1964.  
  1965. if points<1 then return end
  1966. patrolling=true
  1967. local time=2
  1968. if points==1 then return end
  1969. if points>1 then
  1970. while patrolling==true do
  1971. script.Parent.Humanoid:MoveTo(pp1.Position, pp1)
  1972. wait(time)
  1973. script.Parent.Humanoid:MoveTo(pp2.Position, pp2)
  1974. wait(time)
  1975. if points>2 then
  1976. script.Parent.Humanoid:MoveTo(pp3.Position, pp3)
  1977. wait(time)
  1978. if points>3 then
  1979. script.Parent.Humanoid:MoveTo(pp4.Position, pp4)
  1980. wait(time)
  1981. if points>4 then
  1982. script.Parent.Humanoid:MoveTo(pp5.Position, pp5)
  1983. wait(time)
  1984. if points>5 then
  1985. script.Parent.Humanoid:MoveTo(pp6.Position, pp6)
  1986. wait(time)
  1987. if points>6 then
  1988. script.Parent.Humanoid:MoveTo(pp7.Position, pp7)
  1989. wait(time)
  1990. if points>7 then
  1991. script.Parent.Humanoid:MoveTo(pp8.Position, pp8)
  1992. wait(time)
  1993. if points>8 then
  1994. script.Parent.Humanoid:MoveTo(pp9.Position, pp9)
  1995. wait(time)
  1996. end
  1997. end
  1998. end
  1999. end
  2000. end
  2001. end
  2002. end
  2003. end
  2004. end
  2005. end
  2006.  
  2007.  
  2008. function goto(pos,part)
  2009. while true do
  2010. end
  2011. end
  2012.  
  2013.  
  2014. function slash()
  2015. for i=1, 3 do
  2016. wait(.3)
  2017. RightShoulder.MaxVelocity = 2
  2018. LeftShoulder.MaxVelocity = 1
  2019. RightShoulder.DesiredAngle = -2.14
  2020. LeftShoulder.DesiredAngle = 0
  2021. RightHip.DesiredAngle = 0
  2022. LeftHip.DesiredAngle = 0
  2023. wait(.2)
  2024. RightShoulder.MaxVelocity = 2
  2025. LeftShoulder.MaxVelocity = 1
  2026. RightShoulder.DesiredAngle = 0
  2027. LeftShoulder.DesiredAngle = 0
  2028. RightHip.DesiredAngle = 0
  2029. LeftHip.DesiredAngle = 0
  2030. end
  2031. end
  2032.  
  2033. function defence()
  2034. proxkill=true
  2035. while proxkill==true do
  2036. local ch=game.Players:children()
  2037. for i=1, #ch do
  2038. local p=game.Workspace:findFirstChild(ch[i].Name)
  2039. if p~=nil then
  2040. local p=p.Torso.Position
  2041. local q=script.Parent.Torso.Position
  2042. local d=math.sqrt( ((p.x-q.x)^2)+((p.y-q.y)^2)+((p.z-q.z)^2) )
  2043. if d<dist and d>8 then
  2044. local ex=Instance.new("Explosion")
  2045. ex.Position=p
  2046. ex.Parent=game.Workspace
  2047. end
  2048. end
  2049. end
  2050. wait(1)
  2051. end
  2052. end
  2053.  
  2054.  
  2055.  
  2056.  
  2057. -----------------------------------------------------------------------------------------------------------------------
  2058. -----------------------------------------------------------------------------------------------------------------------
  2059. -----------------------------------------------------------------------------------------------------------------------
  2060. -----------------------------------------------------------------------------------------------------------------------
  2061. -----------------------------------------------------------------------------------------------------------------------
  2062. -----------------------------------------------------------------------------------------------------------------------
  2063. -----------------------------------------------------------------------------------------------------------------------
  2064. -----------------------------------------------------------------------------------------------------------------------
  2065. -----------------------------------------------------------------------------------------------------------------------
  2066. -----------------------------------------------------------------------------------------------------------------------
  2067. -----------------------------------------------------------------------------------------------------------------------
  2068. -----------------------------------------------------------------------------------------------------------------------
  2069.  
  2070.  
  2071. Humanoid.Died:connect(onDied)
  2072. Humanoid.Running:connect(onRunning)
  2073. Humanoid.Jumping:connect(onJumping)
  2074. Humanoid.Climbing:connect(onClimbing)
  2075. Humanoid.GettingUp:connect(onGettingUp)
  2076. Humanoid.FreeFalling:connect(onFreeFall)
  2077. Humanoid.FallingDown:connect(onFallingDown)
  2078. Humanoid.Seated:connect(onSeated)
  2079.  
  2080.  
  2081. --[[
  2082.  
  2083. function newSound(id)
  2084. local sound = Instance.new("Sound")
  2085. sound.SoundId = id
  2086. sound.Parent = script.Parent.Head
  2087. return sound
  2088. end
  2089.  
  2090.  
  2091. local sDied = newSound("rbxasset://sounds/uuhhh.wav")
  2092. local sFallingDown = newSound("rbxasset://sounds/splat.wav")
  2093. local sFreeFalling = newSound("rbxasset://sounds/swoosh.wav")
  2094. local sGettingUp = newSound("rbxasset://sounds/hit.wav")
  2095. local sJumping = newSound("rbxasset://sounds/button.wav")
  2096. local sRunning = newSound("rbxasset://sounds/bfsl-minifigfoots1.mp3")
  2097. sRunning.Looped = true
  2098.  
  2099. local Figure = script.Parent
  2100. local Head = waitForChild(Figure, "Head")
  2101. local Humanoid = waitForChild(Figure, "Humanoid")
  2102.  
  2103.  
  2104. function onDied()
  2105. sDied:play()
  2106. end
  2107.  
  2108. function onState(state, sound)
  2109. if state then
  2110. sound:play()
  2111. else
  2112. sound:pause()
  2113. end
  2114. end
  2115.  
  2116. function onRunning(speed)
  2117. if speed>0 then
  2118. sRunning:play()
  2119. else
  2120. sRunning:pause()
  2121. end
  2122. end
  2123.  
  2124.  
  2125. Humanoid.Died:connect(onDied)
  2126. Humanoid.Running:connect(onRunning)
  2127. Humanoid.Jumping:connect(function(state) onState(state, sJumping) end)
  2128. Humanoid.GettingUp:connect(function(state) onState(state, sGettingUp) end)
  2129. Humanoid.FreeFalling:connect(function(state) onState(state, sFreeFalling) end)
  2130. Humanoid.FallingDown:connect(function(state) onState(state, sFallingDown) end)
  2131. --]]
  2132.  
  2133. local nextTime = 0
  2134. local runService = game:service("RunService");
  2135.  
  2136. while Figure.Parent~=nil do
  2137. time = runService.Stepped:wait()
  2138. if time > nextTime then
  2139. move(time)
  2140. nextTime = time + 0.1
  2141. end
  2142. end
  2143.  
  2144. end))
  2145. Script41.Name = "Chase Script"
  2146. Script41.Parent = Model22
  2147. table.insert(cors,sandbox(Script41,function()
  2148. local larm = script.Parent:FindFirstChild("Left Arm")
  2149. local rarm = script.Parent:FindFirstChild("Right Arm")
  2150.  
  2151. function findNearestTorso(pos)
  2152. local list = game.Workspace:children()
  2153. local torso = nil
  2154. local dist = 50
  2155. local temp = nil
  2156. local human = nil
  2157. local temp2 = nil
  2158. for x = 1, #list do
  2159. temp2 = list[x]
  2160. if (temp2.className == "Model") and (temp2 ~= script.Parent) then
  2161. temp = temp2:findFirstChild("Torso")
  2162. human = temp2:findFirstChild("Humanoid")
  2163. if (temp ~= nil) and (human ~= nil) and (human.Health > 0) then
  2164. if (temp.Position - pos).magnitude < dist then
  2165. torso = temp
  2166. dist = (temp.Position - pos).magnitude
  2167. end
  2168. end
  2169. end
  2170. end
  2171. return torso
  2172. end
  2173.  
  2174. function Hit(hit)
  2175. local human = hit.Parent:FindFirstChild("Humanoid")
  2176. if human ~= nil then
  2177. human.Health = human.Health -100
  2178. end
  2179. end
  2180.  
  2181. larm.Touched:connect(Hit)
  2182. rarm.Touched:connect(Hit)
  2183.  
  2184. while true do
  2185. wait(0.1)
  2186. local target = findNearestTorso(script.Parent.Torso.Position)
  2187. if target ~= nil then
  2188. script.Parent.Zombie:MoveTo(target.Position, target)
  2189. end
  2190. end
  2191.  
  2192. end))
  2193. Pants42.Name = "Pants"
  2194. Pants42.Parent = Model22
  2195. Pants42.PantsTemplate = "rbxassetid://474475040"
  2196. Shirt43.Name = "Shirt"
  2197. Shirt43.Parent = Model22
  2198. Shirt43.ShirtTemplate = "rbxassetid://575732308"
  2199. Model44.Name = " "
  2200. Model44.Parent = Model0
  2201. Model45.Name = ""
  2202. Model45.Parent = Model44
  2203. Model45.PrimaryPart = Part67
  2204. Part46.Name = "Left Arm"
  2205. Part46.Parent = Model45
  2206. Part46.BrickColor = BrickColor.new("Cool yellow")
  2207. Part46.Rotation = Vector3.new(-37.75, -82.9599991, -32.5499992)
  2208. Part46.Anchored = true
  2209. Part46.FormFactor = Enum.FormFactor.Symmetric
  2210. Part46.Size = Vector3.new(1, 2, 1)
  2211. Part46.CFrame = CFrame.new(-59.8823738, 3.46006274, 60.8904877, 0.103369378, 0.0659824684, -0.992452502, 0.0867104754, 0.993400753, 0.0750769004, 0.990856588, -0.0938166454, 0.0969658047)
  2212. Part46.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2213. Part46.Position = Vector3.new(-59.8823738, 3.46006274, 60.8904877)
  2214. Part46.Orientation = Vector3.new(-4.30999994, -84.4199982, 4.98999977)
  2215. Part46.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2216. Script47.Name = "Delete Object Script"
  2217. Script47.Parent = Part46
  2218. table.insert(cors,sandbox(Script47,function()
  2219. function touch()
  2220. script.Parent:remove()
  2221. end
  2222.  
  2223. script.Parent.Touched:connect (touch)
  2224. end))
  2225. Part48.Name = "Left Leg"
  2226. Part48.Parent = Model45
  2227. Part48.BrickColor = BrickColor.new("Bright blue")
  2228. Part48.Rotation = Vector3.new(18.5900002, -84.9799957, 16.8400002)
  2229. Part48.Anchored = true
  2230. Part48.FormFactor = Enum.FormFactor.Symmetric
  2231. Part48.Size = Vector3.new(1, 2, 1)
  2232. Part48.CFrame = CFrame.new(-60.10355, 1.39221156, 58.8757324, 0.0837144405, -0.0253392234, -0.996167898, -0.02932778, 0.999181032, -0.0278804675, 0.996058464, 0.0315493941, 0.0829027146)
  2233. Part48.BottomSurface = Enum.SurfaceType.Weld
  2234. Part48.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2235. Part48.Position = Vector3.new(-60.10355, 1.39221156, 58.8757324)
  2236. Part48.Orientation = Vector3.new(1.5999999, -85.2399979, -1.67999995)
  2237. Part48.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2238. Script49.Name = "Delete Object Script"
  2239. Script49.Parent = Part48
  2240. table.insert(cors,sandbox(Script49,function()
  2241. function touch()
  2242. script.Parent:remove()
  2243. end
  2244.  
  2245. script.Parent.Touched:connect (touch)
  2246. end))
  2247. Part50.Name = "Right Arm"
  2248. Part50.Parent = Model45
  2249. Part50.BrickColor = BrickColor.new("Cool yellow")
  2250. Part50.Rotation = Vector3.new(-141.889999, 84.2599945, 144.309998)
  2251. Part50.Anchored = true
  2252. Part50.FormFactor = Enum.FormFactor.Symmetric
  2253. Part50.Size = Vector3.new(1, 2, 1)
  2254. Part50.CFrame = CFrame.new(-60.1662903, 3.42938638, 57.9762802, -0.08121337, -0.0583303384, 0.994988799, 0.0397719666, 0.99730134, 0.0617122017, -0.995903373, 0.0445845313, -0.0786743015)
  2255. Part50.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2256. Part50.Position = Vector3.new(-60.1662903, 3.42938638, 57.9762802)
  2257. Part50.Orientation = Vector3.new(-3.53999996, 94.5199966, 2.27999997)
  2258. Part50.Color = Color3.new(0.992157, 0.917647, 0.552941)
  2259. Script51.Name = "Delete Object Script"
  2260. Script51.Parent = Part50
  2261. table.insert(cors,sandbox(Script51,function()
  2262. function touch()
  2263. script.Parent:remove()
  2264. end
  2265.  
  2266. script.Parent.Touched:connect (touch)
  2267. end))
  2268. Part52.Name = "Right Leg"
  2269. Part52.Parent = Model45
  2270. Part52.BrickColor = BrickColor.new("Bright blue")
  2271. Part52.Rotation = Vector3.new(16.6999989, -84.0599976, 17.2299995)
  2272. Part52.Anchored = true
  2273. Part52.FormFactor = Enum.FormFactor.Symmetric
  2274. Part52.Size = Vector3.new(1, 2, 1)
  2275. Part52.CFrame = CFrame.new(-60.0164948, 1.38900244, 59.9213066, 0.0988456383, -0.0306494571, -0.994631112, 0.0107038338, 0.999500453, -0.0297357664, 0.995045543, -0.00770710362, 0.0991243497)
  2276. Part52.BottomSurface = Enum.SurfaceType.Weld
  2277. Part52.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2278. Part52.Position = Vector3.new(-60.0164948, 1.38900244, 59.9213066)
  2279. Part52.Orientation = Vector3.new(1.69999993, -84.3099976, 0.610000014)
  2280. Part52.Color = Color3.new(0.0509804, 0.411765, 0.67451)
  2281. Script53.Name = "Delete Object Script"
  2282. Script53.Parent = Part52
  2283. table.insert(cors,sandbox(Script53,function()
  2284. function touch()
  2285. script.Parent:remove()
  2286. end
  2287.  
  2288. script.Parent.Touched:connect (touch)
  2289. end))
  2290. Part54.Name = "Torso"
  2291. Part54.Parent = Model45
  2292. Part54.BrickColor = BrickColor.new("Dark green")
  2293. Part54.Rotation = Vector3.new(-17.3500004, -83.9399948, -16.9899998)
  2294. Part54.Anchored = true
  2295. Part54.FormFactor = Enum.FormFactor.Symmetric
  2296. Part54.Size = Vector3.new(2, 2, 1)
  2297. Part54.CFrame = CFrame.new(-60.086235, 3.38849044, 59.4267998, 0.101048224, 0.0308714248, -0.994402885, 0.004731772, 0.999492347, 0.0315102637, 0.994870603, -0.00788933598, 0.100850843)
  2298. Part54.LeftSurface = Enum.SurfaceType.Weld
  2299. Part54.RightSurface = Enum.SurfaceType.Weld
  2300. Part54.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2301. Part54.Position = Vector3.new(-60.086235, 3.38849044, 59.4267998)
  2302. Part54.Orientation = Vector3.new(-1.80999994, -84.2099991, 0.269999981)
  2303. Part54.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2304. Decal55.Parent = Part54
  2305. Decal55.Texture = "http://www.roblox.com/asset/?id=116830967"
  2306. Script56.Name = "Delete Object Script"
  2307. Script56.Parent = Part54
  2308. table.insert(cors,sandbox(Script56,function()
  2309. function touch()
  2310. script.Parent:remove()
  2311. end
  2312.  
  2313. script.Parent.Touched:connect (touch)
  2314. end))
  2315. Humanoid57.Name = "Morph"
  2316. Humanoid57.Parent = Model45
  2317. Humanoid57.NameOcclusion = Enum.NameOcclusion.NoOcclusion
  2318. Humanoid57.RightLeg = Part52
  2319. Humanoid57.LeftLeg = Part48
  2320. Humanoid57.Torso = Part54
  2321. Humanoid57.Health = 0
  2322. Humanoid57.MaxHealth = 0
  2323. Humanoid57.WalkSpeed = 0
  2324. BodyColors58.Parent = Model45
  2325. BodyColors58.HeadColor = BrickColor.new("Light orange")
  2326. BodyColors58.LeftArmColor = BrickColor.new("Light orange")
  2327. BodyColors58.LeftLegColor = BrickColor.new("Light orange")
  2328. BodyColors58.RightArmColor = BrickColor.new("Light orange")
  2329. BodyColors58.RightLegColor = BrickColor.new("Light orange")
  2330. BodyColors58.TorsoColor = BrickColor.new("Light orange")
  2331. Pants59.Name = "Pants"
  2332. Pants59.Parent = Model45
  2333. Pants59.PantsTemplate = "rbxassetid://474475040"
  2334. Shirt60.Name = "Shirt"
  2335. Shirt60.Parent = Model45
  2336. Shirt60.ShirtTemplate = "rbxassetid://575732308"
  2337. Hat61.Parent = Model45
  2338. Part62.Name = "Cool Hair"
  2339. Part62.Parent = Hat61
  2340. Part62.BrickColor = BrickColor.new("Dark orange")
  2341. Part62.Rotation = Vector3.new(73.7299957, -84.9599991, 109.339996)
  2342. Part62.Anchored = true
  2343. Part62.FormFactor = Enum.FormFactor.Symmetric
  2344. Part62.Size = Vector3.new(2, 1, 1)
  2345. Part62.CFrame = CFrame.new(-60.1046181, 5.2013135, 58.9530334, -0.0290906038, -0.0828987285, -0.996133804, 0.580922306, 0.809578419, -0.0843383968, 0.813439012, -0.581129909, 0.0246065799)
  2346. Part62.BottomSurface = Enum.SurfaceType.Smooth
  2347. Part62.TopSurface = Enum.SurfaceType.Smooth
  2348. Part62.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2349. Part62.Position = Vector3.new(-60.1046181, 5.2013135, 58.9530334)
  2350. Part62.Orientation = Vector3.new(4.83999968, -88.5800018, 35.6599998)
  2351. Part62.Color = Color3.new(0.627451, 0.372549, 0.207843)
  2352. SpecialMesh63.Parent = Part62
  2353. SpecialMesh63.MeshId = "http://www.roblox.com/asset/?id=16627529"
  2354. SpecialMesh63.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  2355. SpecialMesh63.TextureId = "rbxgameasset://Images/Brown"
  2356. SpecialMesh63.MeshType = Enum.MeshType.FileMesh
  2357. SpecialMesh63.Scale = Vector3.new(1.04999995, 1.04999995, 1.04999995)
  2358. Script64.Name = "Delete Object Script"
  2359. Script64.Parent = Part62
  2360. table.insert(cors,sandbox(Script64,function()
  2361. function touch()
  2362. script.Parent:remove()
  2363. end
  2364.  
  2365. script.Parent.Touched:connect (touch)
  2366. end))
  2367. Script65.Name = "Delete Object Script"
  2368. Script65.Parent = Hat61
  2369. table.insert(cors,sandbox(Script65,function()
  2370. function touch()
  2371. script.Parent:remove()
  2372. end
  2373.  
  2374. script.Parent.Touched:connect (touch)
  2375. end))
  2376. Model66.Name = "head"
  2377. Model66.Parent = Model45
  2378. Part67.Name = "Head"
  2379. Part67.Parent = Model66
  2380. Part67.BrickColor = BrickColor.new("Light orange")
  2381. Part67.Rotation = Vector3.new(-109.849998, -89.5400009, -84.2399979)
  2382. Part67.Anchored = true
  2383. Part67.FormFactor = Enum.FormFactor.Symmetric
  2384. Part67.Size = Vector3.new(2, 0.599999964, 1)
  2385. Part67.CFrame = CFrame.new(-60.1727524, 4.60343075, 59.2521629, 0.000807816163, 0.00800964236, -0.999968112, 0.432163298, 0.901764214, 0.00757223368, 0.90179503, -0.432155699, -0.00273305364)
  2386. Part67.TopSurface = Enum.SurfaceType.Smooth
  2387. Part67.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2388. Part67.Position = Vector3.new(-60.1727524, 4.60343075, 59.2521629)
  2389. Part67.Orientation = Vector3.new(-0.429999977, -90.159996, 25.6099987)
  2390. Part67.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2391. SpecialMesh68.Parent = Part67
  2392. SpecialMesh68.Scale = Vector3.new(1.25, 1.25, 1.25)
  2393. SpecialMesh68.Scale = Vector3.new(1.25, 1.25, 1.25)
  2394. Decal69.Parent = Part67
  2395. Decal69.Texture = "http://www.roblox.com/asset/?id=462072352"
  2396. Script70.Name = "Delete Object Script"
  2397. Script70.Parent = Part67
  2398. table.insert(cors,sandbox(Script70,function()
  2399. function touch()
  2400. script.Parent:remove()
  2401. end
  2402.  
  2403. script.Parent.Touched:connect (touch)
  2404. end))
  2405. Part71.Name = "Head"
  2406. Part71.Parent = Model66
  2407. Part71.BrickColor = BrickColor.new("Light orange")
  2408. Part71.Rotation = Vector3.new(-109.849998, -89.5400009, -84.2399979)
  2409. Part71.Anchored = true
  2410. Part71.FormFactor = Enum.FormFactor.Symmetric
  2411. Part71.Size = Vector3.new(2, 0.899999976, 1)
  2412. Part71.CFrame = CFrame.new(-60.169136, 5.00921535, 59.0577049, 0.000807845965, 0.00800967216, -0.999968112, 0.432163179, 0.901764214, 0.00757226348, 0.901795089, -0.432155669, -0.00273303315)
  2413. Part71.TopSurface = Enum.SurfaceType.Smooth
  2414. Part71.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2415. Part71.Position = Vector3.new(-60.169136, 5.00921535, 59.0577049)
  2416. Part71.Orientation = Vector3.new(-0.429999977, -90.159996, 25.6099987)
  2417. Part71.Color = Color3.new(0.917647, 0.721569, 0.572549)
  2418. SpecialMesh72.Parent = Part71
  2419. SpecialMesh72.Scale = Vector3.new(1.25, 1.25, 1.25)
  2420. SpecialMesh72.Scale = Vector3.new(1.25, 1.25, 1.25)
  2421. Decal73.Parent = Part71
  2422. Decal73.Texture = "http://www.roblox.com/asset/?id=305296807"
  2423. Script74.Name = "Delete Object Script"
  2424. Script74.Parent = Part71
  2425. table.insert(cors,sandbox(Script74,function()
  2426. function touch()
  2427. script.Parent:remove()
  2428. end
  2429.  
  2430. script.Parent.Touched:connect (touch)
  2431. end))
  2432. Part75.Parent = Model45
  2433. Part75.BrickColor = BrickColor.new("Really black")
  2434. Part75.Anchored = true
  2435. Part75.Shape = Enum.PartType.Ball
  2436. Part75.Size = Vector3.new(0.199999988, 0.199999988, 0.199999988)
  2437. Part75.CFrame = CFrame.new(-59.5999985, 4.95000505, 58.9500046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2438. Part75.BottomSurface = Enum.SurfaceType.Smooth
  2439. Part75.TopSurface = Enum.SurfaceType.Smooth
  2440. Part75.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2441. Part75.Position = Vector3.new(-59.5999985, 4.95000505, 58.9500046)
  2442. Part75.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2443. Script76.Name = "Delete Object Script"
  2444. Script76.Parent = Part75
  2445. table.insert(cors,sandbox(Script76,function()
  2446. function touch()
  2447. script.Parent:remove()
  2448. end
  2449.  
  2450. script.Parent.Touched:connect (touch)
  2451. end))
  2452. Part77.Parent = Model45
  2453. Part77.BrickColor = BrickColor.new("Really black")
  2454. Part77.Anchored = true
  2455. Part77.Shape = Enum.PartType.Ball
  2456. Part77.Size = Vector3.new(0.199999988, 0.199999988, 0.199999988)
  2457. Part77.CFrame = CFrame.new(-59.5999985, 5.20000458, 59.2000046, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2458. Part77.BottomSurface = Enum.SurfaceType.Smooth
  2459. Part77.TopSurface = Enum.SurfaceType.Smooth
  2460. Part77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2461. Part77.Position = Vector3.new(-59.5999985, 5.20000458, 59.2000046)
  2462. Part77.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2463. Script78.Name = "Delete Object Script"
  2464. Script78.Parent = Part77
  2465. table.insert(cors,sandbox(Script78,function()
  2466. function touch()
  2467. script.Parent:remove()
  2468. end
  2469.  
  2470. script.Parent.Touched:connect (touch)
  2471. end))
  2472. Model79.Parent = Model0
  2473. Fire80.Parent = mas
  2474. Fire80.Size = 20
  2475. Model81.Name = "Base"
  2476. Model81.Parent = Model79
  2477. Part82.Parent = Model81
  2478. Part82.Material = Enum.Material.Wood
  2479. Part82.BrickColor = BrickColor.new("Brown")
  2480. Part82.Rotation = Vector3.new(180, 90, 0)
  2481. Part82.Anchored = true
  2482. Part82.Size = Vector3.new(9.89999962, 13.8999996, 0.200000003)
  2483. Part82.CFrame = CFrame.new(-58.4568405, 7.15011597, 67.895401, -8.94055319e-08, 0, 1, 0, -1, 0, 1, 0, 8.94055319e-08)
  2484. Part82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. Part82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2486. Part82.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2487. Part82.Position = Vector3.new(-58.4568405, 7.15011597, 67.895401)
  2488. Part82.Orientation = Vector3.new(0, 90, 180)
  2489. Part82.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2490. Part83.Parent = Model81
  2491. Part83.Material = Enum.Material.Wood
  2492. Part83.BrickColor = BrickColor.new("Brown")
  2493. Part83.Rotation = Vector3.new(-180, 0, -180)
  2494. Part83.Anchored = true
  2495. Part83.Size = Vector3.new(26.3999996, 13.9000006, 0.200000003)
  2496. Part83.CFrame = CFrame.new(-71.5571976, 7.15011597, 72.8455353, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  2497. Part83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2498. Part83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2499. Part83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2500. Part83.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2501. Part83.Position = Vector3.new(-71.5571976, 7.15011597, 72.8455353)
  2502. Part83.Orientation = Vector3.new(0, -180, 0)
  2503. Part83.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2504. Fire84.Parent = Part83
  2505. Fire84.Size = 20
  2506. Decal85.Parent = Part83
  2507. Decal85.Texture = "http://www.roblox.com/asset/?id=305296807"
  2508. Decal85.Face = Enum.NormalId.Back
  2509. Part86.Parent = Model81
  2510. Part86.Material = Enum.Material.Wood
  2511. Part86.BrickColor = BrickColor.new("Brown")
  2512. Part86.Rotation = Vector3.new(180, 90, 0)
  2513. Part86.Anchored = true
  2514. Part86.Size = Vector3.new(26.3999996, 0.200000003, 26.3500004)
  2515. Part86.CFrame = CFrame.new(-71.7322006, 0.200117111, 59.5451927, -8.94055319e-08, 0, 1, 0, -1, 0, 1, 0, 8.94055319e-08)
  2516. Part86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2517. Part86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2518. Part86.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2519. Part86.Position = Vector3.new(-71.7322006, 0.200117111, 59.5451927)
  2520. Part86.Orientation = Vector3.new(0, 90, 180)
  2521. Part86.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2522. Fire87.Parent = Part86
  2523. Fire87.Size = 20
  2524. Part88.Parent = Model81
  2525. Part88.Material = Enum.Material.Wood
  2526. Part88.BrickColor = BrickColor.new("Brown")
  2527. Part88.Rotation = Vector3.new(-180, 0, -180)
  2528. Part88.Anchored = true
  2529. Part88.Size = Vector3.new(26.3999996, 13.9000006, 0.200000003)
  2530. Part88.CFrame = CFrame.new(-71.5571899, 7.15011597, 46.244854, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  2531. Part88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. Part88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2533. Part88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2534. Part88.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2535. Part88.Position = Vector3.new(-71.5571899, 7.15011597, 46.244854)
  2536. Part88.Orientation = Vector3.new(0, -180, 0)
  2537. Part88.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2538. Part89.Parent = Model81
  2539. Part89.Material = Enum.Material.Wood
  2540. Part89.BrickColor = BrickColor.new("Brown")
  2541. Part89.Rotation = Vector3.new(180, 90, 0)
  2542. Part89.Anchored = true
  2543. Part89.Size = Vector3.new(7.39999962, 0.900000572, 0.200000003)
  2544. Part89.CFrame = CFrame.new(-84.6575317, 0.650115967, 50.0449371, -8.94055319e-08, 0, 1, 0, -1, 0, 1, 0, 8.94055319e-08)
  2545. Part89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2546. Part89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2547. Part89.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2548. Part89.Position = Vector3.new(-84.6575317, 0.650115967, 50.0449371)
  2549. Part89.Orientation = Vector3.new(0, 90, 180)
  2550. Part89.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2551. Fire90.Parent = Part89
  2552. Fire90.Size = 20
  2553. Part91.Parent = Model81
  2554. Part91.Material = Enum.Material.Wood
  2555. Part91.BrickColor = BrickColor.new("Brown")
  2556. Part91.Rotation = Vector3.new(180, 90, 0)
  2557. Part91.Anchored = true
  2558. Part91.Size = Vector3.new(7.39999962, 0.899999619, 0.200000003)
  2559. Part91.CFrame = CFrame.new(-84.6575394, 0.650115967, 69.0454559, -8.94055319e-08, 0, 1, 0, -1, 0, 1, 0, 8.94055319e-08)
  2560. Part91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2561. Part91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2562. Part91.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2563. Part91.Position = Vector3.new(-84.6575394, 0.650115967, 69.0454559)
  2564. Part91.Orientation = Vector3.new(0, 90, 180)
  2565. Part91.Color = Color3.new(0.486275, 0.360784, 0.27451)
  2566. Fire92.Parent = Part91
  2567. Fire92.Size = 20
  2568. Model93.Name = "Outerframe"
  2569. Model93.Parent = Model79
  2570. Part94.Parent = Model93
  2571. Part94.Material = Enum.Material.Wood
  2572. Part94.BrickColor = BrickColor.new("Pearl")
  2573. Part94.Anchored = true
  2574. Part94.Size = Vector3.new(0.600000024, 13.8999996, 0.200000003)
  2575. Part94.CFrame = CFrame.new(-32.1218262, 7.15011597, 46.0557442, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2576. Part94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2577. Part94.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2578. Part94.Position = Vector3.new(-32.1218262, 7.15011597, 46.0557442)
  2579. Part94.Color = Color3.new(0.905882, 0.905882, 0.92549)
  2580. Part95.Parent = Model93
  2581. Part95.Material = Enum.Material.Wood
  2582. Part95.BrickColor = BrickColor.new("Dark green")
  2583. Part95.Rotation = Vector3.new(0, 90, 0)
  2584. Part95.Anchored = true
  2585. Part95.Size = Vector3.new(0.899999976, 13.8999996, 0.200000003)
  2586. Part95.CFrame = CFrame.new(-31.7217846, 7.15011597, 71.8063126, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2587. Part95.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2588. Part95.Position = Vector3.new(-31.7217846, 7.15011597, 71.8063126)
  2589. Part95.Orientation = Vector3.new(0, 90, 0)
  2590. Part95.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2591. Part96.Parent = Model93
  2592. Part96.Material = Enum.Material.Wood
  2593. Part96.BrickColor = BrickColor.new("Dark green")
  2594. Part96.Rotation = Vector3.new(0, 90, 0)
  2595. Part96.Anchored = true
  2596. Part96.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2597. Part96.CFrame = CFrame.new(-31.7217712, 7.15011597, 70.7563095, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2598. Part96.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2599. Part96.Position = Vector3.new(-31.7217712, 7.15011597, 70.7563095)
  2600. Part96.Orientation = Vector3.new(0, 90, 0)
  2601. Part96.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2602. Part97.Parent = Model93
  2603. Part97.Material = Enum.Material.Wood
  2604. Part97.BrickColor = BrickColor.new("Dark green")
  2605. Part97.Rotation = Vector3.new(0, 90, 0)
  2606. Part97.Anchored = true
  2607. Part97.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2608. Part97.CFrame = CFrame.new(-31.7217884, 7.15011597, 69.6562805, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2609. Part97.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2610. Part97.Position = Vector3.new(-31.7217884, 7.15011597, 69.6562805)
  2611. Part97.Orientation = Vector3.new(0, 90, 0)
  2612. Part97.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2613. Part98.Parent = Model93
  2614. Part98.Material = Enum.Material.Wood
  2615. Part98.BrickColor = BrickColor.new("Dark green")
  2616. Part98.Rotation = Vector3.new(0, 90, 0)
  2617. Part98.Anchored = true
  2618. Part98.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2619. Part98.CFrame = CFrame.new(-31.7217731, 7.15009689, 67.4562454, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2620. Part98.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2621. Part98.Position = Vector3.new(-31.7217731, 7.15009689, 67.4562454)
  2622. Part98.Orientation = Vector3.new(0, 90, 0)
  2623. Part98.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2624. Part99.Parent = Model93
  2625. Part99.Material = Enum.Material.Wood
  2626. Part99.BrickColor = BrickColor.new("Dark green")
  2627. Part99.Rotation = Vector3.new(0, 90, 0)
  2628. Part99.Anchored = true
  2629. Part99.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  2630. Part99.CFrame = CFrame.new(-31.7217865, 7.15009689, 66.5062332, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2631. Part99.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2632. Part99.Position = Vector3.new(-31.7217865, 7.15009689, 66.5062332)
  2633. Part99.Orientation = Vector3.new(0, 90, 0)
  2634. Part99.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2635. Part100.Parent = Model93
  2636. Part100.Material = Enum.Material.Wood
  2637. Part100.BrickColor = BrickColor.new("Dark green")
  2638. Part100.Rotation = Vector3.new(0, 90, 0)
  2639. Part100.Anchored = true
  2640. Part100.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2641. Part100.CFrame = CFrame.new(-31.7217789, 7.15009689, 68.5562592, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2642. Part100.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2643. Part100.Position = Vector3.new(-31.7217789, 7.15009689, 68.5562592)
  2644. Part100.Orientation = Vector3.new(0, 90, 0)
  2645. Part100.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2646. Part101.Parent = Model93
  2647. Part101.Material = Enum.Material.Wood
  2648. Part101.BrickColor = BrickColor.new("Dark green")
  2649. Part101.Rotation = Vector3.new(0, 90, 0)
  2650. Part101.Anchored = true
  2651. Part101.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2652. Part101.CFrame = CFrame.new(-31.7217693, 7.15010166, 48.0557709, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2653. Part101.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2654. Part101.Position = Vector3.new(-31.7217693, 7.15010166, 48.0557709)
  2655. Part101.Orientation = Vector3.new(0, 90, 0)
  2656. Part101.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2657. Part102.Parent = Model93
  2658. Part102.Material = Enum.Material.Wood
  2659. Part102.BrickColor = BrickColor.new("Dark green")
  2660. Part102.Rotation = Vector3.new(0, 90, 0)
  2661. Part102.Anchored = true
  2662. Part102.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  2663. Part102.CFrame = CFrame.new(-31.7217846, 7.15010166, 47.1057472, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2664. Part102.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2665. Part102.Position = Vector3.new(-31.7217846, 7.15010166, 47.1057472)
  2666. Part102.Orientation = Vector3.new(0, 90, 0)
  2667. Part102.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2668. Part103.Parent = Model93
  2669. Part103.Material = Enum.Material.Wood
  2670. Part103.BrickColor = BrickColor.new("Dark green")
  2671. Part103.Rotation = Vector3.new(0, 90, 0)
  2672. Part103.Anchored = true
  2673. Part103.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2674. Part103.CFrame = CFrame.new(-31.721777, 7.15010166, 49.1557884, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2675. Part103.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2676. Part103.Position = Vector3.new(-31.721777, 7.15010166, 49.1557884)
  2677. Part103.Orientation = Vector3.new(0, 90, 0)
  2678. Part103.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2679. Part104.Parent = Model93
  2680. Part104.Material = Enum.Material.Wood
  2681. Part104.BrickColor = BrickColor.new("Dark green")
  2682. Part104.Rotation = Vector3.new(0, 90, 0)
  2683. Part104.Anchored = true
  2684. Part104.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2685. Part104.CFrame = CFrame.new(-31.721777, 7.15011978, 51.355854, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2686. Part104.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2687. Part104.Position = Vector3.new(-31.721777, 7.15011978, 51.355854)
  2688. Part104.Orientation = Vector3.new(0, 90, 0)
  2689. Part104.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2690. Part105.Parent = Model93
  2691. Part105.Material = Enum.Material.Wood
  2692. Part105.BrickColor = BrickColor.new("Dark green")
  2693. Part105.Rotation = Vector3.new(0, 90, 0)
  2694. Part105.Anchored = true
  2695. Part105.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2696. Part105.CFrame = CFrame.new(-31.721777, 7.15011978, 52.4558792, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2697. Part105.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2698. Part105.Position = Vector3.new(-31.721777, 7.15011978, 52.4558792)
  2699. Part105.Orientation = Vector3.new(0, 90, 0)
  2700. Part105.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2701. Part106.Parent = Model93
  2702. Part106.Material = Enum.Material.Wood
  2703. Part106.BrickColor = BrickColor.new("Dark green")
  2704. Part106.Rotation = Vector3.new(0, 90, 0)
  2705. Part106.Anchored = true
  2706. Part106.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2707. Part106.CFrame = CFrame.new(-31.7217846, 7.15011978, 50.2558289, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2708. Part106.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2709. Part106.Position = Vector3.new(-31.7217846, 7.15011978, 50.2558289)
  2710. Part106.Orientation = Vector3.new(0, 90, 0)
  2711. Part106.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2712. Part107.Parent = Model93
  2713. Part107.Material = Enum.Material.Wood
  2714. Part107.BrickColor = BrickColor.new("Dark green")
  2715. Part107.Rotation = Vector3.new(0, 90, 0)
  2716. Part107.Anchored = true
  2717. Part107.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2718. Part107.CFrame = CFrame.new(-58.3224258, 7.1500988, 48.7057495, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2719. Part107.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2720. Part107.Position = Vector3.new(-58.3224258, 7.1500988, 48.7057495)
  2721. Part107.Orientation = Vector3.new(0, 90, 0)
  2722. Part107.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2723. Part108.Parent = Model93
  2724. Part108.Material = Enum.Material.Wood
  2725. Part108.BrickColor = BrickColor.new("Dark green")
  2726. Part108.Rotation = Vector3.new(0, 90, 0)
  2727. Part108.Anchored = true
  2728. Part108.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2729. Part108.CFrame = CFrame.new(-58.3224106, 7.1500988, 49.8057823, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2730. Part108.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2731. Part108.Position = Vector3.new(-58.3224106, 7.1500988, 49.8057823)
  2732. Part108.Orientation = Vector3.new(0, 90, 0)
  2733. Part108.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2734. Part109.Parent = Model93
  2735. Part109.Material = Enum.Material.Wood
  2736. Part109.BrickColor = BrickColor.new("Dark green")
  2737. Part109.Rotation = Vector3.new(0, 90, 0)
  2738. Part109.Anchored = true
  2739. Part109.Size = Vector3.new(1.30000007, 13.8999996, 0.200000003)
  2740. Part109.CFrame = CFrame.new(-58.3224258, 7.1500988, 47.4557343, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2741. Part109.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2742. Part109.Position = Vector3.new(-58.3224258, 7.1500988, 47.4557343)
  2743. Part109.Orientation = Vector3.new(0, 90, 0)
  2744. Part109.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2745. Part110.Parent = Model93
  2746. Part110.Material = Enum.Material.Wood
  2747. Part110.BrickColor = BrickColor.new("Dark green")
  2748. Part110.Rotation = Vector3.new(0, 90, 0)
  2749. Part110.Anchored = true
  2750. Part110.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2751. Part110.CFrame = CFrame.new(-58.3224297, 7.15011072, 50.9057999, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2752. Part110.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2753. Part110.Position = Vector3.new(-58.3224297, 7.15011072, 50.9057999)
  2754. Part110.Orientation = Vector3.new(0, 90, 0)
  2755. Part110.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2756. Part111.Parent = Model93
  2757. Part111.Material = Enum.Material.Wood
  2758. Part111.BrickColor = BrickColor.new("Dark green")
  2759. Part111.Rotation = Vector3.new(0, 90, 0)
  2760. Part111.Anchored = true
  2761. Part111.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2762. Part111.CFrame = CFrame.new(-58.3224754, 7.15012884, 66.3061523, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2763. Part111.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2764. Part111.Position = Vector3.new(-58.3224754, 7.15012884, 66.3061523)
  2765. Part111.Orientation = Vector3.new(0, 90, 0)
  2766. Part111.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2767. Part112.Parent = Model93
  2768. Part112.Material = Enum.Material.Wood
  2769. Part112.BrickColor = BrickColor.new("Dark green")
  2770. Part112.Anchored = true
  2771. Part112.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2772. Part112.CFrame = CFrame.new(-41.8220444, 7.15012169, 46.0557137, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2773. Part112.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2774. Part112.Position = Vector3.new(-41.8220444, 7.15012169, 46.0557137)
  2775. Part112.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2776. Part113.Parent = Model93
  2777. Part113.Material = Enum.Material.Wood
  2778. Part113.BrickColor = BrickColor.new("Dark green")
  2779. Part113.Anchored = true
  2780. Part113.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2781. Part113.CFrame = CFrame.new(-39.621994, 7.15012169, 46.0557137, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2782. Part113.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2783. Part113.Position = Vector3.new(-39.621994, 7.15012169, 46.0557137)
  2784. Part113.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2785. Part114.Parent = Model93
  2786. Part114.Material = Enum.Material.Wood
  2787. Part114.BrickColor = BrickColor.new("Dark green")
  2788. Part114.Rotation = Vector3.new(0, 90, 0)
  2789. Part114.Anchored = true
  2790. Part114.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2791. Part114.CFrame = CFrame.new(-58.3224602, 7.15012884, 67.4062042, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2792. Part114.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2793. Part114.Position = Vector3.new(-58.3224602, 7.15012884, 67.4062042)
  2794. Part114.Orientation = Vector3.new(0, 90, 0)
  2795. Part114.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2796. Part115.Parent = Model93
  2797. Part115.Material = Enum.Material.Wood
  2798. Part115.BrickColor = BrickColor.new("Dark green")
  2799. Part115.Rotation = Vector3.new(0, 90, 0)
  2800. Part115.Anchored = true
  2801. Part115.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2802. Part115.CFrame = CFrame.new(-58.3224602, 7.15011692, 65.2061615, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2803. Part115.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2804. Part115.Position = Vector3.new(-58.3224602, 7.15011692, 65.2061615)
  2805. Part115.Orientation = Vector3.new(0, 90, 0)
  2806. Part115.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2807. Part116.Parent = Model93
  2808. Part116.Material = Enum.Material.Wood
  2809. Part116.BrickColor = BrickColor.new("Dark green")
  2810. Part116.Rotation = Vector3.new(0, 90, 0)
  2811. Part116.Anchored = true
  2812. Part116.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2813. Part116.CFrame = CFrame.new(-58.322464, 7.15012884, 68.506218, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2814. Part116.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2815. Part116.Position = Vector3.new(-58.322464, 7.15012884, 68.506218)
  2816. Part116.Orientation = Vector3.new(0, 90, 0)
  2817. Part116.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2818. Part117.Parent = Model93
  2819. Part117.Material = Enum.Material.Wood
  2820. Part117.BrickColor = BrickColor.new("Dark green")
  2821. Part117.Rotation = Vector3.new(0, 90, 0)
  2822. Part117.Anchored = true
  2823. Part117.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2824. Part117.CFrame = CFrame.new(-58.3224297, 7.15011072, 53.1058388, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2825. Part117.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2826. Part117.Position = Vector3.new(-58.3224297, 7.15011072, 53.1058388)
  2827. Part117.Orientation = Vector3.new(0, 90, 0)
  2828. Part117.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2829. Part118.Parent = Model93
  2830. Part118.Material = Enum.Material.Wood
  2831. Part118.BrickColor = BrickColor.new("Dark green")
  2832. Part118.Rotation = Vector3.new(0, 90, 0)
  2833. Part118.Anchored = true
  2834. Part118.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2835. Part118.CFrame = CFrame.new(-58.3224297, 7.15011072, 52.0058212, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2836. Part118.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2837. Part118.Position = Vector3.new(-58.3224297, 7.15011072, 52.0058212)
  2838. Part118.Orientation = Vector3.new(0, 90, 0)
  2839. Part118.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2840. Part119.Parent = Model93
  2841. Part119.Material = Enum.Material.Wood
  2842. Part119.BrickColor = BrickColor.new("Dark green")
  2843. Part119.Anchored = true
  2844. Part119.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2845. Part119.CFrame = CFrame.new(-38.521946, 7.15012598, 46.0557365, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2846. Part119.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2847. Part119.Position = Vector3.new(-38.521946, 7.15012598, 46.0557365)
  2848. Part119.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2849. Part120.Parent = Model93
  2850. Part120.Material = Enum.Material.Wood
  2851. Part120.BrickColor = BrickColor.new("Dark green")
  2852. Part120.Rotation = Vector3.new(0, 90, 0)
  2853. Part120.Anchored = true
  2854. Part120.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2855. Part120.CFrame = CFrame.new(-58.3224564, 7.15010166, 56.405941, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2856. Part120.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2857. Part120.Position = Vector3.new(-58.3224564, 7.15010166, 56.405941)
  2858. Part120.Orientation = Vector3.new(0, 90, 0)
  2859. Part120.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2860. Part121.Parent = Model93
  2861. Part121.Material = Enum.Material.Wood
  2862. Part121.BrickColor = BrickColor.new("Dark green")
  2863. Part121.Rotation = Vector3.new(0, 90, 0)
  2864. Part121.Anchored = true
  2865. Part121.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2866. Part121.CFrame = CFrame.new(-58.3224564, 7.15010166, 55.3059273, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2867. Part121.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2868. Part121.Position = Vector3.new(-58.3224564, 7.15010166, 55.3059273)
  2869. Part121.Orientation = Vector3.new(0, 90, 0)
  2870. Part121.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2871. Part122.Parent = Model93
  2872. Part122.Material = Enum.Material.Wood
  2873. Part122.BrickColor = BrickColor.new("Dark green")
  2874. Part122.Anchored = true
  2875. Part122.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2876. Part122.CFrame = CFrame.new(-37.4219246, 7.15012598, 46.0557442, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2877. Part122.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2878. Part122.Position = Vector3.new(-37.4219246, 7.15012598, 46.0557442)
  2879. Part122.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2880. Part123.Parent = Model93
  2881. Part123.Material = Enum.Material.Wood
  2882. Part123.BrickColor = BrickColor.new("Dark green")
  2883. Part123.Rotation = Vector3.new(0, 90, 0)
  2884. Part123.Anchored = true
  2885. Part123.Size = Vector3.new(1.10000002, 13.8999996, 0.200000003)
  2886. Part123.CFrame = CFrame.new(-58.3224297, 7.15008593, 71.8563614, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2887. Part123.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2888. Part123.Position = Vector3.new(-58.3224297, 7.15008593, 71.8563614)
  2889. Part123.Orientation = Vector3.new(0, 90, 0)
  2890. Part123.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2891. Part124.Parent = Model93
  2892. Part124.Material = Enum.Material.Wood
  2893. Part124.BrickColor = BrickColor.new("Dark green")
  2894. Part124.Rotation = Vector3.new(0, 90, 0)
  2895. Part124.Anchored = true
  2896. Part124.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2897. Part124.CFrame = CFrame.new(-58.322464, 7.1500988, 69.6063156, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2898. Part124.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2899. Part124.Position = Vector3.new(-58.322464, 7.1500988, 69.6063156)
  2900. Part124.Orientation = Vector3.new(0, 90, 0)
  2901. Part124.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2902. Part125.Parent = Model93
  2903. Part125.Material = Enum.Material.Wood
  2904. Part125.BrickColor = BrickColor.new("Dark green")
  2905. Part125.Rotation = Vector3.new(0, 90, 0)
  2906. Part125.Anchored = true
  2907. Part125.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2908. Part125.CFrame = CFrame.new(-58.3224297, 7.15008593, 70.7063293, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2909. Part125.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2910. Part125.Position = Vector3.new(-58.3224297, 7.15008593, 70.7063293)
  2911. Part125.Orientation = Vector3.new(0, 90, 0)
  2912. Part125.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2913. Part126.Parent = Model93
  2914. Part126.Material = Enum.Material.Wood
  2915. Part126.BrickColor = BrickColor.new("Dark green")
  2916. Part126.Rotation = Vector3.new(0, 90, 0)
  2917. Part126.Anchored = true
  2918. Part126.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2919. Part126.CFrame = CFrame.new(-58.3224602, 7.15010166, 54.2058868, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  2920. Part126.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2921. Part126.Position = Vector3.new(-58.3224602, 7.15010166, 54.2058868)
  2922. Part126.Orientation = Vector3.new(0, 90, 0)
  2923. Part126.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2924. Part127.Parent = Model93
  2925. Part127.Material = Enum.Material.Wood
  2926. Part127.BrickColor = BrickColor.new("Dark green")
  2927. Part127.Anchored = true
  2928. Part127.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2929. Part127.CFrame = CFrame.new(-42.9220428, 7.15013266, 46.0557137, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2930. Part127.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2931. Part127.Position = Vector3.new(-42.9220428, 7.15013266, 46.0557137)
  2932. Part127.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2933. Part128.Parent = Model93
  2934. Part128.Material = Enum.Material.Wood
  2935. Part128.BrickColor = BrickColor.new("Dark green")
  2936. Part128.Anchored = true
  2937. Part128.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2938. Part128.CFrame = CFrame.new(-36.3218956, 7.15012598, 46.055748, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2939. Part128.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2940. Part128.Position = Vector3.new(-36.3218956, 7.15012598, 46.055748)
  2941. Part128.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2942. Part129.Parent = Model93
  2943. Part129.Material = Enum.Material.Wood
  2944. Part129.BrickColor = BrickColor.new("Dark green")
  2945. Part129.Anchored = true
  2946. Part129.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2947. Part129.CFrame = CFrame.new(-40.7220268, 7.15012169, 46.0557098, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2948. Part129.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2949. Part129.Position = Vector3.new(-40.7220268, 7.15012169, 46.0557098)
  2950. Part129.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2951. Part130.Parent = Model93
  2952. Part130.Material = Enum.Material.Wood
  2953. Part130.BrickColor = BrickColor.new("Dark green")
  2954. Part130.Anchored = true
  2955. Part130.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2956. Part130.CFrame = CFrame.new(-39.5219879, 7.15011168, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2957. Part130.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2958. Part130.Position = Vector3.new(-39.5219879, 7.15011168, 73.0563583)
  2959. Part130.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2960. Part131.Parent = Model93
  2961. Part131.Material = Enum.Material.Wood
  2962. Part131.BrickColor = BrickColor.new("Dark green")
  2963. Part131.Anchored = true
  2964. Part131.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2965. Part131.CFrame = CFrame.new(-32.9218521, 7.15010166, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2966. Part131.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2967. Part131.Position = Vector3.new(-32.9218521, 7.15010166, 73.0563889)
  2968. Part131.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2969. Part132.Parent = Model93
  2970. Part132.Material = Enum.Material.Wood
  2971. Part132.BrickColor = BrickColor.new("Dark green")
  2972. Part132.Anchored = true
  2973. Part132.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2974. Part132.CFrame = CFrame.new(-42.8220558, 7.15012312, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2975. Part132.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2976. Part132.Position = Vector3.new(-42.8220558, 7.15012312, 73.0563583)
  2977. Part132.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2978. Part133.Parent = Model93
  2979. Part133.Material = Enum.Material.Wood
  2980. Part133.BrickColor = BrickColor.new("Dark green")
  2981. Part133.Anchored = true
  2982. Part133.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2983. Part133.CFrame = CFrame.new(-43.9220581, 7.15012312, 73.056366, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2984. Part133.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2985. Part133.Position = Vector3.new(-43.9220581, 7.15012312, 73.056366)
  2986. Part133.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2987. Part134.Parent = Model93
  2988. Part134.Material = Enum.Material.Wood
  2989. Part134.BrickColor = BrickColor.new("Dark green")
  2990. Part134.Anchored = true
  2991. Part134.Size = Vector3.new(1, 13.8999996, 0.200000003)
  2992. Part134.CFrame = CFrame.new(-35.1218987, 7.15010166, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  2993. Part134.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2994. Part134.Position = Vector3.new(-35.1218987, 7.15010166, 73.0563889)
  2995. Part134.Color = Color3.new(0.156863, 0.498039, 0.278431)
  2996. Part135.Parent = Model93
  2997. Part135.Material = Enum.Material.Wood
  2998. Part135.BrickColor = BrickColor.new("Dark green")
  2999. Part135.Anchored = true
  3000. Part135.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3001. Part135.CFrame = CFrame.new(-37.3219223, 7.15011597, 73.0563812, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3002. Part135.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3003. Part135.Position = Vector3.new(-37.3219223, 7.15011597, 73.0563812)
  3004. Part135.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3005. Part136.Parent = Model93
  3006. Part136.Material = Enum.Material.Wood
  3007. Part136.BrickColor = BrickColor.new("Dark green")
  3008. Part136.Anchored = true
  3009. Part136.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3010. Part136.CFrame = CFrame.new(-34.0218697, 7.15010166, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3011. Part136.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3012. Part136.Position = Vector3.new(-34.0218697, 7.15010166, 73.0563889)
  3013. Part136.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3014. Part137.Parent = Model93
  3015. Part137.Material = Enum.Material.Wood
  3016. Part137.BrickColor = BrickColor.new("Dark green")
  3017. Part137.Anchored = true
  3018. Part137.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3019. Part137.CFrame = CFrame.new(-41.7220535, 7.15011168, 73.056366, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3020. Part137.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3021. Part137.Position = Vector3.new(-41.7220535, 7.15011168, 73.056366)
  3022. Part137.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3023. Part138.Parent = Model93
  3024. Part138.Material = Enum.Material.Wood
  3025. Part138.BrickColor = BrickColor.new("Dark green")
  3026. Part138.Anchored = true
  3027. Part138.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3028. Part138.CFrame = CFrame.new(-40.6220245, 7.15011168, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3029. Part138.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3030. Part138.Position = Vector3.new(-40.6220245, 7.15011168, 73.0563583)
  3031. Part138.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3032. Part139.Parent = Model93
  3033. Part139.Material = Enum.Material.Wood
  3034. Part139.BrickColor = BrickColor.new("Dark green")
  3035. Part139.Anchored = true
  3036. Part139.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3037. Part139.CFrame = CFrame.new(-36.2219048, 7.15011597, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3038. Part139.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3039. Part139.Position = Vector3.new(-36.2219048, 7.15011597, 73.0563889)
  3040. Part139.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3041. Part140.Parent = Model93
  3042. Part140.Material = Enum.Material.Wood
  3043. Part140.BrickColor = BrickColor.new("Dark green")
  3044. Part140.Anchored = true
  3045. Part140.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3046. Part140.CFrame = CFrame.new(-38.4219551, 7.15011597, 73.0563736, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3047. Part140.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3048. Part140.Position = Vector3.new(-38.4219551, 7.15011597, 73.0563736)
  3049. Part140.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3050. Part141.Parent = Model93
  3051. Part141.Material = Enum.Material.Wood
  3052. Part141.BrickColor = BrickColor.new("Dark green")
  3053. Part141.Anchored = true
  3054. Part141.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3055. Part141.CFrame = CFrame.new(-48.3221741, 7.15014791, 73.0563507, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3056. Part141.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3057. Part141.Position = Vector3.new(-48.3221741, 7.15014791, 73.0563507)
  3058. Part141.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3059. Part142.Parent = Model93
  3060. Part142.Material = Enum.Material.Wood
  3061. Part142.BrickColor = BrickColor.new("Dark green")
  3062. Part142.Anchored = true
  3063. Part142.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3064. Part142.CFrame = CFrame.new(-52.72229, 7.15013695, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3065. Part142.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3066. Part142.Position = Vector3.new(-52.72229, 7.15013695, 73.0563583)
  3067. Part142.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3068. Part143.Parent = Model93
  3069. Part143.Material = Enum.Material.Wood
  3070. Part143.BrickColor = BrickColor.new("Dark green")
  3071. Part143.Anchored = true
  3072. Part143.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3073. Part143.CFrame = CFrame.new(-46.1221466, 7.15013695, 73.0563507, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3074. Part143.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3075. Part143.Position = Vector3.new(-46.1221466, 7.15013695, 73.0563507)
  3076. Part143.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3077. Part144.Parent = Model93
  3078. Part144.Material = Enum.Material.Wood
  3079. Part144.BrickColor = BrickColor.new("Dark green")
  3080. Part144.Anchored = true
  3081. Part144.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3082. Part144.CFrame = CFrame.new(-50.5222664, 7.15012312, 73.056366, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3083. Part144.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3084. Part144.Position = Vector3.new(-50.5222664, 7.15012312, 73.056366)
  3085. Part144.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3086. Part145.Parent = Model93
  3087. Part145.Material = Enum.Material.Wood
  3088. Part145.BrickColor = BrickColor.new("Dark green")
  3089. Part145.Anchored = true
  3090. Part145.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3091. Part145.CFrame = CFrame.new(-51.6222534, 7.15013695, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3092. Part145.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3093. Part145.Position = Vector3.new(-51.6222534, 7.15013695, 73.0563583)
  3094. Part145.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3095. Part146.Parent = Model93
  3096. Part146.Material = Enum.Material.Wood
  3097. Part146.BrickColor = BrickColor.new("Dark green")
  3098. Part146.Anchored = true
  3099. Part146.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3100. Part146.CFrame = CFrame.new(-45.0220947, 7.15012312, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3101. Part146.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3102. Part146.Position = Vector3.new(-45.0220947, 7.15012312, 73.0563583)
  3103. Part146.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3104. Part147.Parent = Model93
  3105. Part147.Material = Enum.Material.Wood
  3106. Part147.BrickColor = BrickColor.new("Dark green")
  3107. Part147.Anchored = true
  3108. Part147.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3109. Part147.CFrame = CFrame.new(-49.4221916, 7.15014791, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3110. Part147.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3111. Part147.Position = Vector3.new(-49.4221916, 7.15014791, 73.0563583)
  3112. Part147.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3113. Part148.Parent = Model93
  3114. Part148.Material = Enum.Material.Wood
  3115. Part148.BrickColor = BrickColor.new("Dark green")
  3116. Part148.Anchored = true
  3117. Part148.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3118. Part148.CFrame = CFrame.new(-47.222126, 7.15014791, 73.0563507, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3119. Part148.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3120. Part148.Position = Vector3.new(-47.222126, 7.15014791, 73.0563507)
  3121. Part148.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3122. Part149.Parent = Model93
  3123. Part149.Material = Enum.Material.Wood
  3124. Part149.BrickColor = BrickColor.new("Dark green")
  3125. Part149.Anchored = true
  3126. Part149.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3127. Part149.CFrame = CFrame.new(-54.9224129, 7.15010166, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3128. Part149.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3129. Part149.Position = Vector3.new(-54.9224129, 7.15010166, 73.0563889)
  3130. Part149.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3131. Part150.Parent = Model93
  3132. Part150.Material = Enum.Material.Wood
  3133. Part150.BrickColor = BrickColor.new("Dark green")
  3134. Part150.Anchored = true
  3135. Part150.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3136. Part150.CFrame = CFrame.new(-56.0224304, 7.15009212, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3137. Part150.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3138. Part150.Position = Vector3.new(-56.0224304, 7.15009212, 73.0563889)
  3139. Part150.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3140. Part151.Parent = Model93
  3141. Part151.Material = Enum.Material.Wood
  3142. Part151.BrickColor = BrickColor.new("Dark green")
  3143. Part151.Anchored = true
  3144. Part151.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3145. Part151.CFrame = CFrame.new(-53.8223228, 7.15013695, 73.0563583, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3146. Part151.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3147. Part151.Position = Vector3.new(-53.8223228, 7.15013695, 73.0563583)
  3148. Part151.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3149. Part152.Parent = Model93
  3150. Part152.Material = Enum.Material.Wood
  3151. Part152.BrickColor = BrickColor.new("Dark green")
  3152. Part152.Anchored = true
  3153. Part152.Size = Vector3.new(0.899999976, 13.8999996, 0.200000003)
  3154. Part152.CFrame = CFrame.new(-57.0724602, 7.15009212, 73.0563889, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3155. Part152.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3156. Part152.Position = Vector3.new(-57.0724602, 7.15009212, 73.0563889)
  3157. Part152.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3158. Part153.Parent = Model93
  3159. Part153.Material = Enum.Material.Wood
  3160. Part153.BrickColor = BrickColor.new("Dark green")
  3161. Part153.Anchored = true
  3162. Part153.Size = Vector3.new(0.899999976, 13.8999996, 0.200000003)
  3163. Part153.CFrame = CFrame.new(-57.1724625, 7.15010166, 46.055748, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3164. Part153.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3165. Part153.Position = Vector3.new(-57.1724625, 7.15010166, 46.055748)
  3166. Part153.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3167. Part154.Parent = Model93
  3168. Part154.Material = Enum.Material.Wood
  3169. Part154.BrickColor = BrickColor.new("Dark green")
  3170. Part154.Anchored = true
  3171. Part154.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3172. Part154.CFrame = CFrame.new(-56.1224174, 7.15010166, 46.0557442, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3173. Part154.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3174. Part154.Position = Vector3.new(-56.1224174, 7.15010166, 46.0557442)
  3175. Part154.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3176. Part155.Parent = Model93
  3177. Part155.Material = Enum.Material.Wood
  3178. Part155.BrickColor = BrickColor.new("Dark green")
  3179. Part155.Anchored = true
  3180. Part155.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3181. Part155.CFrame = CFrame.new(-55.0224152, 7.15011597, 46.055748, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3182. Part155.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3183. Part155.Position = Vector3.new(-55.0224152, 7.15011597, 46.055748)
  3184. Part155.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3185. Part156.Parent = Model93
  3186. Part156.Material = Enum.Material.Wood
  3187. Part156.BrickColor = BrickColor.new("Dark green")
  3188. Part156.Anchored = true
  3189. Part156.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3190. Part156.CFrame = CFrame.new(-50.6222572, 7.15013695, 46.0557137, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3191. Part156.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3192. Part156.Position = Vector3.new(-50.6222572, 7.15013695, 46.0557137)
  3193. Part156.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3194. Part157.Parent = Model93
  3195. Part157.Material = Enum.Material.Wood
  3196. Part157.BrickColor = BrickColor.new("Dark green")
  3197. Part157.Anchored = true
  3198. Part157.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3199. Part157.CFrame = CFrame.new(-53.9223251, 7.15014267, 46.055706, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3200. Part157.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3201. Part157.Position = Vector3.new(-53.9223251, 7.15014267, 46.055706)
  3202. Part157.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3203. Part158.Parent = Model93
  3204. Part158.Material = Enum.Material.Wood
  3205. Part158.BrickColor = BrickColor.new("Dark green")
  3206. Part158.Anchored = true
  3207. Part158.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3208. Part158.CFrame = CFrame.new(-51.7222595, 7.15014267, 46.055706, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3209. Part158.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3210. Part158.Position = Vector3.new(-51.7222595, 7.15014267, 46.055706)
  3211. Part158.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3212. Part159.Parent = Model93
  3213. Part159.Material = Enum.Material.Wood
  3214. Part159.BrickColor = BrickColor.new("Dark green")
  3215. Part159.Anchored = true
  3216. Part159.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3217. Part159.CFrame = CFrame.new(-52.8222923, 7.15014267, 46.0557098, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3218. Part159.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3219. Part159.Position = Vector3.new(-52.8222923, 7.15014267, 46.0557098)
  3220. Part159.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3221. Part160.Parent = Model93
  3222. Part160.Material = Enum.Material.Wood
  3223. Part160.BrickColor = BrickColor.new("Dark green")
  3224. Part160.Anchored = true
  3225. Part160.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3226. Part160.CFrame = CFrame.new(-46.2221222, 7.15014267, 46.0556984, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3227. Part160.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3228. Part160.Position = Vector3.new(-46.2221222, 7.15014267, 46.0556984)
  3229. Part160.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3230. Part161.Parent = Model93
  3231. Part161.Material = Enum.Material.Wood
  3232. Part161.BrickColor = BrickColor.new("Dark green")
  3233. Part161.Anchored = true
  3234. Part161.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3235. Part161.CFrame = CFrame.new(-48.4221611, 7.15016079, 46.0556984, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3236. Part161.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3237. Part161.Position = Vector3.new(-48.4221611, 7.15016079, 46.0556984)
  3238. Part161.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3239. Part162.Parent = Model93
  3240. Part162.Material = Enum.Material.Wood
  3241. Part162.BrickColor = BrickColor.new("Dark green")
  3242. Part162.Anchored = true
  3243. Part162.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3244. Part162.CFrame = CFrame.new(-47.3221283, 7.15016079, 46.0556984, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3245. Part162.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3246. Part162.Position = Vector3.new(-47.3221283, 7.15016079, 46.0556984)
  3247. Part162.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3248. Part163.Parent = Model93
  3249. Part163.Material = Enum.Material.Wood
  3250. Part163.BrickColor = BrickColor.new("Dark green")
  3251. Part163.Anchored = true
  3252. Part163.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3253. Part163.CFrame = CFrame.new(-49.5221939, 7.15016079, 46.0556984, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3254. Part163.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3255. Part163.Position = Vector3.new(-49.5221939, 7.15016079, 46.0556984)
  3256. Part163.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3257. Part164.Parent = Model93
  3258. Part164.Material = Enum.Material.Wood
  3259. Part164.BrickColor = BrickColor.new("Dark green")
  3260. Part164.Anchored = true
  3261. Part164.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3262. Part164.CFrame = CFrame.new(-45.1220932, 7.15013266, 46.0557137, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3263. Part164.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3264. Part164.Position = Vector3.new(-45.1220932, 7.15013266, 46.0557137)
  3265. Part164.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3266. Part165.Parent = Model93
  3267. Part165.Material = Enum.Material.Wood
  3268. Part165.BrickColor = BrickColor.new("Dark green")
  3269. Part165.Anchored = true
  3270. Part165.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3271. Part165.CFrame = CFrame.new(-44.0220642, 7.15013266, 46.0557137, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3272. Part165.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3273. Part165.Position = Vector3.new(-44.0220642, 7.15013266, 46.0557137)
  3274. Part165.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3275. Part166.Parent = Model93
  3276. Part166.Material = Enum.Material.Wood
  3277. Part166.BrickColor = BrickColor.new("Dark green")
  3278. Part166.Anchored = true
  3279. Part166.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3280. Part166.CFrame = CFrame.new(-33.0218391, 7.15011597, 46.0557442, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3281. Part166.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3282. Part166.Position = Vector3.new(-33.0218391, 7.15011597, 46.0557442)
  3283. Part166.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3284. Part167.Parent = Model93
  3285. Part167.Material = Enum.Material.Wood
  3286. Part167.BrickColor = BrickColor.new("Dark green")
  3287. Part167.Anchored = true
  3288. Part167.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3289. Part167.CFrame = CFrame.new(-34.1218758, 7.15011597, 46.0557442, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3290. Part167.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3291. Part167.Position = Vector3.new(-34.1218758, 7.15011597, 46.0557442)
  3292. Part167.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3293. Part168.Parent = Model93
  3294. Part168.Material = Enum.Material.Wood
  3295. Part168.BrickColor = BrickColor.new("Pearl")
  3296. Part168.Rotation = Vector3.new(0, 90, 0)
  3297. Part168.Anchored = true
  3298. Part168.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  3299. Part168.CFrame = CFrame.new(-31.7218227, 7.15011597, 46.3057327, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  3300. Part168.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3301. Part168.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3302. Part168.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3303. Part168.Position = Vector3.new(-31.7218227, 7.15011597, 46.3057327)
  3304. Part168.Orientation = Vector3.new(0, 90, 0)
  3305. Part168.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3306. Part169.Parent = Model93
  3307. Part169.Material = Enum.Material.Wood
  3308. Part169.BrickColor = BrickColor.new("Pearl")
  3309. Part169.Rotation = Vector3.new(0, 90, 0)
  3310. Part169.Anchored = true
  3311. Part169.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  3312. Part169.CFrame = CFrame.new(-31.7218399, 7.15011597, 53.4059181, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  3313. Part169.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3314. Part169.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3315. Part169.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3316. Part169.Position = Vector3.new(-31.7218399, 7.15011597, 53.4059181)
  3317. Part169.Orientation = Vector3.new(0, 90, 0)
  3318. Part169.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3319. Part170.Parent = Model93
  3320. Part170.Material = Enum.Material.Wood
  3321. Part170.BrickColor = BrickColor.new("Pearl")
  3322. Part170.Rotation = Vector3.new(0, 90, 0)
  3323. Part170.Anchored = true
  3324. Part170.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  3325. Part170.CFrame = CFrame.new(-31.7218266, 7.15011597, 65.7062149, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  3326. Part170.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3327. Part170.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3328. Part170.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3329. Part170.Position = Vector3.new(-31.7218266, 7.15011597, 65.7062149)
  3330. Part170.Orientation = Vector3.new(0, 90, 0)
  3331. Part170.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3332. Part171.Parent = Model93
  3333. Part171.Material = Enum.Material.Wood
  3334. Part171.BrickColor = BrickColor.new("Pearl")
  3335. Part171.Rotation = Vector3.new(0, -90, 0)
  3336. Part171.Anchored = true
  3337. Part171.Size = Vector3.new(0.600000024, 13.8999996, 0.200000003)
  3338. Part171.CFrame = CFrame.new(-31.7218266, 7.1501379, 72.6563339, -1.19206419e-07, 0, -1, 0, 1, 0, 1, 0, -1.19206419e-07)
  3339. Part171.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3340. Part171.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3341. Part171.Position = Vector3.new(-31.7218266, 7.1501379, 72.6563339)
  3342. Part171.Orientation = Vector3.new(0, -90, 0)
  3343. Part171.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3344. Part172.Parent = Model93
  3345. Part172.Material = Enum.Material.Wood
  3346. Part172.BrickColor = BrickColor.new("Pearl")
  3347. Part172.Anchored = true
  3348. Part172.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  3349. Part172.CFrame = CFrame.new(-31.9718151, 7.1501379, 73.0563507, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3350. Part172.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3351. Part172.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3352. Part172.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3353. Part172.Position = Vector3.new(-31.9718151, 7.1501379, 73.0563507)
  3354. Part172.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3355. Part173.Parent = Model93
  3356. Part173.Material = Enum.Material.Wood
  3357. Part173.BrickColor = BrickColor.new("Pearl")
  3358. Part173.Rotation = Vector3.new(0, -90, 0)
  3359. Part173.Anchored = true
  3360. Part173.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  3361. Part173.CFrame = CFrame.new(-58.3224602, 7.15014267, 72.8063049, -1.19206419e-07, 0, -1, 0, 1, 0, 1, 0, -1.19206419e-07)
  3362. Part173.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3363. Part173.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3364. Part173.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3365. Part173.Position = Vector3.new(-58.3224602, 7.15014267, 72.8063049)
  3366. Part173.Orientation = Vector3.new(0, -90, 0)
  3367. Part173.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3368. Part174.Parent = Model93
  3369. Part174.Material = Enum.Material.Wood
  3370. Part174.BrickColor = BrickColor.new("Pearl")
  3371. Part174.Rotation = Vector3.new(-180, 0, -180)
  3372. Part174.Anchored = true
  3373. Part174.Size = Vector3.new(0.600000024, 13.8999996, 0.200000003)
  3374. Part174.CFrame = CFrame.new(-57.9224548, 7.15014267, 73.0562973, -1, 0, -8.94048142e-08, 0, 1, 0, 8.94048071e-08, 0, -1)
  3375. Part174.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3376. Part174.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3377. Part174.Position = Vector3.new(-57.9224548, 7.15014267, 73.0562973)
  3378. Part174.Orientation = Vector3.new(0, -180, 0)
  3379. Part174.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3380. Part175.Parent = Model93
  3381. Part175.Material = Enum.Material.Wood
  3382. Part175.BrickColor = BrickColor.new("Pearl")
  3383. Part175.Rotation = Vector3.new(0, 90, 0)
  3384. Part175.Anchored = true
  3385. Part175.Size = Vector3.new(0.600000024, 13.8999996, 0.200000003)
  3386. Part175.CFrame = CFrame.new(-58.3224297, 7.15011597, 46.4556046, 1.19206419e-07, 0, 1, 0, 1, 0, -1, 0, 1.19206419e-07)
  3387. Part175.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3388. Part175.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3389. Part175.Position = Vector3.new(-58.3224297, 7.15011597, 46.4556046)
  3390. Part175.Orientation = Vector3.new(0, 90, 0)
  3391. Part175.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3392. Part176.Parent = Model93
  3393. Part176.Material = Enum.Material.Wood
  3394. Part176.BrickColor = BrickColor.new("Pearl")
  3395. Part176.Rotation = Vector3.new(-180, 0, -180)
  3396. Part176.Anchored = true
  3397. Part176.Size = Vector3.new(0.699999988, 13.8999996, 0.200000003)
  3398. Part176.CFrame = CFrame.new(-58.0724525, 7.15011597, 46.0555916, -1, 0, -8.94048142e-08, 0, 1, 0, 8.94048071e-08, 0, -1)
  3399. Part176.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3400. Part176.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3401. Part176.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3402. Part176.Position = Vector3.new(-58.0724525, 7.15011597, 46.0555916)
  3403. Part176.Orientation = Vector3.new(0, -180, 0)
  3404. Part176.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3405. Part177.Parent = Model93
  3406. Part177.Material = Enum.Material.Wood
  3407. Part177.BrickColor = BrickColor.new("Dark green")
  3408. Part177.Anchored = true
  3409. Part177.Size = Vector3.new(1, 13.8999996, 0.200000003)
  3410. Part177.CFrame = CFrame.new(-35.2218971, 7.15011597, 46.0557442, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  3411. Part177.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3412. Part177.Position = Vector3.new(-35.2218971, 7.15011597, 46.0557442)
  3413. Part177.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3414. Model178.Name = "Outerframe"
  3415. Model178.Parent = Model79
  3416. Part179.Parent = Model178
  3417. Part179.Material = Enum.Material.Wood
  3418. Part179.BrickColor = BrickColor.new("Pearl")
  3419. Part179.Transparency = -1
  3420. Part179.Rotation = Vector3.new(-180, 0, -180)
  3421. Part179.Anchored = true
  3422. Part179.Size = Vector3.new(0.600000024, 14.1999998, 0.200000003)
  3423. Part179.CFrame = CFrame.new(-84.4575348, 7.30011606, 73.0455399, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3424. Part179.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3425. Part179.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3426. Part179.Position = Vector3.new(-84.4575348, 7.30011606, 73.0455399)
  3427. Part179.Orientation = Vector3.new(0, -180, 0)
  3428. Part179.Color = Color3.new(0.905882, 0.905882, 0.92549)
  3429. Part180.Parent = Model178
  3430. Part180.Material = Enum.Material.Wood
  3431. Part180.BrickColor = BrickColor.new("Dark green")
  3432. Part180.Transparency = -1
  3433. Part180.Rotation = Vector3.new(0, -90, 0)
  3434. Part180.Anchored = true
  3435. Part180.Size = Vector3.new(0.899999976, 14.1999998, 0.200000003)
  3436. Part180.CFrame = CFrame.new(-84.8575821, 7.30011606, 47.2949104, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3437. Part180.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3438. Part180.Position = Vector3.new(-84.8575821, 7.30011606, 47.2949104)
  3439. Part180.Orientation = Vector3.new(0, -90, 0)
  3440. Part180.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3441. Part181.Parent = Model178
  3442. Part181.Material = Enum.Material.Wood
  3443. Part181.BrickColor = BrickColor.new("Dark green")
  3444. Part181.Transparency = -1
  3445. Part181.Rotation = Vector3.new(0, -90, 0)
  3446. Part181.Anchored = true
  3447. Part181.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3448. Part181.CFrame = CFrame.new(-84.8575974, 7.30011606, 48.3449211, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3449. Part181.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3450. Part181.Position = Vector3.new(-84.8575974, 7.30011606, 48.3449211)
  3451. Part181.Orientation = Vector3.new(0, -90, 0)
  3452. Part181.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3453. Part182.Parent = Model178
  3454. Part182.Material = Enum.Material.Wood
  3455. Part182.BrickColor = BrickColor.new("Dark green")
  3456. Part182.Transparency = -1
  3457. Part182.Rotation = Vector3.new(0, -90, 0)
  3458. Part182.Anchored = true
  3459. Part182.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3460. Part182.CFrame = CFrame.new(-84.8575897, 7.30011606, 49.4449463, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3461. Part182.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3462. Part182.Position = Vector3.new(-84.8575897, 7.30011606, 49.4449463)
  3463. Part182.Orientation = Vector3.new(0, -90, 0)
  3464. Part182.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3465. Part183.Parent = Model178
  3466. Part183.Material = Enum.Material.Wood
  3467. Part183.BrickColor = BrickColor.new("Dark green")
  3468. Part183.Transparency = -1
  3469. Part183.Rotation = Vector3.new(0, -90, 0)
  3470. Part183.Anchored = true
  3471. Part183.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3472. Part183.CFrame = CFrame.new(-84.8575897, 7.30009699, 51.6449928, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3473. Part183.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3474. Part183.Position = Vector3.new(-84.8575897, 7.30009699, 51.6449928)
  3475. Part183.Orientation = Vector3.new(0, -90, 0)
  3476. Part183.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3477. Part184.Parent = Model178
  3478. Part184.Material = Enum.Material.Wood
  3479. Part184.BrickColor = BrickColor.new("Dark green")
  3480. Part184.Transparency = -1
  3481. Part184.Rotation = Vector3.new(0, -90, 0)
  3482. Part184.Anchored = true
  3483. Part184.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  3484. Part184.CFrame = CFrame.new(-84.8575821, 7.30009699, 52.5950127, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3485. Part184.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3486. Part184.Position = Vector3.new(-84.8575821, 7.30009699, 52.5950127)
  3487. Part184.Orientation = Vector3.new(0, -90, 0)
  3488. Part184.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3489. Part185.Parent = Model178
  3490. Part185.Material = Enum.Material.Wood
  3491. Part185.BrickColor = BrickColor.new("Dark green")
  3492. Part185.Transparency = -1
  3493. Part185.Rotation = Vector3.new(0, -90, 0)
  3494. Part185.Anchored = true
  3495. Part185.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3496. Part185.CFrame = CFrame.new(-84.8575821, 7.30009699, 50.5449829, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3497. Part185.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3498. Part185.Position = Vector3.new(-84.8575821, 7.30009699, 50.5449829)
  3499. Part185.Orientation = Vector3.new(0, -90, 0)
  3500. Part185.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3501. Part186.Parent = Model178
  3502. Part186.Material = Enum.Material.Wood
  3503. Part186.BrickColor = BrickColor.new("Dark green")
  3504. Part186.Transparency = -1
  3505. Part186.Rotation = Vector3.new(0, -90, 0)
  3506. Part186.Anchored = true
  3507. Part186.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3508. Part186.CFrame = CFrame.new(-84.8575974, 7.30010176, 71.0455017, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3509. Part186.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3510. Part186.Position = Vector3.new(-84.8575974, 7.30010176, 71.0455017)
  3511. Part186.Orientation = Vector3.new(0, -90, 0)
  3512. Part186.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3513. Part187.Parent = Model178
  3514. Part187.Material = Enum.Material.Wood
  3515. Part187.BrickColor = BrickColor.new("Dark green")
  3516. Part187.Transparency = -1
  3517. Part187.Rotation = Vector3.new(0, -90, 0)
  3518. Part187.Anchored = true
  3519. Part187.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  3520. Part187.CFrame = CFrame.new(-84.8575668, 7.30010176, 71.9955444, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3521. Part187.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3522. Part187.Position = Vector3.new(-84.8575668, 7.30010176, 71.9955444)
  3523. Part187.Orientation = Vector3.new(0, -90, 0)
  3524. Part187.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3525. Part188.Parent = Model178
  3526. Part188.Material = Enum.Material.Wood
  3527. Part188.BrickColor = BrickColor.new("Dark green")
  3528. Part188.Transparency = -1
  3529. Part188.Rotation = Vector3.new(0, -90, 0)
  3530. Part188.Anchored = true
  3531. Part188.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3532. Part188.CFrame = CFrame.new(-84.857605, 7.30010176, 69.945488, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3533. Part188.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3534. Part188.Position = Vector3.new(-84.857605, 7.30010176, 69.945488)
  3535. Part188.Orientation = Vector3.new(0, -90, 0)
  3536. Part188.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3537. Part189.Parent = Model178
  3538. Part189.Material = Enum.Material.Wood
  3539. Part189.BrickColor = BrickColor.new("Dark green")
  3540. Part189.Transparency = -1
  3541. Part189.Rotation = Vector3.new(0, -90, 0)
  3542. Part189.Anchored = true
  3543. Part189.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3544. Part189.CFrame = CFrame.new(-84.8575745, 7.30011988, 67.7454147, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3545. Part189.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3546. Part189.Position = Vector3.new(-84.8575745, 7.30011988, 67.7454147)
  3547. Part189.Orientation = Vector3.new(0, -90, 0)
  3548. Part189.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3549. Part190.Parent = Model178
  3550. Part190.Material = Enum.Material.Wood
  3551. Part190.BrickColor = BrickColor.new("Dark green")
  3552. Part190.Transparency = -1
  3553. Part190.Rotation = Vector3.new(0, -90, 0)
  3554. Part190.Anchored = true
  3555. Part190.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3556. Part190.CFrame = CFrame.new(-84.8575821, 7.30011988, 66.6453934, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3557. Part190.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3558. Part190.Position = Vector3.new(-84.8575821, 7.30011988, 66.6453934)
  3559. Part190.Orientation = Vector3.new(0, -90, 0)
  3560. Part190.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3561. Part191.Parent = Model178
  3562. Part191.Material = Enum.Material.Wood
  3563. Part191.BrickColor = BrickColor.new("Dark green")
  3564. Part191.Transparency = -1
  3565. Part191.Rotation = Vector3.new(0, -90, 0)
  3566. Part191.Anchored = true
  3567. Part191.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3568. Part191.CFrame = CFrame.new(-84.8575821, 7.30011988, 68.8454514, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3569. Part191.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3570. Part191.Position = Vector3.new(-84.8575821, 7.30011988, 68.8454514)
  3571. Part191.Orientation = Vector3.new(0, -90, 0)
  3572. Part191.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3573. Part192.Parent = Model178
  3574. Part192.Material = Enum.Material.Wood
  3575. Part192.BrickColor = BrickColor.new("Dark green")
  3576. Part192.Transparency = -1
  3577. Part192.Rotation = Vector3.new(0, -90, 0)
  3578. Part192.Anchored = true
  3579. Part192.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3580. Part192.CFrame = CFrame.new(-58.2568817, 7.3000989, 70.3955307, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3581. Part192.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3582. Part192.Position = Vector3.new(-58.2568817, 7.3000989, 70.3955307)
  3583. Part192.Orientation = Vector3.new(0, -90, 0)
  3584. Part192.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3585. Part193.Parent = Model178
  3586. Part193.Material = Enum.Material.Wood
  3587. Part193.BrickColor = BrickColor.new("Dark green")
  3588. Part193.Transparency = -1
  3589. Part193.Rotation = Vector3.new(0, -90, 0)
  3590. Part193.Anchored = true
  3591. Part193.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3592. Part193.CFrame = CFrame.new(-58.2569008, 7.3000989, 69.2954941, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3593. Part193.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3594. Part193.Position = Vector3.new(-58.2569008, 7.3000989, 69.2954941)
  3595. Part193.Orientation = Vector3.new(0, -90, 0)
  3596. Part193.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3597. Part194.Parent = Model178
  3598. Part194.Material = Enum.Material.Wood
  3599. Part194.BrickColor = BrickColor.new("Dark green")
  3600. Part194.Transparency = -1
  3601. Part194.Rotation = Vector3.new(0, -90, 0)
  3602. Part194.Anchored = true
  3603. Part194.Size = Vector3.new(1.30000007, 14.1999998, 0.200000003)
  3604. Part194.CFrame = CFrame.new(-58.2568703, 7.3000989, 71.6455612, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3605. Part194.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3606. Part194.Position = Vector3.new(-58.2568703, 7.3000989, 71.6455612)
  3607. Part194.Orientation = Vector3.new(0, -90, 0)
  3608. Part194.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3609. Part195.Parent = Model178
  3610. Part195.Material = Enum.Material.Wood
  3611. Part195.BrickColor = BrickColor.new("Dark green")
  3612. Part195.Transparency = -1
  3613. Part195.Rotation = Vector3.new(0, -90, 0)
  3614. Part195.Anchored = true
  3615. Part195.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3616. Part195.CFrame = CFrame.new(-58.2568665, 7.30011082, 68.1954727, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3617. Part195.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3618. Part195.Position = Vector3.new(-58.2568665, 7.30011082, 68.1954727)
  3619. Part195.Orientation = Vector3.new(0, -90, 0)
  3620. Part195.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3621. Part196.Parent = Model178
  3622. Part196.Material = Enum.Material.Wood
  3623. Part196.BrickColor = BrickColor.new("Dark green")
  3624. Part196.Transparency = -1
  3625. Part196.Rotation = Vector3.new(0, -90, 0)
  3626. Part196.Anchored = true
  3627. Part196.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3628. Part196.CFrame = CFrame.new(-58.2568359, 7.30012894, 52.7950859, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3629. Part196.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3630. Part196.Position = Vector3.new(-58.2568359, 7.30012894, 52.7950859)
  3631. Part196.Orientation = Vector3.new(0, -90, 0)
  3632. Part196.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3633. Part197.Parent = Model178
  3634. Part197.Material = Enum.Material.Wood
  3635. Part197.BrickColor = BrickColor.new("Dark green")
  3636. Part197.Transparency = -1
  3637. Part197.Rotation = Vector3.new(-180, 0, -180)
  3638. Part197.Anchored = true
  3639. Part197.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3640. Part197.CFrame = CFrame.new(-76.9573517, 7.30012178, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3641. Part197.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3642. Part197.Position = Vector3.new(-76.9573517, 7.30012178, 73.0455856)
  3643. Part197.Orientation = Vector3.new(0, -180, 0)
  3644. Part197.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3645. Part198.Parent = Model178
  3646. Part198.Material = Enum.Material.Wood
  3647. Part198.BrickColor = BrickColor.new("Dark green")
  3648. Part198.Transparency = -1
  3649. Part198.Rotation = Vector3.new(-180, 0, -180)
  3650. Part198.Anchored = true
  3651. Part198.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3652. Part198.CFrame = CFrame.new(-75.8573303, 7.30012178, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3653. Part198.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3654. Part198.Position = Vector3.new(-75.8573303, 7.30012178, 73.0455856)
  3655. Part198.Orientation = Vector3.new(0, -180, 0)
  3656. Part198.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3657. Part199.Parent = Model178
  3658. Part199.Material = Enum.Material.Wood
  3659. Part199.BrickColor = BrickColor.new("Dark green")
  3660. Part199.Transparency = -1
  3661. Part199.Rotation = Vector3.new(0, -90, 0)
  3662. Part199.Anchored = true
  3663. Part199.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3664. Part199.CFrame = CFrame.new(-58.2568398, 7.30012894, 51.6950302, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3665. Part199.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3666. Part199.Position = Vector3.new(-58.2568398, 7.30012894, 51.6950302)
  3667. Part199.Orientation = Vector3.new(0, -90, 0)
  3668. Part199.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3669. Part200.Parent = Model178
  3670. Part200.Material = Enum.Material.Wood
  3671. Part200.BrickColor = BrickColor.new("Dark green")
  3672. Part200.Transparency = -1
  3673. Part200.Rotation = Vector3.new(0, -90, 0)
  3674. Part200.Anchored = true
  3675. Part200.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3676. Part200.CFrame = CFrame.new(-58.2568512, 7.30011702, 53.8950729, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3677. Part200.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3678. Part200.Position = Vector3.new(-58.2568512, 7.30011702, 53.8950729)
  3679. Part200.Orientation = Vector3.new(0, -90, 0)
  3680. Part200.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3681. Part201.Parent = Model178
  3682. Part201.Material = Enum.Material.Wood
  3683. Part201.BrickColor = BrickColor.new("Dark green")
  3684. Part201.Transparency = -1
  3685. Part201.Rotation = Vector3.new(0, -90, 0)
  3686. Part201.Anchored = true
  3687. Part201.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3688. Part201.CFrame = CFrame.new(-58.2568359, 7.30012894, 50.5950165, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3689. Part201.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3690. Part201.Position = Vector3.new(-58.2568359, 7.30012894, 50.5950165)
  3691. Part201.Orientation = Vector3.new(0, -90, 0)
  3692. Part201.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3693. Part202.Parent = Model178
  3694. Part202.Material = Enum.Material.Wood
  3695. Part202.BrickColor = BrickColor.new("Dark green")
  3696. Part202.Transparency = -1
  3697. Part202.Rotation = Vector3.new(0, -90, 0)
  3698. Part202.Anchored = true
  3699. Part202.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3700. Part202.CFrame = CFrame.new(-58.2568703, 7.30011082, 65.9954376, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3701. Part202.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3702. Part202.Position = Vector3.new(-58.2568703, 7.30011082, 65.9954376)
  3703. Part202.Orientation = Vector3.new(0, -90, 0)
  3704. Part202.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3705. Part203.Parent = Model178
  3706. Part203.Material = Enum.Material.Wood
  3707. Part203.BrickColor = BrickColor.new("Dark green")
  3708. Part203.Transparency = -1
  3709. Part203.Rotation = Vector3.new(0, -90, 0)
  3710. Part203.Anchored = true
  3711. Part203.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3712. Part203.CFrame = CFrame.new(-58.2568741, 7.30011082, 67.095459, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3713. Part203.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3714. Part203.Position = Vector3.new(-58.2568741, 7.30011082, 67.095459)
  3715. Part203.Orientation = Vector3.new(0, -90, 0)
  3716. Part203.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3717. Part204.Parent = Model178
  3718. Part204.Material = Enum.Material.Wood
  3719. Part204.BrickColor = BrickColor.new("Dark green")
  3720. Part204.Transparency = -1
  3721. Part204.Rotation = Vector3.new(-180, 0, -180)
  3722. Part204.Anchored = true
  3723. Part204.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3724. Part204.CFrame = CFrame.new(-79.1574249, 7.30012608, 73.0455399, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3725. Part204.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3726. Part204.Position = Vector3.new(-79.1574249, 7.30012608, 73.0455399)
  3727. Part204.Orientation = Vector3.new(0, -180, 0)
  3728. Part204.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3729. Part205.Parent = Model178
  3730. Part205.Material = Enum.Material.Wood
  3731. Part205.BrickColor = BrickColor.new("Dark green")
  3732. Part205.Transparency = -1
  3733. Part205.Rotation = Vector3.new(-180, 0, -180)
  3734. Part205.Anchored = true
  3735. Part205.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3736. Part205.CFrame = CFrame.new(-78.0574112, 7.30012608, 73.0455475, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3737. Part205.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3738. Part205.Position = Vector3.new(-78.0574112, 7.30012608, 73.0455475)
  3739. Part205.Orientation = Vector3.new(0, -180, 0)
  3740. Part205.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3741. Part206.Parent = Model178
  3742. Part206.Material = Enum.Material.Wood
  3743. Part206.BrickColor = BrickColor.new("Dark green")
  3744. Part206.Transparency = -1
  3745. Part206.Rotation = Vector3.new(0, -90, 0)
  3746. Part206.Anchored = true
  3747. Part206.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3748. Part206.CFrame = CFrame.new(-58.2568474, 7.30010176, 63.7953453, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3749. Part206.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3750. Part206.Position = Vector3.new(-58.2568474, 7.30010176, 63.7953453)
  3751. Part206.Orientation = Vector3.new(0, -90, 0)
  3752. Part206.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3753. Part207.Parent = Model178
  3754. Part207.Material = Enum.Material.Wood
  3755. Part207.BrickColor = BrickColor.new("Dark green")
  3756. Part207.Transparency = -1
  3757. Part207.Rotation = Vector3.new(-180, 0, -180)
  3758. Part207.Anchored = true
  3759. Part207.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3760. Part207.CFrame = CFrame.new(-74.7573013, 7.30012178, 73.0455704, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3761. Part207.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3762. Part207.Position = Vector3.new(-74.7573013, 7.30012178, 73.0455704)
  3763. Part207.Orientation = Vector3.new(0, -180, 0)
  3764. Part207.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3765. Part208.Parent = Model178
  3766. Part208.Material = Enum.Material.Wood
  3767. Part208.BrickColor = BrickColor.new("Dark green")
  3768. Part208.Transparency = -1
  3769. Part208.Rotation = Vector3.new(0, -90, 0)
  3770. Part208.Anchored = true
  3771. Part208.Size = Vector3.new(1.10000002, 14.1999998, 0.200000003)
  3772. Part208.CFrame = CFrame.new(-58.2568665, 7.30008602, 47.2448616, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3773. Part208.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3774. Part208.Position = Vector3.new(-58.2568665, 7.30008602, 47.2448616)
  3775. Part208.Orientation = Vector3.new(0, -90, 0)
  3776. Part208.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3777. Part209.Parent = Model178
  3778. Part209.Material = Enum.Material.Wood
  3779. Part209.BrickColor = BrickColor.new("Dark green")
  3780. Part209.Transparency = -1
  3781. Part209.Rotation = Vector3.new(0, -90, 0)
  3782. Part209.Anchored = true
  3783. Part209.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3784. Part209.CFrame = CFrame.new(-58.2568512, 7.3000989, 49.4949188, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3785. Part209.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3786. Part209.Position = Vector3.new(-58.2568512, 7.3000989, 49.4949188)
  3787. Part209.Orientation = Vector3.new(0, -90, 0)
  3788. Part209.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3789. Part210.Parent = Model178
  3790. Part210.Material = Enum.Material.Wood
  3791. Part210.BrickColor = BrickColor.new("Dark green")
  3792. Part210.Transparency = -1
  3793. Part210.Rotation = Vector3.new(0, -90, 0)
  3794. Part210.Anchored = true
  3795. Part210.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3796. Part210.CFrame = CFrame.new(-58.2568665, 7.30008602, 48.3948936, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3797. Part210.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3798. Part210.Position = Vector3.new(-58.2568665, 7.30008602, 48.3948936)
  3799. Part210.Orientation = Vector3.new(0, -90, 0)
  3800. Part210.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3801. Part211.Parent = Model178
  3802. Part211.Material = Enum.Material.Wood
  3803. Part211.BrickColor = BrickColor.new("Dark green")
  3804. Part211.Transparency = -1
  3805. Part211.Rotation = Vector3.new(0, -90, 0)
  3806. Part211.Anchored = true
  3807. Part211.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3808. Part211.CFrame = CFrame.new(-58.2568474, 7.30010176, 64.8953857, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3809. Part211.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3810. Part211.Position = Vector3.new(-58.2568474, 7.30010176, 64.8953857)
  3811. Part211.Orientation = Vector3.new(0, -90, 0)
  3812. Part211.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3813. Part212.Parent = Model178
  3814. Part212.Material = Enum.Material.Wood
  3815. Part212.BrickColor = BrickColor.new("Dark green")
  3816. Part212.Transparency = -1
  3817. Part212.Rotation = Vector3.new(-180, 0, -180)
  3818. Part212.Anchored = true
  3819. Part212.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3820. Part212.CFrame = CFrame.new(-73.6572876, 7.30013275, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3821. Part212.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3822. Part212.Position = Vector3.new(-73.6572876, 7.30013275, 73.0455856)
  3823. Part212.Orientation = Vector3.new(0, -180, 0)
  3824. Part212.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3825. Part213.Parent = Model178
  3826. Part213.Material = Enum.Material.Wood
  3827. Part213.BrickColor = BrickColor.new("Dark green")
  3828. Part213.Transparency = -1
  3829. Part213.Rotation = Vector3.new(0, -90, 0)
  3830. Part213.Anchored = true
  3831. Part213.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3832. Part213.CFrame = CFrame.new(-58.2568398, 7.30014277, 54.9951477, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3833. Part213.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3834. Part213.Position = Vector3.new(-58.2568398, 7.30014277, 54.9951477)
  3835. Part213.Orientation = Vector3.new(0, -90, 0)
  3836. Part213.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3837. Part214.Parent = Model178
  3838. Part214.Material = Enum.Material.Wood
  3839. Part214.BrickColor = BrickColor.new("Dark green")
  3840. Part214.Transparency = -1
  3841. Part214.Rotation = Vector3.new(0, -90, 0)
  3842. Part214.Anchored = true
  3843. Part214.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3844. Part214.CFrame = CFrame.new(-58.2568283, 7.30014277, 56.0951691, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  3845. Part214.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3846. Part214.Position = Vector3.new(-58.2568283, 7.30014277, 56.0951691)
  3847. Part214.Orientation = Vector3.new(0, -90, 0)
  3848. Part214.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3849. Part215.Parent = Model178
  3850. Part215.Material = Enum.Material.Wood
  3851. Part215.BrickColor = BrickColor.new("Dark green")
  3852. Part215.Transparency = -1
  3853. Part215.Rotation = Vector3.new(-180, 0, -180)
  3854. Part215.Anchored = true
  3855. Part215.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3856. Part215.CFrame = CFrame.new(-77.0573425, 7.30011177, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3857. Part215.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3858. Part215.Position = Vector3.new(-77.0573425, 7.30011177, 46.0448647)
  3859. Part215.Orientation = Vector3.new(0, -180, 0)
  3860. Part215.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3861. Part216.Parent = Model178
  3862. Part216.Material = Enum.Material.Wood
  3863. Part216.BrickColor = BrickColor.new("Dark green")
  3864. Part216.Transparency = -1
  3865. Part216.Rotation = Vector3.new(-180, 0, -180)
  3866. Part216.Anchored = true
  3867. Part216.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3868. Part216.CFrame = CFrame.new(-83.6575012, 7.30010176, 46.0448341, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3869. Part216.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3870. Part216.Position = Vector3.new(-83.6575012, 7.30010176, 46.0448341)
  3871. Part216.Orientation = Vector3.new(0, -180, 0)
  3872. Part216.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3873. Part217.Parent = Model178
  3874. Part217.Material = Enum.Material.Wood
  3875. Part217.BrickColor = BrickColor.new("Dark green")
  3876. Part217.Transparency = -1
  3877. Part217.Rotation = Vector3.new(-180, 0, -180)
  3878. Part217.Anchored = true
  3879. Part217.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3880. Part217.CFrame = CFrame.new(-73.7572861, 7.30012321, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3881. Part217.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3882. Part217.Position = Vector3.new(-73.7572861, 7.30012321, 46.0448647)
  3883. Part217.Orientation = Vector3.new(0, -180, 0)
  3884. Part217.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3885. Part218.Parent = Model178
  3886. Part218.Material = Enum.Material.Wood
  3887. Part218.BrickColor = BrickColor.new("Dark green")
  3888. Part218.Transparency = -1
  3889. Part218.Rotation = Vector3.new(-180, 0, -180)
  3890. Part218.Anchored = true
  3891. Part218.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3892. Part218.CFrame = CFrame.new(-72.6572723, 7.30012321, 46.0448608, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3893. Part218.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3894. Part218.Position = Vector3.new(-72.6572723, 7.30012321, 46.0448608)
  3895. Part218.Orientation = Vector3.new(0, -180, 0)
  3896. Part218.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3897. Part219.Parent = Model178
  3898. Part219.Material = Enum.Material.Wood
  3899. Part219.BrickColor = BrickColor.new("Dark green")
  3900. Part219.Transparency = -1
  3901. Part219.Rotation = Vector3.new(-180, 0, -180)
  3902. Part219.Anchored = true
  3903. Part219.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3904. Part219.CFrame = CFrame.new(-81.4574585, 7.30010176, 46.044838, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3905. Part219.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3906. Part219.Position = Vector3.new(-81.4574585, 7.30010176, 46.044838)
  3907. Part219.Orientation = Vector3.new(0, -180, 0)
  3908. Part219.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3909. Part220.Parent = Model178
  3910. Part220.Material = Enum.Material.Wood
  3911. Part220.BrickColor = BrickColor.new("Dark green")
  3912. Part220.Transparency = -1
  3913. Part220.Rotation = Vector3.new(-180, 0, -180)
  3914. Part220.Anchored = true
  3915. Part220.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3916. Part220.CFrame = CFrame.new(-79.257431, 7.30011606, 46.0448341, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3917. Part220.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3918. Part220.Position = Vector3.new(-79.257431, 7.30011606, 46.0448341)
  3919. Part220.Orientation = Vector3.new(0, -180, 0)
  3920. Part220.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3921. Part221.Parent = Model178
  3922. Part221.Material = Enum.Material.Wood
  3923. Part221.BrickColor = BrickColor.new("Dark green")
  3924. Part221.Transparency = -1
  3925. Part221.Rotation = Vector3.new(-180, 0, -180)
  3926. Part221.Anchored = true
  3927. Part221.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3928. Part221.CFrame = CFrame.new(-82.5574951, 7.30010176, 46.0448341, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3929. Part221.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3930. Part221.Position = Vector3.new(-82.5574951, 7.30010176, 46.0448341)
  3931. Part221.Orientation = Vector3.new(0, -180, 0)
  3932. Part221.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3933. Part222.Parent = Model178
  3934. Part222.Material = Enum.Material.Wood
  3935. Part222.BrickColor = BrickColor.new("Dark green")
  3936. Part222.Transparency = -1
  3937. Part222.Rotation = Vector3.new(-180, 0, -180)
  3938. Part222.Anchored = true
  3939. Part222.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3940. Part222.CFrame = CFrame.new(-74.8573074, 7.30011177, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3941. Part222.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3942. Part222.Position = Vector3.new(-74.8573074, 7.30011177, 46.0448647)
  3943. Part222.Orientation = Vector3.new(0, -180, 0)
  3944. Part222.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3945. Part223.Parent = Model178
  3946. Part223.Material = Enum.Material.Wood
  3947. Part223.BrickColor = BrickColor.new("Dark green")
  3948. Part223.Transparency = -1
  3949. Part223.Rotation = Vector3.new(-180, 0, -180)
  3950. Part223.Anchored = true
  3951. Part223.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3952. Part223.CFrame = CFrame.new(-75.9573212, 7.30011177, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3953. Part223.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3954. Part223.Position = Vector3.new(-75.9573212, 7.30011177, 46.0448647)
  3955. Part223.Orientation = Vector3.new(0, -180, 0)
  3956. Part223.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3957. Part224.Parent = Model178
  3958. Part224.Material = Enum.Material.Wood
  3959. Part224.BrickColor = BrickColor.new("Dark green")
  3960. Part224.Transparency = -1
  3961. Part224.Rotation = Vector3.new(-180, 0, -180)
  3962. Part224.Anchored = true
  3963. Part224.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3964. Part224.CFrame = CFrame.new(-80.3574448, 7.30011606, 46.0448265, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3965. Part224.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3966. Part224.Position = Vector3.new(-80.3574448, 7.30011606, 46.0448265)
  3967. Part224.Orientation = Vector3.new(0, -180, 0)
  3968. Part224.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3969. Part225.Parent = Model178
  3970. Part225.Material = Enum.Material.Wood
  3971. Part225.BrickColor = BrickColor.new("Dark green")
  3972. Part225.Transparency = -1
  3973. Part225.Rotation = Vector3.new(-180, 0, -180)
  3974. Part225.Anchored = true
  3975. Part225.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3976. Part225.CFrame = CFrame.new(-78.157402, 7.30011606, 46.0448418, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3977. Part225.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3978. Part225.Position = Vector3.new(-78.157402, 7.30011606, 46.0448418)
  3979. Part225.Orientation = Vector3.new(0, -180, 0)
  3980. Part225.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3981. Part226.Parent = Model178
  3982. Part226.Material = Enum.Material.Wood
  3983. Part226.BrickColor = BrickColor.new("Dark green")
  3984. Part226.Transparency = -1
  3985. Part226.Rotation = Vector3.new(-180, 0, -180)
  3986. Part226.Anchored = true
  3987. Part226.Size = Vector3.new(1, 14.1999998, 0.200000003)
  3988. Part226.CFrame = CFrame.new(-68.2571411, 7.30014801, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  3989. Part226.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3990. Part226.Position = Vector3.new(-68.2571411, 7.30014801, 46.0448647)
  3991. Part226.Orientation = Vector3.new(0, -180, 0)
  3992. Part226.Color = Color3.new(0.156863, 0.498039, 0.278431)
  3993. Part227.Parent = Model178
  3994. Part227.Material = Enum.Material.Wood
  3995. Part227.BrickColor = BrickColor.new("Dark green")
  3996. Part227.Transparency = -1
  3997. Part227.Rotation = Vector3.new(-180, 0, -180)
  3998. Part227.Anchored = true
  3999. Part227.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4000. Part227.CFrame = CFrame.new(-63.8570251, 7.30013704, 46.0448723, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4001. Part227.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4002. Part227.Position = Vector3.new(-63.8570251, 7.30013704, 46.0448723)
  4003. Part227.Orientation = Vector3.new(0, -180, 0)
  4004. Part227.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4005. Part228.Parent = Model178
  4006. Part228.Material = Enum.Material.Wood
  4007. Part228.BrickColor = BrickColor.new("Dark green")
  4008. Part228.Transparency = -1
  4009. Part228.Rotation = Vector3.new(-180, 0, -180)
  4010. Part228.Anchored = true
  4011. Part228.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4012. Part228.CFrame = CFrame.new(-70.4571915, 7.30013704, 46.0448799, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4013. Part228.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4014. Part228.Position = Vector3.new(-70.4571915, 7.30013704, 46.0448799)
  4015. Part228.Orientation = Vector3.new(0, -180, 0)
  4016. Part228.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4017. Part229.Parent = Model178
  4018. Part229.Material = Enum.Material.Wood
  4019. Part229.BrickColor = BrickColor.new("Dark green")
  4020. Part229.Transparency = -1
  4021. Part229.Rotation = Vector3.new(-180, 0, -180)
  4022. Part229.Anchored = true
  4023. Part229.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4024. Part229.CFrame = CFrame.new(-66.0570602, 7.30012321, 46.044857, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4025. Part229.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4026. Part229.Position = Vector3.new(-66.0570602, 7.30012321, 46.044857)
  4027. Part229.Orientation = Vector3.new(0, -180, 0)
  4028. Part229.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4029. Part230.Parent = Model178
  4030. Part230.Material = Enum.Material.Wood
  4031. Part230.BrickColor = BrickColor.new("Dark green")
  4032. Part230.Transparency = -1
  4033. Part230.Rotation = Vector3.new(-180, 0, -180)
  4034. Part230.Anchored = true
  4035. Part230.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4036. Part230.CFrame = CFrame.new(-64.9570618, 7.30013704, 46.0448723, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4037. Part230.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4038. Part230.Position = Vector3.new(-64.9570618, 7.30013704, 46.0448723)
  4039. Part230.Orientation = Vector3.new(0, -180, 0)
  4040. Part230.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4041. Part231.Parent = Model178
  4042. Part231.Material = Enum.Material.Wood
  4043. Part231.BrickColor = BrickColor.new("Dark green")
  4044. Part231.Transparency = -1
  4045. Part231.Rotation = Vector3.new(-180, 0, -180)
  4046. Part231.Anchored = true
  4047. Part231.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4048. Part231.CFrame = CFrame.new(-71.5572281, 7.30012321, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4049. Part231.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4050. Part231.Position = Vector3.new(-71.5572281, 7.30012321, 46.0448647)
  4051. Part231.Orientation = Vector3.new(0, -180, 0)
  4052. Part231.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4053. Part232.Parent = Model178
  4054. Part232.Material = Enum.Material.Wood
  4055. Part232.BrickColor = BrickColor.new("Dark green")
  4056. Part232.Transparency = -1
  4057. Part232.Rotation = Vector3.new(-180, 0, -180)
  4058. Part232.Anchored = true
  4059. Part232.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4060. Part232.CFrame = CFrame.new(-67.1571274, 7.30014801, 46.0448723, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4061. Part232.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4062. Part232.Position = Vector3.new(-67.1571274, 7.30014801, 46.0448723)
  4063. Part232.Orientation = Vector3.new(0, -180, 0)
  4064. Part232.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4065. Part233.Parent = Model178
  4066. Part233.Material = Enum.Material.Wood
  4067. Part233.BrickColor = BrickColor.new("Dark green")
  4068. Part233.Transparency = -1
  4069. Part233.Rotation = Vector3.new(-180, 0, -180)
  4070. Part233.Anchored = true
  4071. Part233.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4072. Part233.CFrame = CFrame.new(-69.357193, 7.30014801, 46.0448647, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4073. Part233.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4074. Part233.Position = Vector3.new(-69.357193, 7.30014801, 46.0448647)
  4075. Part233.Orientation = Vector3.new(0, -180, 0)
  4076. Part233.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4077. Part234.Parent = Model178
  4078. Part234.Material = Enum.Material.Wood
  4079. Part234.BrickColor = BrickColor.new("Dark green")
  4080. Part234.Transparency = -1
  4081. Part234.Rotation = Vector3.new(-180, 0, -180)
  4082. Part234.Anchored = true
  4083. Part234.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4084. Part234.CFrame = CFrame.new(-61.6569138, 7.30010176, 46.0448303, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4085. Part234.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4086. Part234.Position = Vector3.new(-61.6569138, 7.30010176, 46.0448303)
  4087. Part234.Orientation = Vector3.new(0, -180, 0)
  4088. Part234.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4089. Part235.Parent = Model178
  4090. Part235.Material = Enum.Material.Wood
  4091. Part235.BrickColor = BrickColor.new("Dark green")
  4092. Part235.Transparency = -1
  4093. Part235.Rotation = Vector3.new(-180, 0, -180)
  4094. Part235.Anchored = true
  4095. Part235.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4096. Part235.CFrame = CFrame.new(-60.5568771, 7.30009222, 46.0448341, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4097. Part235.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4098. Part235.Position = Vector3.new(-60.5568771, 7.30009222, 46.0448341)
  4099. Part235.Orientation = Vector3.new(0, -180, 0)
  4100. Part235.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4101. Part236.Parent = Model178
  4102. Part236.Material = Enum.Material.Wood
  4103. Part236.BrickColor = BrickColor.new("Dark green")
  4104. Part236.Transparency = -1
  4105. Part236.Rotation = Vector3.new(-180, 0, -180)
  4106. Part236.Anchored = true
  4107. Part236.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4108. Part236.CFrame = CFrame.new(-62.7569885, 7.30013704, 46.0448723, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4109. Part236.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4110. Part236.Position = Vector3.new(-62.7569885, 7.30013704, 46.0448723)
  4111. Part236.Orientation = Vector3.new(0, -180, 0)
  4112. Part236.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4113. Part237.Parent = Model178
  4114. Part237.Material = Enum.Material.Wood
  4115. Part237.BrickColor = BrickColor.new("Dark green")
  4116. Part237.Transparency = -1
  4117. Part237.Rotation = Vector3.new(-180, 0, -180)
  4118. Part237.Anchored = true
  4119. Part237.Size = Vector3.new(0.899999976, 14.1999998, 0.200000003)
  4120. Part237.CFrame = CFrame.new(-59.5068436, 7.30009222, 46.0448265, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4121. Part237.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4122. Part237.Position = Vector3.new(-59.5068436, 7.30009222, 46.0448265)
  4123. Part237.Orientation = Vector3.new(0, -180, 0)
  4124. Part237.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4125. Part238.Parent = Model178
  4126. Part238.Material = Enum.Material.Wood
  4127. Part238.BrickColor = BrickColor.new("Dark green")
  4128. Part238.Transparency = -1
  4129. Part238.Rotation = Vector3.new(-180, 0, -180)
  4130. Part238.Anchored = true
  4131. Part238.Size = Vector3.new(0.899999976, 14.1999998, 0.200000003)
  4132. Part238.CFrame = CFrame.new(-59.4068527, 7.30010176, 73.0455322, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4133. Part238.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4134. Part238.Position = Vector3.new(-59.4068527, 7.30010176, 73.0455322)
  4135. Part238.Orientation = Vector3.new(0, -180, 0)
  4136. Part238.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4137. Part239.Parent = Model178
  4138. Part239.Material = Enum.Material.Wood
  4139. Part239.BrickColor = BrickColor.new("Dark green")
  4140. Part239.Transparency = -1
  4141. Part239.Rotation = Vector3.new(-180, 0, -180)
  4142. Part239.Anchored = true
  4143. Part239.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4144. Part239.CFrame = CFrame.new(-60.4568787, 7.30010176, 73.0455322, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4145. Part239.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4146. Part239.Position = Vector3.new(-60.4568787, 7.30010176, 73.0455322)
  4147. Part239.Orientation = Vector3.new(0, -180, 0)
  4148. Part239.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4149. Part240.Parent = Model178
  4150. Part240.Material = Enum.Material.Wood
  4151. Part240.BrickColor = BrickColor.new("Dark green")
  4152. Part240.Transparency = -1
  4153. Part240.Rotation = Vector3.new(-180, 0, -180)
  4154. Part240.Anchored = true
  4155. Part240.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4156. Part240.CFrame = CFrame.new(-61.5569, 7.30011606, 73.0455399, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4157. Part240.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4158. Part240.Position = Vector3.new(-61.5569, 7.30011606, 73.0455399)
  4159. Part240.Orientation = Vector3.new(0, -180, 0)
  4160. Part240.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4161. Part241.Parent = Model178
  4162. Part241.Material = Enum.Material.Wood
  4163. Part241.BrickColor = BrickColor.new("Dark green")
  4164. Part241.Transparency = -1
  4165. Part241.Rotation = Vector3.new(-180, 0, -180)
  4166. Part241.Anchored = true
  4167. Part241.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4168. Part241.CFrame = CFrame.new(-65.9570541, 7.30013704, 73.0455704, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4169. Part241.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4170. Part241.Position = Vector3.new(-65.9570541, 7.30013704, 73.0455704)
  4171. Part241.Orientation = Vector3.new(0, -180, 0)
  4172. Part241.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4173. Part242.Parent = Model178
  4174. Part242.Material = Enum.Material.Wood
  4175. Part242.BrickColor = BrickColor.new("Dark green")
  4176. Part242.Transparency = -1
  4177. Part242.Rotation = Vector3.new(-180, 0, -180)
  4178. Part242.Anchored = true
  4179. Part242.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4180. Part242.CFrame = CFrame.new(-62.6569977, 7.30014277, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4181. Part242.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4182. Part242.Position = Vector3.new(-62.6569977, 7.30014277, 73.0455856)
  4183. Part242.Orientation = Vector3.new(0, -180, 0)
  4184. Part242.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4185. Part243.Parent = Model178
  4186. Part243.Material = Enum.Material.Wood
  4187. Part243.BrickColor = BrickColor.new("Dark green")
  4188. Part243.Transparency = -1
  4189. Part243.Rotation = Vector3.new(-180, 0, -180)
  4190. Part243.Anchored = true
  4191. Part243.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4192. Part243.CFrame = CFrame.new(-64.857048, 7.30014277, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4193. Part243.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4194. Part243.Position = Vector3.new(-64.857048, 7.30014277, 73.0455856)
  4195. Part243.Orientation = Vector3.new(0, -180, 0)
  4196. Part243.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4197. Part244.Parent = Model178
  4198. Part244.Material = Enum.Material.Wood
  4199. Part244.BrickColor = BrickColor.new("Dark green")
  4200. Part244.Transparency = -1
  4201. Part244.Rotation = Vector3.new(-180, 0, -180)
  4202. Part244.Anchored = true
  4203. Part244.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4204. Part244.CFrame = CFrame.new(-63.757019, 7.30014277, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4205. Part244.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4206. Part244.Position = Vector3.new(-63.757019, 7.30014277, 73.0455856)
  4207. Part244.Orientation = Vector3.new(0, -180, 0)
  4208. Part244.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4209. Part245.Parent = Model178
  4210. Part245.Material = Enum.Material.Wood
  4211. Part245.BrickColor = BrickColor.new("Dark green")
  4212. Part245.Transparency = -1
  4213. Part245.Rotation = Vector3.new(-180, 0, -180)
  4214. Part245.Anchored = true
  4215. Part245.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4216. Part245.CFrame = CFrame.new(-70.3572006, 7.30014277, 73.0456009, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4217. Part245.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4218. Part245.Position = Vector3.new(-70.3572006, 7.30014277, 73.0456009)
  4219. Part245.Orientation = Vector3.new(0, -180, 0)
  4220. Part245.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4221. Part246.Parent = Model178
  4222. Part246.Material = Enum.Material.Wood
  4223. Part246.BrickColor = BrickColor.new("Dark green")
  4224. Part246.Transparency = -1
  4225. Part246.Rotation = Vector3.new(-180, 0, -180)
  4226. Part246.Anchored = true
  4227. Part246.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4228. Part246.CFrame = CFrame.new(-68.1571579, 7.30016088, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4229. Part246.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4230. Part246.Position = Vector3.new(-68.1571579, 7.30016088, 73.0455856)
  4231. Part246.Orientation = Vector3.new(0, -180, 0)
  4232. Part246.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4233. Part247.Parent = Model178
  4234. Part247.Material = Enum.Material.Wood
  4235. Part247.BrickColor = BrickColor.new("Dark green")
  4236. Part247.Transparency = -1
  4237. Part247.Rotation = Vector3.new(-180, 0, -180)
  4238. Part247.Anchored = true
  4239. Part247.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4240. Part247.CFrame = CFrame.new(-69.2571869, 7.30016088, 73.0456009, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4241. Part247.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4242. Part247.Position = Vector3.new(-69.2571869, 7.30016088, 73.0456009)
  4243. Part247.Orientation = Vector3.new(0, -180, 0)
  4244. Part247.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4245. Part248.Parent = Model178
  4246. Part248.Material = Enum.Material.Wood
  4247. Part248.BrickColor = BrickColor.new("Dark green")
  4248. Part248.Transparency = -1
  4249. Part248.Rotation = Vector3.new(-180, 0, -180)
  4250. Part248.Anchored = true
  4251. Part248.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4252. Part248.CFrame = CFrame.new(-67.0571289, 7.30016088, 73.0456009, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4253. Part248.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4254. Part248.Position = Vector3.new(-67.0571289, 7.30016088, 73.0456009)
  4255. Part248.Orientation = Vector3.new(0, -180, 0)
  4256. Part248.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4257. Part249.Parent = Model178
  4258. Part249.Material = Enum.Material.Wood
  4259. Part249.BrickColor = BrickColor.new("Dark green")
  4260. Part249.Transparency = -1
  4261. Part249.Rotation = Vector3.new(-180, 0, -180)
  4262. Part249.Anchored = true
  4263. Part249.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4264. Part249.CFrame = CFrame.new(-71.4572296, 7.30013275, 73.0455704, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4265. Part249.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4266. Part249.Position = Vector3.new(-71.4572296, 7.30013275, 73.0455704)
  4267. Part249.Orientation = Vector3.new(0, -180, 0)
  4268. Part249.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4269. Part250.Parent = Model178
  4270. Part250.Material = Enum.Material.Wood
  4271. Part250.BrickColor = BrickColor.new("Dark green")
  4272. Part250.Transparency = -1
  4273. Part250.Rotation = Vector3.new(-180, 0, -180)
  4274. Part250.Anchored = true
  4275. Part250.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4276. Part250.CFrame = CFrame.new(-72.5572739, 7.30013275, 73.0455856, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4277. Part250.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4278. Part250.Position = Vector3.new(-72.5572739, 7.30013275, 73.0455856)
  4279. Part250.Orientation = Vector3.new(0, -180, 0)
  4280. Part250.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4281. Part251.Parent = Model178
  4282. Part251.Material = Enum.Material.Wood
  4283. Part251.BrickColor = BrickColor.new("Dark green")
  4284. Part251.Transparency = -1
  4285. Part251.Rotation = Vector3.new(-180, 0, -180)
  4286. Part251.Anchored = true
  4287. Part251.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4288. Part251.CFrame = CFrame.new(-83.5575256, 7.30011606, 73.0455399, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4289. Part251.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4290. Part251.Position = Vector3.new(-83.5575256, 7.30011606, 73.0455399)
  4291. Part251.Orientation = Vector3.new(0, -180, 0)
  4292. Part251.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4293. Part252.Parent = Model178
  4294. Part252.Material = Enum.Material.Wood
  4295. Part252.BrickColor = BrickColor.new("Dark green")
  4296. Part252.Transparency = -1
  4297. Part252.Rotation = Vector3.new(-180, 0, -180)
  4298. Part252.Anchored = true
  4299. Part252.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4300. Part252.CFrame = CFrame.new(-82.4574738, 7.30011606, 73.0455399, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4301. Part252.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4302. Part252.Position = Vector3.new(-82.4574738, 7.30011606, 73.0455399)
  4303. Part252.Orientation = Vector3.new(0, -180, 0)
  4304. Part252.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4305. Part253.Parent = Model178
  4306. Part253.Material = Enum.Material.Wood
  4307. Part253.BrickColor = BrickColor.new("Pearl")
  4308. Part253.Transparency = -1
  4309. Part253.Rotation = Vector3.new(0, -90, 0)
  4310. Part253.Anchored = true
  4311. Part253.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  4312. Part253.CFrame = CFrame.new(-84.8575363, 7.30011606, 72.7955704, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  4313. Part253.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4314. Part253.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4315. Part253.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4316. Part253.Position = Vector3.new(-84.8575363, 7.30011606, 72.7955704)
  4317. Part253.Orientation = Vector3.new(0, -90, 0)
  4318. Part253.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4319. Part254.Parent = Model178
  4320. Part254.Material = Enum.Material.Wood
  4321. Part254.BrickColor = BrickColor.new("Pearl")
  4322. Part254.Transparency = -1
  4323. Part254.Rotation = Vector3.new(0, -90, 0)
  4324. Part254.Anchored = true
  4325. Part254.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  4326. Part254.CFrame = CFrame.new(-84.8575211, 7.30011606, 65.6953506, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  4327. Part254.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4328. Part254.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4329. Part254.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4330. Part254.Position = Vector3.new(-84.8575211, 7.30011606, 65.6953506)
  4331. Part254.Orientation = Vector3.new(0, -90, 0)
  4332. Part254.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4333. Part255.Parent = Model178
  4334. Part255.Material = Enum.Material.Wood
  4335. Part255.BrickColor = BrickColor.new("Pearl")
  4336. Part255.Transparency = -1
  4337. Part255.Rotation = Vector3.new(0, -90, 0)
  4338. Part255.Anchored = true
  4339. Part255.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  4340. Part255.CFrame = CFrame.new(-84.8575363, 7.30011606, 53.395031, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  4341. Part255.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4342. Part255.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4343. Part255.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4344. Part255.Position = Vector3.new(-84.8575363, 7.30011606, 53.395031)
  4345. Part255.Orientation = Vector3.new(0, -90, 0)
  4346. Part255.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4347. Part256.Parent = Model178
  4348. Part256.Material = Enum.Material.Wood
  4349. Part256.BrickColor = BrickColor.new("Pearl")
  4350. Part256.Transparency = -1
  4351. Part256.Rotation = Vector3.new(0, 90, 0)
  4352. Part256.Anchored = true
  4353. Part256.Size = Vector3.new(0.600000024, 14.1999998, 0.200000003)
  4354. Part256.CFrame = CFrame.new(-84.8575439, 7.300138, 46.4448891, 8.94055319e-08, 0, 1, 0, 1, 0, -1, 0, 8.94055319e-08)
  4355. Part256.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4356. Part256.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4357. Part256.Position = Vector3.new(-84.8575439, 7.300138, 46.4448891)
  4358. Part256.Orientation = Vector3.new(0, 90, 0)
  4359. Part256.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4360. Part257.Parent = Model178
  4361. Part257.Material = Enum.Material.Wood
  4362. Part257.BrickColor = BrickColor.new("Pearl")
  4363. Part257.Transparency = -1
  4364. Part257.Rotation = Vector3.new(-180, 0, -180)
  4365. Part257.Anchored = true
  4366. Part257.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  4367. Part257.CFrame = CFrame.new(-84.6075439, 7.300138, 46.0448723, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4368. Part257.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4369. Part257.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4370. Part257.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4371. Part257.Position = Vector3.new(-84.6075439, 7.300138, 46.0448723)
  4372. Part257.Orientation = Vector3.new(0, -180, 0)
  4373. Part257.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4374. Part258.Parent = Model178
  4375. Part258.Material = Enum.Material.Wood
  4376. Part258.BrickColor = BrickColor.new("Pearl")
  4377. Part258.Transparency = -1
  4378. Part258.Rotation = Vector3.new(0, 90, 0)
  4379. Part258.Anchored = true
  4380. Part258.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  4381. Part258.CFrame = CFrame.new(-58.2568436, 7.30014277, 46.2949181, 8.94055319e-08, 0, 1, 0, 1, 0, -1, 0, 8.94055319e-08)
  4382. Part258.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4383. Part258.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4384. Part258.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4385. Part258.Position = Vector3.new(-58.2568436, 7.30014277, 46.2949181)
  4386. Part258.Orientation = Vector3.new(0, 90, 0)
  4387. Part258.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4388. Part259.Parent = Model178
  4389. Part259.Material = Enum.Material.Wood
  4390. Part259.BrickColor = BrickColor.new("Pearl")
  4391. Part259.Transparency = -1
  4392. Part259.Anchored = true
  4393. Part259.Size = Vector3.new(0.600000024, 14.1999998, 0.200000003)
  4394. Part259.CFrame = CFrame.new(-58.6568565, 7.30014277, 46.0449219, 1, 0, 1.19207371e-07, 0, 1, 0, -1.19207371e-07, 0, 1)
  4395. Part259.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4396. Part259.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4397. Part259.Position = Vector3.new(-58.6568565, 7.30014277, 46.0449219)
  4398. Part259.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4399. Part260.Parent = Model178
  4400. Part260.Material = Enum.Material.Wood
  4401. Part260.BrickColor = BrickColor.new("Pearl")
  4402. Part260.Transparency = -1
  4403. Part260.Rotation = Vector3.new(0, -90, 0)
  4404. Part260.Anchored = true
  4405. Part260.Size = Vector3.new(0.600000024, 14.1999998, 0.200000003)
  4406. Part260.CFrame = CFrame.new(-58.2568703, 7.30011606, 72.6456833, -8.94055319e-08, 0, -1, 0, 1, 0, 1, 0, -8.94055319e-08)
  4407. Part260.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  4408. Part260.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4409. Part260.Position = Vector3.new(-58.2568703, 7.30011606, 72.6456833)
  4410. Part260.Orientation = Vector3.new(0, -90, 0)
  4411. Part260.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4412. Part261.Parent = Model178
  4413. Part261.Material = Enum.Material.Wood
  4414. Part261.BrickColor = BrickColor.new("Pearl")
  4415. Part261.Transparency = -1
  4416. Part261.Anchored = true
  4417. Part261.Size = Vector3.new(0.699999988, 14.1999998, 0.200000003)
  4418. Part261.CFrame = CFrame.new(-58.5068665, 7.30011606, 73.0456924, 1, 0, 1.19207371e-07, 0, 1, 0, -1.19207371e-07, 0, 1)
  4419. Part261.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4420. Part261.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4421. Part261.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4422. Part261.Position = Vector3.new(-58.5068665, 7.30011606, 73.0456924)
  4423. Part261.Color = Color3.new(0.905882, 0.905882, 0.92549)
  4424. Part262.Parent = Model178
  4425. Part262.Material = Enum.Material.Wood
  4426. Part262.BrickColor = BrickColor.new("Dark green")
  4427. Part262.Transparency = -1
  4428. Part262.Rotation = Vector3.new(-180, 0, -180)
  4429. Part262.Anchored = true
  4430. Part262.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4431. Part262.CFrame = CFrame.new(-81.35746, 7.30011606, 73.0455399, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4432. Part262.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4433. Part262.Position = Vector3.new(-81.35746, 7.30011606, 73.0455399)
  4434. Part262.Orientation = Vector3.new(0, -180, 0)
  4435. Part262.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4436. Part263.Parent = Model178
  4437. Part263.Material = Enum.Material.Wood
  4438. Part263.BrickColor = BrickColor.new("Dark green")
  4439. Part263.Transparency = -1
  4440. Part263.Rotation = Vector3.new(-180, 0, -180)
  4441. Part263.Anchored = true
  4442. Part263.Size = Vector3.new(1, 14.1999998, 0.200000003)
  4443. Part263.CFrame = CFrame.new(-80.2574615, 7.30012608, 73.0455322, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4444. Part263.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4445. Part263.Position = Vector3.new(-80.2574615, 7.30012608, 73.0455322)
  4446. Part263.Orientation = Vector3.new(0, -180, 0)
  4447. Part263.Color = Color3.new(0.156863, 0.498039, 0.278431)
  4448. Part264.Name = "Light"
  4449. Part264.Parent = Model79
  4450. Part264.Material = Enum.Material.Neon
  4451. Part264.BrickColor = BrickColor.new("Lily white")
  4452. Part264.Rotation = Vector3.new(-180, 0, -180)
  4453. Part264.Anchored = true
  4454. Part264.Size = Vector3.new(0.730000019, 0.790000021, 0.769999981)
  4455. Part264.CFrame = CFrame.new(-72.7822342, 11.8751106, 59.5801964, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  4456. Part264.Color = Color3.new(0.929412, 0.917647, 0.917647)
  4457. Part264.Position = Vector3.new(-72.7822342, 11.8751106, 59.5801964)
  4458. Part264.Orientation = Vector3.new(0, -180, 0)
  4459. Part264.Color = Color3.new(0.929412, 0.917647, 0.917647)
  4460. Attachment265.Name = "Attachment0"
  4461. Attachment265.Parent = Part264
  4462. Attachment265.Rotation = Vector3.new(0, 0, 90)
  4463. Attachment265.CFrame = CFrame.new(-0.0599999987, 0.395000011, 0.0199999996, 0, -1, 0, 1, 0, -0, 0, 0, 1)
  4464. Attachment265.Position = Vector3.new(-0.0599999987, 0.395000011, 0.0199999996)
  4465. Attachment265.Axis = Vector3.new(0, 1, 0)
  4466. Attachment265.Orientation = Vector3.new(0, 0, 90)
  4467. RopeConstraint266.Parent = Part264
  4468. RopeConstraint266.Visible = true
  4469. RopeConstraint266.Attachment0 = Attachment265
  4470. RopeConstraint266.Attachment1 = Attachment326
  4471. RopeConstraint266.Length = 1.8314459323883
  4472. PointLight267.Parent = Part264
  4473. PointLight267.Brightness = 10
  4474. PointLight267.Range = 12
  4475. Part268.Name = "Light"
  4476. Part268.Parent = Model79
  4477. Part268.Material = Enum.Material.Neon
  4478. Part268.BrickColor = BrickColor.new("Lily white")
  4479. Part268.Anchored = true
  4480. Part268.Size = Vector3.new(0.730000019, 0.790000021, 0.769999981)
  4481. Part268.CFrame = CFrame.new(-43.7971115, 11.8751106, 59.5210609, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  4482. Part268.Color = Color3.new(0.929412, 0.917647, 0.917647)
  4483. Part268.Position = Vector3.new(-43.7971115, 11.8751106, 59.5210609)
  4484. Part268.Color = Color3.new(0.929412, 0.917647, 0.917647)
  4485. Attachment269.Name = "Attachment0"
  4486. Attachment269.Parent = Part268
  4487. Attachment269.Rotation = Vector3.new(0, 0, 90)
  4488. Attachment269.CFrame = CFrame.new(-0.0599999987, 0.395000011, 0.0199999996, 0, -1, 0, 1, 0, -0, 0, 0, 1)
  4489. Attachment269.Position = Vector3.new(-0.0599999987, 0.395000011, 0.0199999996)
  4490. Attachment269.Axis = Vector3.new(0, 1, 0)
  4491. Attachment269.Orientation = Vector3.new(0, 0, 90)
  4492. RopeConstraint270.Parent = Part268
  4493. RopeConstraint270.Visible = true
  4494. RopeConstraint270.Attachment0 = Attachment269
  4495. RopeConstraint270.Attachment1 = Attachment330
  4496. RopeConstraint270.Length = 1.8314459323883
  4497. PointLight271.Parent = Part268
  4498. PointLight271.Brightness = 8
  4499. Part272.Parent = Model79
  4500. Part272.Material = Enum.Material.Wood
  4501. Part272.BrickColor = BrickColor.new("Brown")
  4502. Part272.Rotation = Vector3.new(0, -79.8099976, 0)
  4503. Part272.Anchored = true
  4504. Part272.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  4505. Part272.CFrame = CFrame.new(-29.0175037, 13.8901424, 65.1070023, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4506. Part272.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4507. Part272.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4508. Part272.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4509. Part272.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4510. Part272.Position = Vector3.new(-29.0175037, 13.8901424, 65.1070023)
  4511. Part272.Orientation = Vector3.new(0, -79.8099976, 0)
  4512. Part272.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4513. Part273.Parent = Model79
  4514. Part273.Material = Enum.Material.Wood
  4515. Part273.BrickColor = BrickColor.new("Brown")
  4516. Part273.Rotation = Vector3.new(0, -79.8099976, 0)
  4517. Part273.Anchored = true
  4518. Part273.Size = Vector3.new(0.200000003, 0.359999657, 5.67000008)
  4519. Part273.CFrame = CFrame.new(-29.0617962, 7.58017969, 65.114975, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4520. Part273.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4521. Part273.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4522. Part273.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4523. Part273.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4524. Part273.Position = Vector3.new(-29.0617962, 7.58017969, 65.114975)
  4525. Part273.Orientation = Vector3.new(0, -79.8099976, 0)
  4526. Part273.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4527. Part274.Parent = Model79
  4528. Part274.Material = Enum.Material.Brick
  4529. Part274.BrickColor = BrickColor.new("Dark taupe")
  4530. Part274.Rotation = Vector3.new(24.1199989, 0, 0)
  4531. Part274.Anchored = true
  4532. Part274.Size = Vector3.new(27.5599995, 0.200000003, 15.0500002)
  4533. Part274.CFrame = CFrame.new(-44.6521454, 17.2825546, 66.3524628, 1, 3.65328603e-08, 8.16000636e-08, 0, 0.912703216, -0.40862304, -8.94048071e-08, 0.40862304, 0.912703276)
  4534. Part274.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4535. Part274.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4536. Part274.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4537. Part274.Position = Vector3.new(-44.6521454, 17.2825546, 66.3524628)
  4538. Part274.Orientation = Vector3.new(24.1199989, 0, 0)
  4539. Part274.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4540. Part275.Parent = Model79
  4541. Part275.Material = Enum.Material.Wood
  4542. Part275.BrickColor = BrickColor.new("Brown")
  4543. Part275.Rotation = Vector3.new(0, -79.8099976, 0)
  4544. Part275.Anchored = true
  4545. Part275.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  4546. Part275.CFrame = CFrame.new(-29.0175037, 0.530191898, 65.1070023, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4547. Part275.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4548. Part275.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4549. Part275.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4550. Part275.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4551. Part275.Position = Vector3.new(-29.0175037, 0.530191898, 65.1070023)
  4552. Part275.Orientation = Vector3.new(0, -79.8099976, 0)
  4553. Part275.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4554. Part276.Parent = Model79
  4555. Part276.Material = Enum.Material.Ice
  4556. Part276.BrickColor = BrickColor.new("Cyan")
  4557. Part276.Transparency = 0.5
  4558. Part276.Rotation = Vector3.new(0, -79.8099976, 0)
  4559. Part276.Anchored = true
  4560. Part276.Size = Vector3.new(0.200000003, 3.01999998, 3.03999996)
  4561. Part276.CFrame = CFrame.new(-29.1379299, 11.0001106, 64.9457779, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4562. Part276.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4563. Part276.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4564. Part276.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4565. Part276.Position = Vector3.new(-29.1379299, 11.0001106, 64.9457779)
  4566. Part276.Orientation = Vector3.new(0, -79.8099976, 0)
  4567. Part276.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4568. Part277.Parent = Model79
  4569. Part277.Material = Enum.Material.Metal
  4570. Part277.Rotation = Vector3.new(-180, 18.7600002, -180)
  4571. Part277.Anchored = true
  4572. Part277.Size = Vector3.new(0.200000003, 0.200000003, 0.49999994)
  4573. Part277.CFrame = CFrame.new(-26.8780861, 7.85018492, 54.9177551, -0.946883142, 0, 0.321577877, 0, 1, 0, -0.321577907, 0, -0.946883142)
  4574. Part277.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4575. Part277.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4576. Part277.Position = Vector3.new(-26.8780861, 7.85018492, 54.9177551)
  4577. Part277.Orientation = Vector3.new(0, 161.23999, 0)
  4578. Part278.Parent = Model79
  4579. Part278.Material = Enum.Material.Wood
  4580. Part278.BrickColor = BrickColor.new("Brown")
  4581. Part278.Rotation = Vector3.new(0, 71.2399979, 0)
  4582. Part278.Anchored = true
  4583. Part278.Size = Vector3.new(0.270000011, 3.04999971, 0.280000001)
  4584. Part278.CFrame = CFrame.new(-29.2303429, 11.0151606, 54.5360756, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4585. Part278.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4586. Part278.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4587. Part278.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4588. Part278.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4589. Part278.Position = Vector3.new(-29.2303429, 11.0151606, 54.5360756)
  4590. Part278.Orientation = Vector3.new(0, 71.2399979, 0)
  4591. Part278.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4592. Part279.Parent = Model79
  4593. Part279.Material = Enum.Material.Wood
  4594. Part279.BrickColor = BrickColor.new("Brown")
  4595. Part279.Rotation = Vector3.new(0, 71.2399979, 0)
  4596. Part279.Anchored = true
  4597. Part279.Size = Vector3.new(0.25, 0.359999657, 3.03999996)
  4598. Part279.CFrame = CFrame.new(-29.2366009, 11.1002226, 54.5233841, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4599. Part279.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4600. Part279.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4601. Part279.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4602. Part279.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4603. Part279.Position = Vector3.new(-29.2366009, 11.1002226, 54.5233841)
  4604. Part279.Orientation = Vector3.new(0, 71.2399979, 0)
  4605. Part279.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4606. Part280.Parent = Model79
  4607. Part280.Material = Enum.Material.Wood
  4608. Part280.BrickColor = BrickColor.new("Brown")
  4609. Part280.Rotation = Vector3.new(0, 71.2399979, 0)
  4610. Part280.Anchored = true
  4611. Part280.Size = Vector3.new(0.200000003, 13.6999989, 0.319999993)
  4612. Part280.CFrame = CFrame.new(-31.7526646, 7.20011568, 53.4735031, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4613. Part280.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4614. Part280.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4615. Part280.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4616. Part280.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4617. Part280.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4618. Part280.Position = Vector3.new(-31.7526646, 7.20011568, 53.4735031)
  4619. Part280.Orientation = Vector3.new(0, 71.2399979, 0)
  4620. Part280.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4621. Part281.Parent = Model79
  4622. Part281.Material = Enum.Material.Wood
  4623. Part281.BrickColor = BrickColor.new("Brown")
  4624. Part281.Rotation = Vector3.new(0, -79.8099976, 0)
  4625. Part281.Anchored = true
  4626. Part281.Size = Vector3.new(0.200000003, 13.7299995, 0.319999993)
  4627. Part281.CFrame = CFrame.new(-31.7438965, 7.20510912, 65.5969696, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4628. Part281.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4629. Part281.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4630. Part281.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4631. Part281.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4632. Part281.Position = Vector3.new(-31.7438965, 7.20510912, 65.5969696)
  4633. Part281.Orientation = Vector3.new(0, -79.8099976, 0)
  4634. Part281.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4635. Part282.Parent = Model79
  4636. Part282.Material = Enum.Material.Wood
  4637. Part282.BrickColor = BrickColor.new("Brown")
  4638. Part282.Rotation = Vector3.new(0, -79.8099976, 0)
  4639. Part282.Anchored = true
  4640. Part282.Size = Vector3.new(0.270000011, 3.04999971, 0.280000001)
  4641. Part282.CFrame = CFrame.new(-29.1504192, 10.9851131, 64.9327621, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4642. Part282.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4643. Part282.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4644. Part282.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4645. Part282.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4646. Part282.Position = Vector3.new(-29.1504192, 10.9851131, 64.9327621)
  4647. Part282.Orientation = Vector3.new(0, -79.8099976, 0)
  4648. Part282.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4649. Part283.Parent = Model79
  4650. Part283.Material = Enum.Material.Metal
  4651. Part283.Rotation = Vector3.new(89.6699982, -0.109999999, -161.23999)
  4652. Part283.Anchored = true
  4653. Part283.Size = Vector3.new(0.200000003, 0.200000003, 1.02999997)
  4654. Part283.CFrame = CFrame.new(-26.8271694, 7.42516565, 54.7678032, -0.946883142, 0.321571887, -0.00196575886, 0, -0.00611285446, -0.999981344, -0.321577907, -0.946865439, 0.00578815863)
  4655. Part283.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4656. Part283.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4657. Part283.Position = Vector3.new(-26.8271694, 7.42516565, 54.7678032)
  4658. Part283.Orientation = Vector3.new(89.6500015, -18.7600002, 180)
  4659. Part284.Parent = Model79
  4660. Part284.Material = Enum.Material.Ice
  4661. Part284.BrickColor = BrickColor.new("Cyan")
  4662. Part284.Transparency = 0.5
  4663. Part284.Rotation = Vector3.new(0, 71.2399979, 0)
  4664. Part284.Anchored = true
  4665. Part284.Size = Vector3.new(0.200000003, 3.01999998, 3.03999996)
  4666. Part284.CFrame = CFrame.new(-29.2349777, 11.0301609, 54.5186234, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4667. Part284.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4668. Part284.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4669. Part284.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4670. Part284.Position = Vector3.new(-29.2349777, 11.0301609, 54.5186234)
  4671. Part284.Orientation = Vector3.new(0, 71.2399979, 0)
  4672. Part284.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4673. Part285.Parent = Model79
  4674. Part285.Material = Enum.Material.Wood
  4675. Part285.BrickColor = BrickColor.new("Brown")
  4676. Part285.Rotation = Vector3.new(0, -79.8099976, 0)
  4677. Part285.Anchored = true
  4678. Part285.Size = Vector3.new(0.200000003, 13.7299995, 0.319999993)
  4679. Part285.CFrame = CFrame.new(-26.2812786, 7.12517595, 64.6152649, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4680. Part285.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4681. Part285.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4682. Part285.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4683. Part285.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4684. Part285.Position = Vector3.new(-26.2812786, 7.12517595, 64.6152649)
  4685. Part285.Orientation = Vector3.new(0, -79.8099976, 0)
  4686. Part285.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4687. Part286.Parent = Model79
  4688. Part286.Material = Enum.Material.Brick
  4689. Part286.BrickColor = BrickColor.new("Dark taupe")
  4690. Part286.Rotation = Vector3.new(-24.1199989, 0, 0)
  4691. Part286.Anchored = true
  4692. Part286.Size = Vector3.new(27.6200008, 0.200000003, 15.0099993)
  4693. Part286.CFrame = CFrame.new(-44.6621208, 17.2784729, 52.730545, 1, -3.65328603e-08, 8.16000636e-08, 0, 0.912703216, 0.40862304, -8.94048071e-08, -0.40862304, 0.912703276)
  4694. Part286.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4695. Part286.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4696. Part286.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4697. Part286.Position = Vector3.new(-44.6621208, 17.2784729, 52.730545)
  4698. Part286.Orientation = Vector3.new(-24.1199989, 0, 0)
  4699. Part286.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4700. Part287.Parent = Model79
  4701. Part287.Material = Enum.Material.Wood
  4702. Part287.BrickColor = BrickColor.new("Brown")
  4703. Part287.Rotation = Vector3.new(0, 71.2399979, 0)
  4704. Part287.Anchored = true
  4705. Part287.Size = Vector3.new(0.200000003, 13.7299995, 0.319999993)
  4706. Part287.CFrame = CFrame.new(-26.6772747, 6.96518898, 55.197155, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4707. Part287.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4708. Part287.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4709. Part287.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4710. Part287.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4711. Part287.Position = Vector3.new(-26.6772747, 6.96518898, 55.197155)
  4712. Part287.Orientation = Vector3.new(0, 71.2399979, 0)
  4713. Part287.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4714. Part288.Parent = Model79
  4715. Part288.Material = Enum.Material.Wood
  4716. Part288.BrickColor = BrickColor.new("Brown")
  4717. Part288.Rotation = Vector3.new(0, -79.8099976, 0)
  4718. Part288.Anchored = true
  4719. Part288.Size = Vector3.new(0.25, 0.359999657, 3.03999996)
  4720. Part288.CFrame = CFrame.new(-29.1388073, 11.0701733, 64.9408569, 0.176877856, 0, -0.984232843, 0, 1, 0, 0.984232783, 0, 0.176877871)
  4721. Part288.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4722. Part288.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4723. Part288.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4724. Part288.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4725. Part288.Position = Vector3.new(-29.1388073, 11.0701733, 64.9408569)
  4726. Part288.Orientation = Vector3.new(0, -79.8099976, 0)
  4727. Part288.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4728. Part289.Parent = Model79
  4729. Part289.Material = Enum.Material.Wood
  4730. Part289.BrickColor = BrickColor.new("Brown")
  4731. Part289.Rotation = Vector3.new(0, 71.2399979, 0)
  4732. Part289.Anchored = true
  4733. Part289.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  4734. Part289.CFrame = CFrame.new(-29.1771069, 0.520151138, 54.3481979, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4735. Part289.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4736. Part289.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4737. Part289.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4738. Part289.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4739. Part289.Position = Vector3.new(-29.1771069, 0.520151138, 54.3481979)
  4740. Part289.Orientation = Vector3.new(0, 71.2399979, 0)
  4741. Part289.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4742. Part290.Parent = Model79
  4743. Part290.Material = Enum.Material.Wood
  4744. Part290.BrickColor = BrickColor.new("Brown")
  4745. Part290.Rotation = Vector3.new(0, 71.2399979, 0)
  4746. Part290.Anchored = true
  4747. Part290.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  4748. Part290.CFrame = CFrame.new(-29.1771069, 13.8801165, 54.3481979, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4749. Part290.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4750. Part290.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4751. Part290.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4752. Part290.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4753. Part290.Position = Vector3.new(-29.1771069, 13.8801165, 54.3481979)
  4754. Part290.Orientation = Vector3.new(0, 71.2399979, 0)
  4755. Part290.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4756. Part291.Parent = Model79
  4757. Part291.Material = Enum.Material.Wood
  4758. Part291.BrickColor = BrickColor.new("Brown")
  4759. Part291.Rotation = Vector3.new(0, 71.2399979, 0)
  4760. Part291.Anchored = true
  4761. Part291.Size = Vector3.new(0.200000003, 0.359999657, 5.63000011)
  4762. Part291.CFrame = CFrame.new(-29.2386684, 7.57014465, 54.3272934, 0.321578115, 0, 0.946883082, 0, 1, 0, -0.946883082, 0, 0.321578145)
  4763. Part291.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4764. Part291.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4765. Part291.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4766. Part291.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4767. Part291.Position = Vector3.new(-29.2386684, 7.57014465, 54.3272934)
  4768. Part291.Orientation = Vector3.new(0, 71.2399979, 0)
  4769. Part291.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4770. Part292.Parent = Model79
  4771. Part292.Material = Enum.Material.Wood
  4772. Part292.BrickColor = BrickColor.new("Brown")
  4773. Part292.Rotation = Vector3.new(-180, 79.8099976, -180)
  4774. Part292.Anchored = true
  4775. Part292.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  4776. Part292.CFrame = CFrame.new(-87.5618744, 13.8901424, 53.9942284, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4777. Part292.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4778. Part292.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4779. Part292.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4780. Part292.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4781. Part292.Position = Vector3.new(-87.5618744, 13.8901424, 53.9942284)
  4782. Part292.Orientation = Vector3.new(0, 100.189995, 0)
  4783. Part292.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4784. Part293.Parent = Model79
  4785. Part293.Material = Enum.Material.Wood
  4786. Part293.BrickColor = BrickColor.new("Brown")
  4787. Part293.Rotation = Vector3.new(-180, 79.8099976, -180)
  4788. Part293.Anchored = true
  4789. Part293.Size = Vector3.new(0.200000003, 0.359999657, 5.67000008)
  4790. Part293.CFrame = CFrame.new(-87.5175705, 7.58017969, 53.9862709, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4791. Part293.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4792. Part293.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4793. Part293.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4794. Part293.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4795. Part293.Position = Vector3.new(-87.5175705, 7.58017969, 53.9862709)
  4796. Part293.Orientation = Vector3.new(0, 100.189995, 0)
  4797. Part293.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4798. Part294.Parent = Model79
  4799. Part294.Material = Enum.Material.Brick
  4800. Part294.BrickColor = BrickColor.new("Dark taupe")
  4801. Part294.Rotation = Vector3.new(155.87999, 0, 180)
  4802. Part294.Anchored = true
  4803. Part294.Size = Vector3.new(27.5599995, 0.200000003, 15.0500002)
  4804. Part294.CFrame = CFrame.new(-71.9272079, 17.2825546, 52.7487755, -1, -4.87109872e-08, -1.08800918e-07, 0, 0.912702918, -0.408623934, 1.19207371e-07, -0.408623964, -0.912702918)
  4805. Part294.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4806. Part294.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4807. Part294.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4808. Part294.Position = Vector3.new(-71.9272079, 17.2825546, 52.7487755)
  4809. Part294.Orientation = Vector3.new(24.1199989, -180, 0)
  4810. Part294.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4811. Part295.Parent = Model79
  4812. Part295.Material = Enum.Material.Wood
  4813. Part295.BrickColor = BrickColor.new("Brown")
  4814. Part295.Rotation = Vector3.new(-180, 79.8099976, -180)
  4815. Part295.Anchored = true
  4816. Part295.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  4817. Part295.CFrame = CFrame.new(-87.5618744, 0.530191422, 53.9942284, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4818. Part295.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4819. Part295.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4820. Part295.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4821. Part295.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4822. Part295.Position = Vector3.new(-87.5618744, 0.530191422, 53.9942284)
  4823. Part295.Orientation = Vector3.new(0, 100.189995, 0)
  4824. Part295.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4825. Part296.Parent = Model79
  4826. Part296.Material = Enum.Material.Ice
  4827. Part296.BrickColor = BrickColor.new("Cyan")
  4828. Part296.Transparency = 0.5
  4829. Part296.Rotation = Vector3.new(-180, 79.8099976, -180)
  4830. Part296.Anchored = true
  4831. Part296.Size = Vector3.new(0.200000003, 3.01999998, 3.03999996)
  4832. Part296.CFrame = CFrame.new(-87.441452, 11.0001106, 54.1554642, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4833. Part296.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4834. Part296.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4835. Part296.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4836. Part296.Position = Vector3.new(-87.441452, 11.0001106, 54.1554642)
  4837. Part296.Orientation = Vector3.new(0, 100.189995, 0)
  4838. Part296.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4839. Part297.Parent = Model79
  4840. Part297.Material = Enum.Material.Metal
  4841. Part297.Rotation = Vector3.new(0, -18.7600002, 0)
  4842. Part297.Anchored = true
  4843. Part297.Size = Vector3.new(0.200000003, 0.200000003, 0.49999994)
  4844. Part297.CFrame = CFrame.new(-89.7012863, 7.85018492, 64.1835175, 0.946883142, 0, -0.321577877, 0, 1, 0, 0.321577907, 0, 0.946883082)
  4845. Part297.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4846. Part297.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4847. Part297.Position = Vector3.new(-89.7012863, 7.85018492, 64.1835175)
  4848. Part297.Orientation = Vector3.new(0, -18.7600002, 0)
  4849. Part298.Parent = Model79
  4850. Part298.Material = Enum.Material.Wood
  4851. Part298.BrickColor = BrickColor.new("Brown")
  4852. Part298.Rotation = Vector3.new(-180, -71.2399979, -180)
  4853. Part298.Anchored = true
  4854. Part298.Size = Vector3.new(0.270000011, 3.04999971, 0.280000001)
  4855. Part298.CFrame = CFrame.new(-87.3490295, 11.0151606, 64.5651932, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  4856. Part298.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4857. Part298.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4858. Part298.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4859. Part298.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4860. Part298.Position = Vector3.new(-87.3490295, 11.0151606, 64.5651932)
  4861. Part298.Orientation = Vector3.new(0, -108.759995, 0)
  4862. Part298.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4863. Part299.Parent = Model79
  4864. Part299.Material = Enum.Material.Wood
  4865. Part299.BrickColor = BrickColor.new("Brown")
  4866. Part299.Rotation = Vector3.new(-180, -71.2399979, -180)
  4867. Part299.Anchored = true
  4868. Part299.Size = Vector3.new(0.25, 0.359999657, 3.03999996)
  4869. Part299.CFrame = CFrame.new(-87.3427658, 11.1002226, 64.5778885, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  4870. Part299.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4871. Part299.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4872. Part299.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4873. Part299.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4874. Part299.Position = Vector3.new(-87.3427658, 11.1002226, 64.5778885)
  4875. Part299.Orientation = Vector3.new(0, -108.759995, 0)
  4876. Part299.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4877. Part300.Parent = Model79
  4878. Part300.Material = Enum.Material.Wood
  4879. Part300.BrickColor = BrickColor.new("Brown")
  4880. Part300.Rotation = Vector3.new(-180, -71.2399979, -180)
  4881. Part300.Anchored = true
  4882. Part300.Size = Vector3.new(0.200000003, 13.6999989, 0.319999993)
  4883. Part300.CFrame = CFrame.new(-84.8266983, 7.20011568, 65.6277695, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  4884. Part300.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  4885. Part300.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4886. Part300.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4887. Part300.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4888. Part300.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4889. Part300.Position = Vector3.new(-84.8266983, 7.20011568, 65.6277695)
  4890. Part300.Orientation = Vector3.new(0, -108.759995, 0)
  4891. Part300.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4892. Part301.Parent = Model79
  4893. Part301.Material = Enum.Material.Wood
  4894. Part301.BrickColor = BrickColor.new("Brown")
  4895. Part301.Rotation = Vector3.new(-180, 79.8099976, -180)
  4896. Part301.Anchored = true
  4897. Part301.Size = Vector3.new(0.200000003, 13.7299995, 0.319999993)
  4898. Part301.CFrame = CFrame.new(-84.8354721, 7.20510912, 53.504261, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4899. Part301.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4900. Part301.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4901. Part301.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4902. Part301.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4903. Part301.Position = Vector3.new(-84.8354721, 7.20510912, 53.504261)
  4904. Part301.Orientation = Vector3.new(0, 100.189995, 0)
  4905. Part301.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4906. Part302.Parent = Model79
  4907. Part302.Material = Enum.Material.Wood
  4908. Part302.BrickColor = BrickColor.new("Brown")
  4909. Part302.Rotation = Vector3.new(-180, 79.8099976, -180)
  4910. Part302.Anchored = true
  4911. Part302.Size = Vector3.new(0.270000011, 3.04999971, 0.280000001)
  4912. Part302.CFrame = CFrame.new(-87.4289627, 10.9851131, 54.1684761, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4913. Part302.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4914. Part302.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4915. Part302.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4916. Part302.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4917. Part302.Position = Vector3.new(-87.4289627, 10.9851131, 54.1684761)
  4918. Part302.Orientation = Vector3.new(0, 100.189995, 0)
  4919. Part302.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4920. Part303.Parent = Model79
  4921. Part303.Material = Enum.Material.Metal
  4922. Part303.Rotation = Vector3.new(90.3299942, 0.109999999, 18.7600002)
  4923. Part303.Anchored = true
  4924. Part303.Size = Vector3.new(0.200000003, 0.200000003, 1.02999997)
  4925. Part303.CFrame = CFrame.new(-89.7522049, 7.42516565, 64.3334656, 0.946883142, -0.321571887, 0.00196575397, 0, -0.00611283863, -0.999981344, 0.321577907, 0.946865439, -0.00578814372)
  4926. Part303.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4927. Part303.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4928. Part303.Position = Vector3.new(-89.7522049, 7.42516565, 64.3334656)
  4929. Part303.Orientation = Vector3.new(89.6500015, 161.23999, 180)
  4930. Part304.Parent = Model79
  4931. Part304.Material = Enum.Material.Ice
  4932. Part304.BrickColor = BrickColor.new("Cyan")
  4933. Part304.Transparency = 0.5
  4934. Part304.Rotation = Vector3.new(-180, -71.2399979, -180)
  4935. Part304.Anchored = true
  4936. Part304.Size = Vector3.new(0.200000003, 3.01999998, 3.03999996)
  4937. Part304.CFrame = CFrame.new(-87.3443909, 11.0301609, 64.582634, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  4938. Part304.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4939. Part304.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4940. Part304.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4941. Part304.Position = Vector3.new(-87.3443909, 11.0301609, 64.582634)
  4942. Part304.Orientation = Vector3.new(0, -108.759995, 0)
  4943. Part304.Color = Color3.new(0.0156863, 0.686275, 0.92549)
  4944. Part305.Parent = Model79
  4945. Part305.Material = Enum.Material.Wood
  4946. Part305.BrickColor = BrickColor.new("Brown")
  4947. Part305.Rotation = Vector3.new(-180, 79.8099976, -180)
  4948. Part305.Anchored = true
  4949. Part305.Size = Vector3.new(0.200000003, 13.7299995, 0.319999993)
  4950. Part305.CFrame = CFrame.new(-90.2980957, 7.12517595, 54.4859772, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4951. Part305.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4952. Part305.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4953. Part305.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4954. Part305.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4955. Part305.Position = Vector3.new(-90.2980957, 7.12517595, 54.4859772)
  4956. Part305.Orientation = Vector3.new(0, 100.189995, 0)
  4957. Part305.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4958. Part306.Parent = Model79
  4959. Part306.Material = Enum.Material.Brick
  4960. Part306.BrickColor = BrickColor.new("Dark taupe")
  4961. Part306.Rotation = Vector3.new(-155.87999, 0, -180)
  4962. Part306.Anchored = true
  4963. Part306.Size = Vector3.new(27.6200008, 0.200000003, 15.0099993)
  4964. Part306.CFrame = CFrame.new(-71.9172134, 17.2784729, 66.3707199, -1, 4.87109872e-08, -1.08800918e-07, 0, 0.912702918, 0.408623934, 1.19207371e-07, 0.408623964, -0.912702918)
  4965. Part306.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4966. Part306.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4967. Part306.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4968. Part306.Position = Vector3.new(-71.9172134, 17.2784729, 66.3707199)
  4969. Part306.Orientation = Vector3.new(-24.1199989, -180, 0)
  4970. Part306.Color = Color3.new(0.352941, 0.298039, 0.258824)
  4971. Part307.Parent = Model79
  4972. Part307.Material = Enum.Material.Wood
  4973. Part307.BrickColor = BrickColor.new("Brown")
  4974. Part307.Rotation = Vector3.new(-180, -71.2399979, -180)
  4975. Part307.Anchored = true
  4976. Part307.Size = Vector3.new(0.200000003, 13.7299995, 0.319999993)
  4977. Part307.CFrame = CFrame.new(-89.9020996, 6.96518898, 63.90411, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  4978. Part307.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4979. Part307.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4980. Part307.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4981. Part307.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4982. Part307.Position = Vector3.new(-89.9020996, 6.96518898, 63.90411)
  4983. Part307.Orientation = Vector3.new(0, -108.759995, 0)
  4984. Part307.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4985. Part308.Parent = Model79
  4986. Part308.Material = Enum.Material.Wood
  4987. Part308.BrickColor = BrickColor.new("Brown")
  4988. Part308.Rotation = Vector3.new(-180, 79.8099976, -180)
  4989. Part308.Anchored = true
  4990. Part308.Size = Vector3.new(0.25, 0.359999657, 3.03999996)
  4991. Part308.CFrame = CFrame.new(-87.440567, 11.0701733, 54.1603813, -0.176877782, 0, 0.984232903, 0, 1, 0, -0.984232783, 0, -0.176877812)
  4992. Part308.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  4993. Part308.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  4994. Part308.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  4995. Part308.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4996. Part308.Position = Vector3.new(-87.440567, 11.0701733, 54.1603813)
  4997. Part308.Orientation = Vector3.new(0, 100.189995, 0)
  4998. Part308.Color = Color3.new(0.486275, 0.360784, 0.27451)
  4999. Part309.Parent = Model79
  5000. Part309.Material = Enum.Material.Wood
  5001. Part309.BrickColor = BrickColor.new("Brown")
  5002. Part309.Rotation = Vector3.new(-180, -71.2399979, -180)
  5003. Part309.Anchored = true
  5004. Part309.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  5005. Part309.CFrame = CFrame.new(-87.4022598, 0.520151138, 64.7530594, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  5006. Part309.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5007. Part309.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5008. Part309.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5009. Part309.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5010. Part309.Position = Vector3.new(-87.4022598, 0.520151138, 64.7530594)
  5011. Part309.Orientation = Vector3.new(0, -108.759995, 0)
  5012. Part309.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5013. Part310.Parent = Model79
  5014. Part310.Material = Enum.Material.Wood
  5015. Part310.BrickColor = BrickColor.new("Brown")
  5016. Part310.Rotation = Vector3.new(-180, -71.2399979, -180)
  5017. Part310.Anchored = true
  5018. Part310.Size = Vector3.new(0.200000003, 0.359999657, 5.76000023)
  5019. Part310.CFrame = CFrame.new(-87.4022598, 13.8801165, 64.7530594, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  5020. Part310.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5021. Part310.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5022. Part310.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5023. Part310.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5024. Part310.Position = Vector3.new(-87.4022598, 13.8801165, 64.7530594)
  5025. Part310.Orientation = Vector3.new(0, -108.759995, 0)
  5026. Part310.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5027. Part311.Parent = Model79
  5028. Part311.Material = Enum.Material.Wood
  5029. Part311.BrickColor = BrickColor.new("Brown")
  5030. Part311.Rotation = Vector3.new(-180, -71.2399979, -180)
  5031. Part311.Anchored = true
  5032. Part311.Size = Vector3.new(0.200000003, 0.359999657, 5.63000011)
  5033. Part311.CFrame = CFrame.new(-87.3406982, 7.57014465, 64.7739716, -0.321578085, 0, -0.946883082, 0, 1, 0, 0.946883023, 0, -0.321578115)
  5034. Part311.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5035. Part311.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5036. Part311.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5037. Part311.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5038. Part311.Position = Vector3.new(-87.3406982, 7.57014465, 64.7739716)
  5039. Part311.Orientation = Vector3.new(0, -108.759995, 0)
  5040. Part311.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5041. Part312.Parent = Model79
  5042. Part312.Material = Enum.Material.Wood
  5043. Part312.BrickColor = BrickColor.new("Brown")
  5044. Part312.Rotation = Vector3.new(-180, -90, 0)
  5045. Part312.Anchored = true
  5046. Part312.Size = Vector3.new(10.5, 13.8999996, 0.200000003)
  5047. Part312.CFrame = CFrame.new(-58.1224709, 7.15011597, 51.6058769, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5048. Part312.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5049. Part312.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5050. Part312.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5051. Part312.Position = Vector3.new(-58.1224709, 7.15011597, 51.6058769)
  5052. Part312.Orientation = Vector3.new(0, -90, 180)
  5053. Part312.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5054. Part313.Parent = Model79
  5055. Part313.Material = Enum.Material.Wood
  5056. Part313.BrickColor = BrickColor.new("Brown")
  5057. Part313.Anchored = true
  5058. Part313.Size = Vector3.new(26.3999996, 13.9000006, 0.200000003)
  5059. Part313.CFrame = CFrame.new(-45.0221329, 7.15011597, 46.2557526, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  5060. Part313.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5061. Part313.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5062. Part313.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5063. Part313.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5064. Part313.Position = Vector3.new(-45.0221329, 7.15011597, 46.2557526)
  5065. Part313.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5066. Part314.Parent = Model79
  5067. Part314.Material = Enum.Material.Wood
  5068. Part314.BrickColor = BrickColor.new("Brown")
  5069. Part314.Rotation = Vector3.new(-180, -90, 0)
  5070. Part314.Anchored = true
  5071. Part314.Size = Vector3.new(26.3999996, 0.200000003, 26.3500004)
  5072. Part314.CFrame = CFrame.new(-44.8471222, 0.200117111, 59.5560722, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5073. Part314.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5074. Part314.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5075. Part314.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5076. Part314.Position = Vector3.new(-44.8471222, 0.200117111, 59.5560722)
  5077. Part314.Orientation = Vector3.new(0, -90, 180)
  5078. Part314.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5079. Part315.Parent = Model79
  5080. Part315.Material = Enum.Material.Wood
  5081. Part315.BrickColor = BrickColor.new("Brown")
  5082. Part315.Anchored = true
  5083. Part315.Size = Vector3.new(26.3999996, 13.9000006, 0.200000003)
  5084. Part315.CFrame = CFrame.new(-45.0221367, 7.15011597, 72.8563766, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  5085. Part315.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5086. Part315.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5087. Part315.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5088. Part315.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5089. Part315.Position = Vector3.new(-45.0221367, 7.15011597, 72.8563766)
  5090. Part315.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5091. Part316.Parent = Model79
  5092. Part316.Material = Enum.Material.Wood
  5093. Part316.BrickColor = BrickColor.new("Brown")
  5094. Part316.Rotation = Vector3.new(-180, -90, 0)
  5095. Part316.Anchored = true
  5096. Part316.Size = Vector3.new(7.39999962, 13.9000006, 0.200000003)
  5097. Part316.CFrame = CFrame.new(-31.9218349, 7.15011597, 69.0562973, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5098. Part316.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5099. Part316.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5100. Part316.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5101. Part316.Position = Vector3.new(-31.9218349, 7.15011597, 69.0562973)
  5102. Part316.Orientation = Vector3.new(0, -90, 180)
  5103. Part316.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5104. Part317.Parent = Model79
  5105. Part317.Material = Enum.Material.Wood
  5106. Part317.BrickColor = BrickColor.new("Brown")
  5107. Part317.Rotation = Vector3.new(-180, -90, 0)
  5108. Part317.Anchored = true
  5109. Part317.Size = Vector3.new(7.39999962, 13.8999996, 0.200000003)
  5110. Part317.CFrame = CFrame.new(-31.9218254, 7.15011597, 50.0558205, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5111. Part317.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5112. Part317.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  5113. Part317.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5114. Part317.Position = Vector3.new(-31.9218254, 7.15011597, 50.0558205)
  5115. Part317.Orientation = Vector3.new(0, -90, 180)
  5116. Part317.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5117. Part318.Parent = Model79
  5118. Part318.Material = Enum.Material.Wood
  5119. Part318.BrickColor = BrickColor.new("Brown")
  5120. Part318.Rotation = Vector3.new(-180, -90, 0)
  5121. Part318.Anchored = true
  5122. Part318.Size = Vector3.new(26.3999996, 5.99999952, 0.200000003)
  5123. Part318.CFrame = CFrame.new(-58.1224709, 11.1001158, 59.5560722, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5124. Part318.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5125. Part318.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5126. Part318.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5127. Part318.Position = Vector3.new(-58.1224709, 11.1001158, 59.5560722)
  5128. Part318.Orientation = Vector3.new(0, -90, 180)
  5129. Part318.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5130. Part319.Parent = Model79
  5131. Part319.Material = Enum.Material.Wood
  5132. Part319.BrickColor = BrickColor.new("Brown")
  5133. Part319.Rotation = Vector3.new(-180, -90, 0)
  5134. Part319.Anchored = true
  5135. Part319.Size = Vector3.new(10.5, 13.8999996, 0.699999988)
  5136. Part319.CFrame = CFrame.new(-58.3724785, 7.15011597, 67.5062561, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5137. Part319.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5138. Part319.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5139. Part319.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5140. Part319.Position = Vector3.new(-58.3724785, 7.15011597, 67.5062561)
  5141. Part319.Orientation = Vector3.new(0, -90, 180)
  5142. Part319.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5143. Part320.Parent = Model79
  5144. Part320.Material = Enum.Material.Wood
  5145. Part320.BrickColor = BrickColor.new("Brown")
  5146. Part320.Rotation = Vector3.new(-180, -90, 0)
  5147. Part320.Anchored = true
  5148. Part320.Size = Vector3.new(26.3999996, 5.89999962, 0.200000048)
  5149. Part320.CFrame = CFrame.new(-58.5624619, 11.1501141, 59.7460823, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5150. Part320.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5151. Part320.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5152. Part320.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5153. Part320.Position = Vector3.new(-58.5624619, 11.1501141, 59.7460823)
  5154. Part320.Orientation = Vector3.new(0, -90, 180)
  5155. Part320.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5156. Part321.Parent = Model79
  5157. Part321.Material = Enum.Material.Wood
  5158. Part321.BrickColor = BrickColor.new("Brown")
  5159. Part321.Rotation = Vector3.new(-180, -90, 0)
  5160. Part321.Anchored = true
  5161. Part321.Size = Vector3.new(26.3999996, 1.99999964, 0.600000024)
  5162. Part321.CFrame = CFrame.new(-58.3624573, 1.20011425, 59.7460823, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5163. Part321.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5164. Part321.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5165. Part321.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5166. Part321.Position = Vector3.new(-58.3624573, 1.20011425, 59.7460823)
  5167. Part321.Orientation = Vector3.new(0, -90, 180)
  5168. Part321.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5169. Part322.Parent = Model79
  5170. Part322.Material = Enum.Material.Wood
  5171. Part322.BrickColor = BrickColor.new("Brown")
  5172. Part322.Rotation = Vector3.new(-180, -90, 0)
  5173. Part322.Anchored = true
  5174. Part322.Size = Vector3.new(10.3999996, 8.89999962, 0.200000048)
  5175. Part322.CFrame = CFrame.new(-58.5624619, 4.65011406, 51.7458839, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5176. Part322.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5177. Part322.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5178. Part322.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5179. Part322.Position = Vector3.new(-58.5624619, 4.65011406, 51.7458839)
  5180. Part322.Orientation = Vector3.new(0, -90, 180)
  5181. Part322.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5182. Part323.Parent = Model79
  5183. Part323.Material = Enum.Material.Wood
  5184. Part323.BrickColor = BrickColor.new("Brown")
  5185. Part323.Rotation = Vector3.new(-180, -90, 0)
  5186. Part323.Anchored = true
  5187. Part323.Size = Vector3.new(7.39999962, 13.8999996, 0.200000763)
  5188. Part323.CFrame = CFrame.new(-84.5630875, 7.15011406, 69.2463074, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5189. Part323.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5190. Part323.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5191. Part323.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5192. Part323.Position = Vector3.new(-84.5630875, 7.15011406, 69.2463074)
  5193. Part323.Orientation = Vector3.new(0, -90, 180)
  5194. Part323.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5195. Part324.Parent = Model79
  5196. Part324.Material = Enum.Material.Wood
  5197. Part324.BrickColor = BrickColor.new("Brown")
  5198. Part324.Rotation = Vector3.new(-180, -90, 0)
  5199. Part324.Anchored = true
  5200. Part324.Size = Vector3.new(7.39999962, 13.8999996, 0.200000763)
  5201. Part324.CFrame = CFrame.new(-84.5630875, 7.15011406, 50.2458496, 1.19206419e-07, 0, -1, 0, -1, 0, -1, 0, -1.19206419e-07)
  5202. Part324.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  5203. Part324.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5204. Part324.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5205. Part324.Position = Vector3.new(-84.5630875, 7.15011406, 50.2458496)
  5206. Part324.Orientation = Vector3.new(0, -90, 180)
  5207. Part324.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5208. WedgePart325.Parent = Model79
  5209. WedgePart325.Material = Enum.Material.Wood
  5210. WedgePart325.BrickColor = BrickColor.new("Brown")
  5211. WedgePart325.Anchored = true
  5212. WedgePart325.Size = Vector3.new(26.9099998, 6.11999989, 13.6700001)
  5213. WedgePart325.CFrame = CFrame.new(-44.5721703, 17.1601143, 52.8199997, 1, 0, 1.19207371e-07, 0, 1, 0, -1.19207371e-07, 0, 1)
  5214. WedgePart325.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5215. WedgePart325.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5216. WedgePart325.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5217. WedgePart325.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5218. WedgePart325.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5219. WedgePart325.Position = Vector3.new(-44.5721703, 17.1601143, 52.8199997)
  5220. WedgePart325.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5221. Attachment326.Name = "Attachment1"
  5222. Attachment326.Parent = WedgePart325
  5223. Attachment326.Rotation = Vector3.new(-180, 0, -90)
  5224. Attachment326.CFrame = CFrame.new(-1.22000003, -3.05999994, 6.81999969, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  5225. Attachment326.Position = Vector3.new(-1.22000003, -3.05999994, 6.81999969)
  5226. Attachment326.Axis = Vector3.new(0, 1, 0)
  5227. Attachment326.Orientation = Vector3.new(-0, 180, 90)
  5228. WedgePart327.Parent = Model79
  5229. WedgePart327.Material = Enum.Material.Wood
  5230. WedgePart327.BrickColor = BrickColor.new("Brown")
  5231. WedgePart327.Rotation = Vector3.new(-180, 0, -180)
  5232. WedgePart327.Anchored = true
  5233. WedgePart327.Size = Vector3.new(26.9099998, 6.11999989, 13.6700001)
  5234. WedgePart327.CFrame = CFrame.new(-71.4721985, 17.2601147, 66.1903687, -1, 0, -1.19207371e-07, 0, 1, 0, 1.19207371e-07, 0, -1)
  5235. WedgePart327.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5236. WedgePart327.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5237. WedgePart327.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5238. WedgePart327.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5239. WedgePart327.Position = Vector3.new(-71.4721985, 17.2601147, 66.1903687)
  5240. WedgePart327.Orientation = Vector3.new(0, -180, 0)
  5241. WedgePart327.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5242. WedgePart328.Parent = Model79
  5243. WedgePart328.Material = Enum.Material.Wood
  5244. WedgePart328.BrickColor = BrickColor.new("Brown")
  5245. WedgePart328.Anchored = true
  5246. WedgePart328.Size = Vector3.new(26.9099998, 6.11999989, 13.6700001)
  5247. WedgePart328.CFrame = CFrame.new(-71.5071335, 17.2601147, 52.9109116, 1, 0, 8.94048142e-08, 0, 1, 0, -8.94048071e-08, 0, 1)
  5248. WedgePart328.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5249. WedgePart328.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5250. WedgePart328.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5251. WedgePart328.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5252. WedgePart328.Position = Vector3.new(-71.5071335, 17.2601147, 52.9109116)
  5253. WedgePart328.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5254. WedgePart329.Parent = Model79
  5255. WedgePart329.Material = Enum.Material.Wood
  5256. WedgePart329.BrickColor = BrickColor.new("Brown")
  5257. WedgePart329.Rotation = Vector3.new(-180, 0, -180)
  5258. WedgePart329.Anchored = true
  5259. WedgePart329.Size = Vector3.new(26.9099998, 6.11999989, 13.6700001)
  5260. WedgePart329.CFrame = CFrame.new(-44.5071526, 17.1601143, 66.4812317, -1, 0, -8.94048142e-08, 0, 1, 0, 8.94048071e-08, 0, -1)
  5261. WedgePart329.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  5262. WedgePart329.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  5263. WedgePart329.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  5264. WedgePart329.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  5265. WedgePart329.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5266. WedgePart329.Position = Vector3.new(-44.5071526, 17.1601143, 66.4812317)
  5267. WedgePart329.Orientation = Vector3.new(0, -180, 0)
  5268. WedgePart329.Color = Color3.new(0.486275, 0.360784, 0.27451)
  5269. Attachment330.Name = "Attachment1"
  5270. Attachment330.Parent = WedgePart329
  5271. Attachment330.Rotation = Vector3.new(-180, 0, -90)
  5272. Attachment330.CFrame = CFrame.new(-1.22000003, -3.05999994, 6.81999969, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  5273. Attachment330.Position = Vector3.new(-1.22000003, -3.05999994, 6.81999969)
  5274. Attachment330.Axis = Vector3.new(0, 1, 0)
  5275. Attachment330.Orientation = Vector3.new(-0, 180, 90)
  5276. Model331.Parent = Model0
  5277. Model332.Parent = Model331
  5278. Part333.Parent = Model332
  5279. Part333.BrickColor = BrickColor.new("Pastel Blue")
  5280. Part333.Reflectance = 0.30000001192093
  5281. Part333.Transparency = 0.89999997615814
  5282. Part333.Rotation = Vector3.new(0, 0, -90)
  5283. Part333.Anchored = true
  5284. Part333.FormFactor = Enum.FormFactor.Plate
  5285. Part333.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5286. Part333.CFrame = CFrame.new(-58.4000015, 6.3500185, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5287. Part333.BottomSurface = Enum.SurfaceType.Smooth
  5288. Part333.TopSurface = Enum.SurfaceType.Smooth
  5289. Part333.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5290. Part333.Position = Vector3.new(-58.4000015, 6.3500185, 61.8000031)
  5291. Part333.Orientation = Vector3.new(0, 0, -90)
  5292. Part333.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5293. Script334.Name = "Script2"
  5294. Script334.Parent = Part333
  5295. table.insert(cors,sandbox(Script334,function()
  5296. function x(hit)
  5297. script.Parent.Anchored = false
  5298. script.Parent.GlassSound:Play()
  5299. script:remove()
  5300. end
  5301.  
  5302. script.Parent.Touched:connect(x)
  5303. end))
  5304. BlockMesh335.Parent = Part333
  5305. BlockMesh335.Scale = Vector3.new(1, 0, 1)
  5306. BlockMesh335.Scale = Vector3.new(1, 0, 1)
  5307. Sound336.Name = "GlassSound"
  5308. Sound336.Parent = Part333
  5309. Sound336.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5310. Sound336.PlayOnRemove = true
  5311. Part337.Parent = Model332
  5312. Part337.BrickColor = BrickColor.new("Pastel Blue")
  5313. Part337.Reflectance = 0.30000001192093
  5314. Part337.Transparency = 0.89999997615814
  5315. Part337.Rotation = Vector3.new(0, 0, -90)
  5316. Part337.Anchored = true
  5317. Part337.FormFactor = Enum.FormFactor.Plate
  5318. Part337.Size = Vector3.new(1.04999995, 0.139999986, 0.699999928)
  5319. Part337.CFrame = CFrame.new(-58.4000015, 7.2250185, 62.1500015, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5320. Part337.BottomSurface = Enum.SurfaceType.Smooth
  5321. Part337.TopSurface = Enum.SurfaceType.Smooth
  5322. Part337.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5323. Part337.Position = Vector3.new(-58.4000015, 7.2250185, 62.1500015)
  5324. Part337.Orientation = Vector3.new(0, 0, -90)
  5325. Part337.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5326. Script338.Name = "Script2"
  5327. Script338.Parent = Part337
  5328. table.insert(cors,sandbox(Script338,function()
  5329. function x(hit)
  5330. script.Parent.Anchored = false
  5331. script.Parent.GlassSound:Play()
  5332. script:remove()
  5333. end
  5334.  
  5335. script.Parent.Touched:connect(x)
  5336. end))
  5337. BlockMesh339.Parent = Part337
  5338. BlockMesh339.Scale = Vector3.new(1, 0, 1)
  5339. BlockMesh339.Scale = Vector3.new(1, 0, 1)
  5340. Sound340.Name = "GlassSound"
  5341. Sound340.Parent = Part337
  5342. Sound340.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5343. Sound340.PlayOnRemove = true
  5344. Part341.Parent = Model332
  5345. Part341.BrickColor = BrickColor.new("Pastel Blue")
  5346. Part341.Reflectance = 0.30000001192093
  5347. Part341.Transparency = 0.89999997615814
  5348. Part341.Rotation = Vector3.new(0, 0, -90)
  5349. Part341.Anchored = true
  5350. Part341.FormFactor = Enum.FormFactor.Plate
  5351. Part341.Size = Vector3.new(1.04999995, 0.139999986, 0.699999928)
  5352. Part341.CFrame = CFrame.new(-58.4000015, 7.2250185, 61.4499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5353. Part341.BottomSurface = Enum.SurfaceType.Smooth
  5354. Part341.TopSurface = Enum.SurfaceType.Smooth
  5355. Part341.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5356. Part341.Position = Vector3.new(-58.4000015, 7.2250185, 61.4499969)
  5357. Part341.Orientation = Vector3.new(0, 0, -90)
  5358. Part341.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5359. Script342.Name = "Script2"
  5360. Script342.Parent = Part341
  5361. table.insert(cors,sandbox(Script342,function()
  5362. function x(hit)
  5363. script.Parent.Anchored = false
  5364. script.Parent.GlassSound:Play()
  5365. script:remove()
  5366. end
  5367.  
  5368. script.Parent.Touched:connect(x)
  5369. end))
  5370. BlockMesh343.Parent = Part341
  5371. BlockMesh343.Scale = Vector3.new(1, 0, 1)
  5372. BlockMesh343.Scale = Vector3.new(1, 0, 1)
  5373. Sound344.Name = "GlassSound"
  5374. Sound344.Parent = Part341
  5375. Sound344.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5376. Sound344.PlayOnRemove = true
  5377. Part345.Parent = Model332
  5378. Part345.BrickColor = BrickColor.new("Pastel Blue")
  5379. Part345.Reflectance = 0.30000001192093
  5380. Part345.Transparency = 0.89999997615814
  5381. Part345.Rotation = Vector3.new(0, 0, -90)
  5382. Part345.Anchored = true
  5383. Part345.FormFactor = Enum.FormFactor.Plate
  5384. Part345.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  5385. Part345.CFrame = CFrame.new(-58.4000015, 8.27501774, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5386. Part345.BottomSurface = Enum.SurfaceType.Smooth
  5387. Part345.TopSurface = Enum.SurfaceType.Smooth
  5388. Part345.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5389. Part345.Position = Vector3.new(-58.4000015, 8.27501774, 61.8000031)
  5390. Part345.Orientation = Vector3.new(0, 0, -90)
  5391. Part345.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5392. Script346.Name = "Script2"
  5393. Script346.Parent = Part345
  5394. table.insert(cors,sandbox(Script346,function()
  5395. function x(hit)
  5396. script.Parent.Anchored = false
  5397. script.Parent.GlassSound:Play()
  5398. script:remove()
  5399. end
  5400.  
  5401. script.Parent.Touched:connect(x)
  5402. end))
  5403. BlockMesh347.Parent = Part345
  5404. BlockMesh347.Scale = Vector3.new(1, 0, 1)
  5405. BlockMesh347.Scale = Vector3.new(1, 0, 1)
  5406. Sound348.Name = "GlassSound"
  5407. Sound348.Parent = Part345
  5408. Sound348.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5409. Sound348.PlayOnRemove = true
  5410. Part349.Parent = Model332
  5411. Part349.BrickColor = BrickColor.new("Pastel Blue")
  5412. Part349.Reflectance = 0.30000001192093
  5413. Part349.Transparency = 0.89999997615814
  5414. Part349.Rotation = Vector3.new(0, 0, -90)
  5415. Part349.Anchored = true
  5416. Part349.FormFactor = Enum.FormFactor.Plate
  5417. Part349.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5418. Part349.CFrame = CFrame.new(-58.4000015, 9.15001774, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5419. Part349.BottomSurface = Enum.SurfaceType.Smooth
  5420. Part349.TopSurface = Enum.SurfaceType.Smooth
  5421. Part349.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5422. Part349.Position = Vector3.new(-58.4000015, 9.15001774, 61.8000031)
  5423. Part349.Orientation = Vector3.new(0, 0, -90)
  5424. Part349.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5425. Script350.Name = "Script2"
  5426. Script350.Parent = Part349
  5427. table.insert(cors,sandbox(Script350,function()
  5428. function x(hit)
  5429. script.Parent.Anchored = false
  5430. script.Parent.GlassSound:Play()
  5431. script:remove()
  5432. end
  5433.  
  5434. script.Parent.Touched:connect(x)
  5435. end))
  5436. BlockMesh351.Parent = Part349
  5437. BlockMesh351.Scale = Vector3.new(1, 0, 1)
  5438. BlockMesh351.Scale = Vector3.new(1, 0, 1)
  5439. Sound352.Name = "GlassSound"
  5440. Sound352.Parent = Part349
  5441. Sound352.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5442. Sound352.PlayOnRemove = true
  5443. Part353.Parent = Model332
  5444. Part353.BrickColor = BrickColor.new("Pastel Blue")
  5445. Part353.Reflectance = 0.30000001192093
  5446. Part353.Transparency = 0.89999997615814
  5447. Part353.Rotation = Vector3.new(0, 0, -90)
  5448. Part353.Anchored = true
  5449. Part353.FormFactor = Enum.FormFactor.Plate
  5450. Part353.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  5451. Part353.CFrame = CFrame.new(-58.4000015, 10.2000179, 61.9749985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5452. Part353.BottomSurface = Enum.SurfaceType.Smooth
  5453. Part353.TopSurface = Enum.SurfaceType.Smooth
  5454. Part353.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5455. Part353.Position = Vector3.new(-58.4000015, 10.2000179, 61.9749985)
  5456. Part353.Orientation = Vector3.new(0, 0, -90)
  5457. Part353.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5458. Script354.Name = "Script2"
  5459. Script354.Parent = Part353
  5460. table.insert(cors,sandbox(Script354,function()
  5461. function x(hit)
  5462. script.Parent.Anchored = false
  5463. script.Parent.GlassSound:Play()
  5464. script:remove()
  5465. end
  5466.  
  5467. script.Parent.Touched:connect(x)
  5468. end))
  5469. BlockMesh355.Parent = Part353
  5470. BlockMesh355.Scale = Vector3.new(1, 0, 1)
  5471. BlockMesh355.Scale = Vector3.new(1, 0, 1)
  5472. Sound356.Name = "GlassSound"
  5473. Sound356.Parent = Part353
  5474. Sound356.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5475. Sound356.PlayOnRemove = true
  5476. Part357.Parent = Model332
  5477. Part357.BrickColor = BrickColor.new("Pastel Blue")
  5478. Part357.Reflectance = 0.30000001192093
  5479. Part357.Transparency = 0.89999997615814
  5480. Part357.Rotation = Vector3.new(0, 0, -90)
  5481. Part357.Anchored = true
  5482. Part357.FormFactor = Enum.FormFactor.Plate
  5483. Part357.Size = Vector3.new(1.39999986, 0.139999986, 1.39999986)
  5484. Part357.CFrame = CFrame.new(-58.4000015, 10.2000179, 60.75, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5485. Part357.BottomSurface = Enum.SurfaceType.Smooth
  5486. Part357.TopSurface = Enum.SurfaceType.Smooth
  5487. Part357.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5488. Part357.Position = Vector3.new(-58.4000015, 10.2000179, 60.75)
  5489. Part357.Orientation = Vector3.new(0, 0, -90)
  5490. Part357.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5491. Script358.Name = "Script2"
  5492. Script358.Parent = Part357
  5493. table.insert(cors,sandbox(Script358,function()
  5494. function x(hit)
  5495. script.Parent.Anchored = false
  5496. script.Parent.GlassSound:Play()
  5497. script:remove()
  5498. end
  5499.  
  5500. script.Parent.Touched:connect(x)
  5501. end))
  5502. BlockMesh359.Parent = Part357
  5503. BlockMesh359.Scale = Vector3.new(1, 0, 1)
  5504. BlockMesh359.Scale = Vector3.new(1, 0, 1)
  5505. Sound360.Name = "GlassSound"
  5506. Sound360.Parent = Part357
  5507. Sound360.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5508. Sound360.PlayOnRemove = true
  5509. Part361.Parent = Model332
  5510. Part361.BrickColor = BrickColor.new("Pastel Blue")
  5511. Part361.Reflectance = 0.30000001192093
  5512. Part361.Transparency = 0.89999997615814
  5513. Part361.Rotation = Vector3.new(0, 0, -90)
  5514. Part361.Anchored = true
  5515. Part361.FormFactor = Enum.FormFactor.Plate
  5516. Part361.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5517. Part361.CFrame = CFrame.new(-58.4000015, 11.2500172, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5518. Part361.BottomSurface = Enum.SurfaceType.Smooth
  5519. Part361.TopSurface = Enum.SurfaceType.Smooth
  5520. Part361.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5521. Part361.Position = Vector3.new(-58.4000015, 11.2500172, 61.8000031)
  5522. Part361.Orientation = Vector3.new(0, 0, -90)
  5523. Part361.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5524. Script362.Name = "Script2"
  5525. Script362.Parent = Part361
  5526. table.insert(cors,sandbox(Script362,function()
  5527. function x(hit)
  5528. script.Parent.Anchored = false
  5529. script.Parent.GlassSound:Play()
  5530. script:remove()
  5531. end
  5532.  
  5533. script.Parent.Touched:connect(x)
  5534. end))
  5535. BlockMesh363.Parent = Part361
  5536. BlockMesh363.Scale = Vector3.new(1, 0, 1)
  5537. BlockMesh363.Scale = Vector3.new(1, 0, 1)
  5538. Sound364.Name = "GlassSound"
  5539. Sound364.Parent = Part361
  5540. Sound364.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5541. Sound364.PlayOnRemove = true
  5542. Part365.Parent = Model332
  5543. Part365.BrickColor = BrickColor.new("Pastel Blue")
  5544. Part365.Reflectance = 0.30000001192093
  5545. Part365.Transparency = 0.89999997615814
  5546. Part365.Rotation = Vector3.new(0, 0, -90)
  5547. Part365.Anchored = true
  5548. Part365.FormFactor = Enum.FormFactor.Plate
  5549. Part365.Size = Vector3.new(1.39999986, 0.139999986, 1.39999986)
  5550. Part365.CFrame = CFrame.new(-58.4000015, 12.3000174, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5551. Part365.BottomSurface = Enum.SurfaceType.Smooth
  5552. Part365.TopSurface = Enum.SurfaceType.Smooth
  5553. Part365.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5554. Part365.Position = Vector3.new(-58.4000015, 12.3000174, 61.8000031)
  5555. Part365.Orientation = Vector3.new(0, 0, -90)
  5556. Part365.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5557. Script366.Name = "Script2"
  5558. Script366.Parent = Part365
  5559. table.insert(cors,sandbox(Script366,function()
  5560. function x(hit)
  5561. script.Parent.Anchored = false
  5562. script.Parent.GlassSound:Play()
  5563. script:remove()
  5564. end
  5565.  
  5566. script.Parent.Touched:connect(x)
  5567. end))
  5568. BlockMesh367.Parent = Part365
  5569. BlockMesh367.Scale = Vector3.new(1, 0, 1)
  5570. BlockMesh367.Scale = Vector3.new(1, 0, 1)
  5571. Sound368.Name = "GlassSound"
  5572. Sound368.Parent = Part365
  5573. Sound368.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5574. Sound368.PlayOnRemove = true
  5575. Part369.Parent = Model332
  5576. Part369.BrickColor = BrickColor.new("Pastel Blue")
  5577. Part369.Reflectance = 0.30000001192093
  5578. Part369.Transparency = 0.89999997615814
  5579. Part369.Rotation = Vector3.new(0, 0, -90)
  5580. Part369.Anchored = true
  5581. Part369.FormFactor = Enum.FormFactor.Plate
  5582. Part369.Size = Vector3.new(2.0999999, 0.139999986, 0.349999964)
  5583. Part369.CFrame = CFrame.new(-58.4000015, 11.9500179, 60.9250031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5584. Part369.BottomSurface = Enum.SurfaceType.Smooth
  5585. Part369.TopSurface = Enum.SurfaceType.Smooth
  5586. Part369.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5587. Part369.Position = Vector3.new(-58.4000015, 11.9500179, 60.9250031)
  5588. Part369.Orientation = Vector3.new(0, 0, -90)
  5589. Part369.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5590. Script370.Name = "Script2"
  5591. Script370.Parent = Part369
  5592. table.insert(cors,sandbox(Script370,function()
  5593. function x(hit)
  5594. script.Parent.Anchored = false
  5595. script.Parent.GlassSound:Play()
  5596. script:remove()
  5597. end
  5598.  
  5599. script.Parent.Touched:connect(x)
  5600. end))
  5601. BlockMesh371.Parent = Part369
  5602. BlockMesh371.Scale = Vector3.new(1, 0, 1)
  5603. BlockMesh371.Scale = Vector3.new(1, 0, 1)
  5604. Sound372.Name = "GlassSound"
  5605. Sound372.Parent = Part369
  5606. Sound372.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5607. Sound372.PlayOnRemove = true
  5608. Part373.Parent = Model332
  5609. Part373.BrickColor = BrickColor.new("Pastel Blue")
  5610. Part373.Reflectance = 0.30000001192093
  5611. Part373.Transparency = 0.89999997615814
  5612. Part373.Rotation = Vector3.new(0, 0, -90)
  5613. Part373.Anchored = true
  5614. Part373.FormFactor = Enum.FormFactor.Plate
  5615. Part373.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5616. Part373.CFrame = CFrame.new(-58.4000015, 11.9500179, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5617. Part373.BottomSurface = Enum.SurfaceType.Smooth
  5618. Part373.TopSurface = Enum.SurfaceType.Smooth
  5619. Part373.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5620. Part373.Position = Vector3.new(-58.4000015, 11.9500179, 60.0500031)
  5621. Part373.Orientation = Vector3.new(0, 0, -90)
  5622. Part373.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5623. Script374.Name = "Script2"
  5624. Script374.Parent = Part373
  5625. table.insert(cors,sandbox(Script374,function()
  5626. function x(hit)
  5627. script.Parent.Anchored = false
  5628. script.Parent.GlassSound:Play()
  5629. script:remove()
  5630. end
  5631.  
  5632. script.Parent.Touched:connect(x)
  5633. end))
  5634. BlockMesh375.Parent = Part373
  5635. BlockMesh375.Scale = Vector3.new(1, 0, 1)
  5636. BlockMesh375.Scale = Vector3.new(1, 0, 1)
  5637. Sound376.Name = "GlassSound"
  5638. Sound376.Parent = Part373
  5639. Sound376.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5640. Sound376.PlayOnRemove = true
  5641. Part377.Parent = Model332
  5642. Part377.BrickColor = BrickColor.new("Pastel Blue")
  5643. Part377.Reflectance = 0.30000001192093
  5644. Part377.Transparency = 0.89999997615814
  5645. Part377.Rotation = Vector3.new(0, 0, -90)
  5646. Part377.Anchored = true
  5647. Part377.FormFactor = Enum.FormFactor.Plate
  5648. Part377.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5649. Part377.CFrame = CFrame.new(-58.4000015, 11.2500172, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5650. Part377.BottomSurface = Enum.SurfaceType.Smooth
  5651. Part377.TopSurface = Enum.SurfaceType.Smooth
  5652. Part377.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5653. Part377.Position = Vector3.new(-58.4000015, 11.2500172, 60.0500031)
  5654. Part377.Orientation = Vector3.new(0, 0, -90)
  5655. Part377.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5656. Script378.Name = "Script2"
  5657. Script378.Parent = Part377
  5658. table.insert(cors,sandbox(Script378,function()
  5659. function x(hit)
  5660. script.Parent.Anchored = false
  5661. script.Parent.GlassSound:Play()
  5662. script:remove()
  5663. end
  5664.  
  5665. script.Parent.Touched:connect(x)
  5666. end))
  5667. BlockMesh379.Parent = Part377
  5668. BlockMesh379.Scale = Vector3.new(1, 0, 1)
  5669. BlockMesh379.Scale = Vector3.new(1, 0, 1)
  5670. Sound380.Name = "GlassSound"
  5671. Sound380.Parent = Part377
  5672. Sound380.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5673. Sound380.PlayOnRemove = true
  5674. Part381.Parent = Model332
  5675. Part381.BrickColor = BrickColor.new("Pastel Blue")
  5676. Part381.Reflectance = 0.30000001192093
  5677. Part381.Transparency = 0.89999997615814
  5678. Part381.Rotation = Vector3.new(0, 0, -90)
  5679. Part381.Anchored = true
  5680. Part381.FormFactor = Enum.FormFactor.Plate
  5681. Part381.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5682. Part381.CFrame = CFrame.new(-58.4000015, 12.6500177, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5683. Part381.BottomSurface = Enum.SurfaceType.Smooth
  5684. Part381.TopSurface = Enum.SurfaceType.Smooth
  5685. Part381.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5686. Part381.Position = Vector3.new(-58.4000015, 12.6500177, 60.0500031)
  5687. Part381.Orientation = Vector3.new(0, 0, -90)
  5688. Part381.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5689. Script382.Name = "Script2"
  5690. Script382.Parent = Part381
  5691. table.insert(cors,sandbox(Script382,function()
  5692. function x(hit)
  5693. script.Parent.Anchored = false
  5694. script.Parent.GlassSound:Play()
  5695. script:remove()
  5696. end
  5697.  
  5698. script.Parent.Touched:connect(x)
  5699. end))
  5700. BlockMesh383.Parent = Part381
  5701. BlockMesh383.Scale = Vector3.new(1, 0, 1)
  5702. BlockMesh383.Scale = Vector3.new(1, 0, 1)
  5703. Sound384.Name = "GlassSound"
  5704. Sound384.Parent = Part381
  5705. Sound384.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5706. Sound384.PlayOnRemove = true
  5707. Part385.Parent = Model332
  5708. Part385.BrickColor = BrickColor.new("Pastel Blue")
  5709. Part385.Reflectance = 0.30000001192093
  5710. Part385.Transparency = 0.89999997615814
  5711. Part385.Rotation = Vector3.new(0, 0, -90)
  5712. Part385.Anchored = true
  5713. Part385.FormFactor = Enum.FormFactor.Plate
  5714. Part385.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  5715. Part385.CFrame = CFrame.new(-58.4000015, 11.9500179, 59, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5716. Part385.BottomSurface = Enum.SurfaceType.Smooth
  5717. Part385.TopSurface = Enum.SurfaceType.Smooth
  5718. Part385.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5719. Part385.Position = Vector3.new(-58.4000015, 11.9500179, 59)
  5720. Part385.Orientation = Vector3.new(0, 0, -90)
  5721. Part385.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5722. Script386.Name = "Script2"
  5723. Script386.Parent = Part385
  5724. table.insert(cors,sandbox(Script386,function()
  5725. function x(hit)
  5726. script.Parent.Anchored = false
  5727. script.Parent.GlassSound:Play()
  5728. script:remove()
  5729. end
  5730.  
  5731. script.Parent.Touched:connect(x)
  5732. end))
  5733. BlockMesh387.Parent = Part385
  5734. BlockMesh387.Scale = Vector3.new(1, 0, 1)
  5735. BlockMesh387.Scale = Vector3.new(1, 0, 1)
  5736. Sound388.Name = "GlassSound"
  5737. Sound388.Parent = Part385
  5738. Sound388.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5739. Sound388.PlayOnRemove = true
  5740. Part389.Parent = Model332
  5741. Part389.BrickColor = BrickColor.new("Pastel Blue")
  5742. Part389.Reflectance = 0.30000001192093
  5743. Part389.Transparency = 0.89999997615814
  5744. Part389.Rotation = Vector3.new(0, 0, -90)
  5745. Part389.Anchored = true
  5746. Part389.FormFactor = Enum.FormFactor.Plate
  5747. Part389.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5748. Part389.CFrame = CFrame.new(-58.4000015, 10.5500174, 59.3499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5749. Part389.BottomSurface = Enum.SurfaceType.Smooth
  5750. Part389.TopSurface = Enum.SurfaceType.Smooth
  5751. Part389.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5752. Part389.Position = Vector3.new(-58.4000015, 10.5500174, 59.3499985)
  5753. Part389.Orientation = Vector3.new(0, 0, -90)
  5754. Part389.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5755. Script390.Name = "Script2"
  5756. Script390.Parent = Part389
  5757. table.insert(cors,sandbox(Script390,function()
  5758. function x(hit)
  5759. script.Parent.Anchored = false
  5760. script.Parent.GlassSound:Play()
  5761. script:remove()
  5762. end
  5763.  
  5764. script.Parent.Touched:connect(x)
  5765. end))
  5766. BlockMesh391.Parent = Part389
  5767. BlockMesh391.Scale = Vector3.new(1, 0, 1)
  5768. BlockMesh391.Scale = Vector3.new(1, 0, 1)
  5769. Sound392.Name = "GlassSound"
  5770. Sound392.Parent = Part389
  5771. Sound392.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5772. Sound392.PlayOnRemove = true
  5773. Part393.Parent = Model332
  5774. Part393.BrickColor = BrickColor.new("Pastel Blue")
  5775. Part393.Reflectance = 0.30000001192093
  5776. Part393.Transparency = 0.89999997615814
  5777. Part393.Rotation = Vector3.new(0, 0, -90)
  5778. Part393.Anchored = true
  5779. Part393.FormFactor = Enum.FormFactor.Plate
  5780. Part393.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  5781. Part393.CFrame = CFrame.new(-58.4000015, 9.15001774, 59, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5782. Part393.BottomSurface = Enum.SurfaceType.Smooth
  5783. Part393.TopSurface = Enum.SurfaceType.Smooth
  5784. Part393.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5785. Part393.Position = Vector3.new(-58.4000015, 9.15001774, 59)
  5786. Part393.Orientation = Vector3.new(0, 0, -90)
  5787. Part393.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5788. Script394.Name = "Script2"
  5789. Script394.Parent = Part393
  5790. table.insert(cors,sandbox(Script394,function()
  5791. function x(hit)
  5792. script.Parent.Anchored = false
  5793. script.Parent.GlassSound:Play()
  5794. script:remove()
  5795. end
  5796.  
  5797. script.Parent.Touched:connect(x)
  5798. end))
  5799. BlockMesh395.Parent = Part393
  5800. BlockMesh395.Scale = Vector3.new(1, 0, 1)
  5801. BlockMesh395.Scale = Vector3.new(1, 0, 1)
  5802. Sound396.Name = "GlassSound"
  5803. Sound396.Parent = Part393
  5804. Sound396.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5805. Sound396.PlayOnRemove = true
  5806. Part397.Parent = Model332
  5807. Part397.BrickColor = BrickColor.new("Pastel Blue")
  5808. Part397.Reflectance = 0.30000001192093
  5809. Part397.Transparency = 0.89999997615814
  5810. Part397.Rotation = Vector3.new(0, 0, -90)
  5811. Part397.Anchored = true
  5812. Part397.FormFactor = Enum.FormFactor.Plate
  5813. Part397.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5814. Part397.CFrame = CFrame.new(-58.4000015, 9.15001774, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5815. Part397.BottomSurface = Enum.SurfaceType.Smooth
  5816. Part397.TopSurface = Enum.SurfaceType.Smooth
  5817. Part397.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5818. Part397.Position = Vector3.new(-58.4000015, 9.15001774, 60.0500031)
  5819. Part397.Orientation = Vector3.new(0, 0, -90)
  5820. Part397.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5821. Script398.Name = "Script2"
  5822. Script398.Parent = Part397
  5823. table.insert(cors,sandbox(Script398,function()
  5824. function x(hit)
  5825. script.Parent.Anchored = false
  5826. script.Parent.GlassSound:Play()
  5827. script:remove()
  5828. end
  5829.  
  5830. script.Parent.Touched:connect(x)
  5831. end))
  5832. BlockMesh399.Parent = Part397
  5833. BlockMesh399.Scale = Vector3.new(1, 0, 1)
  5834. BlockMesh399.Scale = Vector3.new(1, 0, 1)
  5835. Sound400.Name = "GlassSound"
  5836. Sound400.Parent = Part397
  5837. Sound400.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5838. Sound400.PlayOnRemove = true
  5839. Part401.Parent = Model332
  5840. Part401.BrickColor = BrickColor.new("Pastel Blue")
  5841. Part401.Reflectance = 0.30000001192093
  5842. Part401.Transparency = 0.89999997615814
  5843. Part401.Rotation = Vector3.new(0, 0, -90)
  5844. Part401.Anchored = true
  5845. Part401.FormFactor = Enum.FormFactor.Plate
  5846. Part401.Size = Vector3.new(2.0999999, 0.139999986, 0.349999964)
  5847. Part401.CFrame = CFrame.new(-58.4000015, 8.45001793, 60.9250031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5848. Part401.BottomSurface = Enum.SurfaceType.Smooth
  5849. Part401.TopSurface = Enum.SurfaceType.Smooth
  5850. Part401.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5851. Part401.Position = Vector3.new(-58.4000015, 8.45001793, 60.9250031)
  5852. Part401.Orientation = Vector3.new(0, 0, -90)
  5853. Part401.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5854. Script402.Name = "Script2"
  5855. Script402.Parent = Part401
  5856. table.insert(cors,sandbox(Script402,function()
  5857. function x(hit)
  5858. script.Parent.Anchored = false
  5859. script.Parent.GlassSound:Play()
  5860. script:remove()
  5861. end
  5862.  
  5863. script.Parent.Touched:connect(x)
  5864. end))
  5865. BlockMesh403.Parent = Part401
  5866. BlockMesh403.Scale = Vector3.new(1, 0, 1)
  5867. BlockMesh403.Scale = Vector3.new(1, 0, 1)
  5868. Sound404.Name = "GlassSound"
  5869. Sound404.Parent = Part401
  5870. Sound404.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5871. Sound404.PlayOnRemove = true
  5872. Part405.Parent = Model332
  5873. Part405.BrickColor = BrickColor.new("Pastel Blue")
  5874. Part405.Reflectance = 0.30000001192093
  5875. Part405.Transparency = 0.89999997615814
  5876. Part405.Rotation = Vector3.new(0, 0, -90)
  5877. Part405.Anchored = true
  5878. Part405.FormFactor = Enum.FormFactor.Plate
  5879. Part405.Size = Vector3.new(0.699999928, 0.139999986, 0.699999928)
  5880. Part405.CFrame = CFrame.new(-58.4000015, 9.8500185, 59.6999969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5881. Part405.BottomSurface = Enum.SurfaceType.Smooth
  5882. Part405.TopSurface = Enum.SurfaceType.Smooth
  5883. Part405.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5884. Part405.Position = Vector3.new(-58.4000015, 9.8500185, 59.6999969)
  5885. Part405.Orientation = Vector3.new(0, 0, -90)
  5886. Part405.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5887. Script406.Name = "Script2"
  5888. Script406.Parent = Part405
  5889. table.insert(cors,sandbox(Script406,function()
  5890. function x(hit)
  5891. script.Parent.Anchored = false
  5892. script.Parent.GlassSound:Play()
  5893. script:remove()
  5894. end
  5895.  
  5896. script.Parent.Touched:connect(x)
  5897. end))
  5898. BlockMesh407.Parent = Part405
  5899. BlockMesh407.Scale = Vector3.new(1, 0, 1)
  5900. BlockMesh407.Scale = Vector3.new(1, 0, 1)
  5901. Sound408.Name = "GlassSound"
  5902. Sound408.Parent = Part405
  5903. Sound408.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5904. Sound408.PlayOnRemove = true
  5905. Part409.Parent = Model332
  5906. Part409.BrickColor = BrickColor.new("Pastel Blue")
  5907. Part409.Reflectance = 0.30000001192093
  5908. Part409.Transparency = 0.89999997615814
  5909. Part409.Rotation = Vector3.new(0, 0, -90)
  5910. Part409.Anchored = true
  5911. Part409.FormFactor = Enum.FormFactor.Plate
  5912. Part409.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  5913. Part409.CFrame = CFrame.new(-58.4000015, 8.45001793, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5914. Part409.BottomSurface = Enum.SurfaceType.Smooth
  5915. Part409.TopSurface = Enum.SurfaceType.Smooth
  5916. Part409.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5917. Part409.Position = Vector3.new(-58.4000015, 8.45001793, 60.0500031)
  5918. Part409.Orientation = Vector3.new(0, 0, -90)
  5919. Part409.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5920. Script410.Name = "Script2"
  5921. Script410.Parent = Part409
  5922. table.insert(cors,sandbox(Script410,function()
  5923. function x(hit)
  5924. script.Parent.Anchored = false
  5925. script.Parent.GlassSound:Play()
  5926. script:remove()
  5927. end
  5928.  
  5929. script.Parent.Touched:connect(x)
  5930. end))
  5931. BlockMesh411.Parent = Part409
  5932. BlockMesh411.Scale = Vector3.new(1, 0, 1)
  5933. BlockMesh411.Scale = Vector3.new(1, 0, 1)
  5934. Sound412.Name = "GlassSound"
  5935. Sound412.Parent = Part409
  5936. Sound412.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5937. Sound412.PlayOnRemove = true
  5938. Part413.Parent = Model332
  5939. Part413.BrickColor = BrickColor.new("Pastel Blue")
  5940. Part413.Reflectance = 0.30000001192093
  5941. Part413.Transparency = 0.89999997615814
  5942. Part413.Rotation = Vector3.new(0, 0, -90)
  5943. Part413.Anchored = true
  5944. Part413.FormFactor = Enum.FormFactor.Plate
  5945. Part413.Size = Vector3.new(0.699999928, 0.139999986, 2.0999999)
  5946. Part413.CFrame = CFrame.new(-58.4000015, 7.75001812, 59.6999969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5947. Part413.BottomSurface = Enum.SurfaceType.Smooth
  5948. Part413.TopSurface = Enum.SurfaceType.Smooth
  5949. Part413.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5950. Part413.Position = Vector3.new(-58.4000015, 7.75001812, 59.6999969)
  5951. Part413.Orientation = Vector3.new(0, 0, -90)
  5952. Part413.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5953. Script414.Name = "Script2"
  5954. Script414.Parent = Part413
  5955. table.insert(cors,sandbox(Script414,function()
  5956. function x(hit)
  5957. script.Parent.Anchored = false
  5958. script.Parent.GlassSound:Play()
  5959. script:remove()
  5960. end
  5961.  
  5962. script.Parent.Touched:connect(x)
  5963. end))
  5964. BlockMesh415.Parent = Part413
  5965. BlockMesh415.Scale = Vector3.new(1, 0, 1)
  5966. BlockMesh415.Scale = Vector3.new(1, 0, 1)
  5967. Sound416.Name = "GlassSound"
  5968. Sound416.Parent = Part413
  5969. Sound416.SoundId = "rbxasset://sounds//Glassbreak.wav"
  5970. Sound416.PlayOnRemove = true
  5971. Part417.Parent = Model332
  5972. Part417.BrickColor = BrickColor.new("Pastel Blue")
  5973. Part417.Reflectance = 0.30000001192093
  5974. Part417.Transparency = 0.89999997615814
  5975. Part417.Rotation = Vector3.new(0, 0, -90)
  5976. Part417.Anchored = true
  5977. Part417.FormFactor = Enum.FormFactor.Plate
  5978. Part417.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  5979. Part417.CFrame = CFrame.new(-58.4000015, 6.70001793, 60.5749969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  5980. Part417.BottomSurface = Enum.SurfaceType.Smooth
  5981. Part417.TopSurface = Enum.SurfaceType.Smooth
  5982. Part417.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5983. Part417.Position = Vector3.new(-58.4000015, 6.70001793, 60.5749969)
  5984. Part417.Orientation = Vector3.new(0, 0, -90)
  5985. Part417.Color = Color3.new(0.501961, 0.733333, 0.858824)
  5986. Script418.Name = "Script2"
  5987. Script418.Parent = Part417
  5988. table.insert(cors,sandbox(Script418,function()
  5989. function x(hit)
  5990. script.Parent.Anchored = false
  5991. script.Parent.GlassSound:Play()
  5992. script:remove()
  5993. end
  5994.  
  5995. script.Parent.Touched:connect(x)
  5996. end))
  5997. BlockMesh419.Parent = Part417
  5998. BlockMesh419.Scale = Vector3.new(1, 0, 1)
  5999. BlockMesh419.Scale = Vector3.new(1, 0, 1)
  6000. Sound420.Name = "GlassSound"
  6001. Sound420.Parent = Part417
  6002. Sound420.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6003. Sound420.PlayOnRemove = true
  6004. Part421.Parent = Model332
  6005. Part421.BrickColor = BrickColor.new("Pastel Blue")
  6006. Part421.Reflectance = 0.30000001192093
  6007. Part421.Transparency = 0.89999997615814
  6008. Part421.Rotation = Vector3.new(0, 0, -90)
  6009. Part421.Anchored = true
  6010. Part421.FormFactor = Enum.FormFactor.Plate
  6011. Part421.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  6012. Part421.CFrame = CFrame.new(-58.4000015, 7.05001831, 59.3499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6013. Part421.BottomSurface = Enum.SurfaceType.Smooth
  6014. Part421.TopSurface = Enum.SurfaceType.Smooth
  6015. Part421.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6016. Part421.Position = Vector3.new(-58.4000015, 7.05001831, 59.3499985)
  6017. Part421.Orientation = Vector3.new(0, 0, -90)
  6018. Part421.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6019. Script422.Name = "Script2"
  6020. Script422.Parent = Part421
  6021. table.insert(cors,sandbox(Script422,function()
  6022. function x(hit)
  6023. script.Parent.Anchored = false
  6024. script.Parent.GlassSound:Play()
  6025. script:remove()
  6026. end
  6027.  
  6028. script.Parent.Touched:connect(x)
  6029. end))
  6030. BlockMesh423.Parent = Part421
  6031. BlockMesh423.Scale = Vector3.new(1, 0, 1)
  6032. BlockMesh423.Scale = Vector3.new(1, 0, 1)
  6033. Sound424.Name = "GlassSound"
  6034. Sound424.Parent = Part421
  6035. Sound424.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6036. Sound424.PlayOnRemove = true
  6037. Part425.Parent = Model332
  6038. Part425.BrickColor = BrickColor.new("Pastel Blue")
  6039. Part425.Reflectance = 0.30000001192093
  6040. Part425.Transparency = 0.89999997615814
  6041. Part425.Rotation = Vector3.new(0, 0, -90)
  6042. Part425.Anchored = true
  6043. Part425.FormFactor = Enum.FormFactor.Plate
  6044. Part425.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  6045. Part425.CFrame = CFrame.new(-58.4000015, 6.3500185, 59.3499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6046. Part425.BottomSurface = Enum.SurfaceType.Smooth
  6047. Part425.TopSurface = Enum.SurfaceType.Smooth
  6048. Part425.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6049. Part425.Position = Vector3.new(-58.4000015, 6.3500185, 59.3499985)
  6050. Part425.Orientation = Vector3.new(0, 0, -90)
  6051. Part425.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6052. Script426.Name = "Script2"
  6053. Script426.Parent = Part425
  6054. table.insert(cors,sandbox(Script426,function()
  6055. function x(hit)
  6056. script.Parent.Anchored = false
  6057. script.Parent.GlassSound:Play()
  6058. script:remove()
  6059. end
  6060.  
  6061. script.Parent.Touched:connect(x)
  6062. end))
  6063. BlockMesh427.Parent = Part425
  6064. BlockMesh427.Scale = Vector3.new(1, 0, 1)
  6065. BlockMesh427.Scale = Vector3.new(1, 0, 1)
  6066. Sound428.Name = "GlassSound"
  6067. Sound428.Parent = Part425
  6068. Sound428.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6069. Sound428.PlayOnRemove = true
  6070. Part429.Parent = Model332
  6071. Part429.BrickColor = BrickColor.new("Pastel Blue")
  6072. Part429.Reflectance = 0.30000001192093
  6073. Part429.Transparency = 0.89999997615814
  6074. Part429.Rotation = Vector3.new(0, 0, -90)
  6075. Part429.Anchored = true
  6076. Part429.FormFactor = Enum.FormFactor.Plate
  6077. Part429.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  6078. Part429.CFrame = CFrame.new(-58.4000015, 7.05001831, 58.3000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6079. Part429.BottomSurface = Enum.SurfaceType.Smooth
  6080. Part429.TopSurface = Enum.SurfaceType.Smooth
  6081. Part429.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6082. Part429.Position = Vector3.new(-58.4000015, 7.05001831, 58.3000031)
  6083. Part429.Orientation = Vector3.new(0, 0, -90)
  6084. Part429.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6085. Script430.Name = "Script2"
  6086. Script430.Parent = Part429
  6087. table.insert(cors,sandbox(Script430,function()
  6088. function x(hit)
  6089. script.Parent.Anchored = false
  6090. script.Parent.GlassSound:Play()
  6091. script:remove()
  6092. end
  6093.  
  6094. script.Parent.Touched:connect(x)
  6095. end))
  6096. BlockMesh431.Parent = Part429
  6097. BlockMesh431.Scale = Vector3.new(1, 0, 1)
  6098. BlockMesh431.Scale = Vector3.new(1, 0, 1)
  6099. Sound432.Name = "GlassSound"
  6100. Sound432.Parent = Part429
  6101. Sound432.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6102. Sound432.PlayOnRemove = true
  6103. Part433.Parent = Model332
  6104. Part433.BrickColor = BrickColor.new("Pastel Blue")
  6105. Part433.Reflectance = 0.30000001192093
  6106. Part433.Transparency = 0.89999997615814
  6107. Part433.Rotation = Vector3.new(0, 0, -90)
  6108. Part433.Anchored = true
  6109. Part433.FormFactor = Enum.FormFactor.Plate
  6110. Part433.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  6111. Part433.CFrame = CFrame.new(-58.4000015, 7.57501793, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6112. Part433.BottomSurface = Enum.SurfaceType.Smooth
  6113. Part433.TopSurface = Enum.SurfaceType.Smooth
  6114. Part433.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6115. Part433.Position = Vector3.new(-58.4000015, 7.57501793, 57.25)
  6116. Part433.Orientation = Vector3.new(0, 0, -90)
  6117. Part433.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6118. Script434.Name = "Script2"
  6119. Script434.Parent = Part433
  6120. table.insert(cors,sandbox(Script434,function()
  6121. function x(hit)
  6122. script.Parent.Anchored = false
  6123. script.Parent.GlassSound:Play()
  6124. script:remove()
  6125. end
  6126.  
  6127. script.Parent.Touched:connect(x)
  6128. end))
  6129. BlockMesh435.Parent = Part433
  6130. BlockMesh435.Scale = Vector3.new(1, 0, 1)
  6131. BlockMesh435.Scale = Vector3.new(1, 0, 1)
  6132. Sound436.Name = "GlassSound"
  6133. Sound436.Parent = Part433
  6134. Sound436.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6135. Sound436.PlayOnRemove = true
  6136. Part437.Parent = Model332
  6137. Part437.BrickColor = BrickColor.new("Pastel Blue")
  6138. Part437.Reflectance = 0.30000001192093
  6139. Part437.Transparency = 0.89999997615814
  6140. Part437.Rotation = Vector3.new(0, 0, -90)
  6141. Part437.Anchored = true
  6142. Part437.FormFactor = Enum.FormFactor.Plate
  6143. Part437.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  6144. Part437.CFrame = CFrame.new(-58.4000015, 6.87501812, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6145. Part437.BottomSurface = Enum.SurfaceType.Smooth
  6146. Part437.TopSurface = Enum.SurfaceType.Smooth
  6147. Part437.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6148. Part437.Position = Vector3.new(-58.4000015, 6.87501812, 57.25)
  6149. Part437.Orientation = Vector3.new(0, 0, -90)
  6150. Part437.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6151. Script438.Name = "Script2"
  6152. Script438.Parent = Part437
  6153. table.insert(cors,sandbox(Script438,function()
  6154. function x(hit)
  6155. script.Parent.Anchored = false
  6156. script.Parent.GlassSound:Play()
  6157. script:remove()
  6158. end
  6159.  
  6160. script.Parent.Touched:connect(x)
  6161. end))
  6162. BlockMesh439.Parent = Part437
  6163. BlockMesh439.Scale = Vector3.new(1, 0, 1)
  6164. BlockMesh439.Scale = Vector3.new(1, 0, 1)
  6165. Sound440.Name = "GlassSound"
  6166. Sound440.Parent = Part437
  6167. Sound440.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6168. Sound440.PlayOnRemove = true
  6169. Part441.Parent = Model332
  6170. Part441.BrickColor = BrickColor.new("Pastel Blue")
  6171. Part441.Reflectance = 0.30000001192093
  6172. Part441.Transparency = 0.89999997615814
  6173. Part441.Rotation = Vector3.new(0, 0, -90)
  6174. Part441.Anchored = true
  6175. Part441.FormFactor = Enum.FormFactor.Plate
  6176. Part441.Size = Vector3.new(0.699999928, 0.139999986, 2.44999981)
  6177. Part441.CFrame = CFrame.new(-58.4000015, 6.3500185, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6178. Part441.BottomSurface = Enum.SurfaceType.Smooth
  6179. Part441.TopSurface = Enum.SurfaceType.Smooth
  6180. Part441.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6181. Part441.Position = Vector3.new(-58.4000015, 6.3500185, 56.7249985)
  6182. Part441.Orientation = Vector3.new(0, 0, -90)
  6183. Part441.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6184. Script442.Name = "Script2"
  6185. Script442.Parent = Part441
  6186. table.insert(cors,sandbox(Script442,function()
  6187. function x(hit)
  6188. script.Parent.Anchored = false
  6189. script.Parent.GlassSound:Play()
  6190. script:remove()
  6191. end
  6192.  
  6193. script.Parent.Touched:connect(x)
  6194. end))
  6195. BlockMesh443.Parent = Part441
  6196. BlockMesh443.Scale = Vector3.new(1, 0, 1)
  6197. BlockMesh443.Scale = Vector3.new(1, 0, 1)
  6198. Sound444.Name = "GlassSound"
  6199. Sound444.Parent = Part441
  6200. Sound444.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6201. Sound444.PlayOnRemove = true
  6202. Part445.Parent = Model332
  6203. Part445.BrickColor = BrickColor.new("Pastel Blue")
  6204. Part445.Reflectance = 0.30000001192093
  6205. Part445.Transparency = 0.89999997615814
  6206. Part445.Rotation = Vector3.new(0, 0, -90)
  6207. Part445.Anchored = true
  6208. Part445.FormFactor = Enum.FormFactor.Plate
  6209. Part445.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  6210. Part445.CFrame = CFrame.new(-58.4000015, 7.40001774, 56.0250015, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6211. Part445.BottomSurface = Enum.SurfaceType.Smooth
  6212. Part445.TopSurface = Enum.SurfaceType.Smooth
  6213. Part445.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6214. Part445.Position = Vector3.new(-58.4000015, 7.40001774, 56.0250015)
  6215. Part445.Orientation = Vector3.new(0, 0, -90)
  6216. Part445.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6217. Script446.Name = "Script2"
  6218. Script446.Parent = Part445
  6219. table.insert(cors,sandbox(Script446,function()
  6220. function x(hit)
  6221. script.Parent.Anchored = false
  6222. script.Parent.GlassSound:Play()
  6223. script:remove()
  6224. end
  6225.  
  6226. script.Parent.Touched:connect(x)
  6227. end))
  6228. BlockMesh447.Parent = Part445
  6229. BlockMesh447.Scale = Vector3.new(1, 0, 1)
  6230. BlockMesh447.Scale = Vector3.new(1, 0, 1)
  6231. Sound448.Name = "GlassSound"
  6232. Sound448.Parent = Part445
  6233. Sound448.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6234. Sound448.PlayOnRemove = true
  6235. Part449.Parent = Model332
  6236. Part449.BrickColor = BrickColor.new("Pastel Blue")
  6237. Part449.Reflectance = 0.30000001192093
  6238. Part449.Transparency = 0.89999997615814
  6239. Part449.Rotation = Vector3.new(0, 0, -90)
  6240. Part449.Anchored = true
  6241. Part449.FormFactor = Enum.FormFactor.Plate
  6242. Part449.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  6243. Part449.CFrame = CFrame.new(-58.4000015, 8.80001736, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6244. Part449.BottomSurface = Enum.SurfaceType.Smooth
  6245. Part449.TopSurface = Enum.SurfaceType.Smooth
  6246. Part449.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6247. Part449.Position = Vector3.new(-58.4000015, 8.80001736, 56.7249985)
  6248. Part449.Orientation = Vector3.new(0, 0, -90)
  6249. Part449.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6250. Script450.Name = "Script2"
  6251. Script450.Parent = Part449
  6252. table.insert(cors,sandbox(Script450,function()
  6253. function x(hit)
  6254. script.Parent.Anchored = false
  6255. script.Parent.GlassSound:Play()
  6256. script:remove()
  6257. end
  6258.  
  6259. script.Parent.Touched:connect(x)
  6260. end))
  6261. BlockMesh451.Parent = Part449
  6262. BlockMesh451.Scale = Vector3.new(1, 0, 1)
  6263. BlockMesh451.Scale = Vector3.new(1, 0, 1)
  6264. Sound452.Name = "GlassSound"
  6265. Sound452.Parent = Part449
  6266. Sound452.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6267. Sound452.PlayOnRemove = true
  6268. Part453.Parent = Model332
  6269. Part453.BrickColor = BrickColor.new("Pastel Blue")
  6270. Part453.Reflectance = 0.30000001192093
  6271. Part453.Transparency = 0.89999997615814
  6272. Part453.Rotation = Vector3.new(0, 0, -90)
  6273. Part453.Anchored = true
  6274. Part453.FormFactor = Enum.FormFactor.Plate
  6275. Part453.Size = Vector3.new(1.39999986, 0.139999986, 0.699999928)
  6276. Part453.CFrame = CFrame.new(-58.4000015, 8.80001736, 55.8499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6277. Part453.BottomSurface = Enum.SurfaceType.Smooth
  6278. Part453.TopSurface = Enum.SurfaceType.Smooth
  6279. Part453.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6280. Part453.Position = Vector3.new(-58.4000015, 8.80001736, 55.8499985)
  6281. Part453.Orientation = Vector3.new(0, 0, -90)
  6282. Part453.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6283. Script454.Name = "Script2"
  6284. Script454.Parent = Part453
  6285. table.insert(cors,sandbox(Script454,function()
  6286. function x(hit)
  6287. script.Parent.Anchored = false
  6288. script.Parent.GlassSound:Play()
  6289. script:remove()
  6290. end
  6291.  
  6292. script.Parent.Touched:connect(x)
  6293. end))
  6294. BlockMesh455.Parent = Part453
  6295. BlockMesh455.Scale = Vector3.new(1, 0, 1)
  6296. BlockMesh455.Scale = Vector3.new(1, 0, 1)
  6297. Sound456.Name = "GlassSound"
  6298. Sound456.Parent = Part453
  6299. Sound456.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6300. Sound456.PlayOnRemove = true
  6301. Part457.Parent = Model332
  6302. Part457.BrickColor = BrickColor.new("Pastel Blue")
  6303. Part457.Reflectance = 0.30000001192093
  6304. Part457.Transparency = 0.89999997615814
  6305. Part457.Rotation = Vector3.new(0, 0, -90)
  6306. Part457.Anchored = true
  6307. Part457.FormFactor = Enum.FormFactor.Plate
  6308. Part457.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  6309. Part457.CFrame = CFrame.new(-58.4000015, 8.62501812, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6310. Part457.BottomSurface = Enum.SurfaceType.Smooth
  6311. Part457.TopSurface = Enum.SurfaceType.Smooth
  6312. Part457.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6313. Part457.Position = Vector3.new(-58.4000015, 8.62501812, 57.9499969)
  6314. Part457.Orientation = Vector3.new(0, 0, -90)
  6315. Part457.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6316. Script458.Name = "Script2"
  6317. Script458.Parent = Part457
  6318. table.insert(cors,sandbox(Script458,function()
  6319. function x(hit)
  6320. script.Parent.Anchored = false
  6321. script.Parent.GlassSound:Play()
  6322. script:remove()
  6323. end
  6324.  
  6325. script.Parent.Touched:connect(x)
  6326. end))
  6327. BlockMesh459.Parent = Part457
  6328. BlockMesh459.Scale = Vector3.new(1, 0, 1)
  6329. BlockMesh459.Scale = Vector3.new(1, 0, 1)
  6330. Sound460.Name = "GlassSound"
  6331. Sound460.Parent = Part457
  6332. Sound460.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6333. Sound460.PlayOnRemove = true
  6334. Part461.Parent = Model332
  6335. Part461.BrickColor = BrickColor.new("Pastel Blue")
  6336. Part461.Reflectance = 0.30000001192093
  6337. Part461.Transparency = 0.89999997615814
  6338. Part461.Rotation = Vector3.new(0, 0, -90)
  6339. Part461.Anchored = true
  6340. Part461.FormFactor = Enum.FormFactor.Plate
  6341. Part461.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  6342. Part461.CFrame = CFrame.new(-58.4000015, 10.5500174, 58.3000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6343. Part461.BottomSurface = Enum.SurfaceType.Smooth
  6344. Part461.TopSurface = Enum.SurfaceType.Smooth
  6345. Part461.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6346. Part461.Position = Vector3.new(-58.4000015, 10.5500174, 58.3000031)
  6347. Part461.Orientation = Vector3.new(0, 0, -90)
  6348. Part461.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6349. Script462.Name = "Script2"
  6350. Script462.Parent = Part461
  6351. table.insert(cors,sandbox(Script462,function()
  6352. function x(hit)
  6353. script.Parent.Anchored = false
  6354. script.Parent.GlassSound:Play()
  6355. script:remove()
  6356. end
  6357.  
  6358. script.Parent.Touched:connect(x)
  6359. end))
  6360. BlockMesh463.Parent = Part461
  6361. BlockMesh463.Scale = Vector3.new(1, 0, 1)
  6362. BlockMesh463.Scale = Vector3.new(1, 0, 1)
  6363. Sound464.Name = "GlassSound"
  6364. Sound464.Parent = Part461
  6365. Sound464.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6366. Sound464.PlayOnRemove = true
  6367. Part465.Parent = Model332
  6368. Part465.BrickColor = BrickColor.new("Pastel Blue")
  6369. Part465.Reflectance = 0.30000001192093
  6370. Part465.Transparency = 0.89999997615814
  6371. Part465.Rotation = Vector3.new(0, 0, -90)
  6372. Part465.Anchored = true
  6373. Part465.FormFactor = Enum.FormFactor.Plate
  6374. Part465.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  6375. Part465.CFrame = CFrame.new(-58.4000015, 9.32501793, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6376. Part465.BottomSurface = Enum.SurfaceType.Smooth
  6377. Part465.TopSurface = Enum.SurfaceType.Smooth
  6378. Part465.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6379. Part465.Position = Vector3.new(-58.4000015, 9.32501793, 57.9499969)
  6380. Part465.Orientation = Vector3.new(0, 0, -90)
  6381. Part465.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6382. Script466.Name = "Script2"
  6383. Script466.Parent = Part465
  6384. table.insert(cors,sandbox(Script466,function()
  6385. function x(hit)
  6386. script.Parent.Anchored = false
  6387. script.Parent.GlassSound:Play()
  6388. script:remove()
  6389. end
  6390.  
  6391. script.Parent.Touched:connect(x)
  6392. end))
  6393. BlockMesh467.Parent = Part465
  6394. BlockMesh467.Scale = Vector3.new(1, 0, 1)
  6395. BlockMesh467.Scale = Vector3.new(1, 0, 1)
  6396. Sound468.Name = "GlassSound"
  6397. Sound468.Parent = Part465
  6398. Sound468.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6399. Sound468.PlayOnRemove = true
  6400. Part469.Parent = Model332
  6401. Part469.BrickColor = BrickColor.new("Pastel Blue")
  6402. Part469.Reflectance = 0.30000001192093
  6403. Part469.Transparency = 0.89999997615814
  6404. Part469.Rotation = Vector3.new(0, 0, -90)
  6405. Part469.Anchored = true
  6406. Part469.FormFactor = Enum.FormFactor.Plate
  6407. Part469.Size = Vector3.new(0.699999928, 0.139999986, 2.44999981)
  6408. Part469.CFrame = CFrame.new(-58.4000015, 9.8500185, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6409. Part469.BottomSurface = Enum.SurfaceType.Smooth
  6410. Part469.TopSurface = Enum.SurfaceType.Smooth
  6411. Part469.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6412. Part469.Position = Vector3.new(-58.4000015, 9.8500185, 56.7249985)
  6413. Part469.Orientation = Vector3.new(0, 0, -90)
  6414. Part469.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6415. Script470.Name = "Script2"
  6416. Script470.Parent = Part469
  6417. table.insert(cors,sandbox(Script470,function()
  6418. function x(hit)
  6419. script.Parent.Anchored = false
  6420. script.Parent.GlassSound:Play()
  6421. script:remove()
  6422. end
  6423.  
  6424. script.Parent.Touched:connect(x)
  6425. end))
  6426. BlockMesh471.Parent = Part469
  6427. BlockMesh471.Scale = Vector3.new(1, 0, 1)
  6428. BlockMesh471.Scale = Vector3.new(1, 0, 1)
  6429. Sound472.Name = "GlassSound"
  6430. Sound472.Parent = Part469
  6431. Sound472.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6432. Sound472.PlayOnRemove = true
  6433. Part473.Parent = Model332
  6434. Part473.BrickColor = BrickColor.new("Pastel Blue")
  6435. Part473.Reflectance = 0.30000001192093
  6436. Part473.Transparency = 0.89999997615814
  6437. Part473.Rotation = Vector3.new(0, 0, -90)
  6438. Part473.Anchored = true
  6439. Part473.FormFactor = Enum.FormFactor.Plate
  6440. Part473.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  6441. Part473.CFrame = CFrame.new(-58.4000015, 10.3750181, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6442. Part473.BottomSurface = Enum.SurfaceType.Smooth
  6443. Part473.TopSurface = Enum.SurfaceType.Smooth
  6444. Part473.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6445. Part473.Position = Vector3.new(-58.4000015, 10.3750181, 57.25)
  6446. Part473.Orientation = Vector3.new(0, 0, -90)
  6447. Part473.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6448. Script474.Name = "Script2"
  6449. Script474.Parent = Part473
  6450. table.insert(cors,sandbox(Script474,function()
  6451. function x(hit)
  6452. script.Parent.Anchored = false
  6453. script.Parent.GlassSound:Play()
  6454. script:remove()
  6455. end
  6456.  
  6457. script.Parent.Touched:connect(x)
  6458. end))
  6459. BlockMesh475.Parent = Part473
  6460. BlockMesh475.Scale = Vector3.new(1, 0, 1)
  6461. BlockMesh475.Scale = Vector3.new(1, 0, 1)
  6462. Sound476.Name = "GlassSound"
  6463. Sound476.Parent = Part473
  6464. Sound476.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6465. Sound476.PlayOnRemove = true
  6466. Part477.Parent = Model332
  6467. Part477.BrickColor = BrickColor.new("Pastel Blue")
  6468. Part477.Reflectance = 0.30000001192093
  6469. Part477.Transparency = 0.89999997615814
  6470. Part477.Rotation = Vector3.new(0, 0, -90)
  6471. Part477.Anchored = true
  6472. Part477.FormFactor = Enum.FormFactor.Plate
  6473. Part477.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  6474. Part477.CFrame = CFrame.new(-58.4000015, 11.0750179, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6475. Part477.BottomSurface = Enum.SurfaceType.Smooth
  6476. Part477.TopSurface = Enum.SurfaceType.Smooth
  6477. Part477.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6478. Part477.Position = Vector3.new(-58.4000015, 11.0750179, 57.25)
  6479. Part477.Orientation = Vector3.new(0, 0, -90)
  6480. Part477.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6481. Script478.Name = "Script2"
  6482. Script478.Parent = Part477
  6483. table.insert(cors,sandbox(Script478,function()
  6484. function x(hit)
  6485. script.Parent.Anchored = false
  6486. script.Parent.GlassSound:Play()
  6487. script:remove()
  6488. end
  6489.  
  6490. script.Parent.Touched:connect(x)
  6491. end))
  6492. BlockMesh479.Parent = Part477
  6493. BlockMesh479.Scale = Vector3.new(1, 0, 1)
  6494. BlockMesh479.Scale = Vector3.new(1, 0, 1)
  6495. Sound480.Name = "GlassSound"
  6496. Sound480.Parent = Part477
  6497. Sound480.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6498. Sound480.PlayOnRemove = true
  6499. Part481.Parent = Model332
  6500. Part481.BrickColor = BrickColor.new("Pastel Blue")
  6501. Part481.Reflectance = 0.30000001192093
  6502. Part481.Transparency = 0.89999997615814
  6503. Part481.Rotation = Vector3.new(0, 0, -90)
  6504. Part481.Anchored = true
  6505. Part481.FormFactor = Enum.FormFactor.Plate
  6506. Part481.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  6507. Part481.CFrame = CFrame.new(-58.4000015, 12.1250172, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6508. Part481.BottomSurface = Enum.SurfaceType.Smooth
  6509. Part481.TopSurface = Enum.SurfaceType.Smooth
  6510. Part481.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6511. Part481.Position = Vector3.new(-58.4000015, 12.1250172, 57.9499969)
  6512. Part481.Orientation = Vector3.new(0, 0, -90)
  6513. Part481.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6514. Script482.Name = "Script2"
  6515. Script482.Parent = Part481
  6516. table.insert(cors,sandbox(Script482,function()
  6517. function x(hit)
  6518. script.Parent.Anchored = false
  6519. script.Parent.GlassSound:Play()
  6520. script:remove()
  6521. end
  6522.  
  6523. script.Parent.Touched:connect(x)
  6524. end))
  6525. BlockMesh483.Parent = Part481
  6526. BlockMesh483.Scale = Vector3.new(1, 0, 1)
  6527. BlockMesh483.Scale = Vector3.new(1, 0, 1)
  6528. Sound484.Name = "GlassSound"
  6529. Sound484.Parent = Part481
  6530. Sound484.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6531. Sound484.PlayOnRemove = true
  6532. Part485.Parent = Model332
  6533. Part485.BrickColor = BrickColor.new("Pastel Blue")
  6534. Part485.Reflectance = 0.30000001192093
  6535. Part485.Transparency = 0.89999997615814
  6536. Part485.Rotation = Vector3.new(0, 0, -90)
  6537. Part485.Anchored = true
  6538. Part485.FormFactor = Enum.FormFactor.Plate
  6539. Part485.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  6540. Part485.CFrame = CFrame.new(-58.4000015, 12.8250179, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6541. Part485.BottomSurface = Enum.SurfaceType.Smooth
  6542. Part485.TopSurface = Enum.SurfaceType.Smooth
  6543. Part485.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6544. Part485.Position = Vector3.new(-58.4000015, 12.8250179, 57.9499969)
  6545. Part485.Orientation = Vector3.new(0, 0, -90)
  6546. Part485.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6547. Script486.Name = "Script2"
  6548. Script486.Parent = Part485
  6549. table.insert(cors,sandbox(Script486,function()
  6550. function x(hit)
  6551. script.Parent.Anchored = false
  6552. script.Parent.GlassSound:Play()
  6553. script:remove()
  6554. end
  6555.  
  6556. script.Parent.Touched:connect(x)
  6557. end))
  6558. BlockMesh487.Parent = Part485
  6559. BlockMesh487.Scale = Vector3.new(1, 0, 1)
  6560. BlockMesh487.Scale = Vector3.new(1, 0, 1)
  6561. Sound488.Name = "GlassSound"
  6562. Sound488.Parent = Part485
  6563. Sound488.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6564. Sound488.PlayOnRemove = true
  6565. Part489.Parent = Model332
  6566. Part489.BrickColor = BrickColor.new("Pastel Blue")
  6567. Part489.Reflectance = 0.30000001192093
  6568. Part489.Transparency = 0.89999997615814
  6569. Part489.Rotation = Vector3.new(0, 0, -90)
  6570. Part489.Anchored = true
  6571. Part489.FormFactor = Enum.FormFactor.Plate
  6572. Part489.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  6573. Part489.CFrame = CFrame.new(-58.4000015, 12.3000174, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6574. Part489.BottomSurface = Enum.SurfaceType.Smooth
  6575. Part489.TopSurface = Enum.SurfaceType.Smooth
  6576. Part489.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6577. Part489.Position = Vector3.new(-58.4000015, 12.3000174, 56.7249985)
  6578. Part489.Orientation = Vector3.new(0, 0, -90)
  6579. Part489.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6580. Script490.Name = "Script2"
  6581. Script490.Parent = Part489
  6582. table.insert(cors,sandbox(Script490,function()
  6583. function x(hit)
  6584. script.Parent.Anchored = false
  6585. script.Parent.GlassSound:Play()
  6586. script:remove()
  6587. end
  6588.  
  6589. script.Parent.Touched:connect(x)
  6590. end))
  6591. BlockMesh491.Parent = Part489
  6592. BlockMesh491.Scale = Vector3.new(1, 0, 1)
  6593. BlockMesh491.Scale = Vector3.new(1, 0, 1)
  6594. Sound492.Name = "GlassSound"
  6595. Sound492.Parent = Part489
  6596. Sound492.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6597. Sound492.PlayOnRemove = true
  6598. Part493.Parent = Model332
  6599. Part493.BrickColor = BrickColor.new("Pastel Blue")
  6600. Part493.Reflectance = 0.30000001192093
  6601. Part493.Transparency = 0.89999997615814
  6602. Part493.Rotation = Vector3.new(0, 0, -90)
  6603. Part493.Anchored = true
  6604. Part493.FormFactor = Enum.FormFactor.Plate
  6605. Part493.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  6606. Part493.CFrame = CFrame.new(-58.4000015, 10.9000177, 56.0250015, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6607. Part493.BottomSurface = Enum.SurfaceType.Smooth
  6608. Part493.TopSurface = Enum.SurfaceType.Smooth
  6609. Part493.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6610. Part493.Position = Vector3.new(-58.4000015, 10.9000177, 56.0250015)
  6611. Part493.Orientation = Vector3.new(0, 0, -90)
  6612. Part493.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6613. Script494.Name = "Script2"
  6614. Script494.Parent = Part493
  6615. table.insert(cors,sandbox(Script494,function()
  6616. function x(hit)
  6617. script.Parent.Anchored = false
  6618. script.Parent.GlassSound:Play()
  6619. script:remove()
  6620. end
  6621.  
  6622. script.Parent.Touched:connect(x)
  6623. end))
  6624. BlockMesh495.Parent = Part493
  6625. BlockMesh495.Scale = Vector3.new(1, 0, 1)
  6626. BlockMesh495.Scale = Vector3.new(1, 0, 1)
  6627. Sound496.Name = "GlassSound"
  6628. Sound496.Parent = Part493
  6629. Sound496.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6630. Sound496.PlayOnRemove = true
  6631. Part497.Parent = Model332
  6632. Part497.BrickColor = BrickColor.new("Pastel Blue")
  6633. Part497.Reflectance = 0.30000001192093
  6634. Part497.Transparency = 0.89999997615814
  6635. Part497.Rotation = Vector3.new(0, 0, -90)
  6636. Part497.Anchored = true
  6637. Part497.FormFactor = Enum.FormFactor.Plate
  6638. Part497.Size = Vector3.new(0.699999928, 0.139999986, 0.699999928)
  6639. Part497.CFrame = CFrame.new(-58.4000015, 11.9500179, 55.8499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6640. Part497.BottomSurface = Enum.SurfaceType.Smooth
  6641. Part497.TopSurface = Enum.SurfaceType.Smooth
  6642. Part497.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6643. Part497.Position = Vector3.new(-58.4000015, 11.9500179, 55.8499985)
  6644. Part497.Orientation = Vector3.new(0, 0, -90)
  6645. Part497.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6646. Script498.Name = "Script2"
  6647. Script498.Parent = Part497
  6648. table.insert(cors,sandbox(Script498,function()
  6649. function x(hit)
  6650. script.Parent.Anchored = false
  6651. script.Parent.GlassSound:Play()
  6652. script:remove()
  6653. end
  6654.  
  6655. script.Parent.Touched:connect(x)
  6656. end))
  6657. BlockMesh499.Parent = Part497
  6658. BlockMesh499.Scale = Vector3.new(1, 0, 1)
  6659. BlockMesh499.Scale = Vector3.new(1, 0, 1)
  6660. Sound500.Name = "GlassSound"
  6661. Sound500.Parent = Part497
  6662. Sound500.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6663. Sound500.PlayOnRemove = true
  6664. Part501.Parent = Model332
  6665. Part501.BrickColor = BrickColor.new("Pastel Blue")
  6666. Part501.Reflectance = 0.30000001192093
  6667. Part501.Transparency = 0.89999997615814
  6668. Part501.Rotation = Vector3.new(0, 0, -90)
  6669. Part501.Anchored = true
  6670. Part501.FormFactor = Enum.FormFactor.Plate
  6671. Part501.Size = Vector3.new(0.699999928, 0.139999986, 0.699999928)
  6672. Part501.CFrame = CFrame.new(-58.4000015, 12.6500177, 55.8499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6673. Part501.BottomSurface = Enum.SurfaceType.Smooth
  6674. Part501.TopSurface = Enum.SurfaceType.Smooth
  6675. Part501.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6676. Part501.Position = Vector3.new(-58.4000015, 12.6500177, 55.8499985)
  6677. Part501.Orientation = Vector3.new(0, 0, -90)
  6678. Part501.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6679. Script502.Name = "Script2"
  6680. Script502.Parent = Part501
  6681. table.insert(cors,sandbox(Script502,function()
  6682. function x(hit)
  6683. script.Parent.Anchored = false
  6684. script.Parent.GlassSound:Play()
  6685. script:remove()
  6686. end
  6687.  
  6688. script.Parent.Touched:connect(x)
  6689. end))
  6690. BlockMesh503.Parent = Part501
  6691. BlockMesh503.Scale = Vector3.new(1, 0, 1)
  6692. BlockMesh503.Scale = Vector3.new(1, 0, 1)
  6693. Sound504.Name = "GlassSound"
  6694. Sound504.Parent = Part501
  6695. Sound504.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6696. Sound504.PlayOnRemove = true
  6697. Model505.Parent = Model331
  6698. Part506.Parent = Model505
  6699. Part506.BrickColor = BrickColor.new("Pastel Blue")
  6700. Part506.Reflectance = 0.30000001192093
  6701. Part506.Transparency = 0.89999997615814
  6702. Part506.Rotation = Vector3.new(0, 0, -90)
  6703. Part506.Anchored = true
  6704. Part506.FormFactor = Enum.FormFactor.Plate
  6705. Part506.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  6706. Part506.CFrame = CFrame.new(-58.4000015, -0.649981499, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6707. Part506.BottomSurface = Enum.SurfaceType.Smooth
  6708. Part506.TopSurface = Enum.SurfaceType.Smooth
  6709. Part506.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6710. Part506.Position = Vector3.new(-58.4000015, -0.649981499, 61.8000031)
  6711. Part506.Orientation = Vector3.new(0, 0, -90)
  6712. Part506.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6713. Script507.Name = "Script2"
  6714. Script507.Parent = Part506
  6715. table.insert(cors,sandbox(Script507,function()
  6716. function x(hit)
  6717. script.Parent.Anchored = false
  6718. script.Parent.GlassSound:Play()
  6719. script:remove()
  6720. end
  6721.  
  6722. script.Parent.Touched:connect(x)
  6723. end))
  6724. BlockMesh508.Parent = Part506
  6725. BlockMesh508.Scale = Vector3.new(1, 0, 1)
  6726. BlockMesh508.Scale = Vector3.new(1, 0, 1)
  6727. Sound509.Name = "GlassSound"
  6728. Sound509.Parent = Part506
  6729. Sound509.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6730. Sound509.PlayOnRemove = true
  6731. Part510.Parent = Model505
  6732. Part510.BrickColor = BrickColor.new("Pastel Blue")
  6733. Part510.Reflectance = 0.30000001192093
  6734. Part510.Transparency = 0.89999997615814
  6735. Part510.Rotation = Vector3.new(0, 0, -90)
  6736. Part510.Anchored = true
  6737. Part510.FormFactor = Enum.FormFactor.Plate
  6738. Part510.Size = Vector3.new(1.04999995, 0.139999986, 0.699999928)
  6739. Part510.CFrame = CFrame.new(-58.4000015, 0.225018501, 62.1500015, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6740. Part510.BottomSurface = Enum.SurfaceType.Smooth
  6741. Part510.TopSurface = Enum.SurfaceType.Smooth
  6742. Part510.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6743. Part510.Position = Vector3.new(-58.4000015, 0.225018501, 62.1500015)
  6744. Part510.Orientation = Vector3.new(0, 0, -90)
  6745. Part510.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6746. Script511.Name = "Script2"
  6747. Script511.Parent = Part510
  6748. table.insert(cors,sandbox(Script511,function()
  6749. function x(hit)
  6750. script.Parent.Anchored = false
  6751. script.Parent.GlassSound:Play()
  6752. script:remove()
  6753. end
  6754.  
  6755. script.Parent.Touched:connect(x)
  6756. end))
  6757. BlockMesh512.Parent = Part510
  6758. BlockMesh512.Scale = Vector3.new(1, 0, 1)
  6759. BlockMesh512.Scale = Vector3.new(1, 0, 1)
  6760. Sound513.Name = "GlassSound"
  6761. Sound513.Parent = Part510
  6762. Sound513.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6763. Sound513.PlayOnRemove = true
  6764. Part514.Parent = Model505
  6765. Part514.BrickColor = BrickColor.new("Pastel Blue")
  6766. Part514.Reflectance = 0.30000001192093
  6767. Part514.Transparency = 0.89999997615814
  6768. Part514.Rotation = Vector3.new(0, 0, -90)
  6769. Part514.Anchored = true
  6770. Part514.FormFactor = Enum.FormFactor.Plate
  6771. Part514.Size = Vector3.new(1.04999995, 0.139999986, 0.699999928)
  6772. Part514.CFrame = CFrame.new(-58.4000015, 0.225018501, 61.4499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6773. Part514.BottomSurface = Enum.SurfaceType.Smooth
  6774. Part514.TopSurface = Enum.SurfaceType.Smooth
  6775. Part514.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6776. Part514.Position = Vector3.new(-58.4000015, 0.225018501, 61.4499969)
  6777. Part514.Orientation = Vector3.new(0, 0, -90)
  6778. Part514.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6779. Script515.Name = "Script2"
  6780. Script515.Parent = Part514
  6781. table.insert(cors,sandbox(Script515,function()
  6782. function x(hit)
  6783. script.Parent.Anchored = false
  6784. script.Parent.GlassSound:Play()
  6785. script:remove()
  6786. end
  6787.  
  6788. script.Parent.Touched:connect(x)
  6789. end))
  6790. BlockMesh516.Parent = Part514
  6791. BlockMesh516.Scale = Vector3.new(1, 0, 1)
  6792. BlockMesh516.Scale = Vector3.new(1, 0, 1)
  6793. Sound517.Name = "GlassSound"
  6794. Sound517.Parent = Part514
  6795. Sound517.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6796. Sound517.PlayOnRemove = true
  6797. Part518.Parent = Model505
  6798. Part518.BrickColor = BrickColor.new("Pastel Blue")
  6799. Part518.Reflectance = 0.30000001192093
  6800. Part518.Transparency = 0.89999997615814
  6801. Part518.Rotation = Vector3.new(0, 0, -90)
  6802. Part518.Anchored = true
  6803. Part518.FormFactor = Enum.FormFactor.Plate
  6804. Part518.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  6805. Part518.CFrame = CFrame.new(-58.4000015, 1.27501869, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6806. Part518.BottomSurface = Enum.SurfaceType.Smooth
  6807. Part518.TopSurface = Enum.SurfaceType.Smooth
  6808. Part518.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6809. Part518.Position = Vector3.new(-58.4000015, 1.27501869, 61.8000031)
  6810. Part518.Orientation = Vector3.new(0, 0, -90)
  6811. Part518.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6812. Script519.Name = "Script2"
  6813. Script519.Parent = Part518
  6814. table.insert(cors,sandbox(Script519,function()
  6815. function x(hit)
  6816. script.Parent.Anchored = false
  6817. script.Parent.GlassSound:Play()
  6818. script:remove()
  6819. end
  6820.  
  6821. script.Parent.Touched:connect(x)
  6822. end))
  6823. BlockMesh520.Parent = Part518
  6824. BlockMesh520.Scale = Vector3.new(1, 0, 1)
  6825. BlockMesh520.Scale = Vector3.new(1, 0, 1)
  6826. Sound521.Name = "GlassSound"
  6827. Sound521.Parent = Part518
  6828. Sound521.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6829. Sound521.PlayOnRemove = true
  6830. Part522.Parent = Model505
  6831. Part522.BrickColor = BrickColor.new("Pastel Blue")
  6832. Part522.Reflectance = 0.30000001192093
  6833. Part522.Transparency = 0.89999997615814
  6834. Part522.Rotation = Vector3.new(0, 0, -90)
  6835. Part522.Anchored = true
  6836. Part522.FormFactor = Enum.FormFactor.Plate
  6837. Part522.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  6838. Part522.CFrame = CFrame.new(-58.4000015, 2.15001869, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6839. Part522.BottomSurface = Enum.SurfaceType.Smooth
  6840. Part522.TopSurface = Enum.SurfaceType.Smooth
  6841. Part522.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6842. Part522.Position = Vector3.new(-58.4000015, 2.15001869, 61.8000031)
  6843. Part522.Orientation = Vector3.new(0, 0, -90)
  6844. Part522.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6845. Script523.Name = "Script2"
  6846. Script523.Parent = Part522
  6847. table.insert(cors,sandbox(Script523,function()
  6848. function x(hit)
  6849. script.Parent.Anchored = false
  6850. script.Parent.GlassSound:Play()
  6851. script:remove()
  6852. end
  6853.  
  6854. script.Parent.Touched:connect(x)
  6855. end))
  6856. BlockMesh524.Parent = Part522
  6857. BlockMesh524.Scale = Vector3.new(1, 0, 1)
  6858. BlockMesh524.Scale = Vector3.new(1, 0, 1)
  6859. Sound525.Name = "GlassSound"
  6860. Sound525.Parent = Part522
  6861. Sound525.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6862. Sound525.PlayOnRemove = true
  6863. Part526.Parent = Model505
  6864. Part526.BrickColor = BrickColor.new("Pastel Blue")
  6865. Part526.Reflectance = 0.30000001192093
  6866. Part526.Transparency = 0.89999997615814
  6867. Part526.Rotation = Vector3.new(0, 0, -90)
  6868. Part526.Anchored = true
  6869. Part526.FormFactor = Enum.FormFactor.Plate
  6870. Part526.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  6871. Part526.CFrame = CFrame.new(-58.4000015, 3.20001841, 61.9749985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6872. Part526.BottomSurface = Enum.SurfaceType.Smooth
  6873. Part526.TopSurface = Enum.SurfaceType.Smooth
  6874. Part526.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6875. Part526.Position = Vector3.new(-58.4000015, 3.20001841, 61.9749985)
  6876. Part526.Orientation = Vector3.new(0, 0, -90)
  6877. Part526.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6878. Script527.Name = "Script2"
  6879. Script527.Parent = Part526
  6880. table.insert(cors,sandbox(Script527,function()
  6881. function x(hit)
  6882. script.Parent.Anchored = false
  6883. script.Parent.GlassSound:Play()
  6884. script:remove()
  6885. end
  6886.  
  6887. script.Parent.Touched:connect(x)
  6888. end))
  6889. BlockMesh528.Parent = Part526
  6890. BlockMesh528.Scale = Vector3.new(1, 0, 1)
  6891. BlockMesh528.Scale = Vector3.new(1, 0, 1)
  6892. Sound529.Name = "GlassSound"
  6893. Sound529.Parent = Part526
  6894. Sound529.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6895. Sound529.PlayOnRemove = true
  6896. Part530.Parent = Model505
  6897. Part530.BrickColor = BrickColor.new("Pastel Blue")
  6898. Part530.Reflectance = 0.30000001192093
  6899. Part530.Transparency = 0.89999997615814
  6900. Part530.Rotation = Vector3.new(0, 0, -90)
  6901. Part530.Anchored = true
  6902. Part530.FormFactor = Enum.FormFactor.Plate
  6903. Part530.Size = Vector3.new(1.39999986, 0.139999986, 1.39999986)
  6904. Part530.CFrame = CFrame.new(-58.4000015, 3.20001841, 60.75, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6905. Part530.BottomSurface = Enum.SurfaceType.Smooth
  6906. Part530.TopSurface = Enum.SurfaceType.Smooth
  6907. Part530.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6908. Part530.Position = Vector3.new(-58.4000015, 3.20001841, 60.75)
  6909. Part530.Orientation = Vector3.new(0, 0, -90)
  6910. Part530.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6911. Script531.Name = "Script2"
  6912. Script531.Parent = Part530
  6913. table.insert(cors,sandbox(Script531,function()
  6914. function x(hit)
  6915. script.Parent.Anchored = false
  6916. script.Parent.GlassSound:Play()
  6917. script:remove()
  6918. end
  6919.  
  6920. script.Parent.Touched:connect(x)
  6921. end))
  6922. BlockMesh532.Parent = Part530
  6923. BlockMesh532.Scale = Vector3.new(1, 0, 1)
  6924. BlockMesh532.Scale = Vector3.new(1, 0, 1)
  6925. Sound533.Name = "GlassSound"
  6926. Sound533.Parent = Part530
  6927. Sound533.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6928. Sound533.PlayOnRemove = true
  6929. Part534.Parent = Model505
  6930. Part534.BrickColor = BrickColor.new("Pastel Blue")
  6931. Part534.Reflectance = 0.30000001192093
  6932. Part534.Transparency = 0.89999997615814
  6933. Part534.Rotation = Vector3.new(0, 0, -90)
  6934. Part534.Anchored = true
  6935. Part534.FormFactor = Enum.FormFactor.Plate
  6936. Part534.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  6937. Part534.CFrame = CFrame.new(-58.4000015, 4.25001812, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6938. Part534.BottomSurface = Enum.SurfaceType.Smooth
  6939. Part534.TopSurface = Enum.SurfaceType.Smooth
  6940. Part534.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6941. Part534.Position = Vector3.new(-58.4000015, 4.25001812, 61.8000031)
  6942. Part534.Orientation = Vector3.new(0, 0, -90)
  6943. Part534.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6944. Script535.Name = "Script2"
  6945. Script535.Parent = Part534
  6946. table.insert(cors,sandbox(Script535,function()
  6947. function x(hit)
  6948. script.Parent.Anchored = false
  6949. script.Parent.GlassSound:Play()
  6950. script:remove()
  6951. end
  6952.  
  6953. script.Parent.Touched:connect(x)
  6954. end))
  6955. BlockMesh536.Parent = Part534
  6956. BlockMesh536.Scale = Vector3.new(1, 0, 1)
  6957. BlockMesh536.Scale = Vector3.new(1, 0, 1)
  6958. Sound537.Name = "GlassSound"
  6959. Sound537.Parent = Part534
  6960. Sound537.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6961. Sound537.PlayOnRemove = true
  6962. Part538.Parent = Model505
  6963. Part538.BrickColor = BrickColor.new("Pastel Blue")
  6964. Part538.Reflectance = 0.30000001192093
  6965. Part538.Transparency = 0.89999997615814
  6966. Part538.Rotation = Vector3.new(0, 0, -90)
  6967. Part538.Anchored = true
  6968. Part538.FormFactor = Enum.FormFactor.Plate
  6969. Part538.Size = Vector3.new(1.39999986, 0.139999986, 1.39999986)
  6970. Part538.CFrame = CFrame.new(-58.4000015, 5.30001831, 61.8000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  6971. Part538.BottomSurface = Enum.SurfaceType.Smooth
  6972. Part538.TopSurface = Enum.SurfaceType.Smooth
  6973. Part538.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6974. Part538.Position = Vector3.new(-58.4000015, 5.30001831, 61.8000031)
  6975. Part538.Orientation = Vector3.new(0, 0, -90)
  6976. Part538.Color = Color3.new(0.501961, 0.733333, 0.858824)
  6977. Script539.Name = "Script2"
  6978. Script539.Parent = Part538
  6979. table.insert(cors,sandbox(Script539,function()
  6980. function x(hit)
  6981. script.Parent.Anchored = false
  6982. script.Parent.GlassSound:Play()
  6983. script:remove()
  6984. end
  6985.  
  6986. script.Parent.Touched:connect(x)
  6987. end))
  6988. BlockMesh540.Parent = Part538
  6989. BlockMesh540.Scale = Vector3.new(1, 0, 1)
  6990. BlockMesh540.Scale = Vector3.new(1, 0, 1)
  6991. Sound541.Name = "GlassSound"
  6992. Sound541.Parent = Part538
  6993. Sound541.SoundId = "rbxasset://sounds//Glassbreak.wav"
  6994. Sound541.PlayOnRemove = true
  6995. Part542.Parent = Model505
  6996. Part542.BrickColor = BrickColor.new("Pastel Blue")
  6997. Part542.Reflectance = 0.30000001192093
  6998. Part542.Transparency = 0.89999997615814
  6999. Part542.Rotation = Vector3.new(0, 0, -90)
  7000. Part542.Anchored = true
  7001. Part542.FormFactor = Enum.FormFactor.Plate
  7002. Part542.Size = Vector3.new(2.0999999, 0.139999986, 0.349999964)
  7003. Part542.CFrame = CFrame.new(-58.4000015, 4.95001793, 60.9250031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7004. Part542.BottomSurface = Enum.SurfaceType.Smooth
  7005. Part542.TopSurface = Enum.SurfaceType.Smooth
  7006. Part542.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7007. Part542.Position = Vector3.new(-58.4000015, 4.95001793, 60.9250031)
  7008. Part542.Orientation = Vector3.new(0, 0, -90)
  7009. Part542.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7010. Script543.Name = "Script2"
  7011. Script543.Parent = Part542
  7012. table.insert(cors,sandbox(Script543,function()
  7013. function x(hit)
  7014. script.Parent.Anchored = false
  7015. script.Parent.GlassSound:Play()
  7016. script:remove()
  7017. end
  7018.  
  7019. script.Parent.Touched:connect(x)
  7020. end))
  7021. BlockMesh544.Parent = Part542
  7022. BlockMesh544.Scale = Vector3.new(1, 0, 1)
  7023. BlockMesh544.Scale = Vector3.new(1, 0, 1)
  7024. Sound545.Name = "GlassSound"
  7025. Sound545.Parent = Part542
  7026. Sound545.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7027. Sound545.PlayOnRemove = true
  7028. Part546.Parent = Model505
  7029. Part546.BrickColor = BrickColor.new("Pastel Blue")
  7030. Part546.Reflectance = 0.30000001192093
  7031. Part546.Transparency = 0.89999997615814
  7032. Part546.Rotation = Vector3.new(0, 0, -90)
  7033. Part546.Anchored = true
  7034. Part546.FormFactor = Enum.FormFactor.Plate
  7035. Part546.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7036. Part546.CFrame = CFrame.new(-58.4000015, 4.95001793, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7037. Part546.BottomSurface = Enum.SurfaceType.Smooth
  7038. Part546.TopSurface = Enum.SurfaceType.Smooth
  7039. Part546.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7040. Part546.Position = Vector3.new(-58.4000015, 4.95001793, 60.0500031)
  7041. Part546.Orientation = Vector3.new(0, 0, -90)
  7042. Part546.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7043. Script547.Name = "Script2"
  7044. Script547.Parent = Part546
  7045. table.insert(cors,sandbox(Script547,function()
  7046. function x(hit)
  7047. script.Parent.Anchored = false
  7048. script.Parent.GlassSound:Play()
  7049. script:remove()
  7050. end
  7051.  
  7052. script.Parent.Touched:connect(x)
  7053. end))
  7054. BlockMesh548.Parent = Part546
  7055. BlockMesh548.Scale = Vector3.new(1, 0, 1)
  7056. BlockMesh548.Scale = Vector3.new(1, 0, 1)
  7057. Sound549.Name = "GlassSound"
  7058. Sound549.Parent = Part546
  7059. Sound549.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7060. Sound549.PlayOnRemove = true
  7061. Part550.Parent = Model505
  7062. Part550.BrickColor = BrickColor.new("Pastel Blue")
  7063. Part550.Reflectance = 0.30000001192093
  7064. Part550.Transparency = 0.89999997615814
  7065. Part550.Rotation = Vector3.new(0, 0, -90)
  7066. Part550.Anchored = true
  7067. Part550.FormFactor = Enum.FormFactor.Plate
  7068. Part550.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7069. Part550.CFrame = CFrame.new(-58.4000015, 4.25001812, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7070. Part550.BottomSurface = Enum.SurfaceType.Smooth
  7071. Part550.TopSurface = Enum.SurfaceType.Smooth
  7072. Part550.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7073. Part550.Position = Vector3.new(-58.4000015, 4.25001812, 60.0500031)
  7074. Part550.Orientation = Vector3.new(0, 0, -90)
  7075. Part550.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7076. Script551.Name = "Script2"
  7077. Script551.Parent = Part550
  7078. table.insert(cors,sandbox(Script551,function()
  7079. function x(hit)
  7080. script.Parent.Anchored = false
  7081. script.Parent.GlassSound:Play()
  7082. script:remove()
  7083. end
  7084.  
  7085. script.Parent.Touched:connect(x)
  7086. end))
  7087. BlockMesh552.Parent = Part550
  7088. BlockMesh552.Scale = Vector3.new(1, 0, 1)
  7089. BlockMesh552.Scale = Vector3.new(1, 0, 1)
  7090. Sound553.Name = "GlassSound"
  7091. Sound553.Parent = Part550
  7092. Sound553.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7093. Sound553.PlayOnRemove = true
  7094. Part554.Parent = Model505
  7095. Part554.BrickColor = BrickColor.new("Pastel Blue")
  7096. Part554.Reflectance = 0.30000001192093
  7097. Part554.Transparency = 0.89999997615814
  7098. Part554.Rotation = Vector3.new(0, 0, -90)
  7099. Part554.Anchored = true
  7100. Part554.FormFactor = Enum.FormFactor.Plate
  7101. Part554.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7102. Part554.CFrame = CFrame.new(-58.4000015, 5.65001774, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7103. Part554.BottomSurface = Enum.SurfaceType.Smooth
  7104. Part554.TopSurface = Enum.SurfaceType.Smooth
  7105. Part554.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7106. Part554.Position = Vector3.new(-58.4000015, 5.65001774, 60.0500031)
  7107. Part554.Orientation = Vector3.new(0, 0, -90)
  7108. Part554.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7109. Script555.Name = "Script2"
  7110. Script555.Parent = Part554
  7111. table.insert(cors,sandbox(Script555,function()
  7112. function x(hit)
  7113. script.Parent.Anchored = false
  7114. script.Parent.GlassSound:Play()
  7115. script:remove()
  7116. end
  7117.  
  7118. script.Parent.Touched:connect(x)
  7119. end))
  7120. BlockMesh556.Parent = Part554
  7121. BlockMesh556.Scale = Vector3.new(1, 0, 1)
  7122. BlockMesh556.Scale = Vector3.new(1, 0, 1)
  7123. Sound557.Name = "GlassSound"
  7124. Sound557.Parent = Part554
  7125. Sound557.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7126. Sound557.PlayOnRemove = true
  7127. Part558.Parent = Model505
  7128. Part558.BrickColor = BrickColor.new("Pastel Blue")
  7129. Part558.Reflectance = 0.30000001192093
  7130. Part558.Transparency = 0.89999997615814
  7131. Part558.Rotation = Vector3.new(0, 0, -90)
  7132. Part558.Anchored = true
  7133. Part558.FormFactor = Enum.FormFactor.Plate
  7134. Part558.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  7135. Part558.CFrame = CFrame.new(-58.4000015, 4.95001793, 59, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7136. Part558.BottomSurface = Enum.SurfaceType.Smooth
  7137. Part558.TopSurface = Enum.SurfaceType.Smooth
  7138. Part558.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7139. Part558.Position = Vector3.new(-58.4000015, 4.95001793, 59)
  7140. Part558.Orientation = Vector3.new(0, 0, -90)
  7141. Part558.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7142. Script559.Name = "Script2"
  7143. Script559.Parent = Part558
  7144. table.insert(cors,sandbox(Script559,function()
  7145. function x(hit)
  7146. script.Parent.Anchored = false
  7147. script.Parent.GlassSound:Play()
  7148. script:remove()
  7149. end
  7150.  
  7151. script.Parent.Touched:connect(x)
  7152. end))
  7153. BlockMesh560.Parent = Part558
  7154. BlockMesh560.Scale = Vector3.new(1, 0, 1)
  7155. BlockMesh560.Scale = Vector3.new(1, 0, 1)
  7156. Sound561.Name = "GlassSound"
  7157. Sound561.Parent = Part558
  7158. Sound561.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7159. Sound561.PlayOnRemove = true
  7160. Part562.Parent = Model505
  7161. Part562.BrickColor = BrickColor.new("Pastel Blue")
  7162. Part562.Reflectance = 0.30000001192093
  7163. Part562.Transparency = 0.89999997615814
  7164. Part562.Rotation = Vector3.new(0, 0, -90)
  7165. Part562.Anchored = true
  7166. Part562.FormFactor = Enum.FormFactor.Plate
  7167. Part562.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7168. Part562.CFrame = CFrame.new(-58.4000015, 3.55001831, 59.3499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7169. Part562.BottomSurface = Enum.SurfaceType.Smooth
  7170. Part562.TopSurface = Enum.SurfaceType.Smooth
  7171. Part562.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7172. Part562.Position = Vector3.new(-58.4000015, 3.55001831, 59.3499985)
  7173. Part562.Orientation = Vector3.new(0, 0, -90)
  7174. Part562.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7175. Script563.Name = "Script2"
  7176. Script563.Parent = Part562
  7177. table.insert(cors,sandbox(Script563,function()
  7178. function x(hit)
  7179. script.Parent.Anchored = false
  7180. script.Parent.GlassSound:Play()
  7181. script:remove()
  7182. end
  7183.  
  7184. script.Parent.Touched:connect(x)
  7185. end))
  7186. BlockMesh564.Parent = Part562
  7187. BlockMesh564.Scale = Vector3.new(1, 0, 1)
  7188. BlockMesh564.Scale = Vector3.new(1, 0, 1)
  7189. Sound565.Name = "GlassSound"
  7190. Sound565.Parent = Part562
  7191. Sound565.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7192. Sound565.PlayOnRemove = true
  7193. Part566.Parent = Model505
  7194. Part566.BrickColor = BrickColor.new("Pastel Blue")
  7195. Part566.Reflectance = 0.30000001192093
  7196. Part566.Transparency = 0.89999997615814
  7197. Part566.Rotation = Vector3.new(0, 0, -90)
  7198. Part566.Anchored = true
  7199. Part566.FormFactor = Enum.FormFactor.Plate
  7200. Part566.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  7201. Part566.CFrame = CFrame.new(-58.4000015, 2.15001869, 59, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7202. Part566.BottomSurface = Enum.SurfaceType.Smooth
  7203. Part566.TopSurface = Enum.SurfaceType.Smooth
  7204. Part566.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7205. Part566.Position = Vector3.new(-58.4000015, 2.15001869, 59)
  7206. Part566.Orientation = Vector3.new(0, 0, -90)
  7207. Part566.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7208. Script567.Name = "Script2"
  7209. Script567.Parent = Part566
  7210. table.insert(cors,sandbox(Script567,function()
  7211. function x(hit)
  7212. script.Parent.Anchored = false
  7213. script.Parent.GlassSound:Play()
  7214. script:remove()
  7215. end
  7216.  
  7217. script.Parent.Touched:connect(x)
  7218. end))
  7219. BlockMesh568.Parent = Part566
  7220. BlockMesh568.Scale = Vector3.new(1, 0, 1)
  7221. BlockMesh568.Scale = Vector3.new(1, 0, 1)
  7222. Sound569.Name = "GlassSound"
  7223. Sound569.Parent = Part566
  7224. Sound569.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7225. Sound569.PlayOnRemove = true
  7226. Part570.Parent = Model505
  7227. Part570.BrickColor = BrickColor.new("Pastel Blue")
  7228. Part570.Reflectance = 0.30000001192093
  7229. Part570.Transparency = 0.89999997615814
  7230. Part570.Rotation = Vector3.new(0, 0, -90)
  7231. Part570.Anchored = true
  7232. Part570.FormFactor = Enum.FormFactor.Plate
  7233. Part570.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7234. Part570.CFrame = CFrame.new(-58.4000015, 2.15001869, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7235. Part570.BottomSurface = Enum.SurfaceType.Smooth
  7236. Part570.TopSurface = Enum.SurfaceType.Smooth
  7237. Part570.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7238. Part570.Position = Vector3.new(-58.4000015, 2.15001869, 60.0500031)
  7239. Part570.Orientation = Vector3.new(0, 0, -90)
  7240. Part570.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7241. Script571.Name = "Script2"
  7242. Script571.Parent = Part570
  7243. table.insert(cors,sandbox(Script571,function()
  7244. function x(hit)
  7245. script.Parent.Anchored = false
  7246. script.Parent.GlassSound:Play()
  7247. script:remove()
  7248. end
  7249.  
  7250. script.Parent.Touched:connect(x)
  7251. end))
  7252. BlockMesh572.Parent = Part570
  7253. BlockMesh572.Scale = Vector3.new(1, 0, 1)
  7254. BlockMesh572.Scale = Vector3.new(1, 0, 1)
  7255. Sound573.Name = "GlassSound"
  7256. Sound573.Parent = Part570
  7257. Sound573.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7258. Sound573.PlayOnRemove = true
  7259. Part574.Parent = Model505
  7260. Part574.BrickColor = BrickColor.new("Pastel Blue")
  7261. Part574.Reflectance = 0.30000001192093
  7262. Part574.Transparency = 0.89999997615814
  7263. Part574.Rotation = Vector3.new(0, 0, -90)
  7264. Part574.Anchored = true
  7265. Part574.FormFactor = Enum.FormFactor.Plate
  7266. Part574.Size = Vector3.new(2.0999999, 0.139999986, 0.349999964)
  7267. Part574.CFrame = CFrame.new(-58.4000015, 1.45001841, 60.9250031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7268. Part574.BottomSurface = Enum.SurfaceType.Smooth
  7269. Part574.TopSurface = Enum.SurfaceType.Smooth
  7270. Part574.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7271. Part574.Position = Vector3.new(-58.4000015, 1.45001841, 60.9250031)
  7272. Part574.Orientation = Vector3.new(0, 0, -90)
  7273. Part574.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7274. Script575.Name = "Script2"
  7275. Script575.Parent = Part574
  7276. table.insert(cors,sandbox(Script575,function()
  7277. function x(hit)
  7278. script.Parent.Anchored = false
  7279. script.Parent.GlassSound:Play()
  7280. script:remove()
  7281. end
  7282.  
  7283. script.Parent.Touched:connect(x)
  7284. end))
  7285. BlockMesh576.Parent = Part574
  7286. BlockMesh576.Scale = Vector3.new(1, 0, 1)
  7287. BlockMesh576.Scale = Vector3.new(1, 0, 1)
  7288. Sound577.Name = "GlassSound"
  7289. Sound577.Parent = Part574
  7290. Sound577.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7291. Sound577.PlayOnRemove = true
  7292. Part578.Parent = Model505
  7293. Part578.BrickColor = BrickColor.new("Pastel Blue")
  7294. Part578.Reflectance = 0.30000001192093
  7295. Part578.Transparency = 0.89999997615814
  7296. Part578.Rotation = Vector3.new(0, 0, -90)
  7297. Part578.Anchored = true
  7298. Part578.FormFactor = Enum.FormFactor.Plate
  7299. Part578.Size = Vector3.new(0.699999928, 0.139999986, 0.699999928)
  7300. Part578.CFrame = CFrame.new(-58.4000015, 2.8500185, 59.6999969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7301. Part578.BottomSurface = Enum.SurfaceType.Smooth
  7302. Part578.TopSurface = Enum.SurfaceType.Smooth
  7303. Part578.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7304. Part578.Position = Vector3.new(-58.4000015, 2.8500185, 59.6999969)
  7305. Part578.Orientation = Vector3.new(0, 0, -90)
  7306. Part578.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7307. Script579.Name = "Script2"
  7308. Script579.Parent = Part578
  7309. table.insert(cors,sandbox(Script579,function()
  7310. function x(hit)
  7311. script.Parent.Anchored = false
  7312. script.Parent.GlassSound:Play()
  7313. script:remove()
  7314. end
  7315.  
  7316. script.Parent.Touched:connect(x)
  7317. end))
  7318. BlockMesh580.Parent = Part578
  7319. BlockMesh580.Scale = Vector3.new(1, 0, 1)
  7320. BlockMesh580.Scale = Vector3.new(1, 0, 1)
  7321. Sound581.Name = "GlassSound"
  7322. Sound581.Parent = Part578
  7323. Sound581.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7324. Sound581.PlayOnRemove = true
  7325. Part582.Parent = Model505
  7326. Part582.BrickColor = BrickColor.new("Pastel Blue")
  7327. Part582.Reflectance = 0.30000001192093
  7328. Part582.Transparency = 0.89999997615814
  7329. Part582.Rotation = Vector3.new(0, 0, -90)
  7330. Part582.Anchored = true
  7331. Part582.FormFactor = Enum.FormFactor.Plate
  7332. Part582.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7333. Part582.CFrame = CFrame.new(-58.4000015, 1.45001841, 60.0500031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7334. Part582.BottomSurface = Enum.SurfaceType.Smooth
  7335. Part582.TopSurface = Enum.SurfaceType.Smooth
  7336. Part582.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7337. Part582.Position = Vector3.new(-58.4000015, 1.45001841, 60.0500031)
  7338. Part582.Orientation = Vector3.new(0, 0, -90)
  7339. Part582.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7340. Script583.Name = "Script2"
  7341. Script583.Parent = Part582
  7342. table.insert(cors,sandbox(Script583,function()
  7343. function x(hit)
  7344. script.Parent.Anchored = false
  7345. script.Parent.GlassSound:Play()
  7346. script:remove()
  7347. end
  7348.  
  7349. script.Parent.Touched:connect(x)
  7350. end))
  7351. BlockMesh584.Parent = Part582
  7352. BlockMesh584.Scale = Vector3.new(1, 0, 1)
  7353. BlockMesh584.Scale = Vector3.new(1, 0, 1)
  7354. Sound585.Name = "GlassSound"
  7355. Sound585.Parent = Part582
  7356. Sound585.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7357. Sound585.PlayOnRemove = true
  7358. Part586.Parent = Model505
  7359. Part586.BrickColor = BrickColor.new("Pastel Blue")
  7360. Part586.Reflectance = 0.30000001192093
  7361. Part586.Transparency = 0.89999997615814
  7362. Part586.Rotation = Vector3.new(0, 0, -90)
  7363. Part586.Anchored = true
  7364. Part586.FormFactor = Enum.FormFactor.Plate
  7365. Part586.Size = Vector3.new(0.699999928, 0.139999986, 2.0999999)
  7366. Part586.CFrame = CFrame.new(-58.4000015, 0.750019073, 59.6999969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7367. Part586.BottomSurface = Enum.SurfaceType.Smooth
  7368. Part586.TopSurface = Enum.SurfaceType.Smooth
  7369. Part586.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7370. Part586.Position = Vector3.new(-58.4000015, 0.750019073, 59.6999969)
  7371. Part586.Orientation = Vector3.new(0, 0, -90)
  7372. Part586.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7373. Script587.Name = "Script2"
  7374. Script587.Parent = Part586
  7375. table.insert(cors,sandbox(Script587,function()
  7376. function x(hit)
  7377. script.Parent.Anchored = false
  7378. script.Parent.GlassSound:Play()
  7379. script:remove()
  7380. end
  7381.  
  7382. script.Parent.Touched:connect(x)
  7383. end))
  7384. BlockMesh588.Parent = Part586
  7385. BlockMesh588.Scale = Vector3.new(1, 0, 1)
  7386. BlockMesh588.Scale = Vector3.new(1, 0, 1)
  7387. Sound589.Name = "GlassSound"
  7388. Sound589.Parent = Part586
  7389. Sound589.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7390. Sound589.PlayOnRemove = true
  7391. Part590.Parent = Model505
  7392. Part590.BrickColor = BrickColor.new("Pastel Blue")
  7393. Part590.Reflectance = 0.30000001192093
  7394. Part590.Transparency = 0.89999997615814
  7395. Part590.Rotation = Vector3.new(0, 0, -90)
  7396. Part590.Anchored = true
  7397. Part590.FormFactor = Enum.FormFactor.Plate
  7398. Part590.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  7399. Part590.CFrame = CFrame.new(-58.4000015, -0.299981117, 60.5749969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7400. Part590.BottomSurface = Enum.SurfaceType.Smooth
  7401. Part590.TopSurface = Enum.SurfaceType.Smooth
  7402. Part590.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7403. Part590.Position = Vector3.new(-58.4000015, -0.299981117, 60.5749969)
  7404. Part590.Orientation = Vector3.new(0, 0, -90)
  7405. Part590.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7406. Script591.Name = "Script2"
  7407. Script591.Parent = Part590
  7408. table.insert(cors,sandbox(Script591,function()
  7409. function x(hit)
  7410. script.Parent.Anchored = false
  7411. script.Parent.GlassSound:Play()
  7412. script:remove()
  7413. end
  7414.  
  7415. script.Parent.Touched:connect(x)
  7416. end))
  7417. BlockMesh592.Parent = Part590
  7418. BlockMesh592.Scale = Vector3.new(1, 0, 1)
  7419. BlockMesh592.Scale = Vector3.new(1, 0, 1)
  7420. Sound593.Name = "GlassSound"
  7421. Sound593.Parent = Part590
  7422. Sound593.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7423. Sound593.PlayOnRemove = true
  7424. Part594.Parent = Model505
  7425. Part594.BrickColor = BrickColor.new("Pastel Blue")
  7426. Part594.Reflectance = 0.30000001192093
  7427. Part594.Transparency = 0.89999997615814
  7428. Part594.Rotation = Vector3.new(0, 0, -90)
  7429. Part594.Anchored = true
  7430. Part594.FormFactor = Enum.FormFactor.Plate
  7431. Part594.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7432. Part594.CFrame = CFrame.new(-58.4000015, 0.0500183105, 59.3499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7433. Part594.BottomSurface = Enum.SurfaceType.Smooth
  7434. Part594.TopSurface = Enum.SurfaceType.Smooth
  7435. Part594.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7436. Part594.Position = Vector3.new(-58.4000015, 0.0500183105, 59.3499985)
  7437. Part594.Orientation = Vector3.new(0, 0, -90)
  7438. Part594.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7439. Script595.Name = "Script2"
  7440. Script595.Parent = Part594
  7441. table.insert(cors,sandbox(Script595,function()
  7442. function x(hit)
  7443. script.Parent.Anchored = false
  7444. script.Parent.GlassSound:Play()
  7445. script:remove()
  7446. end
  7447.  
  7448. script.Parent.Touched:connect(x)
  7449. end))
  7450. BlockMesh596.Parent = Part594
  7451. BlockMesh596.Scale = Vector3.new(1, 0, 1)
  7452. BlockMesh596.Scale = Vector3.new(1, 0, 1)
  7453. Sound597.Name = "GlassSound"
  7454. Sound597.Parent = Part594
  7455. Sound597.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7456. Sound597.PlayOnRemove = true
  7457. Part598.Parent = Model505
  7458. Part598.BrickColor = BrickColor.new("Pastel Blue")
  7459. Part598.Reflectance = 0.30000001192093
  7460. Part598.Transparency = 0.89999997615814
  7461. Part598.Rotation = Vector3.new(0, 0, -90)
  7462. Part598.Anchored = true
  7463. Part598.FormFactor = Enum.FormFactor.Plate
  7464. Part598.Size = Vector3.new(0.699999928, 0.139999986, 1.39999986)
  7465. Part598.CFrame = CFrame.new(-58.4000015, -0.649981499, 59.3499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7466. Part598.BottomSurface = Enum.SurfaceType.Smooth
  7467. Part598.TopSurface = Enum.SurfaceType.Smooth
  7468. Part598.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7469. Part598.Position = Vector3.new(-58.4000015, -0.649981499, 59.3499985)
  7470. Part598.Orientation = Vector3.new(0, 0, -90)
  7471. Part598.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7472. Script599.Name = "Script2"
  7473. Script599.Parent = Part598
  7474. table.insert(cors,sandbox(Script599,function()
  7475. function x(hit)
  7476. script.Parent.Anchored = false
  7477. script.Parent.GlassSound:Play()
  7478. script:remove()
  7479. end
  7480.  
  7481. script.Parent.Touched:connect(x)
  7482. end))
  7483. BlockMesh600.Parent = Part598
  7484. BlockMesh600.Scale = Vector3.new(1, 0, 1)
  7485. BlockMesh600.Scale = Vector3.new(1, 0, 1)
  7486. Sound601.Name = "GlassSound"
  7487. Sound601.Parent = Part598
  7488. Sound601.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7489. Sound601.PlayOnRemove = true
  7490. Part602.Parent = Model505
  7491. Part602.BrickColor = BrickColor.new("Pastel Blue")
  7492. Part602.Reflectance = 0.30000001192093
  7493. Part602.Transparency = 0.89999997615814
  7494. Part602.Rotation = Vector3.new(0, 0, -90)
  7495. Part602.Anchored = true
  7496. Part602.FormFactor = Enum.FormFactor.Plate
  7497. Part602.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  7498. Part602.CFrame = CFrame.new(-58.4000015, 0.0500183105, 58.3000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7499. Part602.BottomSurface = Enum.SurfaceType.Smooth
  7500. Part602.TopSurface = Enum.SurfaceType.Smooth
  7501. Part602.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7502. Part602.Position = Vector3.new(-58.4000015, 0.0500183105, 58.3000031)
  7503. Part602.Orientation = Vector3.new(0, 0, -90)
  7504. Part602.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7505. Script603.Name = "Script2"
  7506. Script603.Parent = Part602
  7507. table.insert(cors,sandbox(Script603,function()
  7508. function x(hit)
  7509. script.Parent.Anchored = false
  7510. script.Parent.GlassSound:Play()
  7511. script:remove()
  7512. end
  7513.  
  7514. script.Parent.Touched:connect(x)
  7515. end))
  7516. BlockMesh604.Parent = Part602
  7517. BlockMesh604.Scale = Vector3.new(1, 0, 1)
  7518. BlockMesh604.Scale = Vector3.new(1, 0, 1)
  7519. Sound605.Name = "GlassSound"
  7520. Sound605.Parent = Part602
  7521. Sound605.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7522. Sound605.PlayOnRemove = true
  7523. Part606.Parent = Model505
  7524. Part606.BrickColor = BrickColor.new("Pastel Blue")
  7525. Part606.Reflectance = 0.30000001192093
  7526. Part606.Transparency = 0.89999997615814
  7527. Part606.Rotation = Vector3.new(0, 0, -90)
  7528. Part606.Anchored = true
  7529. Part606.FormFactor = Enum.FormFactor.Plate
  7530. Part606.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  7531. Part606.CFrame = CFrame.new(-58.4000015, 0.575018883, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7532. Part606.BottomSurface = Enum.SurfaceType.Smooth
  7533. Part606.TopSurface = Enum.SurfaceType.Smooth
  7534. Part606.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7535. Part606.Position = Vector3.new(-58.4000015, 0.575018883, 57.25)
  7536. Part606.Orientation = Vector3.new(0, 0, -90)
  7537. Part606.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7538. Script607.Name = "Script2"
  7539. Script607.Parent = Part606
  7540. table.insert(cors,sandbox(Script607,function()
  7541. function x(hit)
  7542. script.Parent.Anchored = false
  7543. script.Parent.GlassSound:Play()
  7544. script:remove()
  7545. end
  7546.  
  7547. script.Parent.Touched:connect(x)
  7548. end))
  7549. BlockMesh608.Parent = Part606
  7550. BlockMesh608.Scale = Vector3.new(1, 0, 1)
  7551. BlockMesh608.Scale = Vector3.new(1, 0, 1)
  7552. Sound609.Name = "GlassSound"
  7553. Sound609.Parent = Part606
  7554. Sound609.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7555. Sound609.PlayOnRemove = true
  7556. Part610.Parent = Model505
  7557. Part610.BrickColor = BrickColor.new("Pastel Blue")
  7558. Part610.Reflectance = 0.30000001192093
  7559. Part610.Transparency = 0.89999997615814
  7560. Part610.Rotation = Vector3.new(0, 0, -90)
  7561. Part610.Anchored = true
  7562. Part610.FormFactor = Enum.FormFactor.Plate
  7563. Part610.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  7564. Part610.CFrame = CFrame.new(-58.4000015, -0.124980927, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7565. Part610.BottomSurface = Enum.SurfaceType.Smooth
  7566. Part610.TopSurface = Enum.SurfaceType.Smooth
  7567. Part610.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7568. Part610.Position = Vector3.new(-58.4000015, -0.124980927, 57.25)
  7569. Part610.Orientation = Vector3.new(0, 0, -90)
  7570. Part610.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7571. Script611.Name = "Script2"
  7572. Script611.Parent = Part610
  7573. table.insert(cors,sandbox(Script611,function()
  7574. function x(hit)
  7575. script.Parent.Anchored = false
  7576. script.Parent.GlassSound:Play()
  7577. script:remove()
  7578. end
  7579.  
  7580. script.Parent.Touched:connect(x)
  7581. end))
  7582. BlockMesh612.Parent = Part610
  7583. BlockMesh612.Scale = Vector3.new(1, 0, 1)
  7584. BlockMesh612.Scale = Vector3.new(1, 0, 1)
  7585. Sound613.Name = "GlassSound"
  7586. Sound613.Parent = Part610
  7587. Sound613.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7588. Sound613.PlayOnRemove = true
  7589. Part614.Parent = Model505
  7590. Part614.BrickColor = BrickColor.new("Pastel Blue")
  7591. Part614.Reflectance = 0.30000001192093
  7592. Part614.Transparency = 0.89999997615814
  7593. Part614.Rotation = Vector3.new(0, 0, -90)
  7594. Part614.Anchored = true
  7595. Part614.FormFactor = Enum.FormFactor.Plate
  7596. Part614.Size = Vector3.new(0.699999928, 0.139999986, 2.44999981)
  7597. Part614.CFrame = CFrame.new(-58.4000015, -0.649981499, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7598. Part614.BottomSurface = Enum.SurfaceType.Smooth
  7599. Part614.TopSurface = Enum.SurfaceType.Smooth
  7600. Part614.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7601. Part614.Position = Vector3.new(-58.4000015, -0.649981499, 56.7249985)
  7602. Part614.Orientation = Vector3.new(0, 0, -90)
  7603. Part614.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7604. Script615.Name = "Script2"
  7605. Script615.Parent = Part614
  7606. table.insert(cors,sandbox(Script615,function()
  7607. function x(hit)
  7608. script.Parent.Anchored = false
  7609. script.Parent.GlassSound:Play()
  7610. script:remove()
  7611. end
  7612.  
  7613. script.Parent.Touched:connect(x)
  7614. end))
  7615. BlockMesh616.Parent = Part614
  7616. BlockMesh616.Scale = Vector3.new(1, 0, 1)
  7617. BlockMesh616.Scale = Vector3.new(1, 0, 1)
  7618. Sound617.Name = "GlassSound"
  7619. Sound617.Parent = Part614
  7620. Sound617.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7621. Sound617.PlayOnRemove = true
  7622. Part618.Parent = Model505
  7623. Part618.BrickColor = BrickColor.new("Pastel Blue")
  7624. Part618.Reflectance = 0.30000001192093
  7625. Part618.Transparency = 0.89999997615814
  7626. Part618.Rotation = Vector3.new(0, 0, -90)
  7627. Part618.Anchored = true
  7628. Part618.FormFactor = Enum.FormFactor.Plate
  7629. Part618.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  7630. Part618.CFrame = CFrame.new(-58.4000015, 0.400018692, 56.0250015, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7631. Part618.BottomSurface = Enum.SurfaceType.Smooth
  7632. Part618.TopSurface = Enum.SurfaceType.Smooth
  7633. Part618.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7634. Part618.Position = Vector3.new(-58.4000015, 0.400018692, 56.0250015)
  7635. Part618.Orientation = Vector3.new(0, 0, -90)
  7636. Part618.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7637. Script619.Name = "Script2"
  7638. Script619.Parent = Part618
  7639. table.insert(cors,sandbox(Script619,function()
  7640. function x(hit)
  7641. script.Parent.Anchored = false
  7642. script.Parent.GlassSound:Play()
  7643. script:remove()
  7644. end
  7645.  
  7646. script.Parent.Touched:connect(x)
  7647. end))
  7648. BlockMesh620.Parent = Part618
  7649. BlockMesh620.Scale = Vector3.new(1, 0, 1)
  7650. BlockMesh620.Scale = Vector3.new(1, 0, 1)
  7651. Sound621.Name = "GlassSound"
  7652. Sound621.Parent = Part618
  7653. Sound621.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7654. Sound621.PlayOnRemove = true
  7655. Part622.Parent = Model505
  7656. Part622.BrickColor = BrickColor.new("Pastel Blue")
  7657. Part622.Reflectance = 0.30000001192093
  7658. Part622.Transparency = 0.89999997615814
  7659. Part622.Rotation = Vector3.new(0, 0, -90)
  7660. Part622.Anchored = true
  7661. Part622.FormFactor = Enum.FormFactor.Plate
  7662. Part622.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  7663. Part622.CFrame = CFrame.new(-58.4000015, 1.80001831, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7664. Part622.BottomSurface = Enum.SurfaceType.Smooth
  7665. Part622.TopSurface = Enum.SurfaceType.Smooth
  7666. Part622.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7667. Part622.Position = Vector3.new(-58.4000015, 1.80001831, 56.7249985)
  7668. Part622.Orientation = Vector3.new(0, 0, -90)
  7669. Part622.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7670. Script623.Name = "Script2"
  7671. Script623.Parent = Part622
  7672. table.insert(cors,sandbox(Script623,function()
  7673. function x(hit)
  7674. script.Parent.Anchored = false
  7675. script.Parent.GlassSound:Play()
  7676. script:remove()
  7677. end
  7678.  
  7679. script.Parent.Touched:connect(x)
  7680. end))
  7681. BlockMesh624.Parent = Part622
  7682. BlockMesh624.Scale = Vector3.new(1, 0, 1)
  7683. BlockMesh624.Scale = Vector3.new(1, 0, 1)
  7684. Sound625.Name = "GlassSound"
  7685. Sound625.Parent = Part622
  7686. Sound625.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7687. Sound625.PlayOnRemove = true
  7688. Part626.Parent = Model505
  7689. Part626.BrickColor = BrickColor.new("Pastel Blue")
  7690. Part626.Reflectance = 0.30000001192093
  7691. Part626.Transparency = 0.89999997615814
  7692. Part626.Rotation = Vector3.new(0, 0, -90)
  7693. Part626.Anchored = true
  7694. Part626.FormFactor = Enum.FormFactor.Plate
  7695. Part626.Size = Vector3.new(1.39999986, 0.139999986, 0.699999928)
  7696. Part626.CFrame = CFrame.new(-58.4000015, 1.80001831, 55.8499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7697. Part626.BottomSurface = Enum.SurfaceType.Smooth
  7698. Part626.TopSurface = Enum.SurfaceType.Smooth
  7699. Part626.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7700. Part626.Position = Vector3.new(-58.4000015, 1.80001831, 55.8499985)
  7701. Part626.Orientation = Vector3.new(0, 0, -90)
  7702. Part626.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7703. Script627.Name = "Script2"
  7704. Script627.Parent = Part626
  7705. table.insert(cors,sandbox(Script627,function()
  7706. function x(hit)
  7707. script.Parent.Anchored = false
  7708. script.Parent.GlassSound:Play()
  7709. script:remove()
  7710. end
  7711.  
  7712. script.Parent.Touched:connect(x)
  7713. end))
  7714. BlockMesh628.Parent = Part626
  7715. BlockMesh628.Scale = Vector3.new(1, 0, 1)
  7716. BlockMesh628.Scale = Vector3.new(1, 0, 1)
  7717. Sound629.Name = "GlassSound"
  7718. Sound629.Parent = Part626
  7719. Sound629.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7720. Sound629.PlayOnRemove = true
  7721. Part630.Parent = Model505
  7722. Part630.BrickColor = BrickColor.new("Pastel Blue")
  7723. Part630.Reflectance = 0.30000001192093
  7724. Part630.Transparency = 0.89999997615814
  7725. Part630.Rotation = Vector3.new(0, 0, -90)
  7726. Part630.Anchored = true
  7727. Part630.FormFactor = Enum.FormFactor.Plate
  7728. Part630.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  7729. Part630.CFrame = CFrame.new(-58.4000015, 1.6250186, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7730. Part630.BottomSurface = Enum.SurfaceType.Smooth
  7731. Part630.TopSurface = Enum.SurfaceType.Smooth
  7732. Part630.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7733. Part630.Position = Vector3.new(-58.4000015, 1.6250186, 57.9499969)
  7734. Part630.Orientation = Vector3.new(0, 0, -90)
  7735. Part630.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7736. Script631.Name = "Script2"
  7737. Script631.Parent = Part630
  7738. table.insert(cors,sandbox(Script631,function()
  7739. function x(hit)
  7740. script.Parent.Anchored = false
  7741. script.Parent.GlassSound:Play()
  7742. script:remove()
  7743. end
  7744.  
  7745. script.Parent.Touched:connect(x)
  7746. end))
  7747. BlockMesh632.Parent = Part630
  7748. BlockMesh632.Scale = Vector3.new(1, 0, 1)
  7749. BlockMesh632.Scale = Vector3.new(1, 0, 1)
  7750. Sound633.Name = "GlassSound"
  7751. Sound633.Parent = Part630
  7752. Sound633.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7753. Sound633.PlayOnRemove = true
  7754. Part634.Parent = Model505
  7755. Part634.BrickColor = BrickColor.new("Pastel Blue")
  7756. Part634.Reflectance = 0.30000001192093
  7757. Part634.Transparency = 0.89999997615814
  7758. Part634.Rotation = Vector3.new(0, 0, -90)
  7759. Part634.Anchored = true
  7760. Part634.FormFactor = Enum.FormFactor.Plate
  7761. Part634.Size = Vector3.new(2.0999999, 0.139999986, 0.699999928)
  7762. Part634.CFrame = CFrame.new(-58.4000015, 3.55001831, 58.3000031, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7763. Part634.BottomSurface = Enum.SurfaceType.Smooth
  7764. Part634.TopSurface = Enum.SurfaceType.Smooth
  7765. Part634.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7766. Part634.Position = Vector3.new(-58.4000015, 3.55001831, 58.3000031)
  7767. Part634.Orientation = Vector3.new(0, 0, -90)
  7768. Part634.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7769. Script635.Name = "Script2"
  7770. Script635.Parent = Part634
  7771. table.insert(cors,sandbox(Script635,function()
  7772. function x(hit)
  7773. script.Parent.Anchored = false
  7774. script.Parent.GlassSound:Play()
  7775. script:remove()
  7776. end
  7777.  
  7778. script.Parent.Touched:connect(x)
  7779. end))
  7780. BlockMesh636.Parent = Part634
  7781. BlockMesh636.Scale = Vector3.new(1, 0, 1)
  7782. BlockMesh636.Scale = Vector3.new(1, 0, 1)
  7783. Sound637.Name = "GlassSound"
  7784. Sound637.Parent = Part634
  7785. Sound637.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7786. Sound637.PlayOnRemove = true
  7787. Part638.Parent = Model505
  7788. Part638.BrickColor = BrickColor.new("Pastel Blue")
  7789. Part638.Reflectance = 0.30000001192093
  7790. Part638.Transparency = 0.89999997615814
  7791. Part638.Rotation = Vector3.new(0, 0, -90)
  7792. Part638.Anchored = true
  7793. Part638.FormFactor = Enum.FormFactor.Plate
  7794. Part638.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  7795. Part638.CFrame = CFrame.new(-58.4000015, 2.32501841, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7796. Part638.BottomSurface = Enum.SurfaceType.Smooth
  7797. Part638.TopSurface = Enum.SurfaceType.Smooth
  7798. Part638.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7799. Part638.Position = Vector3.new(-58.4000015, 2.32501841, 57.9499969)
  7800. Part638.Orientation = Vector3.new(0, 0, -90)
  7801. Part638.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7802. Script639.Name = "Script2"
  7803. Script639.Parent = Part638
  7804. table.insert(cors,sandbox(Script639,function()
  7805. function x(hit)
  7806. script.Parent.Anchored = false
  7807. script.Parent.GlassSound:Play()
  7808. script:remove()
  7809. end
  7810.  
  7811. script.Parent.Touched:connect(x)
  7812. end))
  7813. BlockMesh640.Parent = Part638
  7814. BlockMesh640.Scale = Vector3.new(1, 0, 1)
  7815. BlockMesh640.Scale = Vector3.new(1, 0, 1)
  7816. Sound641.Name = "GlassSound"
  7817. Sound641.Parent = Part638
  7818. Sound641.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7819. Sound641.PlayOnRemove = true
  7820. Part642.Parent = Model505
  7821. Part642.BrickColor = BrickColor.new("Pastel Blue")
  7822. Part642.Reflectance = 0.30000001192093
  7823. Part642.Transparency = 0.89999997615814
  7824. Part642.Rotation = Vector3.new(0, 0, -90)
  7825. Part642.Anchored = true
  7826. Part642.FormFactor = Enum.FormFactor.Plate
  7827. Part642.Size = Vector3.new(0.699999928, 0.139999986, 2.44999981)
  7828. Part642.CFrame = CFrame.new(-58.4000015, 2.8500185, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7829. Part642.BottomSurface = Enum.SurfaceType.Smooth
  7830. Part642.TopSurface = Enum.SurfaceType.Smooth
  7831. Part642.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7832. Part642.Position = Vector3.new(-58.4000015, 2.8500185, 56.7249985)
  7833. Part642.Orientation = Vector3.new(0, 0, -90)
  7834. Part642.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7835. Script643.Name = "Script2"
  7836. Script643.Parent = Part642
  7837. table.insert(cors,sandbox(Script643,function()
  7838. function x(hit)
  7839. script.Parent.Anchored = false
  7840. script.Parent.GlassSound:Play()
  7841. script:remove()
  7842. end
  7843.  
  7844. script.Parent.Touched:connect(x)
  7845. end))
  7846. BlockMesh644.Parent = Part642
  7847. BlockMesh644.Scale = Vector3.new(1, 0, 1)
  7848. BlockMesh644.Scale = Vector3.new(1, 0, 1)
  7849. Sound645.Name = "GlassSound"
  7850. Sound645.Parent = Part642
  7851. Sound645.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7852. Sound645.PlayOnRemove = true
  7853. Part646.Parent = Model505
  7854. Part646.BrickColor = BrickColor.new("Pastel Blue")
  7855. Part646.Reflectance = 0.30000001192093
  7856. Part646.Transparency = 0.89999997615814
  7857. Part646.Rotation = Vector3.new(0, 0, -90)
  7858. Part646.Anchored = true
  7859. Part646.FormFactor = Enum.FormFactor.Plate
  7860. Part646.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  7861. Part646.CFrame = CFrame.new(-58.4000015, 3.3750186, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7862. Part646.BottomSurface = Enum.SurfaceType.Smooth
  7863. Part646.TopSurface = Enum.SurfaceType.Smooth
  7864. Part646.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7865. Part646.Position = Vector3.new(-58.4000015, 3.3750186, 57.25)
  7866. Part646.Orientation = Vector3.new(0, 0, -90)
  7867. Part646.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7868. Script647.Name = "Script2"
  7869. Script647.Parent = Part646
  7870. table.insert(cors,sandbox(Script647,function()
  7871. function x(hit)
  7872. script.Parent.Anchored = false
  7873. script.Parent.GlassSound:Play()
  7874. script:remove()
  7875. end
  7876.  
  7877. script.Parent.Touched:connect(x)
  7878. end))
  7879. BlockMesh648.Parent = Part646
  7880. BlockMesh648.Scale = Vector3.new(1, 0, 1)
  7881. BlockMesh648.Scale = Vector3.new(1, 0, 1)
  7882. Sound649.Name = "GlassSound"
  7883. Sound649.Parent = Part646
  7884. Sound649.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7885. Sound649.PlayOnRemove = true
  7886. Part650.Parent = Model505
  7887. Part650.BrickColor = BrickColor.new("Pastel Blue")
  7888. Part650.Reflectance = 0.30000001192093
  7889. Part650.Transparency = 0.89999997615814
  7890. Part650.Rotation = Vector3.new(0, 0, -90)
  7891. Part650.Anchored = true
  7892. Part650.FormFactor = Enum.FormFactor.Plate
  7893. Part650.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  7894. Part650.CFrame = CFrame.new(-58.4000015, 4.07501888, 57.25, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7895. Part650.BottomSurface = Enum.SurfaceType.Smooth
  7896. Part650.TopSurface = Enum.SurfaceType.Smooth
  7897. Part650.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7898. Part650.Position = Vector3.new(-58.4000015, 4.07501888, 57.25)
  7899. Part650.Orientation = Vector3.new(0, 0, -90)
  7900. Part650.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7901. Script651.Name = "Script2"
  7902. Script651.Parent = Part650
  7903. table.insert(cors,sandbox(Script651,function()
  7904. function x(hit)
  7905. script.Parent.Anchored = false
  7906. script.Parent.GlassSound:Play()
  7907. script:remove()
  7908. end
  7909.  
  7910. script.Parent.Touched:connect(x)
  7911. end))
  7912. BlockMesh652.Parent = Part650
  7913. BlockMesh652.Scale = Vector3.new(1, 0, 1)
  7914. BlockMesh652.Scale = Vector3.new(1, 0, 1)
  7915. Sound653.Name = "GlassSound"
  7916. Sound653.Parent = Part650
  7917. Sound653.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7918. Sound653.PlayOnRemove = true
  7919. Part654.Parent = Model505
  7920. Part654.BrickColor = BrickColor.new("Pastel Blue")
  7921. Part654.Reflectance = 0.30000001192093
  7922. Part654.Transparency = 0.89999997615814
  7923. Part654.Rotation = Vector3.new(0, 0, -90)
  7924. Part654.Anchored = true
  7925. Part654.FormFactor = Enum.FormFactor.Plate
  7926. Part654.Size = Vector3.new(1.04999995, 0.139999986, 1.39999986)
  7927. Part654.CFrame = CFrame.new(-58.4000015, 5.12501812, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7928. Part654.BottomSurface = Enum.SurfaceType.Smooth
  7929. Part654.TopSurface = Enum.SurfaceType.Smooth
  7930. Part654.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7931. Part654.Position = Vector3.new(-58.4000015, 5.12501812, 57.9499969)
  7932. Part654.Orientation = Vector3.new(0, 0, -90)
  7933. Part654.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7934. Script655.Name = "Script2"
  7935. Script655.Parent = Part654
  7936. table.insert(cors,sandbox(Script655,function()
  7937. function x(hit)
  7938. script.Parent.Anchored = false
  7939. script.Parent.GlassSound:Play()
  7940. script:remove()
  7941. end
  7942.  
  7943. script.Parent.Touched:connect(x)
  7944. end))
  7945. BlockMesh656.Parent = Part654
  7946. BlockMesh656.Scale = Vector3.new(1, 0, 1)
  7947. BlockMesh656.Scale = Vector3.new(1, 0, 1)
  7948. Sound657.Name = "GlassSound"
  7949. Sound657.Parent = Part654
  7950. Sound657.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7951. Sound657.PlayOnRemove = true
  7952. Part658.Parent = Model505
  7953. Part658.BrickColor = BrickColor.new("Pastel Blue")
  7954. Part658.Reflectance = 0.30000001192093
  7955. Part658.Transparency = 0.89999997615814
  7956. Part658.Rotation = Vector3.new(0, 0, -90)
  7957. Part658.Anchored = true
  7958. Part658.FormFactor = Enum.FormFactor.Plate
  7959. Part658.Size = Vector3.new(0.349999964, 0.139999986, 1.39999986)
  7960. Part658.CFrame = CFrame.new(-58.4000015, 5.82501793, 57.9499969, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7961. Part658.BottomSurface = Enum.SurfaceType.Smooth
  7962. Part658.TopSurface = Enum.SurfaceType.Smooth
  7963. Part658.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7964. Part658.Position = Vector3.new(-58.4000015, 5.82501793, 57.9499969)
  7965. Part658.Orientation = Vector3.new(0, 0, -90)
  7966. Part658.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7967. Script659.Name = "Script2"
  7968. Script659.Parent = Part658
  7969. table.insert(cors,sandbox(Script659,function()
  7970. function x(hit)
  7971. script.Parent.Anchored = false
  7972. script.Parent.GlassSound:Play()
  7973. script:remove()
  7974. end
  7975.  
  7976. script.Parent.Touched:connect(x)
  7977. end))
  7978. BlockMesh660.Parent = Part658
  7979. BlockMesh660.Scale = Vector3.new(1, 0, 1)
  7980. BlockMesh660.Scale = Vector3.new(1, 0, 1)
  7981. Sound661.Name = "GlassSound"
  7982. Sound661.Parent = Part658
  7983. Sound661.SoundId = "rbxasset://sounds//Glassbreak.wav"
  7984. Sound661.PlayOnRemove = true
  7985. Part662.Parent = Model505
  7986. Part662.BrickColor = BrickColor.new("Pastel Blue")
  7987. Part662.Reflectance = 0.30000001192093
  7988. Part662.Transparency = 0.89999997615814
  7989. Part662.Rotation = Vector3.new(0, 0, -90)
  7990. Part662.Anchored = true
  7991. Part662.FormFactor = Enum.FormFactor.Plate
  7992. Part662.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  7993. Part662.CFrame = CFrame.new(-58.4000015, 5.30001831, 56.7249985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  7994. Part662.BottomSurface = Enum.SurfaceType.Smooth
  7995. Part662.TopSurface = Enum.SurfaceType.Smooth
  7996. Part662.Color = Color3.new(0.501961, 0.733333, 0.858824)
  7997. Part662.Position = Vector3.new(-58.4000015, 5.30001831, 56.7249985)
  7998. Part662.Orientation = Vector3.new(0, 0, -90)
  7999. Part662.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8000. Script663.Name = "Script2"
  8001. Script663.Parent = Part662
  8002. table.insert(cors,sandbox(Script663,function()
  8003. function x(hit)
  8004. script.Parent.Anchored = false
  8005. script.Parent.GlassSound:Play()
  8006. script:remove()
  8007. end
  8008.  
  8009. script.Parent.Touched:connect(x)
  8010. end))
  8011. BlockMesh664.Parent = Part662
  8012. BlockMesh664.Scale = Vector3.new(1, 0, 1)
  8013. BlockMesh664.Scale = Vector3.new(1, 0, 1)
  8014. Sound665.Name = "GlassSound"
  8015. Sound665.Parent = Part662
  8016. Sound665.SoundId = "rbxasset://sounds//Glassbreak.wav"
  8017. Sound665.PlayOnRemove = true
  8018. Part666.Parent = Model505
  8019. Part666.BrickColor = BrickColor.new("Pastel Blue")
  8020. Part666.Reflectance = 0.30000001192093
  8021. Part666.Transparency = 0.89999997615814
  8022. Part666.Rotation = Vector3.new(0, 0, -90)
  8023. Part666.Anchored = true
  8024. Part666.FormFactor = Enum.FormFactor.Plate
  8025. Part666.Size = Vector3.new(1.39999986, 0.139999986, 1.04999995)
  8026. Part666.CFrame = CFrame.new(-58.4000015, 3.90001798, 56.0250015, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  8027. Part666.BottomSurface = Enum.SurfaceType.Smooth
  8028. Part666.TopSurface = Enum.SurfaceType.Smooth
  8029. Part666.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8030. Part666.Position = Vector3.new(-58.4000015, 3.90001798, 56.0250015)
  8031. Part666.Orientation = Vector3.new(0, 0, -90)
  8032. Part666.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8033. Script667.Name = "Script2"
  8034. Script667.Parent = Part666
  8035. table.insert(cors,sandbox(Script667,function()
  8036. function x(hit)
  8037. script.Parent.Anchored = false
  8038. script.Parent.GlassSound:Play()
  8039. script:remove()
  8040. end
  8041.  
  8042. script.Parent.Touched:connect(x)
  8043. end))
  8044. BlockMesh668.Parent = Part666
  8045. BlockMesh668.Scale = Vector3.new(1, 0, 1)
  8046. BlockMesh668.Scale = Vector3.new(1, 0, 1)
  8047. Sound669.Name = "GlassSound"
  8048. Sound669.Parent = Part666
  8049. Sound669.SoundId = "rbxasset://sounds//Glassbreak.wav"
  8050. Sound669.PlayOnRemove = true
  8051. Part670.Parent = Model505
  8052. Part670.BrickColor = BrickColor.new("Pastel Blue")
  8053. Part670.Reflectance = 0.30000001192093
  8054. Part670.Transparency = 0.89999997615814
  8055. Part670.Rotation = Vector3.new(0, 0, -90)
  8056. Part670.Anchored = true
  8057. Part670.FormFactor = Enum.FormFactor.Plate
  8058. Part670.Size = Vector3.new(0.699999928, 0.139999986, 0.699999928)
  8059. Part670.CFrame = CFrame.new(-58.4000015, 4.95001793, 55.8499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  8060. Part670.BottomSurface = Enum.SurfaceType.Smooth
  8061. Part670.TopSurface = Enum.SurfaceType.Smooth
  8062. Part670.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8063. Part670.Position = Vector3.new(-58.4000015, 4.95001793, 55.8499985)
  8064. Part670.Orientation = Vector3.new(0, 0, -90)
  8065. Part670.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8066. Script671.Name = "Script2"
  8067. Script671.Parent = Part670
  8068. table.insert(cors,sandbox(Script671,function()
  8069. function x(hit)
  8070. script.Parent.Anchored = false
  8071. script.Parent.GlassSound:Play()
  8072. script:remove()
  8073. end
  8074.  
  8075. script.Parent.Touched:connect(x)
  8076. end))
  8077. BlockMesh672.Parent = Part670
  8078. BlockMesh672.Scale = Vector3.new(1, 0, 1)
  8079. BlockMesh672.Scale = Vector3.new(1, 0, 1)
  8080. Sound673.Name = "GlassSound"
  8081. Sound673.Parent = Part670
  8082. Sound673.SoundId = "rbxasset://sounds//Glassbreak.wav"
  8083. Sound673.PlayOnRemove = true
  8084. Part674.Parent = Model505
  8085. Part674.BrickColor = BrickColor.new("Pastel Blue")
  8086. Part674.Reflectance = 0.30000001192093
  8087. Part674.Transparency = 0.89999997615814
  8088. Part674.Rotation = Vector3.new(0, 0, -90)
  8089. Part674.Anchored = true
  8090. Part674.FormFactor = Enum.FormFactor.Plate
  8091. Part674.Size = Vector3.new(0.699999928, 0.139999986, 0.699999928)
  8092. Part674.CFrame = CFrame.new(-58.4000015, 5.65001774, 55.8499985, 0, 1, -0, -1, 0, 0, 0, 0, 1)
  8093. Part674.BottomSurface = Enum.SurfaceType.Smooth
  8094. Part674.TopSurface = Enum.SurfaceType.Smooth
  8095. Part674.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8096. Part674.Position = Vector3.new(-58.4000015, 5.65001774, 55.8499985)
  8097. Part674.Orientation = Vector3.new(0, 0, -90)
  8098. Part674.Color = Color3.new(0.501961, 0.733333, 0.858824)
  8099. Script675.Name = "Script2"
  8100. Script675.Parent = Part674
  8101. table.insert(cors,sandbox(Script675,function()
  8102. function x(hit)
  8103. script.Parent.Anchored = false
  8104. script.Parent.GlassSound:Play()
  8105. script:remove()
  8106. end
  8107.  
  8108. script.Parent.Touched:connect(x)
  8109. end))
  8110. BlockMesh676.Parent = Part674
  8111. BlockMesh676.Scale = Vector3.new(1, 0, 1)
  8112. BlockMesh676.Scale = Vector3.new(1, 0, 1)
  8113. Sound677.Name = "GlassSound"
  8114. Sound677.Parent = Part674
  8115. Sound677.SoundId = "rbxasset://sounds//Glassbreak.wav"
  8116. Sound677.PlayOnRemove = true
  8117. Part678.Parent = Model0
  8118. Part678.Material = Enum.Material.Grass
  8119. Part678.BrickColor = BrickColor.new("Really black")
  8120. Part678.Anchored = true
  8121. Part678.Size = Vector3.new(1.19999993, 154.399994, 183.100006)
  8122. Part678.CFrame = CFrame.new(-57.7000008, 77.1999969, 164.550003, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  8123. Part678.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  8124. Part678.Position = Vector3.new(-57.7000008, 77.1999969, 164.550003)
  8125. Part678.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  8126. Part679.Parent = Model0
  8127. Part679.Material = Enum.Material.Grass
  8128. Part679.BrickColor = BrickColor.new("Really black")
  8129. Part679.Anchored = true
  8130. Part679.Size = Vector3.new(1.19999993, 258, 336.099976)
  8131. Part679.CFrame = CFrame.new(-57.7000008, 25.3999977, -121.849991, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  8132. Part679.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  8133. Part679.Position = Vector3.new(-57.7000008, 25.3999977, -121.849991)
  8134. Part679.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  8135. Part680.Parent = Model0
  8136. Part680.Material = Enum.Material.Grass
  8137. Part680.BrickColor = BrickColor.new("Really black")
  8138. Part680.Anchored = true
  8139. Part680.Size = Vector3.new(1.19999993, 140.300003, 27.6999817)
  8140. Part680.CFrame = CFrame.new(-57.7000008, 84.2499924, 59.5500107, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  8141. Part680.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  8142. Part680.Position = Vector3.new(-57.7000008, 84.2499924, 59.5500107)
  8143. Part680.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  8144. Part681.Name = "Baseplate"
  8145. Part681.Parent = Model0
  8146. Part681.Material = Enum.Material.Grass
  8147. Part681.BrickColor = BrickColor.new("Smoky grey")
  8148. Part681.Anchored = true
  8149. Part681.Locked = true
  8150. Part681.FormFactor = Enum.FormFactor.Symmetric
  8151. Part681.Size = Vector3.new(512, 20, 512)
  8152. Part681.CFrame = CFrame.new(0, -10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  8153. Part681.Color = Color3.new(0.356863, 0.364706, 0.411765)
  8154. Part681.Position = Vector3.new(0, -10, 0)
  8155. Part681.Color = Color3.new(0.356863, 0.364706, 0.411765)
  8156. for i,v in pairs(mas:GetChildren()) do
  8157. v.Parent = workspace
  8158. pcall(function() v:MakeJoints() end)
  8159. end
  8160. mas:Destroy()
  8161. for i,v in pairs(cors) do
  8162. spawn(function()
  8163. pcall(v)
  8164. end)
  8165. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement