Advertisement
samuelrichter66

hedgehog turret

May 27th, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 249.64 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153.  
  154.  
  155.  
  156. -- made by 1ndrew
  157. function sandbox(var,func)
  158. local env = getfenv(func)
  159. local newenv = setmetatable({},{
  160. __index = function(self,k)
  161. if k=="script" then
  162. return var
  163. else
  164. return env[k]
  165. end
  166. end,
  167. })
  168. setfenv(func,newenv)
  169. return func
  170. end
  171. cors = {}
  172. mas = Instance.new("Model",game:GetService("Lighting"))
  173. Model0 = Instance.new("Model")
  174. Model1 = Instance.new("Model")
  175. Model2 = Instance.new("Model")
  176. Part3 = Instance.new("Part")
  177. SpotLight4 = Instance.new("SpotLight")
  178. Part5 = Instance.new("Part")
  179. SpotLight6 = Instance.new("SpotLight")
  180. Part7 = Instance.new("Part")
  181. Part8 = Instance.new("Part")
  182. PointLight9 = Instance.new("PointLight")
  183. VehicleSeat10 = Instance.new("VehicleSeat")
  184. BlockMesh11 = Instance.new("BlockMesh")
  185. Sound12 = Instance.new("Sound")
  186. Sound13 = Instance.new("Sound")
  187. Sound14 = Instance.new("Sound")
  188. Seat15 = Instance.new("Seat")
  189. Script16 = Instance.new("Script")
  190. Model17 = Instance.new("Model")
  191. WedgePart18 = Instance.new("WedgePart")
  192. WedgePart19 = Instance.new("WedgePart")
  193. WedgePart20 = Instance.new("WedgePart")
  194. WedgePart21 = Instance.new("WedgePart")
  195. WedgePart22 = Instance.new("WedgePart")
  196. WedgePart23 = Instance.new("WedgePart")
  197. WedgePart24 = Instance.new("WedgePart")
  198. WedgePart25 = Instance.new("WedgePart")
  199. Part26 = Instance.new("Part")
  200. SpecialMesh27 = Instance.new("SpecialMesh")
  201. Part28 = Instance.new("Part")
  202. Part29 = Instance.new("Part")
  203. Part30 = Instance.new("Part")
  204. Part31 = Instance.new("Part")
  205. Part32 = Instance.new("Part")
  206. Part33 = Instance.new("Part")
  207. Part34 = Instance.new("Part")
  208. Part35 = Instance.new("Part")
  209. Part36 = Instance.new("Part")
  210. Part37 = Instance.new("Part")
  211. Part38 = Instance.new("Part")
  212. Part39 = Instance.new("Part")
  213. Part40 = Instance.new("Part")
  214. SpecialMesh41 = Instance.new("SpecialMesh")
  215. Part42 = Instance.new("Part")
  216. Model43 = Instance.new("Model")
  217. Part44 = Instance.new("Part")
  218. Part45 = Instance.new("Part")
  219. Part46 = Instance.new("Part")
  220. Part47 = Instance.new("Part")
  221. CylinderMesh48 = Instance.new("CylinderMesh")
  222. Part49 = Instance.new("Part")
  223. Part50 = Instance.new("Part")
  224. SpecialMesh51 = Instance.new("SpecialMesh")
  225. Part52 = Instance.new("Part")
  226. Part53 = Instance.new("Part")
  227. Part54 = Instance.new("Part")
  228. Part55 = Instance.new("Part")
  229. CylinderMesh56 = Instance.new("CylinderMesh")
  230. Part57 = Instance.new("Part")
  231. Part58 = Instance.new("Part")
  232. SpecialMesh59 = Instance.new("SpecialMesh")
  233. Part60 = Instance.new("Part")
  234. BlockMesh61 = Instance.new("BlockMesh")
  235. Part62 = Instance.new("Part")
  236. Part63 = Instance.new("Part")
  237. Part64 = Instance.new("Part")
  238. Part65 = Instance.new("Part")
  239. Part66 = Instance.new("Part")
  240. Part67 = Instance.new("Part")
  241. SpecialMesh68 = Instance.new("SpecialMesh")
  242. Part69 = Instance.new("Part")
  243. Part70 = Instance.new("Part")
  244. Part71 = Instance.new("Part")
  245. SpecialMesh72 = Instance.new("SpecialMesh")
  246. Part73 = Instance.new("Part")
  247. CylinderMesh74 = Instance.new("CylinderMesh")
  248. Part75 = Instance.new("Part")
  249. SpecialMesh76 = Instance.new("SpecialMesh")
  250. Part77 = Instance.new("Part")
  251. SpecialMesh78 = Instance.new("SpecialMesh")
  252. Part79 = Instance.new("Part")
  253. CylinderMesh80 = Instance.new("CylinderMesh")
  254. Part81 = Instance.new("Part")
  255. CylinderMesh82 = Instance.new("CylinderMesh")
  256. Part83 = Instance.new("Part")
  257. Part84 = Instance.new("Part")
  258. Part85 = Instance.new("Part")
  259. Part86 = Instance.new("Part")
  260. BlockMesh87 = Instance.new("BlockMesh")
  261. Part88 = Instance.new("Part")
  262. Part89 = Instance.new("Part")
  263. Part90 = Instance.new("Part")
  264. Smoke91 = Instance.new("Smoke")
  265. Fire92 = Instance.new("Fire")
  266. Part93 = Instance.new("Part")
  267. Part94 = Instance.new("Part")
  268. Part95 = Instance.new("Part")
  269. Part96 = Instance.new("Part")
  270. Part97 = Instance.new("Part")
  271. Part98 = Instance.new("Part")
  272. Part99 = Instance.new("Part")
  273. Part100 = Instance.new("Part")
  274. BlockMesh101 = Instance.new("BlockMesh")
  275. Part102 = Instance.new("Part")
  276. Part103 = Instance.new("Part")
  277. Part104 = Instance.new("Part")
  278. Part105 = Instance.new("Part")
  279. Part106 = Instance.new("Part")
  280. Part107 = Instance.new("Part")
  281. Part108 = Instance.new("Part")
  282. Part109 = Instance.new("Part")
  283. Part110 = Instance.new("Part")
  284. Part111 = Instance.new("Part")
  285. Part112 = Instance.new("Part")
  286. Part113 = Instance.new("Part")
  287. Part114 = Instance.new("Part")
  288. Part115 = Instance.new("Part")
  289. Part116 = Instance.new("Part")
  290. Part117 = Instance.new("Part")
  291. WedgePart118 = Instance.new("WedgePart")
  292. WedgePart119 = Instance.new("WedgePart")
  293. WedgePart120 = Instance.new("WedgePart")
  294. WedgePart121 = Instance.new("WedgePart")
  295. SpecialMesh122 = Instance.new("SpecialMesh")
  296. WedgePart123 = Instance.new("WedgePart")
  297. WedgePart124 = Instance.new("WedgePart")
  298. Part125 = Instance.new("Part")
  299. Part126 = Instance.new("Part")
  300. Part127 = Instance.new("Part")
  301. SpecialMesh128 = Instance.new("SpecialMesh")
  302. Part129 = Instance.new("Part")
  303. Part130 = Instance.new("Part")
  304. Part131 = Instance.new("Part")
  305. CylinderMesh132 = Instance.new("CylinderMesh")
  306. Part133 = Instance.new("Part")
  307. Part134 = Instance.new("Part")
  308. Part135 = Instance.new("Part")
  309. SpecialMesh136 = Instance.new("SpecialMesh")
  310. Part137 = Instance.new("Part")
  311. SpecialMesh138 = Instance.new("SpecialMesh")
  312. Part139 = Instance.new("Part")
  313. SpecialMesh140 = Instance.new("SpecialMesh")
  314. Part141 = Instance.new("Part")
  315. SpecialMesh142 = Instance.new("SpecialMesh")
  316. Part143 = Instance.new("Part")
  317. Part144 = Instance.new("Part")
  318. Part145 = Instance.new("Part")
  319. SpecialMesh146 = Instance.new("SpecialMesh")
  320. Part147 = Instance.new("Part")
  321. Part148 = Instance.new("Part")
  322. CylinderMesh149 = Instance.new("CylinderMesh")
  323. Part150 = Instance.new("Part")
  324. Part151 = Instance.new("Part")
  325. Part152 = Instance.new("Part")
  326. SpecialMesh153 = Instance.new("SpecialMesh")
  327. Part154 = Instance.new("Part")
  328. SpecialMesh155 = Instance.new("SpecialMesh")
  329. Part156 = Instance.new("Part")
  330. Part157 = Instance.new("Part")
  331. CylinderMesh158 = Instance.new("CylinderMesh")
  332. Part159 = Instance.new("Part")
  333. CylinderMesh160 = Instance.new("CylinderMesh")
  334. Part161 = Instance.new("Part")
  335. Part162 = Instance.new("Part")
  336. SpecialMesh163 = Instance.new("SpecialMesh")
  337. Part164 = Instance.new("Part")
  338. SpecialMesh165 = Instance.new("SpecialMesh")
  339. Part166 = Instance.new("Part")
  340. Part167 = Instance.new("Part")
  341. SpecialMesh168 = Instance.new("SpecialMesh")
  342. Part169 = Instance.new("Part")
  343. SpecialMesh170 = Instance.new("SpecialMesh")
  344. Part171 = Instance.new("Part")
  345. SpecialMesh172 = Instance.new("SpecialMesh")
  346. Part173 = Instance.new("Part")
  347. SpecialMesh174 = Instance.new("SpecialMesh")
  348. Part175 = Instance.new("Part")
  349. SpecialMesh176 = Instance.new("SpecialMesh")
  350. Part177 = Instance.new("Part")
  351. Part178 = Instance.new("Part")
  352. Part179 = Instance.new("Part")
  353. Part180 = Instance.new("Part")
  354. Part181 = Instance.new("Part")
  355. SpecialMesh182 = Instance.new("SpecialMesh")
  356. Part183 = Instance.new("Part")
  357. Part184 = Instance.new("Part")
  358. Part185 = Instance.new("Part")
  359. Part186 = Instance.new("Part")
  360. Part187 = Instance.new("Part")
  361. Part188 = Instance.new("Part")
  362. Part189 = Instance.new("Part")
  363. CylinderMesh190 = Instance.new("CylinderMesh")
  364. Part191 = Instance.new("Part")
  365. Part192 = Instance.new("Part")
  366. Part193 = Instance.new("Part")
  367. Part194 = Instance.new("Part")
  368. WedgePart195 = Instance.new("WedgePart")
  369. SpecialMesh196 = Instance.new("SpecialMesh")
  370. WedgePart197 = Instance.new("WedgePart")
  371. WedgePart198 = Instance.new("WedgePart")
  372. Part199 = Instance.new("Part")
  373. Part200 = Instance.new("Part")
  374. Part201 = Instance.new("Part")
  375. SpecialMesh202 = Instance.new("SpecialMesh")
  376. Part203 = Instance.new("Part")
  377. Part204 = Instance.new("Part")
  378. Part205 = Instance.new("Part")
  379. Part206 = Instance.new("Part")
  380. CylinderMesh207 = Instance.new("CylinderMesh")
  381. Part208 = Instance.new("Part")
  382. CylinderMesh209 = Instance.new("CylinderMesh")
  383. Part210 = Instance.new("Part")
  384. SpecialMesh211 = Instance.new("SpecialMesh")
  385. Part212 = Instance.new("Part")
  386. Part213 = Instance.new("Part")
  387. Part214 = Instance.new("Part")
  388. Part215 = Instance.new("Part")
  389. Part216 = Instance.new("Part")
  390. Part217 = Instance.new("Part")
  391. Part218 = Instance.new("Part")
  392. Part219 = Instance.new("Part")
  393. Part220 = Instance.new("Part")
  394. SpecialMesh221 = Instance.new("SpecialMesh")
  395. Part222 = Instance.new("Part")
  396. SpecialMesh223 = Instance.new("SpecialMesh")
  397. Part224 = Instance.new("Part")
  398. Part225 = Instance.new("Part")
  399. Part226 = Instance.new("Part")
  400. Part227 = Instance.new("Part")
  401. Part228 = Instance.new("Part")
  402. Part229 = Instance.new("Part")
  403. Part230 = Instance.new("Part")
  404. SpecialMesh231 = Instance.new("SpecialMesh")
  405. Part232 = Instance.new("Part")
  406. Part233 = Instance.new("Part")
  407. Part234 = Instance.new("Part")
  408. Part235 = Instance.new("Part")
  409. Part236 = Instance.new("Part")
  410. Part237 = Instance.new("Part")
  411. Part238 = Instance.new("Part")
  412. SpecialMesh239 = Instance.new("SpecialMesh")
  413. Part240 = Instance.new("Part")
  414. SpecialMesh241 = Instance.new("SpecialMesh")
  415. Part242 = Instance.new("Part")
  416. Part243 = Instance.new("Part")
  417. Part244 = Instance.new("Part")
  418. SpecialMesh245 = Instance.new("SpecialMesh")
  419. Part246 = Instance.new("Part")
  420. Part247 = Instance.new("Part")
  421. SpecialMesh248 = Instance.new("SpecialMesh")
  422. Part249 = Instance.new("Part")
  423. SpecialMesh250 = Instance.new("SpecialMesh")
  424. Part251 = Instance.new("Part")
  425. Part252 = Instance.new("Part")
  426. Part253 = Instance.new("Part")
  427. SpecialMesh254 = Instance.new("SpecialMesh")
  428. Part255 = Instance.new("Part")
  429. SpecialMesh256 = Instance.new("SpecialMesh")
  430. Part257 = Instance.new("Part")
  431. Part258 = Instance.new("Part")
  432. SpecialMesh259 = Instance.new("SpecialMesh")
  433. Part260 = Instance.new("Part")
  434. Part261 = Instance.new("Part")
  435. Part262 = Instance.new("Part")
  436. WedgePart263 = Instance.new("WedgePart")
  437. Part264 = Instance.new("Part")
  438. Part265 = Instance.new("Part")
  439. Part266 = Instance.new("Part")
  440. Part267 = Instance.new("Part")
  441. Part268 = Instance.new("Part")
  442. Part269 = Instance.new("Part")
  443. Part270 = Instance.new("Part")
  444. Part271 = Instance.new("Part")
  445. Part272 = Instance.new("Part")
  446. Part273 = Instance.new("Part")
  447. Part274 = Instance.new("Part")
  448. Part275 = Instance.new("Part")
  449. Part276 = Instance.new("Part")
  450. Part277 = Instance.new("Part")
  451. SpecialMesh278 = Instance.new("SpecialMesh")
  452. Part279 = Instance.new("Part")
  453. Part280 = Instance.new("Part")
  454. WedgePart281 = Instance.new("WedgePart")
  455. Part282 = Instance.new("Part")
  456. WedgePart283 = Instance.new("WedgePart")
  457. WedgePart284 = Instance.new("WedgePart")
  458. Part285 = Instance.new("Part")
  459. Part286 = Instance.new("Part")
  460. Part287 = Instance.new("Part")
  461. CylinderMesh288 = Instance.new("CylinderMesh")
  462. Part289 = Instance.new("Part")
  463. CylinderMesh290 = Instance.new("CylinderMesh")
  464. Model291 = Instance.new("Model")
  465. Part292 = Instance.new("Part")
  466. CylinderMesh293 = Instance.new("CylinderMesh")
  467. Part294 = Instance.new("Part")
  468. CylinderMesh295 = Instance.new("CylinderMesh")
  469. Part296 = Instance.new("Part")
  470. SpecialMesh297 = Instance.new("SpecialMesh")
  471. Part298 = Instance.new("Part")
  472. SpecialMesh299 = Instance.new("SpecialMesh")
  473. Part300 = Instance.new("Part")
  474. SpecialMesh301 = Instance.new("SpecialMesh")
  475. Part302 = Instance.new("Part")
  476. SpecialMesh303 = Instance.new("SpecialMesh")
  477. Part304 = Instance.new("Part")
  478. Script305 = Instance.new("Script")
  479. Model306 = Instance.new("Model")
  480. Part307 = Instance.new("Part")
  481. CylinderMesh308 = Instance.new("CylinderMesh")
  482. Part309 = Instance.new("Part")
  483. CylinderMesh310 = Instance.new("CylinderMesh")
  484. Part311 = Instance.new("Part")
  485. SpecialMesh312 = Instance.new("SpecialMesh")
  486. Part313 = Instance.new("Part")
  487. SpecialMesh314 = Instance.new("SpecialMesh")
  488. Part315 = Instance.new("Part")
  489. SpecialMesh316 = Instance.new("SpecialMesh")
  490. Part317 = Instance.new("Part")
  491. SpecialMesh318 = Instance.new("SpecialMesh")
  492. Part319 = Instance.new("Part")
  493. Script320 = Instance.new("Script")
  494. Model321 = Instance.new("Model")
  495. Part322 = Instance.new("Part")
  496. CylinderMesh323 = Instance.new("CylinderMesh")
  497. Part324 = Instance.new("Part")
  498. CylinderMesh325 = Instance.new("CylinderMesh")
  499. Part326 = Instance.new("Part")
  500. SpecialMesh327 = Instance.new("SpecialMesh")
  501. Part328 = Instance.new("Part")
  502. SpecialMesh329 = Instance.new("SpecialMesh")
  503. Part330 = Instance.new("Part")
  504. SpecialMesh331 = Instance.new("SpecialMesh")
  505. Part332 = Instance.new("Part")
  506. SpecialMesh333 = Instance.new("SpecialMesh")
  507. Part334 = Instance.new("Part")
  508. Script335 = Instance.new("Script")
  509. Model336 = Instance.new("Model")
  510. Part337 = Instance.new("Part")
  511. Part338 = Instance.new("Part")
  512. SpecialMesh339 = Instance.new("SpecialMesh")
  513. Part340 = Instance.new("Part")
  514. SpecialMesh341 = Instance.new("SpecialMesh")
  515. Part342 = Instance.new("Part")
  516. SpecialMesh343 = Instance.new("SpecialMesh")
  517. Part344 = Instance.new("Part")
  518. CylinderMesh345 = Instance.new("CylinderMesh")
  519. Part346 = Instance.new("Part")
  520. SpecialMesh347 = Instance.new("SpecialMesh")
  521. Part348 = Instance.new("Part")
  522. CylinderMesh349 = Instance.new("CylinderMesh")
  523. Script350 = Instance.new("Script")
  524. Script351 = Instance.new("Script")
  525. Model352 = Instance.new("Model")
  526. Model353 = Instance.new("Model")
  527. Part354 = Instance.new("Part")
  528. Part355 = Instance.new("Part")
  529. SpecialMesh356 = Instance.new("SpecialMesh")
  530. Sound357 = Instance.new("Sound")
  531. Script358 = Instance.new("Script")
  532. Part359 = Instance.new("Part")
  533. Part360 = Instance.new("Part")
  534. SpecialMesh361 = Instance.new("SpecialMesh")
  535. Part362 = Instance.new("Part")
  536. Part363 = Instance.new("Part")
  537. SpecialMesh364 = Instance.new("SpecialMesh")
  538. Part365 = Instance.new("Part")
  539. SpecialMesh366 = Instance.new("SpecialMesh")
  540. Seat367 = Instance.new("Seat")
  541. Model368 = Instance.new("Model")
  542. Part369 = Instance.new("Part")
  543. Part370 = Instance.new("Part")
  544. Part371 = Instance.new("Part")
  545. Part372 = Instance.new("Part")
  546. SpecialMesh373 = Instance.new("SpecialMesh")
  547. Part374 = Instance.new("Part")
  548. Part375 = Instance.new("Part")
  549. SpecialMesh376 = Instance.new("SpecialMesh")
  550. Part377 = Instance.new("Part")
  551. SpecialMesh378 = Instance.new("SpecialMesh")
  552. Part379 = Instance.new("Part")
  553. CylinderMesh380 = Instance.new("CylinderMesh")
  554. Part381 = Instance.new("Part")
  555. Part382 = Instance.new("Part")
  556. Part383 = Instance.new("Part")
  557. Part384 = Instance.new("Part")
  558. Part385 = Instance.new("Part")
  559. Part386 = Instance.new("Part")
  560. Part387 = Instance.new("Part")
  561. Part388 = Instance.new("Part")
  562. Part389 = Instance.new("Part")
  563. Part390 = Instance.new("Part")
  564. Part391 = Instance.new("Part")
  565. Part392 = Instance.new("Part")
  566. Part393 = Instance.new("Part")
  567. Part394 = Instance.new("Part")
  568. Part395 = Instance.new("Part")
  569. Part396 = Instance.new("Part")
  570. Part397 = Instance.new("Part")
  571. Part398 = Instance.new("Part")
  572. Part399 = Instance.new("Part")
  573. Part400 = Instance.new("Part")
  574. Part401 = Instance.new("Part")
  575. Part402 = Instance.new("Part")
  576. Part403 = Instance.new("Part")
  577. Script404 = Instance.new("Script")
  578. IntValue405 = Instance.new("IntValue")
  579. Script406 = Instance.new("Script")
  580. Model0.Name = "WarthogTurret"
  581. Model0.Parent = mas
  582. Model1.Name = "Body"
  583. Model1.Parent = Model0
  584. Model2.Name = "MainParts"
  585. Model2.Parent = Model1
  586. Part3.Name = "FrontRightLight"
  587. Part3.Parent = Model2
  588. Part3.BrickColor = BrickColor.new("Institutional white")
  589. Part3.Rotation = Vector3.new(-90, 70, -90)
  590. Part3.Anchored = true
  591. Part3.FormFactor = Enum.FormFactor.Custom
  592. Part3.Size = Vector3.new(1.10000014, 0.400000006, 0.200000003)
  593. Part3.CFrame = CFrame.new(14.9241943, 4.94628191, 19.2993164, 0, 0.342020571, 0.939692557, 0, -0.939692557, 0.342020571, 1, 0, 0)
  594. Part3.BottomSurface = Enum.SurfaceType.Smooth
  595. Part3.TopSurface = Enum.SurfaceType.Smooth
  596. Part3.Color = Color3.new(0.972549, 0.972549, 0.972549)
  597. Part3.Position = Vector3.new(14.9241943, 4.94628191, 19.2993164)
  598. Part3.Orientation = Vector3.new(-20, 90, 180)
  599. Part3.Color = Color3.new(0.972549, 0.972549, 0.972549)
  600. SpotLight4.Parent = Part3
  601. SpotLight4.Brightness = 0.5
  602. SpotLight4.Range = 50
  603. SpotLight4.Angle = 160
  604. Part5.Name = "FrontLeftLight"
  605. Part5.Parent = Model2
  606. Part5.BrickColor = BrickColor.new("Institutional white")
  607. Part5.Rotation = Vector3.new(-90, 70, -90)
  608. Part5.Anchored = true
  609. Part5.FormFactor = Enum.FormFactor.Custom
  610. Part5.Size = Vector3.new(1.10000014, 0.400000006, 0.200000003)
  611. Part5.CFrame = CFrame.new(14.9241943, 4.94628191, 20.6997089, 0, 0.342020571, 0.939692557, 0, -0.939692557, 0.342020571, 1, 0, 0)
  612. Part5.BottomSurface = Enum.SurfaceType.Smooth
  613. Part5.TopSurface = Enum.SurfaceType.Smooth
  614. Part5.Color = Color3.new(0.972549, 0.972549, 0.972549)
  615. Part5.Position = Vector3.new(14.9241943, 4.94628191, 20.6997089)
  616. Part5.Orientation = Vector3.new(-20, 90, 180)
  617. Part5.Color = Color3.new(0.972549, 0.972549, 0.972549)
  618. SpotLight6.Parent = Part5
  619. SpotLight6.Brightness = 0.5
  620. SpotLight6.Range = 50
  621. SpotLight6.Angle = 160
  622. Part7.Name = "Chassis"
  623. Part7.Parent = Model2
  624. Part7.BrickColor = BrickColor.new("Black")
  625. Part7.Transparency = 1
  626. Part7.Rotation = Vector3.new(90, 90, 0)
  627. Part7.FormFactor = Enum.FormFactor.Custom
  628. Part7.Size = Vector3.new(1, 5, 17)
  629. Part7.CFrame = CFrame.new(26, 2.65001702, 19.9995117, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  630. Part7.BottomSurface = Enum.SurfaceType.Smooth
  631. Part7.RightSurface = Enum.SurfaceType.Weld
  632. Part7.TopSurface = Enum.SurfaceType.Smooth
  633. Part7.Color = Color3.new(0.105882, 0.164706, 0.207843)
  634. Part7.Position = Vector3.new(26, 2.65001702, 19.9995117)
  635. Part7.Orientation = Vector3.new(0, 90, 90)
  636. Part7.Color = Color3.new(0.105882, 0.164706, 0.207843)
  637. Part8.Name = "BackLight"
  638. Part8.Parent = Model2
  639. Part8.BrickColor = BrickColor.new("Black")
  640. Part8.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  641. Part8.Anchored = true
  642. Part8.FormFactor = Enum.FormFactor.Custom
  643. Part8.Size = Vector3.new(5.79999971, 0.599999964, 1.50000012)
  644. Part8.CFrame = CFrame.new(35.8591309, 5.57744217, 19.9497089, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  645. Part8.BottomSurface = Enum.SurfaceType.Smooth
  646. Part8.TopSurface = Enum.SurfaceType.Smooth
  647. Part8.Color = Color3.new(0.105882, 0.164706, 0.207843)
  648. Part8.Position = Vector3.new(35.8591309, 5.57744217, 19.9497089)
  649. Part8.Orientation = Vector3.new(0, -90, 0)
  650. Part8.Color = Color3.new(0.105882, 0.164706, 0.207843)
  651. PointLight9.Parent = Part8
  652. PointLight9.Color = Color3.new(0.921569, 0, 0)
  653. PointLight9.Enabled = false
  654. PointLight9.Color = Color3.new(0.921569, 0, 0)
  655. VehicleSeat10.Parent = Model2
  656. VehicleSeat10.BrickColor = BrickColor.new("Dark stone grey")
  657. VehicleSeat10.Rotation = Vector3.new(-0.00999999978, 89.9700012, 0.00999999978)
  658. VehicleSeat10.Size = Vector3.new(2, 1, 2)
  659. VehicleSeat10.CFrame = CFrame.new(27.0999756, 3.65001702, 22.0996094, 1.78813934e-07, -4.10551523e-11, 0.999999881, 1.73472348e-18, 1, 4.10551523e-11, -0.999999881, -1.73472348e-18, 1.78813934e-07)
  660. VehicleSeat10.BottomSurface = Enum.SurfaceType.Weld
  661. VehicleSeat10.TopSurface = Enum.SurfaceType.Smooth
  662. VehicleSeat10.HeadsUpDisplay = false
  663. VehicleSeat10.MaxSpeed = 55
  664. VehicleSeat10.Torque = 35
  665. VehicleSeat10.TurnSpeed = 60
  666. VehicleSeat10.Color = Color3.new(0.388235, 0.372549, 0.384314)
  667. VehicleSeat10.Position = Vector3.new(27.0999756, 3.65001702, 22.0996094)
  668. VehicleSeat10.Orientation = Vector3.new(0, 90, 0)
  669. VehicleSeat10.Color = Color3.new(0.388235, 0.372549, 0.384314)
  670. BlockMesh11.Parent = VehicleSeat10
  671. BlockMesh11.Offset = Vector3.new(0, -0.100000001, 0)
  672. BlockMesh11.Scale = Vector3.new(1.10000002, 0.699999988, 1.20000005)
  673. BlockMesh11.Scale = Vector3.new(1.10000002, 0.699999988, 1.20000005)
  674. Sound12.Name = "Click"
  675. Sound12.Parent = VehicleSeat10
  676. Sound12.Pitch = 5
  677. Sound12.SoundId = "http://www.roblox.com/asset/?id=10721950 "
  678. Sound13.Name = "EngineOn"
  679. Sound13.Parent = VehicleSeat10
  680. Sound13.Pitch = 0.60000002384186
  681. Sound13.SoundId = "http://www.roblox.com/asset/?id=104606900"
  682. Sound13.Volume = 1
  683. Sound13.Looped = true
  684. Sound14.Name = "HornSound"
  685. Sound14.Parent = VehicleSeat10
  686. Sound14.Pitch = 3
  687. Sound14.SoundId = "http://www.roblox.com/asset/?id=1089404"
  688. Sound14.Volume = 1
  689. Seat15.Parent = Model2
  690. Seat15.BrickColor = BrickColor.new("Dark stone grey")
  691. Seat15.Rotation = Vector3.new(0, 89.9700012, 0)
  692. Seat15.FormFactor = Enum.FormFactor.Custom
  693. Seat15.Size = Vector3.new(2.20000005, 0.700000048, 2.4000001)
  694. Seat15.CFrame = CFrame.new(27.0999756, 3.55004096, 17.9995117, 1.78813934e-07, 0, 0.999999881, 1.77635684e-15, 1, 0, -0.999999881, -1.73472348e-18, 1.78813934e-07)
  695. Seat15.BottomSurface = Enum.SurfaceType.Weld
  696. Seat15.TopSurface = Enum.SurfaceType.Smooth
  697. Seat15.Color = Color3.new(0.388235, 0.372549, 0.384314)
  698. Seat15.Position = Vector3.new(27.0999756, 3.55004096, 17.9995117)
  699. Seat15.Orientation = Vector3.new(0, 90, 0)
  700. Seat15.Color = Color3.new(0.388235, 0.372549, 0.384314)
  701. Script16.Name = "WeldScript"
  702. Script16.Parent = Model1
  703. Script16.Disabled = true
  704. table.insert(cors,sandbox(Script16,function()
  705. local BrickTable = {}
  706.  
  707. function RecursiveGeneric(Parent, Func, ClassLimit)
  708. for _, Child in pairs(Parent:GetChildren()) do
  709. if not ClassLimit or Child:IsA(ClassLimit) then
  710. Func(Child)
  711. end
  712. RecursiveGeneric(Child, Func, ClassLimit)
  713. end
  714. end
  715.  
  716. RecursiveGeneric(
  717. script.Parent,
  718. function(Brick) table.insert(BrickTable, Brick) end,
  719. "BasePart"
  720. )
  721.  
  722. local Base = BrickTable[1]
  723. table.remove(BrickTable, 1)
  724.  
  725. for _, Part in pairs(BrickTable) do
  726. local Weld = Instance.new("Weld")
  727. Weld.Part0 = Base
  728. Weld.Part1 = Part
  729. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  730. Weld.Parent = Base
  731. Part.Anchored = false
  732. end
  733.  
  734. Base.Anchored = false
  735. end))
  736. Model17.Name = "Color"
  737. Model17.Parent = Model1
  738. WedgePart18.Name = "ColorPart"
  739. WedgePart18.Parent = Model17
  740. WedgePart18.BrickColor = BrickColor.new("Grime")
  741. WedgePart18.Rotation = Vector3.new(-180, 0, -90)
  742. WedgePart18.Anchored = true
  743. WedgePart18.FormFactor = Enum.FormFactor.Custom
  744. WedgePart18.Size = Vector3.new(0.600000024, 1.20000005, 0.99999994)
  745. WedgePart18.CFrame = CFrame.new(35.5090332, 6.07744217, 24.2993164, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  746. WedgePart18.BottomSurface = Enum.SurfaceType.Smooth
  747. WedgePart18.Color = Color3.new(0.498039, 0.556863, 0.392157)
  748. WedgePart18.Position = Vector3.new(35.5090332, 6.07744217, 24.2993164)
  749. WedgePart18.Orientation = Vector3.new(0, 180, 90)
  750. WedgePart18.Color = Color3.new(0.498039, 0.556863, 0.392157)
  751. WedgePart19.Name = "ColorPart"
  752. WedgePart19.Parent = Model17
  753. WedgePart19.BrickColor = BrickColor.new("Grime")
  754. WedgePart19.Rotation = Vector3.new(110, 0, -90)
  755. WedgePart19.Anchored = true
  756. WedgePart19.FormFactor = Enum.FormFactor.Custom
  757. WedgePart19.Size = Vector3.new(0.300000042, 5.69999981, 3.0999999)
  758. WedgePart19.CFrame = CFrame.new(32.6829834, 7.01976681, 16.1591797, 5.77419996e-08, 0.999998033, -5.43892384e-07, 0.342021286, 2.14576721e-06, -0.939690173, -0.939690113, -2.02655792e-06, -0.34201932)
  759. WedgePart19.BottomSurface = Enum.SurfaceType.Smooth
  760. WedgePart19.Color = Color3.new(0.498039, 0.556863, 0.392157)
  761. WedgePart19.Position = Vector3.new(32.6829834, 7.01976681, 16.1591797)
  762. WedgePart19.Orientation = Vector3.new(70, -180, 90)
  763. WedgePart19.Color = Color3.new(0.498039, 0.556863, 0.392157)
  764. WedgePart20.Name = "ColorPart"
  765. WedgePart20.Parent = Model17
  766. WedgePart20.BrickColor = BrickColor.new("Grime")
  767. WedgePart20.Rotation = Vector3.new(-90, -90, 0)
  768. WedgePart20.Anchored = true
  769. WedgePart20.FormFactor = Enum.FormFactor.Custom
  770. WedgePart20.Size = Vector3.new(0.600000024, 1, 1.19999993)
  771. WedgePart20.CFrame = CFrame.new(35.5090332, 6.07701778, 15.6997061, 0, 0, -1, 1, 0, 0, 0, -1, 0)
  772. WedgePart20.BottomSurface = Enum.SurfaceType.Smooth
  773. WedgePart20.Color = Color3.new(0.498039, 0.556863, 0.392157)
  774. WedgePart20.Position = Vector3.new(35.5090332, 6.07701778, 15.6997061)
  775. WedgePart20.Orientation = Vector3.new(0, -90, 90)
  776. WedgePart20.Color = Color3.new(0.498039, 0.556863, 0.392157)
  777. WedgePart21.Name = "ColorPart"
  778. WedgePart21.Parent = Model17
  779. WedgePart21.BrickColor = BrickColor.new("Grime")
  780. WedgePart21.Rotation = Vector3.new(0, 0, 110)
  781. WedgePart21.Anchored = true
  782. WedgePart21.FormFactor = Enum.FormFactor.Custom
  783. WedgePart21.Size = Vector3.new(0.700000107, 3.30000019, 1.19999981)
  784. WedgePart21.CFrame = CFrame.new(17.4244385, 5.94664621, 15.7993164, -0.342020392, -0.939692378, -1.12186438e-09, 0.939692378, -0.342020392, -4.07920087e-10, -3.81195076e-13, -1.19372445e-09, 1)
  785. WedgePart21.BottomSurface = Enum.SurfaceType.Smooth
  786. WedgePart21.Color = Color3.new(0.498039, 0.556863, 0.392157)
  787. WedgePart21.Position = Vector3.new(17.4244385, 5.94664621, 15.7993164)
  788. WedgePart21.Orientation = Vector3.new(0, 0, 110)
  789. WedgePart21.Color = Color3.new(0.498039, 0.556863, 0.392157)
  790. WedgePart22.Name = "ColorPart"
  791. WedgePart22.Parent = Model17
  792. WedgePart22.BrickColor = BrickColor.new("Grime")
  793. WedgePart22.Rotation = Vector3.new(0, 0, 110)
  794. WedgePart22.Anchored = true
  795. WedgePart22.FormFactor = Enum.FormFactor.Custom
  796. WedgePart22.Size = Vector3.new(0.500000119, 0.799999952, 2.29999971)
  797. WedgePart22.CFrame = CFrame.new(15.4638662, 5.33947086, 17.5493164, -0.342020392, -0.939692378, -9.6542252e-10, 0.939692378, -0.342020392, -2.73102291e-10, -7.35621841e-11, -1.00060682e-09, 1)
  798. WedgePart22.BottomSurface = Enum.SurfaceType.Smooth
  799. WedgePart22.Color = Color3.new(0.498039, 0.556863, 0.392157)
  800. WedgePart22.Position = Vector3.new(15.4638662, 5.33947086, 17.5493164)
  801. WedgePart22.Orientation = Vector3.new(0, 0, 110)
  802. WedgePart22.Color = Color3.new(0.498039, 0.556863, 0.392157)
  803. WedgePart23.Name = "ColorPart"
  804. WedgePart23.Parent = Model17
  805. WedgePart23.BrickColor = BrickColor.new("Grime")
  806. WedgePart23.Rotation = Vector3.new(180, 0, 70)
  807. WedgePart23.Anchored = true
  808. WedgePart23.FormFactor = Enum.FormFactor.Custom
  809. WedgePart23.Size = Vector3.new(0.700000107, 3.30000019, 1.19999981)
  810. WedgePart23.CFrame = CFrame.new(17.4243164, 5.94664621, 24.1997089, 0.342020601, -0.939692438, -1.12267895e-09, -0.939692438, -0.342020601, -4.08618001e-10, -4.10782519e-15, 1.19472876e-09, -1)
  811. WedgePart23.BottomSurface = Enum.SurfaceType.Smooth
  812. WedgePart23.Color = Color3.new(0.498039, 0.556863, 0.392157)
  813. WedgePart23.Position = Vector3.new(17.4243164, 5.94664621, 24.1997089)
  814. WedgePart23.Orientation = Vector3.new(0, -180, -110)
  815. WedgePart23.Color = Color3.new(0.498039, 0.556863, 0.392157)
  816. WedgePart24.Name = "ColorPart"
  817. WedgePart24.Parent = Model17
  818. WedgePart24.BrickColor = BrickColor.new("Grime")
  819. WedgePart24.Rotation = Vector3.new(180, 0, 70)
  820. WedgePart24.Anchored = true
  821. WedgePart24.FormFactor = Enum.FormFactor.Custom
  822. WedgePart24.Size = Vector3.new(0.500000119, 0.799999952, 2.29999971)
  823. WedgePart24.CFrame = CFrame.new(15.4638662, 5.33947086, 22.4497089, 0.342020601, -0.939692438, -9.22875665e-10, -0.939692438, -0.342020601, -2.36419551e-10, -9.34808619e-11, 9.48079615e-10, -1)
  824. WedgePart24.BottomSurface = Enum.SurfaceType.Smooth
  825. WedgePart24.Color = Color3.new(0.498039, 0.556863, 0.392157)
  826. WedgePart24.Position = Vector3.new(15.4638662, 5.33947086, 22.4497089)
  827. WedgePart24.Orientation = Vector3.new(0, -180, -110)
  828. WedgePart24.Color = Color3.new(0.498039, 0.556863, 0.392157)
  829. WedgePart25.Name = "ColorPart"
  830. WedgePart25.Parent = Model17
  831. WedgePart25.BrickColor = BrickColor.new("Grime")
  832. WedgePart25.Rotation = Vector3.new(70, 0, -90)
  833. WedgePart25.Anchored = true
  834. WedgePart25.FormFactor = Enum.FormFactor.Custom
  835. WedgePart25.Size = Vector3.new(0.300000042, 5.69999981, 3.0999999)
  836. WedgePart25.CFrame = CFrame.new(32.6829834, 7.01976681, 23.840332, -1.55158341e-06, 1, 2.08616257e-07, -0.342019171, -3.57627869e-07, -0.939692974, -0.939692974, -1.57952309e-06, 0.3420192)
  837. WedgePart25.BottomSurface = Enum.SurfaceType.Smooth
  838. WedgePart25.Color = Color3.new(0.498039, 0.556863, 0.392157)
  839. WedgePart25.Position = Vector3.new(32.6829834, 7.01976681, 23.840332)
  840. WedgePart25.Orientation = Vector3.new(70, 0, -90)
  841. WedgePart25.Color = Color3.new(0.498039, 0.556863, 0.392157)
  842. Part26.Name = "ColorPart"
  843. Part26.Parent = Model17
  844. Part26.BrickColor = BrickColor.new("Grime")
  845. Part26.Rotation = Vector3.new(-90, 65, 90)
  846. Part26.Anchored = true
  847. Part26.FormFactor = Enum.FormFactor.Custom
  848. Part26.Size = Vector3.new(7.90000057, 0.299999952, 2.9000001)
  849. Part26.CFrame = CFrame.new(18.3934326, 6.57780886, 19.9995117, -3.5762784e-07, -0.422618568, 0.906307817, -5.96046448e-08, 0.906307697, 0.422618568, -1.00000012, 5.96046448e-08, -3.57627869e-07)
  850. Part26.BottomSurface = Enum.SurfaceType.Smooth
  851. Part26.TopSurface = Enum.SurfaceType.Smooth
  852. Part26.Color = Color3.new(0.498039, 0.556863, 0.392157)
  853. Part26.Position = Vector3.new(18.3934326, 6.57780886, 19.9995117)
  854. Part26.Orientation = Vector3.new(-25, 90, 0)
  855. Part26.Color = Color3.new(0.498039, 0.556863, 0.392157)
  856. SpecialMesh27.Parent = Part26
  857. SpecialMesh27.MeshType = Enum.MeshType.Torso
  858. Part28.Name = "ColorPart"
  859. Part28.Parent = Model17
  860. Part28.BrickColor = BrickColor.new("Grime")
  861. Part28.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  862. Part28.Anchored = true
  863. Part28.FormFactor = Enum.FormFactor.Custom
  864. Part28.Size = Vector3.new(7.59999895, 1, 1.60000014)
  865. Part28.CFrame = CFrame.new(35.30896, 5.87755585, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  866. Part28.BottomSurface = Enum.SurfaceType.Smooth
  867. Part28.TopSurface = Enum.SurfaceType.Smooth
  868. Part28.Color = Color3.new(0.498039, 0.556863, 0.392157)
  869. Part28.Position = Vector3.new(35.30896, 5.87755585, 19.9995117)
  870. Part28.Orientation = Vector3.new(0, -90, 0)
  871. Part28.Color = Color3.new(0.498039, 0.556863, 0.392157)
  872. Part29.Name = "ColorPart"
  873. Part29.Parent = Model17
  874. Part29.BrickColor = BrickColor.new("Grime")
  875. Part29.Rotation = Vector3.new(-90, -45, -90)
  876. Part29.Anchored = true
  877. Part29.FormFactor = Enum.FormFactor.Custom
  878. Part29.Size = Vector3.new(1.00000024, 1.80000019, 2.79999971)
  879. Part29.CFrame = CFrame.new(22.661377, 5.16594315, 24.2993164, 2.98023224e-06, 0.70710516, -0.707106709, -7.45058003e-07, 0.707107902, 0.70710516, 0.999998808, -7.4505806e-07, 2.98023224e-06)
  880. Part29.BottomSurface = Enum.SurfaceType.Smooth
  881. Part29.TopSurface = Enum.SurfaceType.Smooth
  882. Part29.Color = Color3.new(0.498039, 0.556863, 0.392157)
  883. Part29.Position = Vector3.new(22.661377, 5.16594315, 24.2993164)
  884. Part29.Orientation = Vector3.new(-45, -90, 0)
  885. Part29.Color = Color3.new(0.498039, 0.556863, 0.392157)
  886. Part30.Name = "ColorPart"
  887. Part30.Parent = Model17
  888. Part30.BrickColor = BrickColor.new("Grime")
  889. Part30.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  890. Part30.Anchored = true
  891. Part30.FormFactor = Enum.FormFactor.Custom
  892. Part30.Size = Vector3.new(0.999999225, 1, 4.5999999)
  893. Part30.CFrame = CFrame.new(32.6088867, 5.87755585, 24.2993164, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  894. Part30.BottomSurface = Enum.SurfaceType.Smooth
  895. Part30.TopSurface = Enum.SurfaceType.Smooth
  896. Part30.Color = Color3.new(0.498039, 0.556863, 0.392157)
  897. Part30.Position = Vector3.new(32.6088867, 5.87755585, 24.2993164)
  898. Part30.Orientation = Vector3.new(0, -90, 0)
  899. Part30.Color = Color3.new(0.498039, 0.556863, 0.392157)
  900. Part31.Name = "ColorPart"
  901. Part31.Parent = Model17
  902. Part31.BrickColor = BrickColor.new("Grime")
  903. Part31.Rotation = Vector3.new(26.5699997, -89.9799957, 26.5699997)
  904. Part31.Anchored = true
  905. Part31.FormFactor = Enum.FormFactor.Custom
  906. Part31.Size = Vector3.new(1.00000024, 1.60000014, 5.79999971)
  907. Part31.CFrame = CFrame.new(26.1330566, 4.58336592, 24.2993164, 1.78813934e-07, -8.94069672e-08, -0.99999994, 5.32907052e-15, 1, -8.94069672e-08, 0.999999881, 3.55271368e-15, 1.78813934e-07)
  908. Part31.BottomSurface = Enum.SurfaceType.Smooth
  909. Part31.TopSurface = Enum.SurfaceType.Smooth
  910. Part31.Color = Color3.new(0.498039, 0.556863, 0.392157)
  911. Part31.Position = Vector3.new(26.1330566, 4.58336592, 24.2993164)
  912. Part31.Orientation = Vector3.new(0, -90, 0)
  913. Part31.Color = Color3.new(0.498039, 0.556863, 0.392157)
  914. Part32.Name = "ColorPart"
  915. Part32.Parent = Model17
  916. Part32.BrickColor = BrickColor.new("Grime")
  917. Part32.Rotation = Vector3.new(90, -55, 90)
  918. Part32.Anchored = true
  919. Part32.FormFactor = Enum.FormFactor.Custom
  920. Part32.Size = Vector3.new(0.999999225, 1.30000007, 2.30000019)
  921. Part32.CFrame = CFrame.new(29.7397461, 5.18541288, 24.2993164, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  922. Part32.BottomSurface = Enum.SurfaceType.Smooth
  923. Part32.TopSurface = Enum.SurfaceType.Smooth
  924. Part32.Color = Color3.new(0.498039, 0.556863, 0.392157)
  925. Part32.Position = Vector3.new(29.7397461, 5.18541288, 24.2993164)
  926. Part32.Orientation = Vector3.new(35, -90, 0)
  927. Part32.Color = Color3.new(0.498039, 0.556863, 0.392157)
  928. Part33.Name = "ColorPart"
  929. Part33.Parent = Model17
  930. Part33.BrickColor = BrickColor.new("Grime")
  931. Part33.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  932. Part33.Anchored = true
  933. Part33.FormFactor = Enum.FormFactor.Custom
  934. Part33.Size = Vector3.new(0.999999225, 1, 4.5999999)
  935. Part33.CFrame = CFrame.new(32.6088867, 5.87755585, 15.6997061, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  936. Part33.BottomSurface = Enum.SurfaceType.Smooth
  937. Part33.TopSurface = Enum.SurfaceType.Smooth
  938. Part33.Color = Color3.new(0.498039, 0.556863, 0.392157)
  939. Part33.Position = Vector3.new(32.6088867, 5.87755585, 15.6997061)
  940. Part33.Orientation = Vector3.new(0, -90, 0)
  941. Part33.Color = Color3.new(0.498039, 0.556863, 0.392157)
  942. Part34.Name = "ColorPart"
  943. Part34.Parent = Model17
  944. Part34.BrickColor = BrickColor.new("Grime")
  945. Part34.Rotation = Vector3.new(90, -55, 90)
  946. Part34.Anchored = true
  947. Part34.FormFactor = Enum.FormFactor.Custom
  948. Part34.Size = Vector3.new(0.999999225, 1.30000007, 2.30000019)
  949. Part34.CFrame = CFrame.new(29.7397461, 5.18541288, 15.6997061, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  950. Part34.BottomSurface = Enum.SurfaceType.Smooth
  951. Part34.TopSurface = Enum.SurfaceType.Smooth
  952. Part34.Color = Color3.new(0.498039, 0.556863, 0.392157)
  953. Part34.Position = Vector3.new(29.7397461, 5.18541288, 15.6997061)
  954. Part34.Orientation = Vector3.new(35, -90, 0)
  955. Part34.Color = Color3.new(0.498039, 0.556863, 0.392157)
  956. Part35.Name = "ColorPart"
  957. Part35.Parent = Model17
  958. Part35.BrickColor = BrickColor.new("Grime")
  959. Part35.Rotation = Vector3.new(-90, -45, -90)
  960. Part35.Anchored = true
  961. Part35.FormFactor = Enum.FormFactor.Custom
  962. Part35.Size = Vector3.new(1.00000024, 1.80000019, 2.79999971)
  963. Part35.CFrame = CFrame.new(22.661377, 5.16594315, 15.6997061, 2.98023224e-06, 0.70710516, -0.707106709, -7.45058003e-07, 0.707107902, 0.70710516, 0.999998808, -7.4505806e-07, 2.98023224e-06)
  964. Part35.BottomSurface = Enum.SurfaceType.Smooth
  965. Part35.TopSurface = Enum.SurfaceType.Smooth
  966. Part35.Color = Color3.new(0.498039, 0.556863, 0.392157)
  967. Part35.Position = Vector3.new(22.661377, 5.16594315, 15.6997061)
  968. Part35.Orientation = Vector3.new(-45, -90, 0)
  969. Part35.Color = Color3.new(0.498039, 0.556863, 0.392157)
  970. Part36.Name = "ColorPart"
  971. Part36.Parent = Model17
  972. Part36.BrickColor = BrickColor.new("Grime")
  973. Part36.Rotation = Vector3.new(26.5699997, -89.9799957, 26.5699997)
  974. Part36.Anchored = true
  975. Part36.FormFactor = Enum.FormFactor.Custom
  976. Part36.Size = Vector3.new(1.00000024, 1.60000014, 5.69999981)
  977. Part36.CFrame = CFrame.new(26.0831299, 4.58330297, 15.6997061, 1.78813934e-07, -8.94069672e-08, -0.99999994, 5.32907052e-15, 1, -8.94069672e-08, 0.999999881, 3.55271368e-15, 1.78813934e-07)
  978. Part36.BottomSurface = Enum.SurfaceType.Smooth
  979. Part36.TopSurface = Enum.SurfaceType.Smooth
  980. Part36.Color = Color3.new(0.498039, 0.556863, 0.392157)
  981. Part36.Position = Vector3.new(26.0831299, 4.58330297, 15.6997061)
  982. Part36.Orientation = Vector3.new(0, -90, 0)
  983. Part36.Color = Color3.new(0.498039, 0.556863, 0.392157)
  984. Part37.Name = "ColorPart"
  985. Part37.Parent = Model17
  986. Part37.BrickColor = BrickColor.new("Grime")
  987. Part37.Rotation = Vector3.new(90, -70, 90)
  988. Part37.Anchored = true
  989. Part37.FormFactor = Enum.FormFactor.Custom
  990. Part37.Size = Vector3.new(7.20000029, 0.700000048, 3.89999986)
  991. Part37.CFrame = CFrame.new(17.7062988, 6.04924679, 19.9995117, 0, -0.342020601, -0.939692557, 0, 0.939692497, -0.342020631, 1, 0, 0)
  992. Part37.BottomSurface = Enum.SurfaceType.Smooth
  993. Part37.TopSurface = Enum.SurfaceType.Smooth
  994. Part37.Color = Color3.new(0.498039, 0.556863, 0.392157)
  995. Part37.Position = Vector3.new(17.7062988, 6.04924679, 19.9995117)
  996. Part37.Orientation = Vector3.new(20, -90, 0)
  997. Part37.Color = Color3.new(0.498039, 0.556863, 0.392157)
  998. Part38.Name = "ColorPart"
  999. Part38.Parent = Model17
  1000. Part38.BrickColor = BrickColor.new("Grime")
  1001. Part38.Rotation = Vector3.new(90, -70, 90)
  1002. Part38.Anchored = true
  1003. Part38.FormFactor = Enum.FormFactor.Custom
  1004. Part38.Size = Vector3.new(2.60000014, 0.50000006, 0.799999952)
  1005. Part38.CFrame = CFrame.new(15.4638662, 5.33947086, 19.9995117, 0, -0.342020601, -0.939692557, 0, 0.939692497, -0.342020631, 1, 0, 0)
  1006. Part38.BottomSurface = Enum.SurfaceType.Smooth
  1007. Part38.TopSurface = Enum.SurfaceType.Smooth
  1008. Part38.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1009. Part38.Position = Vector3.new(15.4638662, 5.33947086, 19.9995117)
  1010. Part38.Orientation = Vector3.new(20, -90, 0)
  1011. Part38.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1012. Part39.Name = "ColorPart"
  1013. Part39.Parent = Model17
  1014. Part39.BrickColor = BrickColor.new("Grime")
  1015. Part39.Rotation = Vector3.new(-90, -85, -90)
  1016. Part39.Anchored = true
  1017. Part39.FormFactor = Enum.FormFactor.Custom
  1018. Part39.Size = Vector3.new(9.60000038, 1.20000017, 3.29999971)
  1019. Part39.CFrame = CFrame.new(21.010376, 6.30363989, 19.9995117, 4.70876739e-06, 0.0871552154, -0.996193111, -1.34110451e-07, 0.99619478, 0.087155208, 0.999998391, -1.34110451e-07, 4.70876694e-06)
  1020. Part39.BottomSurface = Enum.SurfaceType.Smooth
  1021. Part39.TopSurface = Enum.SurfaceType.Smooth
  1022. Part39.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1023. Part39.Position = Vector3.new(21.010376, 6.30363989, 19.9995117)
  1024. Part39.Orientation = Vector3.new(-5, -90, 0)
  1025. Part39.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1026. Part40.Name = "ColorPart"
  1027. Part40.Parent = Model17
  1028. Part40.BrickColor = BrickColor.new("Grime")
  1029. Part40.Rotation = Vector3.new(90, 85, -90)
  1030. Part40.Anchored = true
  1031. Part40.FormFactor = Enum.FormFactor.Custom
  1032. Part40.Size = Vector3.new(9.20000076, 0.299999952, 2.9000001)
  1033. Part40.CFrame = CFrame.new(21.0758057, 7.05071115, 19.9995117, 0, 0.0871556178, 0.99619472, 0, 0.99619472, -0.0871556178, -1, 0, 0)
  1034. Part40.BottomSurface = Enum.SurfaceType.Smooth
  1035. Part40.TopSurface = Enum.SurfaceType.Smooth
  1036. Part40.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1037. Part40.Position = Vector3.new(21.0758057, 7.05071115, 19.9995117)
  1038. Part40.Orientation = Vector3.new(5, 90, 0)
  1039. Part40.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1040. SpecialMesh41.Parent = Part40
  1041. SpecialMesh41.MeshType = Enum.MeshType.Torso
  1042. Part42.Name = "ColorPart"
  1043. Part42.Parent = Model17
  1044. Part42.BrickColor = BrickColor.new("Grime")
  1045. Part42.Rotation = Vector3.new(90, -70, 90)
  1046. Part42.Anchored = true
  1047. Part42.FormFactor = Enum.FormFactor.Custom
  1048. Part42.Size = Vector3.new(9.59999943, 0.700000048, 0.599999905)
  1049. Part42.CFrame = CFrame.new(19.2568359, 6.61351681, 19.9995117, 0, -0.342020601, -0.939692557, 0, 0.939692497, -0.342020631, 1, 0, 0)
  1050. Part42.BottomSurface = Enum.SurfaceType.Smooth
  1051. Part42.TopSurface = Enum.SurfaceType.Smooth
  1052. Part42.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1053. Part42.Position = Vector3.new(19.2568359, 6.61351681, 19.9995117)
  1054. Part42.Orientation = Vector3.new(20, -90, 0)
  1055. Part42.Color = Color3.new(0.498039, 0.556863, 0.392157)
  1056. Model43.Name = "Parts"
  1057. Model43.Parent = Model1
  1058. Part44.Parent = Model43
  1059. Part44.Rotation = Vector3.new(170.319992, 37.7399979, -5.71000004)
  1060. Part44.Anchored = true
  1061. Part44.FormFactor = Enum.FormFactor.Custom
  1062. Part44.Size = Vector3.new(0.200000003, 1.29999971, 0.200000003)
  1063. Part44.CFrame = CFrame.new(14.8085938, 6.10380888, 17.6464844, 0.786902428, 0.0786557794, 0.612043619, 0.200461507, -0.970630407, -0.132993162, 0.583608866, 0.227343917, -0.77955842)
  1064. Part44.BottomSurface = Enum.SurfaceType.Smooth
  1065. Part44.TopSurface = Enum.SurfaceType.Smooth
  1066. Part44.Position = Vector3.new(14.8085938, 6.10380888, 17.6464844)
  1067. Part44.Orientation = Vector3.new(7.63999987, 141.860001, 168.330002)
  1068. Part45.Parent = Model43
  1069. Part45.BrickColor = BrickColor.new("Institutional white")
  1070. Part45.Rotation = Vector3.new(-180, 0, -81)
  1071. Part45.Anchored = true
  1072. Part45.FormFactor = Enum.FormFactor.Custom
  1073. Part45.Size = Vector3.new(0.300000042, 0.300000012, 0.699999928)
  1074. Part45.CFrame = CFrame.new(22.2661133, 9.24766827, 18.9306641, 0.156432509, 0.987690091, 5.88202511e-07, 0.987690091, -0.156435847, 2.67244036e-06, 2.73155297e-06, 1.62900619e-07, -1.00000334)
  1075. Part45.BottomSurface = Enum.SurfaceType.Smooth
  1076. Part45.TopSurface = Enum.SurfaceType.Smooth
  1077. Part45.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1078. Part45.Position = Vector3.new(22.2661133, 9.24766827, 18.9306641)
  1079. Part45.Orientation = Vector3.new(0, 180, 99)
  1080. Part45.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1081. Part46.Parent = Model43
  1082. Part46.BrickColor = BrickColor.new("Institutional white")
  1083. Part46.Rotation = Vector3.new(-180, 0, -81)
  1084. Part46.Anchored = true
  1085. Part46.FormFactor = Enum.FormFactor.Custom
  1086. Part46.Size = Vector3.new(0.300000042, 0.300000012, 0.699999928)
  1087. Part46.CFrame = CFrame.new(22.2661133, 9.24766827, 21.0307617, 0.156432509, 0.987690091, 5.8820217e-07, 0.987690091, -0.156435847, 2.67243831e-06, 2.73155138e-06, 1.62900506e-07, -1.00000334)
  1088. Part46.BottomSurface = Enum.SurfaceType.Smooth
  1089. Part46.TopSurface = Enum.SurfaceType.Smooth
  1090. Part46.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1091. Part46.Position = Vector3.new(22.2661133, 9.24766827, 21.0307617)
  1092. Part46.Orientation = Vector3.new(0, 180, 99)
  1093. Part46.Color = Color3.new(0.972549, 0.972549, 0.972549)
  1094. Part47.Parent = Model43
  1095. Part47.Rotation = Vector3.new(-90, 0, 0)
  1096. Part47.Anchored = true
  1097. Part47.CanCollide = false
  1098. Part47.FormFactor = Enum.FormFactor.Custom
  1099. Part47.Size = Vector3.new(1.60000002, 2.39999986, 0.999999881)
  1100. Part47.CFrame = CFrame.new(18.7441406, 2.59996796, 18.0996094, 1, 8.74227766e-08, 0, 0, 1.78813934e-07, 0.999999881, 8.74227766e-08, -0.999999881, 1.78813934e-07)
  1101. Part47.BottomSurface = Enum.SurfaceType.Smooth
  1102. Part47.TopSurface = Enum.SurfaceType.Smooth
  1103. Part47.Position = Vector3.new(18.7441406, 2.59996796, 18.0996094)
  1104. Part47.Orientation = Vector3.new(-89.9700012, 0, 0)
  1105. CylinderMesh48.Parent = Part47
  1106. Part49.Parent = Model43
  1107. Part49.BrickColor = BrickColor.new("Dark stone grey")
  1108. Part49.Rotation = Vector3.new(90, -70, 90)
  1109. Part49.Anchored = true
  1110. Part49.CanCollide = false
  1111. Part49.FormFactor = Enum.FormFactor.Custom
  1112. Part49.Size = Vector3.new(0.699999988, 0.800000012, 4.39999962)
  1113. Part49.CFrame = CFrame.new(20.5837402, 3.14177704, 18.4497089, 0, -0.342020333, -0.939692557, 0, 0.939692616, -0.342020333, 1, 0, 0)
  1114. Part49.BottomSurface = Enum.SurfaceType.Smooth
  1115. Part49.TopSurface = Enum.SurfaceType.Smooth
  1116. Part49.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1117. Part49.Position = Vector3.new(20.5837402, 3.14177704, 18.4497089)
  1118. Part49.Orientation = Vector3.new(20, -90, 0)
  1119. Part49.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1120. Part50.Parent = Model43
  1121. Part50.BrickColor = BrickColor.new("Dark stone grey")
  1122. Part50.Rotation = Vector3.new(-180, 0, -180)
  1123. Part50.Anchored = true
  1124. Part50.CanCollide = false
  1125. Part50.FormFactor = Enum.FormFactor.Custom
  1126. Part50.Size = Vector3.new(1.5, 1.20000005, 1.5)
  1127. Part50.CFrame = CFrame.new(18.7940674, 2.80004096, 18.4497089, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1)
  1128. Part50.BottomSurface = Enum.SurfaceType.Smooth
  1129. Part50.TopSurface = Enum.SurfaceType.Smooth
  1130. Part50.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1131. Part50.Position = Vector3.new(18.7940674, 2.80004096, 18.4497089)
  1132. Part50.Orientation = Vector3.new(0, 180, 0)
  1133. Part50.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1134. SpecialMesh51.Parent = Part50
  1135. SpecialMesh51.MeshType = Enum.MeshType.Torso
  1136. Part52.Parent = Model43
  1137. Part52.BrickColor = BrickColor.new("Dark stone grey")
  1138. Part52.Rotation = Vector3.new(0, -89.9700012, 0)
  1139. Part52.Anchored = true
  1140. Part52.CanCollide = false
  1141. Part52.FormFactor = Enum.FormFactor.Custom
  1142. Part52.Size = Vector3.new(1.5, 0.5, 1.5)
  1143. Part52.CFrame = CFrame.new(18.7940674, 1.94994497, 18.4497089, 1.78813934e-07, 0, -0.999999881, 1.77635684e-15, 1, 0, 0.999999881, 0, 1.78813934e-07)
  1144. Part52.BottomSurface = Enum.SurfaceType.Smooth
  1145. Part52.TopSurface = Enum.SurfaceType.Smooth
  1146. Part52.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1147. Part52.Position = Vector3.new(18.7940674, 1.94994497, 18.4497089)
  1148. Part52.Orientation = Vector3.new(0, -90, 0)
  1149. Part52.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1150. Part53.Parent = Model43
  1151. Part53.Rotation = Vector3.new(0, -89.9700012, 0)
  1152. Part53.Anchored = true
  1153. Part53.CanCollide = false
  1154. Part53.FormFactor = Enum.FormFactor.Custom
  1155. Part53.Size = Vector3.new(1.0999999, 0.700000048, 1.70000005)
  1156. Part53.CFrame = CFrame.new(18.7940674, 1.94994497, 18.4497089, 1.78813934e-07, 0, -0.999999881, 1.77635684e-15, 1, 0, 0.999999881, 0, 1.78813934e-07)
  1157. Part53.BottomSurface = Enum.SurfaceType.Smooth
  1158. Part53.TopSurface = Enum.SurfaceType.Smooth
  1159. Part53.Position = Vector3.new(18.7940674, 1.94994497, 18.4497089)
  1160. Part53.Orientation = Vector3.new(0, -90, 0)
  1161. Part54.Parent = Model43
  1162. Part54.BrickColor = BrickColor.new("Dark stone grey")
  1163. Part54.Rotation = Vector3.new(-90, 65, 180)
  1164. Part54.Anchored = true
  1165. Part54.CanCollide = false
  1166. Part54.FormFactor = Enum.FormFactor.Custom
  1167. Part54.Size = Vector3.new(0.600000143, 0.300000012, 5.19999981)
  1168. Part54.CFrame = CFrame.new(17.8718262, 4.88005686, 21.6494141, -0.42261827, -5.96046448e-08, 0.906307638, 0.906307638, 0, 0.422618359, 5.96046448e-08, 0.999999881, 1.1920929e-07)
  1169. Part54.BottomSurface = Enum.SurfaceType.Smooth
  1170. Part54.TopSurface = Enum.SurfaceType.Smooth
  1171. Part54.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1172. Part54.Position = Vector3.new(17.8718262, 4.88005686, 21.6494141)
  1173. Part54.Orientation = Vector3.new(-25, 90, 90)
  1174. Part54.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1175. Part55.Parent = Model43
  1176. Part55.BrickColor = BrickColor.new("Dark stone grey")
  1177. Part55.Rotation = Vector3.new(90, 90, 0)
  1178. Part55.Anchored = true
  1179. Part55.CanCollide = false
  1180. Part55.FormFactor = Enum.FormFactor.Custom
  1181. Part55.Size = Vector3.new(1.9000001, 0.400000095, 1.9000001)
  1182. Part55.CFrame = CFrame.new(15.8499756, 3.85009003, 21.2993164, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  1183. Part55.BottomSurface = Enum.SurfaceType.Smooth
  1184. Part55.TopSurface = Enum.SurfaceType.Smooth
  1185. Part55.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1186. Part55.Position = Vector3.new(15.8499756, 3.85009003, 21.2993164)
  1187. Part55.Orientation = Vector3.new(0, 90, 90)
  1188. Part55.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1189. CylinderMesh56.Parent = Part55
  1190. Part57.Parent = Model43
  1191. Part57.BrickColor = BrickColor.new("Dark stone grey")
  1192. Part57.Rotation = Vector3.new(-180, 0, -81)
  1193. Part57.Anchored = true
  1194. Part57.FormFactor = Enum.FormFactor.Custom
  1195. Part57.Size = Vector3.new(0.400000036, 0.800000131, 0.799999952)
  1196. Part57.CFrame = CFrame.new(22.5625, 9.20072842, 21.0307617, 0.156432509, 0.987690091, 5.8820217e-07, 0.987690091, -0.156435847, 2.67243831e-06, 2.73155138e-06, 1.62900506e-07, -1.00000334)
  1197. Part57.BottomSurface = Enum.SurfaceType.Smooth
  1198. Part57.TopSurface = Enum.SurfaceType.Smooth
  1199. Part57.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1200. Part57.Position = Vector3.new(22.5625, 9.20072842, 21.0307617)
  1201. Part57.Orientation = Vector3.new(0, 180, 99)
  1202. Part57.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1203. Part58.Parent = Model43
  1204. Part58.BrickColor = BrickColor.new("Dark stone grey")
  1205. Part58.Rotation = Vector3.new(-90, 9, -90)
  1206. Part58.Anchored = true
  1207. Part58.FormFactor = Enum.FormFactor.Custom
  1208. Part58.Size = Vector3.new(0.799999595, 0.200000048, 0.400000006)
  1209. Part58.CFrame = CFrame.new(23.0561523, 9.12254238, 21.0307617, -2.38418565e-07, 0.987688243, 0.156435192, -2.86102295e-06, -0.156435132, 0.987688243, 0.99999994, -2.38418579e-07, 2.92062759e-06)
  1210. Part58.BottomSurface = Enum.SurfaceType.Smooth
  1211. Part58.TopSurface = Enum.SurfaceType.Smooth
  1212. Part58.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1213. Part58.Position = Vector3.new(23.0561523, 9.12254238, 21.0307617)
  1214. Part58.Orientation = Vector3.new(-81, 90, -180)
  1215. Part58.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1216. SpecialMesh59.Parent = Part58
  1217. SpecialMesh59.MeshType = Enum.MeshType.Torso
  1218. Part60.Parent = Model43
  1219. Part60.BrickColor = BrickColor.new("Really black")
  1220. Part60.Transparency = 0.5
  1221. Part60.Rotation = Vector3.new(90, -58, 140)
  1222. Part60.Anchored = true
  1223. Part60.FormFactor = Enum.FormFactor.Custom
  1224. Part60.Size = Vector3.new(0.200000003, 2.29999971, 1.93999982)
  1225. Part60.CFrame = CFrame.new(20.6160889, 7.0108552, 22.5874023, -0.405954033, -0.340622187, -0.848044753, 0.649640739, 0.545111001, -0.529926002, 0.642783284, -0.766049087, -8.58306885e-06)
  1226. Part60.BottomSurface = Enum.SurfaceType.Smooth
  1227. Part60.TopSurface = Enum.SurfaceType.Smooth
  1228. Part60.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1229. Part60.Position = Vector3.new(20.6160889, 7.0108552, 22.5874023)
  1230. Part60.Orientation = Vector3.new(32, -90, 50)
  1231. Part60.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1232. BlockMesh61.Parent = Part60
  1233. BlockMesh61.Offset = Vector3.new(0.100000001, 0, 0)
  1234. BlockMesh61.Scale = Vector3.new(0, 1, 1)
  1235. BlockMesh61.Scale = Vector3.new(0, 1, 1)
  1236. Part62.Parent = Model43
  1237. Part62.BrickColor = BrickColor.new("Dark stone grey")
  1238. Part62.Rotation = Vector3.new(-165.179993, 2.31999993, -81.2999954)
  1239. Part62.Anchored = true
  1240. Part62.FormFactor = Enum.FormFactor.Custom
  1241. Part62.Size = Vector3.new(0.300000012, 0.800000072, 0.200000003)
  1242. Part62.CFrame = CFrame.new(22.8320313, 8.98514843, 21.8286133, 0.151104152, 0.987688422, 0.040488705, 0.954033136, -0.156434909, 0.255634844, 0.258821368, 5.96046448e-08, -0.965925455)
  1243. Part62.BottomSurface = Enum.SurfaceType.Smooth
  1244. Part62.TopSurface = Enum.SurfaceType.Smooth
  1245. Part62.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1246. Part62.Position = Vector3.new(22.8320313, 8.98514843, 21.8286133)
  1247. Part62.Orientation = Vector3.new(-14.8099995, 177.599991, 99.3099976)
  1248. Part62.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1249. Part63.Parent = Model43
  1250. Part63.Rotation = Vector3.new(-22.6199989, -75.2799988, -16.8400002)
  1251. Part63.Anchored = true
  1252. Part63.FormFactor = Enum.FormFactor.Custom
  1253. Part63.Size = Vector3.new(0.200000003, 0.200000048, 1.4000001)
  1254. Part63.CFrame = CFrame.new(19.5052509, 7.16002512, 22.1889648, 0.243211031, 0.0736236125, -0.967175126, 0.0885213166, 0.991269529, 0.0977177322, 0.965925515, -0.109381631, 0.234570444)
  1255. Part63.BottomSurface = Enum.SurfaceType.Smooth
  1256. Part63.TopSurface = Enum.SurfaceType.Smooth
  1257. Part63.Position = Vector3.new(19.5052509, 7.16002512, 22.1889648)
  1258. Part63.Orientation = Vector3.new(-5.60999966, -76.3699951, 5.0999999)
  1259. Part64.Parent = Model43
  1260. Part64.Rotation = Vector3.new(79.8799973, -18.75, 75.1199951)
  1261. Part64.Anchored = true
  1262. Part64.FormFactor = Enum.FormFactor.Custom
  1263. Part64.Size = Vector3.new(0.200000003, 0.200000048, 1.4000001)
  1264. Part64.CFrame = CFrame.new(17.4311523, 6.17748117, 22.8012695, 0.243210807, -0.915164828, -0.32143712, 0.0885217786, 0.350946456, -0.932201862, 0.965925574, 0.198267341, 0.166366041)
  1265. Part64.BottomSurface = Enum.SurfaceType.Smooth
  1266. Part64.TopSurface = Enum.SurfaceType.Smooth
  1267. Part64.Position = Vector3.new(17.4311523, 6.17748117, 22.8012695)
  1268. Part64.Orientation = Vector3.new(68.7799988, -62.6399994, 14.1599998)
  1269. Part65.Parent = Model43
  1270. Part65.Rotation = Vector3.new(51.9199982, -65.1899948, 54.579998)
  1271. Part65.Anchored = true
  1272. Part65.FormFactor = Enum.FormFactor.Custom
  1273. Part65.Size = Vector3.new(0.200000003, 0.200000048, 1.4000001)
  1274. Part65.CFrame = CFrame.new(18.2342529, 7.00249481, 22.5234375, 0.243210509, -0.342020512, -0.90767318, 0.0885214582, 0.939692557, -0.330366403, 0.965925753, 2.98023224e-08, 0.258819222)
  1275. Part65.BottomSurface = Enum.SurfaceType.Smooth
  1276. Part65.TopSurface = Enum.SurfaceType.Smooth
  1277. Part65.Position = Vector3.new(18.2342529, 7.00249481, 22.5234375)
  1278. Part65.Orientation = Vector3.new(19.289999, -74.0800018, 5.38000011)
  1279. Part66.Parent = Model43
  1280. Part66.BrickColor = BrickColor.new("Dark stone grey")
  1281. Part66.Rotation = Vector3.new(90, -70, 90)
  1282. Part66.Anchored = true
  1283. Part66.FormFactor = Enum.FormFactor.Custom
  1284. Part66.Size = Vector3.new(1.30000019, 1.00000012, 2.20000005)
  1285. Part66.CFrame = CFrame.new(19.4388428, 7.01506519, 20.8496094, 0, -0.342020512, -0.939692557, 0, 0.939692557, -0.342020512, 1, 0, 0)
  1286. Part66.BottomSurface = Enum.SurfaceType.Smooth
  1287. Part66.TopSurface = Enum.SurfaceType.Smooth
  1288. Part66.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1289. Part66.Position = Vector3.new(19.4388428, 7.01506519, 20.8496094)
  1290. Part66.Orientation = Vector3.new(20, -90, 0)
  1291. Part66.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1292. Part67.Parent = Model43
  1293. Part67.BrickColor = BrickColor.new("Dark stone grey")
  1294. Part67.Rotation = Vector3.new(-90, -20, 90)
  1295. Part67.Anchored = true
  1296. Part67.FormFactor = Enum.FormFactor.Custom
  1297. Part67.Size = Vector3.new(1.30000031, 0.200000003, 0.599999964)
  1298. Part67.CFrame = CFrame.new(18.2426758, 6.79265404, 20.8496094, 0, -0.939692557, -0.342020452, 0, -0.342020512, 0.939692557, -1, 0, 0)
  1299. Part67.BottomSurface = Enum.SurfaceType.Smooth
  1300. Part67.TopSurface = Enum.SurfaceType.Smooth
  1301. Part67.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1302. Part67.Position = Vector3.new(18.2426758, 6.79265404, 20.8496094)
  1303. Part67.Orientation = Vector3.new(-70, -90, 180)
  1304. Part67.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1305. SpecialMesh68.Parent = Part67
  1306. SpecialMesh68.MeshType = Enum.MeshType.Torso
  1307. Part69.Parent = Model43
  1308. Part69.BrickColor = BrickColor.new("Deep orange")
  1309. Part69.Rotation = Vector3.new(51.9199982, -65.1899948, 54.579998)
  1310. Part69.Anchored = true
  1311. Part69.FormFactor = Enum.FormFactor.Custom
  1312. Part69.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1313. Part69.CFrame = CFrame.new(15.2792959, 4.96910715, 22.3149414, 0.243210509, -0.342020452, -0.90767312, 0.0885214582, 0.939692557, -0.330366433, 0.965925694, 1.49011612e-08, 0.258819222)
  1314. Part69.BottomSurface = Enum.SurfaceType.Smooth
  1315. Part69.TopSurface = Enum.SurfaceType.Smooth
  1316. Part69.Color = Color3.new(1, 0.686275, 0)
  1317. Part69.Position = Vector3.new(15.2792959, 4.96910715, 22.3149414)
  1318. Part69.Orientation = Vector3.new(19.289999, -74.0800018, 5.38000011)
  1319. Part69.Color = Color3.new(1, 0.686275, 0)
  1320. Part70.Parent = Model43
  1321. Part70.BrickColor = BrickColor.new("Deep orange")
  1322. Part70.Rotation = Vector3.new(51.9199982, -65.1899948, 54.579998)
  1323. Part70.Anchored = true
  1324. Part70.FormFactor = Enum.FormFactor.Custom
  1325. Part70.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1326. Part70.CFrame = CFrame.new(15.1334219, 4.91600704, 21.7353516, 0.243210509, -0.342020452, -0.90767312, 0.0885214582, 0.939692557, -0.330366433, 0.965925694, 1.49011612e-08, 0.258819222)
  1327. Part70.BottomSurface = Enum.SurfaceType.Smooth
  1328. Part70.TopSurface = Enum.SurfaceType.Smooth
  1329. Part70.Color = Color3.new(1, 0.686275, 0)
  1330. Part70.Position = Vector3.new(15.1334219, 4.91600704, 21.7353516)
  1331. Part70.Orientation = Vector3.new(19.289999, -74.0800018, 5.38000011)
  1332. Part70.Color = Color3.new(1, 0.686275, 0)
  1333. Part71.Parent = Model43
  1334. Part71.BrickColor = BrickColor.new("Dark stone grey")
  1335. Part71.Rotation = Vector3.new(-90, -25, 90)
  1336. Part71.Anchored = true
  1337. Part71.CanCollide = false
  1338. Part71.FormFactor = Enum.FormFactor.Custom
  1339. Part71.Size = Vector3.new(3.59999943, 0.200000048, 0.600000024)
  1340. Part71.CFrame = CFrame.new(15.4248037, 3.73900604, 19.9995117, 0, -0.906307697, -0.422618389, 0, -0.422618389, 0.906307697, -1, 0, 0)
  1341. Part71.BottomSurface = Enum.SurfaceType.Smooth
  1342. Part71.TopSurface = Enum.SurfaceType.Smooth
  1343. Part71.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1344. Part71.Position = Vector3.new(15.4248037, 3.73900604, 19.9995117)
  1345. Part71.Orientation = Vector3.new(-65, -90, 180)
  1346. Part71.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1347. SpecialMesh72.Parent = Part71
  1348. SpecialMesh72.MeshType = Enum.MeshType.Torso
  1349. Part73.Parent = Model43
  1350. Part73.BrickColor = BrickColor.new("Black")
  1351. Part73.Rotation = Vector3.new(-90, 0, 0)
  1352. Part73.Anchored = true
  1353. Part73.CanCollide = false
  1354. Part73.FormFactor = Enum.FormFactor.Custom
  1355. Part73.Size = Vector3.new(0.5, 2.5999999, 0.399999857)
  1356. Part73.CFrame = CFrame.new(18.7441406, 2.59996796, 18.0996094, 1, 8.74227766e-08, 0, 0, 1.78813934e-07, 0.999999881, 8.74227766e-08, -0.999999881, 1.78813934e-07)
  1357. Part73.BottomSurface = Enum.SurfaceType.Smooth
  1358. Part73.TopSurface = Enum.SurfaceType.Smooth
  1359. Part73.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1360. Part73.Position = Vector3.new(18.7441406, 2.59996796, 18.0996094)
  1361. Part73.Orientation = Vector3.new(-89.9700012, 0, 0)
  1362. Part73.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1363. CylinderMesh74.Parent = Part73
  1364. Part75.Parent = Model43
  1365. Part75.BrickColor = BrickColor.new("Dark stone grey")
  1366. Part75.Rotation = Vector3.new(-180, 0, -90)
  1367. Part75.Anchored = true
  1368. Part75.CanCollide = false
  1369. Part75.FormFactor = Enum.FormFactor.Custom
  1370. Part75.Size = Vector3.new(1.70000005, 1.70000005, 1)
  1371. Part75.CFrame = CFrame.new(15.8499756, 3.85009003, 19.9995117, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  1372. Part75.BottomSurface = Enum.SurfaceType.Smooth
  1373. Part75.TopSurface = Enum.SurfaceType.Smooth
  1374. Part75.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1375. Part75.Position = Vector3.new(15.8499756, 3.85009003, 19.9995117)
  1376. Part75.Orientation = Vector3.new(0, 180, 90)
  1377. Part75.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1378. SpecialMesh76.Parent = Part75
  1379. SpecialMesh76.MeshId = "http://www.roblox.com/asset/?id=16606212"
  1380. SpecialMesh76.Scale = Vector3.new(1, 1, 0.600000024)
  1381. SpecialMesh76.MeshType = Enum.MeshType.FileMesh
  1382. SpecialMesh76.Scale = Vector3.new(1, 1, 0.600000024)
  1383. Part77.Parent = Model43
  1384. Part77.BrickColor = BrickColor.new("Dark stone grey")
  1385. Part77.Rotation = Vector3.new(-180, 0, -90)
  1386. Part77.Anchored = true
  1387. Part77.CanCollide = false
  1388. Part77.FormFactor = Enum.FormFactor.Custom
  1389. Part77.Size = Vector3.new(1.70000005, 1.70000005, 1.20000005)
  1390. Part77.CFrame = CFrame.new(15.8499756, 3.85009003, 19.7993164, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  1391. Part77.BottomSurface = Enum.SurfaceType.Smooth
  1392. Part77.TopSurface = Enum.SurfaceType.Smooth
  1393. Part77.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1394. Part77.Position = Vector3.new(15.8499756, 3.85009003, 19.7993164)
  1395. Part77.Orientation = Vector3.new(0, 180, 90)
  1396. Part77.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1397. SpecialMesh78.Parent = Part77
  1398. SpecialMesh78.MeshId = "http://www.roblox.com/asset/?id=16606212"
  1399. SpecialMesh78.Scale = Vector3.new(1, 1, 0.600000024)
  1400. SpecialMesh78.MeshType = Enum.MeshType.FileMesh
  1401. SpecialMesh78.Scale = Vector3.new(1, 1, 0.600000024)
  1402. Part79.Parent = Model43
  1403. Part79.BrickColor = BrickColor.new("Dark stone grey")
  1404. Part79.Rotation = Vector3.new(90, 90, 0)
  1405. Part79.Anchored = true
  1406. Part79.CanCollide = false
  1407. Part79.FormFactor = Enum.FormFactor.Custom
  1408. Part79.Size = Vector3.new(1.9000001, 0.400000095, 1.9000001)
  1409. Part79.CFrame = CFrame.new(15.8499756, 3.85009003, 18.6997089, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  1410. Part79.BottomSurface = Enum.SurfaceType.Smooth
  1411. Part79.TopSurface = Enum.SurfaceType.Smooth
  1412. Part79.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1413. Part79.Position = Vector3.new(15.8499756, 3.85009003, 18.6997089)
  1414. Part79.Orientation = Vector3.new(0, 90, 90)
  1415. Part79.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1416. CylinderMesh80.Parent = Part79
  1417. Part81.Parent = Model43
  1418. Part81.BrickColor = BrickColor.new("Black")
  1419. Part81.Rotation = Vector3.new(90, 90, 0)
  1420. Part81.Anchored = true
  1421. Part81.CanCollide = false
  1422. Part81.FormFactor = Enum.FormFactor.Custom
  1423. Part81.Size = Vector3.new(1.70000005, 2.20000005, 1.70000005)
  1424. Part81.CFrame = CFrame.new(15.8499756, 3.85009003, 19.9995117, 0, 0, 1, 1, 0, 0, 0, 1, 0)
  1425. Part81.BottomSurface = Enum.SurfaceType.Smooth
  1426. Part81.TopSurface = Enum.SurfaceType.Smooth
  1427. Part81.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1428. Part81.Position = Vector3.new(15.8499756, 3.85009003, 19.9995117)
  1429. Part81.Orientation = Vector3.new(0, 90, 90)
  1430. Part81.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1431. CylinderMesh82.Parent = Part81
  1432. Part83.Parent = Model43
  1433. Part83.BrickColor = BrickColor.new("Dark stone grey")
  1434. Part83.Rotation = Vector3.new(-90, -85, -90)
  1435. Part83.Anchored = true
  1436. Part83.FormFactor = Enum.FormFactor.Custom
  1437. Part83.Size = Vector3.new(7.90000105, 2.50000048, 0.69999963)
  1438. Part83.CFrame = CFrame.new(22.3483887, 5.53404617, 19.9995117, 4.70876739e-06, 0.0871552154, -0.996193111, -1.34110451e-07, 0.99619478, 0.087155208, 0.999998391, -1.34110451e-07, 4.70876694e-06)
  1439. Part83.BottomSurface = Enum.SurfaceType.Smooth
  1440. Part83.TopSurface = Enum.SurfaceType.Smooth
  1441. Part83.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1442. Part83.Position = Vector3.new(22.3483887, 5.53404617, 19.9995117)
  1443. Part83.Orientation = Vector3.new(-5, -90, 0)
  1444. Part83.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1445. Part84.Parent = Model43
  1446. Part84.BrickColor = BrickColor.new("Dark stone grey")
  1447. Part84.Rotation = Vector3.new(-90, -85, -90)
  1448. Part84.Anchored = true
  1449. Part84.FormFactor = Enum.FormFactor.Custom
  1450. Part84.Size = Vector3.new(3.50000095, 1.00000024, 2.79999995)
  1451. Part84.CFrame = CFrame.new(20.7052002, 6.83220482, 19.9995117, 4.70876739e-06, 0.0871552154, -0.996193111, -1.34110451e-07, 0.99619478, 0.087155208, 0.999998391, -1.34110451e-07, 4.70876694e-06)
  1452. Part84.BottomSurface = Enum.SurfaceType.Smooth
  1453. Part84.TopSurface = Enum.SurfaceType.Smooth
  1454. Part84.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1455. Part84.Position = Vector3.new(20.7052002, 6.83220482, 19.9995117)
  1456. Part84.Orientation = Vector3.new(-5, -90, 0)
  1457. Part84.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1458. Part85.Parent = Model43
  1459. Part85.BrickColor = BrickColor.new("Dark stone grey")
  1460. Part85.Rotation = Vector3.new(-90, -85, -90)
  1461. Part85.Anchored = true
  1462. Part85.FormFactor = Enum.FormFactor.Custom
  1463. Part85.Size = Vector3.new(7.10000086, 0.400000334, 0.69999963)
  1464. Part85.CFrame = CFrame.new(22.4748535, 6.97850704, 19.9995117, 4.70876739e-06, 0.0871552154, -0.996193111, -1.34110451e-07, 0.99619478, 0.087155208, 0.999998391, -1.34110451e-07, 4.70876694e-06)
  1465. Part85.BottomSurface = Enum.SurfaceType.Smooth
  1466. Part85.TopSurface = Enum.SurfaceType.Smooth
  1467. Part85.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1468. Part85.Position = Vector3.new(22.4748535, 6.97850704, 19.9995117)
  1469. Part85.Orientation = Vector3.new(-5, -90, 0)
  1470. Part85.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1471. Part86.Parent = Model43
  1472. Part86.BrickColor = BrickColor.new("Really black")
  1473. Part86.Transparency = 0.5
  1474. Part86.Rotation = Vector3.new(-180, 0, -122)
  1475. Part86.Anchored = true
  1476. Part86.FormFactor = Enum.FormFactor.Custom
  1477. Part86.Size = Vector3.new(0.200000003, 4.4000001, 3.53999996)
  1478. Part86.CFrame = CFrame.new(20.6352539, 7.86693382, 20.0009766, -0.529917598, 0.848049164, -3.58145087e-08, 0.848049164, 0.529917598, 3.13016244e-06, 2.67351015e-06, 1.62835579e-06, -1)
  1479. Part86.BottomSurface = Enum.SurfaceType.Smooth
  1480. Part86.TopSurface = Enum.SurfaceType.Smooth
  1481. Part86.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1482. Part86.Position = Vector3.new(20.6352539, 7.86693382, 20.0009766)
  1483. Part86.Orientation = Vector3.new(0, -180, 58)
  1484. Part86.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1485. BlockMesh87.Parent = Part86
  1486. BlockMesh87.Offset = Vector3.new(0.100000001, 0, 0)
  1487. BlockMesh87.Scale = Vector3.new(0, 1, 1)
  1488. BlockMesh87.Scale = Vector3.new(0, 1, 1)
  1489. Part88.Parent = Model43
  1490. Part88.BrickColor = BrickColor.new("Dark stone grey")
  1491. Part88.Rotation = Vector3.new(-180, 0, -81)
  1492. Part88.Anchored = true
  1493. Part88.FormFactor = Enum.FormFactor.Custom
  1494. Part88.Size = Vector3.new(0.300000012, 0.800000072, 3.53999996)
  1495. Part88.CFrame = CFrame.new(22.8353271, 9.00566387, 20.0009766, 0.156432509, 0.987690091, 5.88202681e-07, 0.987690091, -0.156435847, 2.6724415e-06, 2.7315541e-06, 1.62900506e-07, -1.00000334)
  1496. Part88.BottomSurface = Enum.SurfaceType.Smooth
  1497. Part88.TopSurface = Enum.SurfaceType.Smooth
  1498. Part88.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1499. Part88.Position = Vector3.new(22.8353271, 9.00566387, 20.0009766)
  1500. Part88.Orientation = Vector3.new(0, 180, 99)
  1501. Part88.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1502. Part89.Parent = Model43
  1503. Part89.BrickColor = BrickColor.new("Dark stone grey")
  1504. Part89.Rotation = Vector3.new(-130.349991, 6.87999964, -84.1899948)
  1505. Part89.Anchored = true
  1506. Part89.FormFactor = Enum.FormFactor.Custom
  1507. Part89.Size = Vector3.new(0.300000012, 0.800000072, 3.49999976)
  1508. Part89.CFrame = CFrame.new(22.6258545, 7.68339777, 22.9741211, 0.100554168, 0.987688303, 0.11983633, 0.634872019, -0.156434909, 0.756614566, 0.766045928, -2.98023224e-08, -0.642785788)
  1509. Part89.BottomSurface = Enum.SurfaceType.Smooth
  1510. Part89.TopSurface = Enum.SurfaceType.Smooth
  1511. Part89.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1512. Part89.Position = Vector3.new(22.6258545, 7.68339777, 22.9741211)
  1513. Part89.Orientation = Vector3.new(-49.1699982, 169.440002, 103.839996)
  1514. Part89.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1515. Part90.Name = "EngineSmoke"
  1516. Part90.Parent = Model43
  1517. Part90.BrickColor = BrickColor.new("Dark stone grey")
  1518. Part90.Rotation = Vector3.new(90, -70, 90)
  1519. Part90.Anchored = true
  1520. Part90.FormFactor = Enum.FormFactor.Custom
  1521. Part90.Size = Vector3.new(2.20000005, 0.600000024, 4.9000001)
  1522. Part90.CFrame = CFrame.new(17.2989502, 6.02342987, 19.9995117, 0, -0.342020512, -0.939692557, 0, 0.939692557, -0.342020512, 1, 0, 0)
  1523. Part90.BottomSurface = Enum.SurfaceType.Smooth
  1524. Part90.TopSurface = Enum.SurfaceType.Smooth
  1525. Part90.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1526. Part90.Position = Vector3.new(17.2989502, 6.02342987, 19.9995117)
  1527. Part90.Orientation = Vector3.new(20, -90, 0)
  1528. Part90.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1529. Smoke91.Parent = Part90
  1530. Smoke91.Size = 0.5
  1531. Smoke91.Color = Color3.new(0.121569, 0.121569, 0.121569)
  1532. Smoke91.Enabled = false
  1533. Smoke91.Opacity = 0.40000000596046
  1534. Smoke91.Color = Color3.new(0.121569, 0.121569, 0.121569)
  1535. Fire92.Parent = Part90
  1536. Fire92.Size = 7
  1537. Fire92.Color = Color3.new(1, 0.666667, 0)
  1538. Fire92.Enabled = false
  1539. Fire92.Heat = 25
  1540. Fire92.SecondaryColor = Color3.new(0.666667, 0, 0)
  1541. Fire92.Color = Color3.new(1, 0.666667, 0)
  1542. Part93.Parent = Model43
  1543. Part93.BrickColor = BrickColor.new("Dark stone grey")
  1544. Part93.Rotation = Vector3.new(90, -75, 90)
  1545. Part93.Anchored = true
  1546. Part93.FormFactor = Enum.FormFactor.Custom
  1547. Part93.Size = Vector3.new(10, 0.600000024, 0.599999964)
  1548. Part93.CFrame = CFrame.new(19.4213867, 6.08800077, 19.9995117, 2.98023224e-07, -0.258819342, -0.965925634, 4.470348e-08, 0.965925753, -0.258819342, 0.99999994, 4.47034836e-08, 2.98023224e-07)
  1549. Part93.BottomSurface = Enum.SurfaceType.Smooth
  1550. Part93.TopSurface = Enum.SurfaceType.Smooth
  1551. Part93.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1552. Part93.Position = Vector3.new(19.4213867, 6.08800077, 19.9995117)
  1553. Part93.Orientation = Vector3.new(15, -90, 0)
  1554. Part93.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1555. Part94.Parent = Model43
  1556. Part94.BrickColor = BrickColor.new("Dark stone grey")
  1557. Part94.Rotation = Vector3.new(90, -75, 90)
  1558. Part94.Anchored = true
  1559. Part94.FormFactor = Enum.FormFactor.Custom
  1560. Part94.Size = Vector3.new(2.60000014, 0.600000024, 0.700000048)
  1561. Part94.CFrame = CFrame.new(15.3161621, 4.98809004, 19.9995117, 2.98023224e-07, -0.258819342, -0.965925634, 4.470348e-08, 0.965925753, -0.258819342, 0.99999994, 4.47034836e-08, 2.98023224e-07)
  1562. Part94.BottomSurface = Enum.SurfaceType.Smooth
  1563. Part94.TopSurface = Enum.SurfaceType.Smooth
  1564. Part94.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1565. Part94.Position = Vector3.new(15.3161621, 4.98809004, 19.9995117)
  1566. Part94.Orientation = Vector3.new(15, -90, 0)
  1567. Part94.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1568. Part95.Parent = Model43
  1569. Part95.BrickColor = BrickColor.new("Dark stone grey")
  1570. Part95.Rotation = Vector3.new(-90, -45, -90)
  1571. Part95.Anchored = true
  1572. Part95.FormFactor = Enum.FormFactor.Custom
  1573. Part95.Size = Vector3.new(10, 0.5, 4.69999981)
  1574. Part95.CFrame = CFrame.new(22.0151367, 4.53850412, 19.9995117, -2.38418608e-07, 0.707106888, -0.707106829, 5.96046519e-08, 0.707106709, 0.707106888, 1.00000012, 5.96046448e-08, -2.38418579e-07)
  1575. Part95.BottomSurface = Enum.SurfaceType.Smooth
  1576. Part95.TopSurface = Enum.SurfaceType.Smooth
  1577. Part95.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1578. Part95.Position = Vector3.new(22.0151367, 4.53850412, 19.9995117)
  1579. Part95.Orientation = Vector3.new(-45, -90, 0)
  1580. Part95.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1581. Part96.Parent = Model43
  1582. Part96.BrickColor = BrickColor.new("Dark stone grey")
  1583. Part96.Rotation = Vector3.new(-90, -85, -90)
  1584. Part96.Anchored = true
  1585. Part96.FormFactor = Enum.FormFactor.Custom
  1586. Part96.Size = Vector3.new(10, 0.600000024, 0.899999976)
  1587. Part96.CFrame = CFrame.new(20.0556641, 6.11730003, 19.9995117, 0, 0.087155588, -0.99619472, 0, 0.99619472, 0.087155588, 1, 0, -0)
  1588. Part96.BottomSurface = Enum.SurfaceType.Smooth
  1589. Part96.TopSurface = Enum.SurfaceType.Smooth
  1590. Part96.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1591. Part96.Position = Vector3.new(20.0556641, 6.11730003, 19.9995117)
  1592. Part96.Orientation = Vector3.new(-5, -90, 0)
  1593. Part96.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1594. Part97.Parent = Model43
  1595. Part97.BrickColor = BrickColor.new("Dark stone grey")
  1596. Part97.Rotation = Vector3.new(90, -75, 90)
  1597. Part97.Anchored = true
  1598. Part97.CanCollide = false
  1599. Part97.FormFactor = Enum.FormFactor.Custom
  1600. Part97.Size = Vector3.new(7.4000001, 0.600000024, 3.5999999)
  1601. Part97.CFrame = CFrame.new(17.3930664, 5.54448605, 19.9995117, 2.98023224e-07, -0.258819342, -0.965925634, 4.470348e-08, 0.965925753, -0.258819342, 0.99999994, 4.47034836e-08, 2.98023224e-07)
  1602. Part97.BottomSurface = Enum.SurfaceType.Smooth
  1603. Part97.TopSurface = Enum.SurfaceType.Smooth
  1604. Part97.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1605. Part97.Position = Vector3.new(17.3930664, 5.54448605, 19.9995117)
  1606. Part97.Orientation = Vector3.new(15, -90, 0)
  1607. Part97.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1608. Part98.Parent = Model43
  1609. Part98.BrickColor = BrickColor.new("Dark stone grey")
  1610. Part98.Rotation = Vector3.new(90, -70, 90)
  1611. Part98.Anchored = true
  1612. Part98.FormFactor = Enum.FormFactor.Custom
  1613. Part98.Size = Vector3.new(1.20000017, 0.699999988, 2.0999999)
  1614. Part98.CFrame = CFrame.new(15.8468018, 5.3352561, 20.6997089, 0, -0.342020512, -0.939692557, 0, 0.939692557, -0.342020512, 1, 0, 0)
  1615. Part98.BottomSurface = Enum.SurfaceType.Smooth
  1616. Part98.TopSurface = Enum.SurfaceType.Smooth
  1617. Part98.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1618. Part98.Position = Vector3.new(15.8468018, 5.3352561, 20.6997089)
  1619. Part98.Orientation = Vector3.new(20, -90, 0)
  1620. Part98.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1621. Part99.Parent = Model43
  1622. Part99.BrickColor = BrickColor.new("Dark stone grey")
  1623. Part99.Rotation = Vector3.new(-90, 65, 180)
  1624. Part99.Anchored = true
  1625. Part99.CanCollide = false
  1626. Part99.FormFactor = Enum.FormFactor.Custom
  1627. Part99.Size = Vector3.new(0.600000143, 0.300000012, 5.19999981)
  1628. Part99.CFrame = CFrame.new(17.8718262, 4.88005686, 18.3496094, -0.42261827, -5.96046448e-08, 0.906307638, 0.906307638, 0, 0.422618359, 5.96046448e-08, 0.999999881, 1.1920929e-07)
  1629. Part99.BottomSurface = Enum.SurfaceType.Smooth
  1630. Part99.TopSurface = Enum.SurfaceType.Smooth
  1631. Part99.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1632. Part99.Position = Vector3.new(17.8718262, 4.88005686, 18.3496094)
  1633. Part99.Orientation = Vector3.new(-25, 90, 90)
  1634. Part99.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1635. Part100.Parent = Model43
  1636. Part100.BrickColor = BrickColor.new("Really black")
  1637. Part100.Transparency = 0.5
  1638. Part100.Rotation = Vector3.new(144.559998, 19.9099998, -115.579994)
  1639. Part100.Anchored = true
  1640. Part100.FormFactor = Enum.FormFactor.Custom
  1641. Part100.Size = Vector3.new(0.200000003, 2, 2.13999987)
  1642. Part100.CFrame = CFrame.new(20.5633545, 7.03862619, 17.4755859, -0.405941606, 0.848049164, 0.340625256, 0.64964509, 0.529918075, -0.545113504, -0.642786264, 1.54972076e-06, -0.766046762)
  1643. Part100.BottomSurface = Enum.SurfaceType.Smooth
  1644. Part100.TopSurface = Enum.SurfaceType.Smooth
  1645. Part100.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1646. Part100.Position = Vector3.new(20.5633545, 7.03862619, 17.4755859)
  1647. Part100.Orientation = Vector3.new(33.0299988, 156.029999, 50.7999992)
  1648. Part100.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1649. BlockMesh101.Parent = Part100
  1650. BlockMesh101.Offset = Vector3.new(0.100000001, 0, 0)
  1651. BlockMesh101.Scale = Vector3.new(0, 1, 1)
  1652. BlockMesh101.Scale = Vector3.new(0, 1, 1)
  1653. Part102.Parent = Model43
  1654. Part102.Rotation = Vector3.new(100.119995, -18.75, -75.1199951)
  1655. Part102.Anchored = true
  1656. Part102.FormFactor = Enum.FormFactor.Custom
  1657. Part102.Size = Vector3.new(0.200000003, 0.200000048, 1.4000001)
  1658. Part102.CFrame = CFrame.new(17.4311523, 6.17748117, 17.1977539, 0.243210733, 0.915164769, -0.321436703, 0.0885219872, -0.350945622, -0.932201743, -0.965925395, 0.198266983, -0.166365623)
  1659. Part102.BottomSurface = Enum.SurfaceType.Smooth
  1660. Part102.TopSurface = Enum.SurfaceType.Smooth
  1661. Part102.Position = Vector3.new(17.4311523, 6.17748117, 17.1977539)
  1662. Part102.Orientation = Vector3.new(68.7799988, -117.360001, 165.839996)
  1663. Part103.Parent = Model43
  1664. Part103.Rotation = Vector3.new(128.080002, -65.1899948, -54.579998)
  1665. Part103.Anchored = true
  1666. Part103.FormFactor = Enum.FormFactor.Custom
  1667. Part103.Size = Vector3.new(0.200000003, 0.200000048, 1.4000001)
  1668. Part103.CFrame = CFrame.new(18.2342529, 7.00249481, 17.4755859, 0.243210554, 0.342020512, -0.90767312, 0.0885213464, -0.939692318, -0.330366492, -0.965925694, 1.1920929e-07, -0.258818984)
  1669. Part103.BottomSurface = Enum.SurfaceType.Smooth
  1670. Part103.TopSurface = Enum.SurfaceType.Smooth
  1671. Part103.Position = Vector3.new(18.2342529, 7.00249481, 17.4755859)
  1672. Part103.Orientation = Vector3.new(19.289999, -105.919998, 174.619995)
  1673. Part104.Parent = Model43
  1674. Part104.BrickColor = BrickColor.new("Dark stone grey")
  1675. Part104.Rotation = Vector3.new(-130.349991, 6.87999964, -84.1899948)
  1676. Part104.Anchored = true
  1677. Part104.FormFactor = Enum.FormFactor.Custom
  1678. Part104.Size = Vector3.new(0.80000025, 1.00000012, 0.799999595)
  1679. Part104.CFrame = CFrame.new(22.503418, 6.91105986, 24.1357422, 0.100554168, 0.987688303, 0.11983633, 0.634872019, -0.156434909, 0.756614566, 0.766045928, -2.98023224e-08, -0.642785788)
  1680. Part104.BottomSurface = Enum.SurfaceType.Smooth
  1681. Part104.TopSurface = Enum.SurfaceType.Smooth
  1682. Part104.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1683. Part104.Position = Vector3.new(22.503418, 6.91105986, 24.1357422)
  1684. Part104.Orientation = Vector3.new(-49.1699982, 169.440002, 103.839996)
  1685. Part104.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1686. Part105.Parent = Model43
  1687. Part105.Rotation = Vector3.new(-130.349991, 6.87999964, -84.1899948)
  1688. Part105.Anchored = true
  1689. Part105.FormFactor = Enum.FormFactor.Custom
  1690. Part105.Size = Vector3.new(0.30000025, 0.500000119, 1.59999943)
  1691. Part105.CFrame = CFrame.new(22.4088135, 7.59141779, 23.2192383, 0.100554168, 0.987688303, 0.11983633, 0.634872019, -0.156434909, 0.756614566, 0.766045928, -2.98023224e-08, -0.642785788)
  1692. Part105.BottomSurface = Enum.SurfaceType.Smooth
  1693. Part105.TopSurface = Enum.SurfaceType.Smooth
  1694. Part105.Position = Vector3.new(22.4088135, 7.59141779, 23.2192383)
  1695. Part105.Orientation = Vector3.new(-49.1699982, 169.440002, 103.839996)
  1696. Part106.Parent = Model43
  1697. Part106.BrickColor = BrickColor.new("Deep orange")
  1698. Part106.Rotation = Vector3.new(128.080002, -65.1899948, -54.579998)
  1699. Part106.Anchored = true
  1700. Part106.FormFactor = Enum.FormFactor.Custom
  1701. Part106.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1702. Part106.CFrame = CFrame.new(15.1334219, 4.91600704, 18.2636719, 0.243210554, 0.342020512, -0.90767312, 0.0885213763, -0.939692318, -0.330366433, -0.965925694, 8.94069672e-08, -0.258818984)
  1703. Part106.BottomSurface = Enum.SurfaceType.Smooth
  1704. Part106.TopSurface = Enum.SurfaceType.Smooth
  1705. Part106.Color = Color3.new(1, 0.686275, 0)
  1706. Part106.Position = Vector3.new(15.1334219, 4.91600704, 18.2636719)
  1707. Part106.Orientation = Vector3.new(19.289999, -105.919998, 174.619995)
  1708. Part106.Color = Color3.new(1, 0.686275, 0)
  1709. Part107.Parent = Model43
  1710. Part107.BrickColor = BrickColor.new("Deep orange")
  1711. Part107.Rotation = Vector3.new(128.080002, -65.1899948, -54.579998)
  1712. Part107.Anchored = true
  1713. Part107.FormFactor = Enum.FormFactor.Custom
  1714. Part107.Size = Vector3.new(0.200000003, 0.200000003, 0.200000003)
  1715. Part107.CFrame = CFrame.new(15.2792959, 4.96910715, 17.684082, 0.243210554, 0.342020512, -0.90767312, 0.0885213763, -0.939692318, -0.330366433, -0.965925694, 8.94069672e-08, -0.258818984)
  1716. Part107.BottomSurface = Enum.SurfaceType.Smooth
  1717. Part107.TopSurface = Enum.SurfaceType.Smooth
  1718. Part107.Color = Color3.new(1, 0.686275, 0)
  1719. Part107.Position = Vector3.new(15.2792959, 4.96910715, 17.684082)
  1720. Part107.Orientation = Vector3.new(19.289999, -105.919998, 174.619995)
  1721. Part107.Color = Color3.new(1, 0.686275, 0)
  1722. Part108.Parent = Model43
  1723. Part108.BrickColor = BrickColor.new("Dark stone grey")
  1724. Part108.Rotation = Vector3.new(90, -70, 90)
  1725. Part108.Anchored = true
  1726. Part108.FormFactor = Enum.FormFactor.Custom
  1727. Part108.Size = Vector3.new(1.20000017, 0.699999988, 2.0999999)
  1728. Part108.CFrame = CFrame.new(15.8468018, 5.3352561, 19.2993164, 0, -0.342020512, -0.939692557, 0, 0.939692557, -0.342020512, 1, 0, 0)
  1729. Part108.BottomSurface = Enum.SurfaceType.Smooth
  1730. Part108.TopSurface = Enum.SurfaceType.Smooth
  1731. Part108.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1732. Part108.Position = Vector3.new(15.8468018, 5.3352561, 19.2993164)
  1733. Part108.Orientation = Vector3.new(20, -90, 0)
  1734. Part108.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1735. Part109.Parent = Model43
  1736. Part109.Rotation = Vector3.new(-157.37999, -75.2799988, 16.8400002)
  1737. Part109.Anchored = true
  1738. Part109.FormFactor = Enum.FormFactor.Custom
  1739. Part109.Size = Vector3.new(0.200000003, 0.200000048, 1.4000001)
  1740. Part109.CFrame = CFrame.new(19.5052509, 7.16002512, 17.8100586, 0.243210733, -0.0736236572, -0.967175186, 0.0885212123, -0.991269171, 0.0977177322, -0.965925574, -0.109381519, -0.234569669)
  1741. Part109.BottomSurface = Enum.SurfaceType.Smooth
  1742. Part109.TopSurface = Enum.SurfaceType.Smooth
  1743. Part109.Position = Vector3.new(19.5052509, 7.16002512, 17.8100586)
  1744. Part109.Orientation = Vector3.new(-5.60999966, -103.629997, 174.899994)
  1745. Part110.Parent = Model43
  1746. Part110.Rotation = Vector3.new(84.8300018, 10.5900002, 36.8199997)
  1747. Part110.Anchored = true
  1748. Part110.FormFactor = Enum.FormFactor.Custom
  1749. Part110.Size = Vector3.new(0.200000003, 1.99999976, 0.200000003)
  1750. Part110.CFrame = CFrame.new(15.30371, 6.68773413, 16.7783203, 0.786902547, -0.589087188, 0.183740199, 0.200461939, -0.0375728607, -0.978979945, 0.583608747, 0.807194471, 0.0885236263)
  1751. Part110.BottomSurface = Enum.SurfaceType.Smooth
  1752. Part110.TopSurface = Enum.SurfaceType.Smooth
  1753. Part110.Position = Vector3.new(15.30371, 6.68773413, 16.7783203)
  1754. Part110.Orientation = Vector3.new(78.2299957, 64.2799988, 100.619995)
  1755. Part111.Parent = Model43
  1756. Part111.Rotation = Vector3.new(84.8300018, 10.5900002, 76.8199997)
  1757. Part111.Anchored = true
  1758. Part111.FormFactor = Enum.FormFactor.Custom
  1759. Part111.Size = Vector3.new(0.200000003, 3.4000001, 0.200000003)
  1760. Part111.CFrame = CFrame.new(17.4633789, 6.98613691, 15.5961905, 0.224144474, -0.957077682, 0.183740377, 0.129409865, -0.157637358, -0.978980124, 0.965925097, 0.243210286, 0.0885224342)
  1761. Part111.BottomSurface = Enum.SurfaceType.Smooth
  1762. Part111.TopSurface = Enum.SurfaceType.Smooth
  1763. Part111.Position = Vector3.new(17.4633789, 6.98613691, 15.5961905)
  1764. Part111.Orientation = Vector3.new(78.2299957, 64.2799988, 140.619995)
  1765. Part112.Parent = Model43
  1766. Part112.Rotation = Vector3.new(61.8099976, -56.7700005, 65.8499985)
  1767. Part112.Anchored = true
  1768. Part112.FormFactor = Enum.FormFactor.Custom
  1769. Part112.Size = Vector3.new(0.200000003, 1.10000014, 0.200000003)
  1770. Part112.CFrame = CFrame.new(19.2635498, 6.82750416, 15.2001944, 0.224143758, -0.500000298, -0.836516201, 0.129409492, 0.866025269, -0.482963145, 0.965925872, 2.98023224e-08, 0.258818924)
  1771. Part112.BottomSurface = Enum.SurfaceType.Smooth
  1772. Part112.TopSurface = Enum.SurfaceType.Smooth
  1773. Part112.Position = Vector3.new(19.2635498, 6.82750416, 15.2001944)
  1774. Part112.Orientation = Vector3.new(28.8799992, -72.8099976, 8.5)
  1775. Part113.Parent = Model43
  1776. Part113.Rotation = Vector3.new(170.319992, 37.7399979, -60.7099991)
  1777. Part113.Anchored = true
  1778. Part113.FormFactor = Enum.FormFactor.Custom
  1779. Part113.Size = Vector3.new(0.200000003, 0.800000072, 0.200000003)
  1780. Part113.CFrame = CFrame.new(15.0955801, 5.38682985, 17.9941406, 0.386919826, 0.68970561, 0.612041652, 0.910072565, -0.39251864, -0.132992789, 0.148514569, 0.608461499, -0.779554605)
  1781. Part113.BottomSurface = Enum.SurfaceType.Smooth
  1782. Part113.TopSurface = Enum.SurfaceType.Smooth
  1783. Part113.Position = Vector3.new(15.0955801, 5.38682985, 17.9941406)
  1784. Part113.Orientation = Vector3.new(7.63999987, 141.860001, 113.329994)
  1785. Part114.Parent = Model43
  1786. Part114.Rotation = Vector3.new(9.67999935, 37.7399979, -174.289993)
  1787. Part114.Anchored = true
  1788. Part114.FormFactor = Enum.FormFactor.Custom
  1789. Part114.Size = Vector3.new(0.200000003, 1.29999971, 0.200000003)
  1790. Part114.CFrame = CFrame.new(14.8084717, 6.10380888, 22.3525391, -0.786900163, 0.078655757, 0.61204344, -0.200461566, -0.970630288, -0.13299334, 0.583608627, -0.227344096, 0.779560804)
  1791. Part114.BottomSurface = Enum.SurfaceType.Smooth
  1792. Part114.TopSurface = Enum.SurfaceType.Smooth
  1793. Part114.Position = Vector3.new(14.8084717, 6.10380888, 22.3525391)
  1794. Part114.Orientation = Vector3.new(7.63999987, 38.1399994, -168.330002)
  1795. Part115.Parent = Model43
  1796. Part115.Rotation = Vector3.new(95.1699982, 10.5900002, 143.179993)
  1797. Part115.Anchored = true
  1798. Part115.FormFactor = Enum.FormFactor.Custom
  1799. Part115.Size = Vector3.new(0.200000003, 1.99999976, 0.200000003)
  1800. Part115.CFrame = CFrame.new(15.30371, 6.68773413, 23.2211914, -0.786901236, -0.589087188, 0.183740765, -0.200461686, -0.0375744067, -0.978980124, 0.583609045, -0.80719465, -0.0885210037)
  1801. Part115.BottomSurface = Enum.SurfaceType.Smooth
  1802. Part115.TopSurface = Enum.SurfaceType.Smooth
  1803. Part115.Position = Vector3.new(15.30371, 6.68773413, 23.2211914)
  1804. Part115.Orientation = Vector3.new(78.2299957, 115.720001, -100.619995)
  1805. Part116.Parent = Model43
  1806. Part116.Rotation = Vector3.new(95.1699982, 10.5900002, 103.18)
  1807. Part116.Anchored = true
  1808. Part116.FormFactor = Enum.FormFactor.Custom
  1809. Part116.Size = Vector3.new(0.200000003, 3.4000001, 0.200000003)
  1810. Part116.CFrame = CFrame.new(17.4633789, 6.98613691, 24.4033203, -0.224143624, -0.95707798, 0.183741406, -0.129409462, -0.157638803, -0.978980422, 0.965925634, -0.243210316, -0.0885210037)
  1811. Part116.BottomSurface = Enum.SurfaceType.Smooth
  1812. Part116.TopSurface = Enum.SurfaceType.Smooth
  1813. Part116.Position = Vector3.new(17.4633789, 6.98613691, 24.4033203)
  1814. Part116.Orientation = Vector3.new(78.2299957, 115.720001, -140.619995)
  1815. Part117.Parent = Model43
  1816. Part117.Rotation = Vector3.new(118.189995, -56.7700005, 114.149994)
  1817. Part117.Anchored = true
  1818. Part117.FormFactor = Enum.FormFactor.Custom
  1819. Part117.Size = Vector3.new(0.200000003, 1.10000014, 0.200000003)
  1820. Part117.CFrame = CFrame.new(19.2635498, 6.82750416, 24.7993164, -0.224143147, -0.500000119, -0.836516142, -0.129409492, 0.866025329, -0.482963026, 0.965925753, 1.49011612e-07, -0.258818388)
  1821. Part117.BottomSurface = Enum.SurfaceType.Smooth
  1822. Part117.TopSurface = Enum.SurfaceType.Smooth
  1823. Part117.Position = Vector3.new(19.2635498, 6.82750416, 24.7993164)
  1824. Part117.Orientation = Vector3.new(28.8799992, -107.189995, -8.5)
  1825. WedgePart118.Name = "Part"
  1826. WedgePart118.Parent = Model43
  1827. WedgePart118.BrickColor = BrickColor.new("Dark stone grey")
  1828. WedgePart118.Rotation = Vector3.new(180, 0, 75)
  1829. WedgePart118.Anchored = true
  1830. WedgePart118.CanCollide = false
  1831. WedgePart118.FormFactor = Enum.FormFactor.Custom
  1832. WedgePart118.Size = Vector3.new(0.600000143, 0.700000167, 2.39999986)
  1833. WedgePart118.CFrame = CFrame.new(15.3161621, 4.98809004, 22.4995117, 0.258819342, -0.965925753, 3.53484619e-09, -0.965925753, -0.258819342, -1.31917686e-08, 1.36571545e-08, -1.14575016e-13, -1)
  1834. WedgePart118.BottomSurface = Enum.SurfaceType.Smooth
  1835. WedgePart118.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1836. WedgePart118.Position = Vector3.new(15.3161621, 4.98809004, 22.4995117)
  1837. WedgePart118.Orientation = Vector3.new(0, 180, -105)
  1838. WedgePart118.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1839. WedgePart119.Name = "Part"
  1840. WedgePart119.Parent = Model43
  1841. WedgePart119.BrickColor = BrickColor.new("Dark stone grey")
  1842. WedgePart119.Rotation = Vector3.new(90.0099945, 85, 0)
  1843. WedgePart119.Anchored = true
  1844. WedgePart119.FormFactor = Enum.FormFactor.Custom
  1845. WedgePart119.Size = Vector3.new(0.300000012, 2, 2.79999971)
  1846. WedgePart119.CFrame = CFrame.new(20.7357178, 7.18089914, 22.7495117, 0.0871466473, 4.50015068e-06, 0.996199667, 0.996199727, -6.43730164e-06, -0.0871511176, 1.63912773e-06, 1.00000453, -9.05990601e-06)
  1847. WedgePart119.BottomSurface = Enum.SurfaceType.Smooth
  1848. WedgePart119.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1849. WedgePart119.Position = Vector3.new(20.7357178, 7.18089914, 22.7495117)
  1850. WedgePart119.Orientation = Vector3.new(5, 90, 90)
  1851. WedgePart119.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1852. WedgePart120.Name = "Part"
  1853. WedgePart120.Parent = Model43
  1854. WedgePart120.BrickColor = BrickColor.new("Dark stone grey")
  1855. WedgePart120.Rotation = Vector3.new(90, 85, -180)
  1856. WedgePart120.Anchored = true
  1857. WedgePart120.FormFactor = Enum.FormFactor.Custom
  1858. WedgePart120.Size = Vector3.new(0.300000012, 2, 2.79999971)
  1859. WedgePart120.CFrame = CFrame.new(20.7357178, 7.18089914, 17.2495117, -0.087155588, 0, 0.99619472, -0.99619472, 0, -0.0871555582, 0, -1, 0)
  1860. WedgePart120.BottomSurface = Enum.SurfaceType.Smooth
  1861. WedgePart120.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1862. WedgePart120.Position = Vector3.new(20.7357178, 7.18089914, 17.2495117)
  1863. WedgePart120.Orientation = Vector3.new(5, 90, -90)
  1864. WedgePart120.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1865. WedgePart121.Name = "Part"
  1866. WedgePart121.Parent = Model43
  1867. WedgePart121.BrickColor = BrickColor.new("Really black")
  1868. WedgePart121.Transparency = 0.5
  1869. WedgePart121.Rotation = Vector3.new(90, -58, -40)
  1870. WedgePart121.Anchored = true
  1871. WedgePart121.FormFactor = Enum.FormFactor.Custom
  1872. WedgePart121.Size = Vector3.new(0.200000003, 3.20000029, 1.79999959)
  1873. WedgePart121.CFrame = CFrame.new(22.3145752, 7.82146215, 22.996582, 0.405955613, 0.340625614, -0.848041534, -0.649636269, -0.545112193, -0.529929996, -0.642785311, 0.766046524, -8.82148743e-06)
  1874. WedgePart121.BottomSurface = Enum.SurfaceType.Smooth
  1875. WedgePart121.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1876. WedgePart121.Position = Vector3.new(22.3145752, 7.82146215, 22.996582)
  1877. WedgePart121.Orientation = Vector3.new(32, -90, -130)
  1878. WedgePart121.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1879. SpecialMesh122.Parent = WedgePart121
  1880. SpecialMesh122.Scale = Vector3.new(0, 1, 1)
  1881. SpecialMesh122.MeshType = Enum.MeshType.Wedge
  1882. SpecialMesh122.Scale = Vector3.new(0, 1, 1)
  1883. WedgePart123.Name = "Part"
  1884. WedgePart123.Parent = Model43
  1885. WedgePart123.BrickColor = BrickColor.new("Dark stone grey")
  1886. WedgePart123.Rotation = Vector3.new(0, 0, 105)
  1887. WedgePart123.Anchored = true
  1888. WedgePart123.CanCollide = false
  1889. WedgePart123.FormFactor = Enum.FormFactor.Custom
  1890. WedgePart123.Size = Vector3.new(0.600000143, 3.60000038, 1.29999995)
  1891. WedgePart123.CFrame = CFrame.new(17.3930664, 5.54448605, 15.6494141, -0.258819342, -0.965925753, 0, 0.965925753, -0.258819342, 0, 0, 0, 1)
  1892. WedgePart123.BottomSurface = Enum.SurfaceType.Smooth
  1893. WedgePart123.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1894. WedgePart123.Position = Vector3.new(17.3930664, 5.54448605, 15.6494141)
  1895. WedgePart123.Orientation = Vector3.new(0, 0, 105)
  1896. WedgePart123.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1897. WedgePart124.Name = "Part"
  1898. WedgePart124.Parent = Model43
  1899. WedgePart124.BrickColor = BrickColor.new("Dark stone grey")
  1900. WedgePart124.Rotation = Vector3.new(0, 0, 105)
  1901. WedgePart124.Anchored = true
  1902. WedgePart124.CanCollide = false
  1903. WedgePart124.FormFactor = Enum.FormFactor.Custom
  1904. WedgePart124.Size = Vector3.new(0.600000143, 0.700000167, 2.39999986)
  1905. WedgePart124.CFrame = CFrame.new(15.3161621, 4.98809004, 17.4995117, -0.258819342, -0.965925753, 0, 0.965925753, -0.258819342, 0, 0, 0, 1)
  1906. WedgePart124.BottomSurface = Enum.SurfaceType.Smooth
  1907. WedgePart124.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1908. WedgePart124.Position = Vector3.new(15.3161621, 4.98809004, 17.4995117)
  1909. WedgePart124.Orientation = Vector3.new(0, 0, 105)
  1910. WedgePart124.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1911. Part125.Parent = Model43
  1912. Part125.BrickColor = BrickColor.new("Dark stone grey")
  1913. Part125.Rotation = Vector3.new(-90, 9, -90)
  1914. Part125.Anchored = true
  1915. Part125.FormFactor = Enum.FormFactor.Custom
  1916. Part125.Size = Vector3.new(0.80000025, 1.00000012, 0.799999654)
  1917. Part125.CFrame = CFrame.new(22.4332275, 6.46715212, 15.6997061, 4.05311584e-06, 0.987683713, 0.156438306, 2.98023224e-08, -0.156434312, 0.987683713, 0.999996006, -2.98023224e-08, 3.93390656e-06)
  1918. Part125.BottomSurface = Enum.SurfaceType.Smooth
  1919. Part125.TopSurface = Enum.SurfaceType.Smooth
  1920. Part125.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1921. Part125.Position = Vector3.new(22.4332275, 6.46715212, 15.6997061)
  1922. Part125.Orientation = Vector3.new(-81, 90, 180)
  1923. Part125.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1924. Part126.Parent = Model43
  1925. Part126.BrickColor = BrickColor.new("Dark stone grey")
  1926. Part126.Rotation = Vector3.new(90, -70, 90)
  1927. Part126.Anchored = true
  1928. Part126.CanCollide = false
  1929. Part126.FormFactor = Enum.FormFactor.Custom
  1930. Part126.Size = Vector3.new(0.699999988, 0.800000012, 4.39999962)
  1931. Part126.CFrame = CFrame.new(20.5837402, 3.14177704, 21.5493164, 0, -0.342020333, -0.939692557, 0, 0.939692616, -0.342020333, 1, 0, 0)
  1932. Part126.BottomSurface = Enum.SurfaceType.Smooth
  1933. Part126.TopSurface = Enum.SurfaceType.Smooth
  1934. Part126.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1935. Part126.Position = Vector3.new(20.5837402, 3.14177704, 21.5493164)
  1936. Part126.Orientation = Vector3.new(20, -90, 0)
  1937. Part126.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1938. Part127.Parent = Model43
  1939. Part127.BrickColor = BrickColor.new("Dark stone grey")
  1940. Part127.Rotation = Vector3.new(-180, 0, -180)
  1941. Part127.Anchored = true
  1942. Part127.CanCollide = false
  1943. Part127.FormFactor = Enum.FormFactor.Custom
  1944. Part127.Size = Vector3.new(1.5, 1.20000005, 1.5)
  1945. Part127.CFrame = CFrame.new(18.7940674, 2.80004096, 21.5493164, -1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, -1)
  1946. Part127.BottomSurface = Enum.SurfaceType.Smooth
  1947. Part127.TopSurface = Enum.SurfaceType.Smooth
  1948. Part127.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1949. Part127.Position = Vector3.new(18.7940674, 2.80004096, 21.5493164)
  1950. Part127.Orientation = Vector3.new(0, 180, 0)
  1951. Part127.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1952. SpecialMesh128.Parent = Part127
  1953. SpecialMesh128.MeshType = Enum.MeshType.Torso
  1954. Part129.Parent = Model43
  1955. Part129.Rotation = Vector3.new(0, -89.9700012, 0)
  1956. Part129.Anchored = true
  1957. Part129.CanCollide = false
  1958. Part129.FormFactor = Enum.FormFactor.Custom
  1959. Part129.Size = Vector3.new(1.0999999, 0.700000048, 1.70000005)
  1960. Part129.CFrame = CFrame.new(18.7940674, 1.94994497, 21.5493164, 1.78813934e-07, 0, -0.999999881, 1.77635684e-15, 1, 0, 0.999999881, 0, 1.78813934e-07)
  1961. Part129.BottomSurface = Enum.SurfaceType.Smooth
  1962. Part129.TopSurface = Enum.SurfaceType.Smooth
  1963. Part129.Position = Vector3.new(18.7940674, 1.94994497, 21.5493164)
  1964. Part129.Orientation = Vector3.new(0, -90, 0)
  1965. Part130.Parent = Model43
  1966. Part130.BrickColor = BrickColor.new("Dark stone grey")
  1967. Part130.Rotation = Vector3.new(0, -89.9700012, 0)
  1968. Part130.Anchored = true
  1969. Part130.CanCollide = false
  1970. Part130.FormFactor = Enum.FormFactor.Custom
  1971. Part130.Size = Vector3.new(1.5, 0.5, 1.5)
  1972. Part130.CFrame = CFrame.new(18.7940674, 1.94994497, 21.5493164, 1.78813934e-07, 0, -0.999999881, 1.77635684e-15, 1, 0, 0.999999881, 0, 1.78813934e-07)
  1973. Part130.BottomSurface = Enum.SurfaceType.Smooth
  1974. Part130.TopSurface = Enum.SurfaceType.Smooth
  1975. Part130.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1976. Part130.Position = Vector3.new(18.7940674, 1.94994497, 21.5493164)
  1977. Part130.Orientation = Vector3.new(0, -90, 0)
  1978. Part130.Color = Color3.new(0.388235, 0.372549, 0.384314)
  1979. Part131.Parent = Model43
  1980. Part131.BrickColor = BrickColor.new("Black")
  1981. Part131.Rotation = Vector3.new(-90, 0, 0)
  1982. Part131.Anchored = true
  1983. Part131.CanCollide = false
  1984. Part131.FormFactor = Enum.FormFactor.Custom
  1985. Part131.Size = Vector3.new(0.5, 2.5999999, 0.399999857)
  1986. Part131.CFrame = CFrame.new(18.7441406, 2.59996796, 21.8994141, 1, 8.74227766e-08, 0, 0, 1.78813934e-07, 0.999999881, 8.74227766e-08, -0.999999881, 1.78813934e-07)
  1987. Part131.BottomSurface = Enum.SurfaceType.Smooth
  1988. Part131.TopSurface = Enum.SurfaceType.Smooth
  1989. Part131.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1990. Part131.Position = Vector3.new(18.7441406, 2.59996796, 21.8994141)
  1991. Part131.Orientation = Vector3.new(-89.9700012, 0, 0)
  1992. Part131.Color = Color3.new(0.105882, 0.164706, 0.207843)
  1993. CylinderMesh132.Parent = Part131
  1994. Part133.Parent = Model43
  1995. Part133.BrickColor = BrickColor.new("Dark stone grey")
  1996. Part133.Rotation = Vector3.new(26.5699997, -89.9799957, 26.5699997)
  1997. Part133.Anchored = true
  1998. Part133.FormFactor = Enum.FormFactor.Custom
  1999. Part133.Size = Vector3.new(0.80000025, 0.300000042, 5.79999971)
  2000. Part133.CFrame = CFrame.new(26.1330566, 5.33330297, 24.2993164, 1.78813934e-07, -8.94069672e-08, -0.99999994, 5.32907052e-15, 1, -8.94069672e-08, 0.999999881, 3.55271368e-15, 1.78813934e-07)
  2001. Part133.BottomSurface = Enum.SurfaceType.Smooth
  2002. Part133.TopSurface = Enum.SurfaceType.Smooth
  2003. Part133.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2004. Part133.Position = Vector3.new(26.1330566, 5.33330297, 24.2993164)
  2005. Part133.Orientation = Vector3.new(0, -90, 0)
  2006. Part133.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2007. Part134.Parent = Model43
  2008. Part134.BrickColor = BrickColor.new("Dark stone grey")
  2009. Part134.Rotation = Vector3.new(-90, -40, -90)
  2010. Part134.Anchored = true
  2011. Part134.FormFactor = Enum.FormFactor.Custom
  2012. Part134.Size = Vector3.new(5.90000105, 0.600000501, 1)
  2013. Part134.CFrame = CFrame.new(22.8457031, 6.39036989, 19.9995117, -3.57627869e-07, 0.766044617, -0.642787635, 1.1920929e-07, 0.642787457, 0.766044676, 1.00000012, 1.1920929e-07, -3.57627869e-07)
  2014. Part134.BottomSurface = Enum.SurfaceType.Smooth
  2015. Part134.TopSurface = Enum.SurfaceType.Smooth
  2016. Part134.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2017. Part134.Position = Vector3.new(22.8457031, 6.39036989, 19.9995117)
  2018. Part134.Orientation = Vector3.new(-50, -90, 0)
  2019. Part134.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2020. Part135.Parent = Model43
  2021. Part135.BrickColor = BrickColor.new("Black")
  2022. Part135.Rotation = Vector3.new(0, 0, -95)
  2023. Part135.Anchored = true
  2024. Part135.FormFactor = Enum.FormFactor.Custom
  2025. Part135.Size = Vector3.new(1.30000031, 0.900000036, 1.29999995)
  2026. Part135.CFrame = CFrame.new(23.7991943, 4.90514278, 19.9995117, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2027. Part135.BottomSurface = Enum.SurfaceType.Smooth
  2028. Part135.TopSurface = Enum.SurfaceType.Smooth
  2029. Part135.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2030. Part135.Position = Vector3.new(23.7991943, 4.90514278, 19.9995117)
  2031. Part135.Orientation = Vector3.new(0, 0, -95)
  2032. Part135.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2033. SpecialMesh136.Parent = Part135
  2034. SpecialMesh136.MeshType = Enum.MeshType.Torso
  2035. Part137.Parent = Model43
  2036. Part137.BrickColor = BrickColor.new("Dark stone grey")
  2037. Part137.Rotation = Vector3.new(0, 0, -95)
  2038. Part137.Anchored = true
  2039. Part137.FormFactor = Enum.FormFactor.Custom
  2040. Part137.Size = Vector3.new(1.20000029, 0.800000012, 1.5)
  2041. Part137.CFrame = CFrame.new(23.7449951, 4.85973215, 19.9995117, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2042. Part137.BottomSurface = Enum.SurfaceType.Smooth
  2043. Part137.TopSurface = Enum.SurfaceType.Smooth
  2044. Part137.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2045. Part137.Position = Vector3.new(23.7449951, 4.85973215, 19.9995117)
  2046. Part137.Orientation = Vector3.new(0, 0, -95)
  2047. Part137.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2048. SpecialMesh138.Parent = Part137
  2049. SpecialMesh138.MeshType = Enum.MeshType.Torso
  2050. Part139.Parent = Model43
  2051. Part139.BrickColor = BrickColor.new("Dark stone grey")
  2052. Part139.Rotation = Vector3.new(0, 0, -5)
  2053. Part139.Anchored = true
  2054. Part139.FormFactor = Enum.FormFactor.Custom
  2055. Part139.Size = Vector3.new(5.50000048, 1.80000007, 1.5)
  2056. Part139.CFrame = CFrame.new(25.0113525, 3.84551191, 19.9995117, 0.99619472, 0.0871556327, 4.83810951e-18, -0.0871556327, 0.99619472, 5.52999224e-17, 2.06795153e-25, -5.55111578e-17, 1)
  2057. Part139.BottomSurface = Enum.SurfaceType.Smooth
  2058. Part139.TopSurface = Enum.SurfaceType.Smooth
  2059. Part139.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2060. Part139.Position = Vector3.new(25.0113525, 3.84551191, 19.9995117)
  2061. Part139.Orientation = Vector3.new(0, 0, -5)
  2062. Part139.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2063. SpecialMesh140.Parent = Part139
  2064. SpecialMesh140.MeshType = Enum.MeshType.Torso
  2065. Part141.Parent = Model43
  2066. Part141.BrickColor = BrickColor.new("Dark stone grey")
  2067. Part141.Rotation = Vector3.new(0, 0, -95)
  2068. Part141.Anchored = true
  2069. Part141.FormFactor = Enum.FormFactor.Custom
  2070. Part141.Size = Vector3.new(2.80000043, 0.800000012, 1.5)
  2071. Part141.CFrame = CFrame.new(23.1086426, 5.61809492, 19.9995117, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2072. Part141.BottomSurface = Enum.SurfaceType.Smooth
  2073. Part141.TopSurface = Enum.SurfaceType.Smooth
  2074. Part141.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2075. Part141.Position = Vector3.new(23.1086426, 5.61809492, 19.9995117)
  2076. Part141.Orientation = Vector3.new(0, 0, -95)
  2077. Part141.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2078. SpecialMesh142.Parent = Part141
  2079. SpecialMesh142.MeshType = Enum.MeshType.Torso
  2080. Part143.Parent = Model43
  2081. Part143.BrickColor = BrickColor.new("Dark stone grey")
  2082. Part143.Rotation = Vector3.new(-90, 5, -90)
  2083. Part143.Anchored = true
  2084. Part143.FormFactor = Enum.FormFactor.Custom
  2085. Part143.Size = Vector3.new(5.90000105, 1.00000048, 2.70000005)
  2086. Part143.CFrame = CFrame.new(22.7811279, 4.89891386, 19.9995117, -1.1920929e-07, 0.996195197, 0.087155506, 2.38418579e-07, -0.0871559456, 0.996195197, 1.00000048, -3.57627869e-07, -7.15255737e-07)
  2087. Part143.BottomSurface = Enum.SurfaceType.Smooth
  2088. Part143.TopSurface = Enum.SurfaceType.Smooth
  2089. Part143.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2090. Part143.Position = Vector3.new(22.7811279, 4.89891386, 19.9995117)
  2091. Part143.Orientation = Vector3.new(-85, 90, 180)
  2092. Part143.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2093. Part144.Parent = Model43
  2094. Part144.BrickColor = BrickColor.new("Black")
  2095. Part144.Rotation = Vector3.new(0, -90, 0)
  2096. Part144.Anchored = true
  2097. Part144.FormFactor = Enum.FormFactor.Custom
  2098. Part144.Size = Vector3.new(10.5999994, 0.200000003, 2.4000001)
  2099. Part144.CFrame = CFrame.new(25.5, 2.9500041, 19.9995117, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2100. Part144.BottomSurface = Enum.SurfaceType.Smooth
  2101. Part144.TopSurface = Enum.SurfaceType.Smooth
  2102. Part144.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2103. Part144.Position = Vector3.new(25.5, 2.9500041, 19.9995117)
  2104. Part144.Orientation = Vector3.new(0, -90, 0)
  2105. Part144.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2106. Part145.Parent = Model43
  2107. Part145.BrickColor = BrickColor.new("Black")
  2108. Part145.Rotation = Vector3.new(0, 0, -5)
  2109. Part145.Anchored = true
  2110. Part145.FormFactor = Enum.FormFactor.Custom
  2111. Part145.Size = Vector3.new(4.40000057, 0.200000048, 1.20000005)
  2112. Part145.CFrame = CFrame.new(25.6376953, 4.69414186, 19.9995117, 0.99619472, 0.0871556327, 4.83810951e-18, -0.0871556327, 0.99619472, 5.52999224e-17, 2.06795153e-25, -5.55111578e-17, 1)
  2113. Part145.BottomSurface = Enum.SurfaceType.Smooth
  2114. Part145.TopSurface = Enum.SurfaceType.Smooth
  2115. Part145.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2116. Part145.Position = Vector3.new(25.6376953, 4.69414186, 19.9995117)
  2117. Part145.Orientation = Vector3.new(0, 0, -5)
  2118. Part145.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2119. SpecialMesh146.Parent = Part145
  2120. SpecialMesh146.MeshType = Enum.MeshType.Torso
  2121. Part147.Parent = Model43
  2122. Part147.BrickColor = BrickColor.new("Dark stone grey")
  2123. Part147.Rotation = Vector3.new(0, -90, 0)
  2124. Part147.Anchored = true
  2125. Part147.FormFactor = Enum.FormFactor.Custom
  2126. Part147.Size = Vector3.new(10, 0.5, 4.5)
  2127. Part147.CFrame = CFrame.new(25.75, 2.94994402, 19.9995117, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2128. Part147.BottomSurface = Enum.SurfaceType.Smooth
  2129. Part147.TopSurface = Enum.SurfaceType.Smooth
  2130. Part147.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2131. Part147.Position = Vector3.new(25.75, 2.94994402, 19.9995117)
  2132. Part147.Orientation = Vector3.new(0, -90, 0)
  2133. Part147.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2134. Part148.Parent = Model43
  2135. Part148.BrickColor = BrickColor.new("Black")
  2136. Part148.Rotation = Vector3.new(90, -65, -180)
  2137. Part148.Anchored = true
  2138. Part148.CanCollide = false
  2139. Part148.FormFactor = Enum.FormFactor.Custom
  2140. Part148.Size = Vector3.new(0.200000003, 2, 0.200000003)
  2141. Part148.CFrame = CFrame.new(25.1452637, 5.86662912, 22.1494141, -0.42261827, 5.96046448e-08, -0.90630734, 0.90630728, 3.57627869e-07, -0.422618538, 5.96046448e-08, -0.999999702, 2.38418579e-07)
  2142. Part148.BottomSurface = Enum.SurfaceType.Smooth
  2143. Part148.TopSurface = Enum.SurfaceType.Smooth
  2144. Part148.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2145. Part148.Position = Vector3.new(25.1452637, 5.86662912, 22.1494141)
  2146. Part148.Orientation = Vector3.new(25, -90, 90)
  2147. Part148.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2148. CylinderMesh149.Parent = Part148
  2149. Part150.Parent = Model43
  2150. Part150.BrickColor = BrickColor.new("Dark stone grey")
  2151. Part150.Rotation = Vector3.new(-90, -80, -90)
  2152. Part150.Anchored = true
  2153. Part150.FormFactor = Enum.FormFactor.Custom
  2154. Part150.Size = Vector3.new(1.20000005, 0.400000006, 0.600000262)
  2155. Part150.CFrame = CFrame.new(21.3375244, 5.54033518, 24.2993164, 0, 0.173648119, -0.984807789, 0, 0.984807789, 0.173648119, 1, 0, 0)
  2156. Part150.BottomSurface = Enum.SurfaceType.Smooth
  2157. Part150.TopSurface = Enum.SurfaceType.Smooth
  2158. Part150.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2159. Part150.Position = Vector3.new(21.3375244, 5.54033518, 24.2993164)
  2160. Part150.Orientation = Vector3.new(-10, -90, 0)
  2161. Part150.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2162. Part151.Parent = Model43
  2163. Part151.BrickColor = BrickColor.new("Black")
  2164. Part151.Rotation = Vector3.new(-90, -75, -90)
  2165. Part151.Anchored = true
  2166. Part151.FormFactor = Enum.FormFactor.Custom
  2167. Part151.Size = Vector3.new(2, 1.19999993, 0.800000072)
  2168. Part151.CFrame = CFrame.new(28.1899414, 4.18291521, 22.0996094, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  2169. Part151.BottomSurface = Enum.SurfaceType.Smooth
  2170. Part151.TopSurface = Enum.SurfaceType.Smooth
  2171. Part151.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2172. Part151.Position = Vector3.new(28.1899414, 4.18291521, 22.0996094)
  2173. Part151.Orientation = Vector3.new(-15, -90, 0)
  2174. Part151.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2175. Part152.Parent = Model43
  2176. Part152.BrickColor = BrickColor.new("Black")
  2177. Part152.Rotation = Vector3.new(-90, 0, 90)
  2178. Part152.Anchored = true
  2179. Part152.CanCollide = false
  2180. Part152.FormFactor = Enum.FormFactor.Custom
  2181. Part152.Size = Vector3.new(1.99999952, 0.400000036, 0.700000048)
  2182. Part152.CFrame = CFrame.new(25.8341064, 3.78752899, 22.0996094, 0, -1, 0, 0, 0, 1, -1, 0, 0)
  2183. Part152.BottomSurface = Enum.SurfaceType.Smooth
  2184. Part152.TopSurface = Enum.SurfaceType.Smooth
  2185. Part152.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2186. Part152.Position = Vector3.new(25.8341064, 3.78752899, 22.0996094)
  2187. Part152.Orientation = Vector3.new(-90, 90, 0)
  2188. Part152.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2189. SpecialMesh153.Parent = Part152
  2190. SpecialMesh153.MeshType = Enum.MeshType.Torso
  2191. Part154.Parent = Model43
  2192. Part154.BrickColor = BrickColor.new("Dark stone grey")
  2193. Part154.Rotation = Vector3.new(-90, 0, 90)
  2194. Part154.Anchored = true
  2195. Part154.CanCollide = false
  2196. Part154.FormFactor = Enum.FormFactor.Custom
  2197. Part154.Size = Vector3.new(2.19999957, 0.400000036, 0.700000048)
  2198. Part154.CFrame = CFrame.new(25.6999512, 3.55004096, 22.0996094, 0, -1, 0, 0, 0, 1, -1, 0, 0)
  2199. Part154.BottomSurface = Enum.SurfaceType.Smooth
  2200. Part154.TopSurface = Enum.SurfaceType.Smooth
  2201. Part154.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2202. Part154.Position = Vector3.new(25.6999512, 3.55004096, 22.0996094)
  2203. Part154.Orientation = Vector3.new(-90, 90, 0)
  2204. Part154.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2205. SpecialMesh155.Parent = Part154
  2206. SpecialMesh155.MeshType = Enum.MeshType.Torso
  2207. Part156.Parent = Model43
  2208. Part156.BrickColor = BrickColor.new("Black")
  2209. Part156.Rotation = Vector3.new(-90, 0, -90)
  2210. Part156.Anchored = true
  2211. Part156.CanCollide = false
  2212. Part156.FormFactor = Enum.FormFactor.Custom
  2213. Part156.Size = Vector3.new(2, 1.99999976, 0.300000072)
  2214. Part156.CFrame = CFrame.new(27.0340576, 3.98754096, 22.0996094, 2.98023252e-07, 0.999999821, -4.17232513e-07, -1.1920929e-07, 5.96046448e-07, 0.999999821, 0.999999821, -1.1920929e-07, 2.98023224e-07)
  2215. Part156.BottomSurface = Enum.SurfaceType.Smooth
  2216. Part156.TopSurface = Enum.SurfaceType.Smooth
  2217. Part156.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2218. Part156.Position = Vector3.new(27.0340576, 3.98754096, 22.0996094)
  2219. Part156.Orientation = Vector3.new(-89.9700012, -54.4599991, -11.3099995)
  2220. Part156.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2221. Part157.Parent = Model43
  2222. Part157.BrickColor = BrickColor.new("Dark stone grey")
  2223. Part157.Rotation = Vector3.new(-180, 0, -115)
  2224. Part157.Anchored = true
  2225. Part157.CanCollide = false
  2226. Part157.FormFactor = Enum.FormFactor.Custom
  2227. Part157.Size = Vector3.new(0.699999988, 2.5, 0.899999976)
  2228. Part157.CFrame = CFrame.new(24.1031494, 5.38060617, 22.0996094, -0.422617912, 0.906307399, 0, 0.906307399, 0.422618777, 0, 0, 0, -0.999999166)
  2229. Part157.BottomSurface = Enum.SurfaceType.Smooth
  2230. Part157.TopSurface = Enum.SurfaceType.Smooth
  2231. Part157.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2232. Part157.Position = Vector3.new(24.1031494, 5.38060617, 22.0996094)
  2233. Part157.Orientation = Vector3.new(0, 180, 65)
  2234. Part157.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2235. CylinderMesh158.Parent = Part157
  2236. Part159.Parent = Model43
  2237. Part159.BrickColor = BrickColor.new("Black")
  2238. Part159.Rotation = Vector3.new(-180, 0, -115)
  2239. Part159.Anchored = true
  2240. Part159.CanCollide = false
  2241. Part159.FormFactor = Enum.FormFactor.Custom
  2242. Part159.Size = Vector3.new(1, 0.400000036, 1)
  2243. Part159.CFrame = CFrame.new(25.1452637, 5.86662912, 22.0996094, -0.422617912, 0.906307399, 0, 0.906307399, 0.422618777, 0, 0, 0, -0.999999166)
  2244. Part159.BottomSurface = Enum.SurfaceType.Smooth
  2245. Part159.TopSurface = Enum.SurfaceType.Smooth
  2246. Part159.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2247. Part159.Position = Vector3.new(25.1452637, 5.86662912, 22.0996094)
  2248. Part159.Orientation = Vector3.new(0, 180, 65)
  2249. Part159.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2250. CylinderMesh160.Parent = Part159
  2251. Part161.Parent = Model43
  2252. Part161.BrickColor = BrickColor.new("Dark stone grey")
  2253. Part161.Rotation = Vector3.new(180, 0, 90)
  2254. Part161.Anchored = true
  2255. Part161.FormFactor = Enum.FormFactor.Custom
  2256. Part161.Size = Vector3.new(0.200000003, 6.19999981, 0.850000381)
  2257. Part161.CFrame = CFrame.new(26.1331787, 8.96306038, 20.0004883, -2.01910734e-06, -0.999999881, -2.95752852e-06, -0.999999881, 2.19792128e-06, -7.95727374e-06, 7.9572801e-06, 2.95751192e-06, -0.999999762)
  2258. Part161.BottomSurface = Enum.SurfaceType.Smooth
  2259. Part161.TopSurface = Enum.SurfaceType.Smooth
  2260. Part161.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2261. Part161.Position = Vector3.new(26.1331787, 8.96306038, 20.0004883)
  2262. Part161.Orientation = Vector3.new(0, -180, -90)
  2263. Part161.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2264. Part162.Parent = Model43
  2265. Part162.BrickColor = BrickColor.new("Black")
  2266. Part162.Rotation = Vector3.new(0, 0, -95)
  2267. Part162.Anchored = true
  2268. Part162.FormFactor = Enum.FormFactor.Custom
  2269. Part162.Size = Vector3.new(1.80000043, 0.800000012, 1.69999993)
  2270. Part162.CFrame = CFrame.new(23.6906738, 4.96989918, 21.8994141, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2271. Part162.BottomSurface = Enum.SurfaceType.Smooth
  2272. Part162.TopSurface = Enum.SurfaceType.Smooth
  2273. Part162.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2274. Part162.Position = Vector3.new(23.6906738, 4.96989918, 21.8994141)
  2275. Part162.Orientation = Vector3.new(0, 0, -95)
  2276. Part162.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2277. SpecialMesh163.Parent = Part162
  2278. SpecialMesh163.MeshType = Enum.MeshType.Torso
  2279. Part164.Parent = Model43
  2280. Part164.BrickColor = BrickColor.new("Dark stone grey")
  2281. Part164.Rotation = Vector3.new(0, 0, -95)
  2282. Part164.Anchored = true
  2283. Part164.FormFactor = Enum.FormFactor.Custom
  2284. Part164.Size = Vector3.new(1.80000043, 0.900000036, 1.89999998)
  2285. Part164.CFrame = CFrame.new(23.7318115, 4.86595488, 21.8994141, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2286. Part164.BottomSurface = Enum.SurfaceType.Smooth
  2287. Part164.TopSurface = Enum.SurfaceType.Smooth
  2288. Part164.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2289. Part164.Position = Vector3.new(23.7318115, 4.86595488, 21.8994141)
  2290. Part164.Orientation = Vector3.new(0, 0, -95)
  2291. Part164.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2292. SpecialMesh165.Parent = Part164
  2293. SpecialMesh165.MeshType = Enum.MeshType.Torso
  2294. Part166.Parent = Model43
  2295. Part166.BrickColor = BrickColor.new("Black")
  2296. Part166.Rotation = Vector3.new(-90, 0, -90)
  2297. Part166.Anchored = true
  2298. Part166.CanCollide = false
  2299. Part166.FormFactor = Enum.FormFactor.Custom
  2300. Part166.Size = Vector3.new(2, 1.99999976, 0.300000072)
  2301. Part166.CFrame = CFrame.new(27.0340576, 3.98754096, 17.9995117, 2.98023252e-07, 0.999999821, -4.17232513e-07, -1.1920929e-07, 5.96046448e-07, 0.999999821, 0.999999821, -1.1920929e-07, 2.98023224e-07)
  2302. Part166.BottomSurface = Enum.SurfaceType.Smooth
  2303. Part166.TopSurface = Enum.SurfaceType.Smooth
  2304. Part166.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2305. Part166.Position = Vector3.new(27.0340576, 3.98754096, 17.9995117)
  2306. Part166.Orientation = Vector3.new(-89.9700012, -54.4599991, -11.3099995)
  2307. Part166.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2308. Part167.Parent = Model43
  2309. Part167.BrickColor = BrickColor.new("Dark stone grey")
  2310. Part167.Rotation = Vector3.new(-90, 0, 90)
  2311. Part167.Anchored = true
  2312. Part167.CanCollide = false
  2313. Part167.FormFactor = Enum.FormFactor.Custom
  2314. Part167.Size = Vector3.new(2.19999957, 0.400000036, 0.700000048)
  2315. Part167.CFrame = CFrame.new(25.6999512, 3.55004096, 17.9995117, 0, -1, 0, 0, 0, 1, -1, 0, 0)
  2316. Part167.BottomSurface = Enum.SurfaceType.Smooth
  2317. Part167.TopSurface = Enum.SurfaceType.Smooth
  2318. Part167.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2319. Part167.Position = Vector3.new(25.6999512, 3.55004096, 17.9995117)
  2320. Part167.Orientation = Vector3.new(-90, 90, 0)
  2321. Part167.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2322. SpecialMesh168.Parent = Part167
  2323. SpecialMesh168.MeshType = Enum.MeshType.Torso
  2324. Part169.Parent = Model43
  2325. Part169.BrickColor = BrickColor.new("Black")
  2326. Part169.Rotation = Vector3.new(-90, 0, 90)
  2327. Part169.Anchored = true
  2328. Part169.CanCollide = false
  2329. Part169.FormFactor = Enum.FormFactor.Custom
  2330. Part169.Size = Vector3.new(1.99999952, 0.400000036, 0.700000048)
  2331. Part169.CFrame = CFrame.new(25.8341064, 3.78752899, 17.9995117, 0, -1, 0, 0, 0, 1, -1, 0, 0)
  2332. Part169.BottomSurface = Enum.SurfaceType.Smooth
  2333. Part169.TopSurface = Enum.SurfaceType.Smooth
  2334. Part169.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2335. Part169.Position = Vector3.new(25.8341064, 3.78752899, 17.9995117)
  2336. Part169.Orientation = Vector3.new(-90, 90, 0)
  2337. Part169.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2338. SpecialMesh170.Parent = Part169
  2339. SpecialMesh170.MeshType = Enum.MeshType.Torso
  2340. Part171.Parent = Model43
  2341. Part171.BrickColor = BrickColor.new("Black")
  2342. Part171.Rotation = Vector3.new(0, 0, -95)
  2343. Part171.Anchored = true
  2344. Part171.FormFactor = Enum.FormFactor.Custom
  2345. Part171.Size = Vector3.new(1.80000043, 0.800000012, 1.69999993)
  2346. Part171.CFrame = CFrame.new(23.6906738, 4.96989918, 18.0996094, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2347. Part171.BottomSurface = Enum.SurfaceType.Smooth
  2348. Part171.TopSurface = Enum.SurfaceType.Smooth
  2349. Part171.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2350. Part171.Position = Vector3.new(23.6906738, 4.96989918, 18.0996094)
  2351. Part171.Orientation = Vector3.new(0, 0, -95)
  2352. Part171.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2353. SpecialMesh172.Parent = Part171
  2354. SpecialMesh172.MeshType = Enum.MeshType.Torso
  2355. Part173.Parent = Model43
  2356. Part173.BrickColor = BrickColor.new("Dark stone grey")
  2357. Part173.Rotation = Vector3.new(0, 0, -95)
  2358. Part173.Anchored = true
  2359. Part173.FormFactor = Enum.FormFactor.Custom
  2360. Part173.Size = Vector3.new(1.80000043, 0.900000036, 1.89999998)
  2361. Part173.CFrame = CFrame.new(23.7318115, 4.86595488, 18.0996094, -0.087155588, 0.99619472, 0, -0.99619472, -0.087155588, 0, 0, 0, 1)
  2362. Part173.BottomSurface = Enum.SurfaceType.Smooth
  2363. Part173.TopSurface = Enum.SurfaceType.Smooth
  2364. Part173.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2365. Part173.Position = Vector3.new(23.7318115, 4.86595488, 18.0996094)
  2366. Part173.Orientation = Vector3.new(0, 0, -95)
  2367. Part173.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2368. SpecialMesh174.Parent = Part173
  2369. SpecialMesh174.MeshType = Enum.MeshType.Torso
  2370. Part175.Parent = Model43
  2371. Part175.BrickColor = BrickColor.new("Dark stone grey")
  2372. Part175.Rotation = Vector3.new(-90, 9, -90)
  2373. Part175.Anchored = true
  2374. Part175.FormFactor = Enum.FormFactor.Custom
  2375. Part175.Size = Vector3.new(0.799999595, 0.200000048, 0.400000006)
  2376. Part175.CFrame = CFrame.new(23.0561523, 9.12254238, 18.9306641, -2.38418565e-07, 0.987688243, 0.156435192, -2.86102295e-06, -0.156435132, 0.987688243, 0.99999994, -2.38418579e-07, 2.92062759e-06)
  2377. Part175.BottomSurface = Enum.SurfaceType.Smooth
  2378. Part175.TopSurface = Enum.SurfaceType.Smooth
  2379. Part175.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2380. Part175.Position = Vector3.new(23.0561523, 9.12254238, 18.9306641)
  2381. Part175.Orientation = Vector3.new(-81, 90, -180)
  2382. Part175.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2383. SpecialMesh176.Parent = Part175
  2384. SpecialMesh176.MeshType = Enum.MeshType.Torso
  2385. Part177.Parent = Model43
  2386. Part177.BrickColor = BrickColor.new("Dark stone grey")
  2387. Part177.Rotation = Vector3.new(-180, 0, -81)
  2388. Part177.Anchored = true
  2389. Part177.FormFactor = Enum.FormFactor.Custom
  2390. Part177.Size = Vector3.new(0.400000036, 0.800000131, 0.799999952)
  2391. Part177.CFrame = CFrame.new(22.5625, 9.20072842, 18.9306641, 0.156432509, 0.987690091, 5.88202511e-07, 0.987690091, -0.156435847, 2.67244036e-06, 2.73155297e-06, 1.62900619e-07, -1.00000334)
  2392. Part177.BottomSurface = Enum.SurfaceType.Smooth
  2393. Part177.TopSurface = Enum.SurfaceType.Smooth
  2394. Part177.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2395. Part177.Position = Vector3.new(22.5625, 9.20072842, 18.9306641)
  2396. Part177.Orientation = Vector3.new(0, 180, 99)
  2397. Part177.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2398. Part178.Parent = Model43
  2399. Part178.BrickColor = BrickColor.new("Dark stone grey")
  2400. Part178.Rotation = Vector3.new(-90, -45, -90)
  2401. Part178.Anchored = true
  2402. Part178.FormFactor = Enum.FormFactor.Custom
  2403. Part178.Size = Vector3.new(0.80000025, 0.300000042, 2.49999976)
  2404. Part178.CFrame = CFrame.new(23.3685303, 5.66099882, 24.2993164, 2.98023224e-06, 0.70710516, -0.707106709, -7.45058003e-07, 0.707107902, 0.70710516, 0.999998808, -7.4505806e-07, 2.98023224e-06)
  2405. Part178.BottomSurface = Enum.SurfaceType.Smooth
  2406. Part178.TopSurface = Enum.SurfaceType.Smooth
  2407. Part178.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2408. Part178.Position = Vector3.new(23.3685303, 5.66099882, 24.2993164)
  2409. Part178.Orientation = Vector3.new(-45, -90, 0)
  2410. Part178.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2411. Part179.Parent = Model43
  2412. Part179.BrickColor = BrickColor.new("Dark stone grey")
  2413. Part179.Rotation = Vector3.new(-90, -55, -90)
  2414. Part179.Anchored = true
  2415. Part179.FormFactor = Enum.FormFactor.Custom
  2416. Part179.Size = Vector3.new(1.20000005, 0.800000012, 3.10000014)
  2417. Part179.CFrame = CFrame.new(22.7080078, 4.46849585, 24.2993164, 3.57627869e-07, 0.57357645, -0.819151878, -8.94069672e-08, 0.819151998, 0.57357651, 0.999999881, -8.94069672e-08, 3.57627869e-07)
  2418. Part179.BottomSurface = Enum.SurfaceType.Smooth
  2419. Part179.TopSurface = Enum.SurfaceType.Smooth
  2420. Part179.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2421. Part179.Position = Vector3.new(22.7080078, 4.46849585, 24.2993164)
  2422. Part179.Orientation = Vector3.new(-35, -90, 0)
  2423. Part179.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2424. Part180.Parent = Model43
  2425. Part180.BrickColor = BrickColor.new("Dark stone grey")
  2426. Part180.Rotation = Vector3.new(-90, 9, -90)
  2427. Part180.Anchored = true
  2428. Part180.FormFactor = Enum.FormFactor.Custom
  2429. Part180.Size = Vector3.new(0.80000025, 1.00000012, 0.799999654)
  2430. Part180.CFrame = CFrame.new(22.4332275, 6.46715212, 24.2993164, 4.05311584e-06, 0.987683713, 0.156438306, 2.98023224e-08, -0.156434312, 0.987683713, 0.999996006, -2.98023224e-08, 3.93390656e-06)
  2431. Part180.BottomSurface = Enum.SurfaceType.Smooth
  2432. Part180.TopSurface = Enum.SurfaceType.Smooth
  2433. Part180.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2434. Part180.Position = Vector3.new(22.4332275, 6.46715212, 24.2993164)
  2435. Part180.Orientation = Vector3.new(-81, 90, 180)
  2436. Part180.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2437. Part181.Parent = Model43
  2438. Part181.BrickColor = BrickColor.new("Black")
  2439. Part181.Rotation = Vector3.new(0, 0, 115)
  2440. Part181.Anchored = true
  2441. Part181.CanCollide = false
  2442. Part181.FormFactor = Enum.FormFactor.Custom
  2443. Part181.Size = Vector3.new(1, 0.200000003, 1)
  2444. Part181.CFrame = CFrame.new(25.2353516, 5.90862179, 22.0996094, -0.422612309, -0.90630734, 0, 0.90630734, -0.422612309, 0, 0, 0, 1)
  2445. Part181.BottomSurface = Enum.SurfaceType.Smooth
  2446. Part181.TopSurface = Enum.SurfaceType.Smooth
  2447. Part181.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2448. Part181.Position = Vector3.new(25.2353516, 5.90862179, 22.0996094)
  2449. Part181.Orientation = Vector3.new(0, 0, 115)
  2450. Part181.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2451. SpecialMesh182.Parent = Part181
  2452. SpecialMesh182.MeshId = "http://www.roblox.com/asset/?id=1078075"
  2453. SpecialMesh182.Scale = Vector3.new(2, 1, 2)
  2454. SpecialMesh182.MeshType = Enum.MeshType.FileMesh
  2455. SpecialMesh182.Scale = Vector3.new(2, 1, 2)
  2456. Part183.Parent = Model43
  2457. Part183.BrickColor = BrickColor.new("Black")
  2458. Part183.Rotation = Vector3.new(-16.6999989, -89.9799957, 18)
  2459. Part183.Anchored = true
  2460. Part183.FormFactor = Enum.FormFactor.Custom
  2461. Part183.Size = Vector3.new(0.600000024, 0.200000003, 2.4000001)
  2462. Part183.CFrame = CFrame.new(25.5, 2.78050995, 14.5341797, 2.98023224e-07, -9.68575478e-08, -0.99999994, 0.642787397, 0.766044497, 8.94069672e-08, 0.766044438, -0.642787457, 2.98023224e-07)
  2463. Part183.BottomSurface = Enum.SurfaceType.Smooth
  2464. Part183.TopSurface = Enum.SurfaceType.Smooth
  2465. Part183.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2466. Part183.Position = Vector3.new(25.5, 2.78050995, 14.5341797)
  2467. Part183.Orientation = Vector3.new(0, -90, 40)
  2468. Part183.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2469. Part184.Parent = Model43
  2470. Part184.Rotation = Vector3.new(-49.6499977, 6.87999964, -95.8099976)
  2471. Part184.Anchored = true
  2472. Part184.FormFactor = Enum.FormFactor.Custom
  2473. Part184.Size = Vector3.new(0.30000025, 0.500000119, 1.59999943)
  2474. Part184.CFrame = CFrame.new(22.4188232, 7.65495777, 16.7031136, -0.100553766, 0.987688303, 0.119836122, -0.634872079, -0.156434551, 0.756614506, 0.766045809, -5.96046448e-08, 0.642785907)
  2475. Part184.BottomSurface = Enum.SurfaceType.Smooth
  2476. Part184.TopSurface = Enum.SurfaceType.Smooth
  2477. Part184.Position = Vector3.new(22.4188232, 7.65495777, 16.7031136)
  2478. Part184.Orientation = Vector3.new(-49.1699982, 10.5599995, -103.839996)
  2479. Part185.Parent = Model43
  2480. Part185.BrickColor = BrickColor.new("Dark stone grey")
  2481. Part185.Rotation = Vector3.new(-49.6499977, 6.87999964, -95.8099976)
  2482. Part185.Anchored = true
  2483. Part185.FormFactor = Enum.FormFactor.Custom
  2484. Part185.Size = Vector3.new(0.80000025, 1.00000012, 0.799999595)
  2485. Part185.CFrame = CFrame.new(22.503418, 6.91105986, 15.8632803, -0.100553766, 0.987688303, 0.119836122, -0.634872079, -0.156434551, 0.756614506, 0.766045809, -5.96046448e-08, 0.642785907)
  2486. Part185.BottomSurface = Enum.SurfaceType.Smooth
  2487. Part185.TopSurface = Enum.SurfaceType.Smooth
  2488. Part185.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2489. Part185.Position = Vector3.new(22.503418, 6.91105986, 15.8632803)
  2490. Part185.Orientation = Vector3.new(-49.1699982, 10.5599995, -103.839996)
  2491. Part185.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2492. Part186.Parent = Model43
  2493. Part186.BrickColor = BrickColor.new("Dark stone grey")
  2494. Part186.Rotation = Vector3.new(-14.8199997, 2.31999993, -98.6999969)
  2495. Part186.Anchored = true
  2496. Part186.FormFactor = Enum.FormFactor.Custom
  2497. Part186.Size = Vector3.new(0.300000012, 0.800000072, 0.200000003)
  2498. Part186.CFrame = CFrame.new(22.8320313, 8.98514843, 18.1704102, -0.151104689, 0.987688422, 0.0404886752, -0.954033196, -0.156435251, 0.255634874, 0.258821428, 5.96046448e-08, 0.965925217)
  2499. Part186.BottomSurface = Enum.SurfaceType.Smooth
  2500. Part186.TopSurface = Enum.SurfaceType.Smooth
  2501. Part186.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2502. Part186.Position = Vector3.new(22.8320313, 8.98514843, 18.1704102)
  2503. Part186.Orientation = Vector3.new(-14.8099995, 2.39999986, -99.3099976)
  2504. Part186.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2505. Part187.Parent = Model43
  2506. Part187.BrickColor = BrickColor.new("Dark stone grey")
  2507. Part187.Rotation = Vector3.new(-49.6499977, 6.87999964, -95.8099976)
  2508. Part187.Anchored = true
  2509. Part187.FormFactor = Enum.FormFactor.Custom
  2510. Part187.Size = Vector3.new(0.300000012, 0.800000072, 3.49999976)
  2511. Part187.CFrame = CFrame.new(22.6258545, 7.68339777, 17.0249023, -0.100553766, 0.987688303, 0.119836122, -0.634872079, -0.156434551, 0.756614506, 0.766045809, -5.96046448e-08, 0.642785907)
  2512. Part187.BottomSurface = Enum.SurfaceType.Smooth
  2513. Part187.TopSurface = Enum.SurfaceType.Smooth
  2514. Part187.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2515. Part187.Position = Vector3.new(22.6258545, 7.68339777, 17.0249023)
  2516. Part187.Orientation = Vector3.new(-49.1699982, 10.5599995, -103.839996)
  2517. Part187.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2518. Part188.Parent = Model43
  2519. Part188.BrickColor = BrickColor.new("Dark stone grey")
  2520. Part188.Rotation = Vector3.new(-90, -80, -90)
  2521. Part188.Anchored = true
  2522. Part188.FormFactor = Enum.FormFactor.Custom
  2523. Part188.Size = Vector3.new(1.20000005, 0.400000006, 0.600000262)
  2524. Part188.CFrame = CFrame.new(21.3375244, 5.54033518, 15.6997061, 0, 0.173648119, -0.984807789, 0, 0.984807789, 0.173648119, 1, 0, 0)
  2525. Part188.BottomSurface = Enum.SurfaceType.Smooth
  2526. Part188.TopSurface = Enum.SurfaceType.Smooth
  2527. Part188.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2528. Part188.Position = Vector3.new(21.3375244, 5.54033518, 15.6997061)
  2529. Part188.Orientation = Vector3.new(-10, -90, 0)
  2530. Part188.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2531. Part189.Parent = Model43
  2532. Part189.Rotation = Vector3.new(-90, 0, 0)
  2533. Part189.Anchored = true
  2534. Part189.CanCollide = false
  2535. Part189.FormFactor = Enum.FormFactor.Custom
  2536. Part189.Size = Vector3.new(1.60000002, 2.39999986, 0.999999881)
  2537. Part189.CFrame = CFrame.new(18.7441406, 2.59996796, 21.8994141, 1, 8.74227766e-08, 0, 0, 1.78813934e-07, 0.999999881, 8.74227766e-08, -0.999999881, 1.78813934e-07)
  2538. Part189.BottomSurface = Enum.SurfaceType.Smooth
  2539. Part189.TopSurface = Enum.SurfaceType.Smooth
  2540. Part189.Position = Vector3.new(18.7441406, 2.59996796, 21.8994141)
  2541. Part189.Orientation = Vector3.new(-89.9700012, 0, 0)
  2542. CylinderMesh190.Parent = Part189
  2543. Part191.Parent = Model43
  2544. Part191.BrickColor = BrickColor.new("Dark stone grey")
  2545. Part191.Rotation = Vector3.new(0, -90, 0)
  2546. Part191.Anchored = true
  2547. Part191.FormFactor = Enum.FormFactor.Custom
  2548. Part191.Size = Vector3.new(1.20000005, 1, 4.5)
  2549. Part191.CFrame = CFrame.new(25.7498779, 3.7000041, 15.6997061, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2550. Part191.BottomSurface = Enum.SurfaceType.Smooth
  2551. Part191.TopSurface = Enum.SurfaceType.Smooth
  2552. Part191.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2553. Part191.Position = Vector3.new(25.7498779, 3.7000041, 15.6997061)
  2554. Part191.Orientation = Vector3.new(0, -90, 0)
  2555. Part191.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2556. Part192.Parent = Model43
  2557. Part192.BrickColor = BrickColor.new("Dark stone grey")
  2558. Part192.Rotation = Vector3.new(26.5699997, -89.9799957, 26.5699997)
  2559. Part192.Anchored = true
  2560. Part192.FormFactor = Enum.FormFactor.Custom
  2561. Part192.Size = Vector3.new(0.80000025, 0.300000042, 5.69999981)
  2562. Part192.CFrame = CFrame.new(26.0831299, 5.33330297, 15.6997061, 1.78813934e-07, -8.94069672e-08, -0.99999994, 5.32907052e-15, 1, -8.94069672e-08, 0.999999881, 3.55271368e-15, 1.78813934e-07)
  2563. Part192.BottomSurface = Enum.SurfaceType.Smooth
  2564. Part192.TopSurface = Enum.SurfaceType.Smooth
  2565. Part192.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2566. Part192.Position = Vector3.new(26.0831299, 5.33330297, 15.6997061)
  2567. Part192.Orientation = Vector3.new(0, -90, 0)
  2568. Part192.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2569. Part193.Parent = Model43
  2570. Part193.BrickColor = BrickColor.new("Dark stone grey")
  2571. Part193.Rotation = Vector3.new(-90, -45, -90)
  2572. Part193.Anchored = true
  2573. Part193.FormFactor = Enum.FormFactor.Custom
  2574. Part193.Size = Vector3.new(0.80000025, 0.300000042, 2.49999976)
  2575. Part193.CFrame = CFrame.new(23.3685303, 5.66099882, 15.6997061, 2.98023224e-06, 0.70710516, -0.707106709, -7.45058003e-07, 0.707107902, 0.70710516, 0.999998808, -7.4505806e-07, 2.98023224e-06)
  2576. Part193.BottomSurface = Enum.SurfaceType.Smooth
  2577. Part193.TopSurface = Enum.SurfaceType.Smooth
  2578. Part193.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2579. Part193.Position = Vector3.new(23.3685303, 5.66099882, 15.6997061)
  2580. Part193.Orientation = Vector3.new(-45, -90, 0)
  2581. Part193.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2582. Part194.Parent = Model43
  2583. Part194.BrickColor = BrickColor.new("Dark stone grey")
  2584. Part194.Rotation = Vector3.new(-90, -55, -90)
  2585. Part194.Anchored = true
  2586. Part194.FormFactor = Enum.FormFactor.Custom
  2587. Part194.Size = Vector3.new(1.20000005, 0.800000012, 3.10000014)
  2588. Part194.CFrame = CFrame.new(22.7080078, 4.46849585, 15.6997061, 3.57627869e-07, 0.57357645, -0.819151878, -8.94069672e-08, 0.819151998, 0.57357651, 0.999999881, -8.94069672e-08, 3.57627869e-07)
  2589. Part194.BottomSurface = Enum.SurfaceType.Smooth
  2590. Part194.TopSurface = Enum.SurfaceType.Smooth
  2591. Part194.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2592. Part194.Position = Vector3.new(22.7080078, 4.46849585, 15.6997061)
  2593. Part194.Orientation = Vector3.new(-35, -90, 0)
  2594. Part194.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2595. WedgePart195.Name = "Part"
  2596. WedgePart195.Parent = Model43
  2597. WedgePart195.BrickColor = BrickColor.new("Really black")
  2598. WedgePart195.Transparency = 0.5
  2599. WedgePart195.Rotation = Vector3.new(90, -58, -140)
  2600. WedgePart195.Anchored = true
  2601. WedgePart195.FormFactor = Enum.FormFactor.Custom
  2602. WedgePart195.Size = Vector3.new(0.200000003, 3.20000029, 1.79999959)
  2603. WedgePart195.CFrame = CFrame.new(22.3144531, 7.82152414, 17.0048828, -0.405939966, 0.340625972, -0.848050237, 0.649645329, -0.545115709, -0.529917479, -0.642787814, -0.766045451, -3.57627869e-06)
  2604. WedgePart195.BottomSurface = Enum.SurfaceType.Smooth
  2605. WedgePart195.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2606. WedgePart195.Position = Vector3.new(22.3144531, 7.82152414, 17.0048828)
  2607. WedgePart195.Orientation = Vector3.new(32, -90, 130)
  2608. WedgePart195.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  2609. SpecialMesh196.Parent = WedgePart195
  2610. SpecialMesh196.Scale = Vector3.new(0, 1, 1)
  2611. SpecialMesh196.MeshType = Enum.MeshType.Wedge
  2612. SpecialMesh196.Scale = Vector3.new(0, 1, 1)
  2613. WedgePart197.Name = "Part"
  2614. WedgePart197.Parent = Model43
  2615. WedgePart197.BrickColor = BrickColor.new("Dark stone grey")
  2616. WedgePart197.Rotation = Vector3.new(-90, 75, 180)
  2617. WedgePart197.Anchored = true
  2618. WedgePart197.CanCollide = false
  2619. WedgePart197.FormFactor = Enum.FormFactor.Custom
  2620. WedgePart197.Size = Vector3.new(0.600000143, 1.30000019, 3.5999999)
  2621. WedgePart197.CFrame = CFrame.new(17.3930664, 5.54448605, 24.3496094, -0.258819342, -5.96046448e-08, 0.965925694, 0.965925694, 0, 0.258819342, 5.96046448e-08, 1, 1.1920929e-07)
  2622. WedgePart197.BottomSurface = Enum.SurfaceType.Smooth
  2623. WedgePart197.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2624. WedgePart197.Position = Vector3.new(17.3930664, 5.54448605, 24.3496094)
  2625. WedgePart197.Orientation = Vector3.new(-15, 90, 90)
  2626. WedgePart197.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2627. WedgePart198.Name = "Part"
  2628. WedgePart198.Parent = Model43
  2629. WedgePart198.BrickColor = BrickColor.new("Dark stone grey")
  2630. WedgePart198.Rotation = Vector3.new(110, 0, -90)
  2631. WedgePart198.Anchored = true
  2632. WedgePart198.FormFactor = Enum.FormFactor.Custom
  2633. WedgePart198.Size = Vector3.new(0.200000003, 3.59999967, 1.89999986)
  2634. WedgePart198.CFrame = CFrame.new(33.3330078, 6.50725412, 15.8129883, 5.77419996e-08, 0.999998033, -5.43892384e-07, 0.342021286, 2.14576721e-06, -0.939690173, -0.939690113, -2.02655792e-06, -0.34201932)
  2635. WedgePart198.BottomSurface = Enum.SurfaceType.Smooth
  2636. WedgePart198.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2637. WedgePart198.Position = Vector3.new(33.3330078, 6.50725412, 15.8129883)
  2638. WedgePart198.Orientation = Vector3.new(70, -180, 90)
  2639. WedgePart198.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2640. Part199.Parent = Model43
  2641. Part199.BrickColor = BrickColor.new("Institutional white")
  2642. Part199.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  2643. Part199.Anchored = true
  2644. Part199.FormFactor = Enum.FormFactor.Custom
  2645. Part199.Size = Vector3.new(0.300000012, 0.200000003, 0.5)
  2646. Part199.CFrame = CFrame.new(36.30896, 7.12749481, 22.2993164, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  2647. Part199.BottomSurface = Enum.SurfaceType.Smooth
  2648. Part199.TopSurface = Enum.SurfaceType.Smooth
  2649. Part199.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2650. Part199.Position = Vector3.new(36.30896, 7.12749481, 22.2993164)
  2651. Part199.Orientation = Vector3.new(0, -90, 0)
  2652. Part199.Color = Color3.new(0.972549, 0.972549, 0.972549)
  2653. Part200.Parent = Model43
  2654. Part200.BrickColor = BrickColor.new("Dark stone grey")
  2655. Part200.Rotation = Vector3.new(180, 0, 90)
  2656. Part200.Anchored = true
  2657. Part200.FormFactor = Enum.FormFactor.Custom
  2658. Part200.Size = Vector3.new(0.599999249, 0.600000024, 4.85000038)
  2659. Part200.CFrame = CFrame.new(29.5329571, 8.86296177, 20.0004883, -2.01910734e-06, -0.999999881, -2.95752852e-06, -0.999999881, 2.19792128e-06, -7.95727374e-06, 7.9572801e-06, 2.95751192e-06, -0.999999762)
  2660. Part200.BottomSurface = Enum.SurfaceType.Smooth
  2661. Part200.TopSurface = Enum.SurfaceType.Smooth
  2662. Part200.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2663. Part200.Position = Vector3.new(29.5329571, 8.86296177, 20.0004883)
  2664. Part200.Orientation = Vector3.new(0, -180, -90)
  2665. Part200.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2666. Part201.Parent = Model43
  2667. Part201.BrickColor = BrickColor.new("Dark stone grey")
  2668. Part201.Anchored = true
  2669. Part201.CanCollide = false
  2670. Part201.FormFactor = Enum.FormFactor.Custom
  2671. Part201.Size = Vector3.new(1.5, 1.20000005, 1.5)
  2672. Part201.CFrame = CFrame.new(32.75, 2.80004096, 18.4497089, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2673. Part201.BottomSurface = Enum.SurfaceType.Smooth
  2674. Part201.TopSurface = Enum.SurfaceType.Smooth
  2675. Part201.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2676. Part201.Position = Vector3.new(32.75, 2.80004096, 18.4497089)
  2677. Part201.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2678. SpecialMesh202.Parent = Part201
  2679. SpecialMesh202.MeshType = Enum.MeshType.Torso
  2680. Part203.Parent = Model43
  2681. Part203.BrickColor = BrickColor.new("Dark stone grey")
  2682. Part203.Rotation = Vector3.new(90, 70, -90)
  2683. Part203.Anchored = true
  2684. Part203.CanCollide = false
  2685. Part203.FormFactor = Enum.FormFactor.Custom
  2686. Part203.Size = Vector3.new(0.699999988, 0.800000012, 4.19999981)
  2687. Part203.CFrame = CFrame.new(31.0541992, 3.10759592, 18.4497089, 0, 0.342020333, 0.939692497, 0, 0.939692557, -0.342020392, -1, 0, 0)
  2688. Part203.BottomSurface = Enum.SurfaceType.Smooth
  2689. Part203.TopSurface = Enum.SurfaceType.Smooth
  2690. Part203.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2691. Part203.Position = Vector3.new(31.0541992, 3.10759592, 18.4497089)
  2692. Part203.Orientation = Vector3.new(20, 90, 0)
  2693. Part203.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2694. Part204.Parent = Model43
  2695. Part204.BrickColor = BrickColor.new("Dark stone grey")
  2696. Part204.Rotation = Vector3.new(90, 70, -90)
  2697. Part204.Anchored = true
  2698. Part204.CanCollide = false
  2699. Part204.FormFactor = Enum.FormFactor.Custom
  2700. Part204.Size = Vector3.new(0.699999988, 0.800000012, 4.19999981)
  2701. Part204.CFrame = CFrame.new(31.0541992, 3.10759592, 21.5493164, 0, 0.342020333, 0.939692497, 0, 0.939692557, -0.342020392, -1, 0, 0)
  2702. Part204.BottomSurface = Enum.SurfaceType.Smooth
  2703. Part204.TopSurface = Enum.SurfaceType.Smooth
  2704. Part204.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2705. Part204.Position = Vector3.new(31.0541992, 3.10759592, 21.5493164)
  2706. Part204.Orientation = Vector3.new(20, 90, 0)
  2707. Part204.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2708. Part205.Parent = Model43
  2709. Part205.Rotation = Vector3.new(0, 90, 0)
  2710. Part205.Anchored = true
  2711. Part205.CanCollide = false
  2712. Part205.FormFactor = Enum.FormFactor.Custom
  2713. Part205.Size = Vector3.new(1.0999999, 0.700000048, 1.70000005)
  2714. Part205.CFrame = CFrame.new(32.75, 1.94994497, 21.5493164, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2715. Part205.BottomSurface = Enum.SurfaceType.Smooth
  2716. Part205.TopSurface = Enum.SurfaceType.Smooth
  2717. Part205.Position = Vector3.new(32.75, 1.94994497, 21.5493164)
  2718. Part205.Orientation = Vector3.new(0, 90, 0)
  2719. Part206.Parent = Model43
  2720. Part206.Rotation = Vector3.new(-90, 0, -180)
  2721. Part206.Anchored = true
  2722. Part206.CanCollide = false
  2723. Part206.FormFactor = Enum.FormFactor.Custom
  2724. Part206.Size = Vector3.new(1.60000002, 2.39999986, 0.999999881)
  2725. Part206.CFrame = CFrame.new(32.7999268, 2.60002899, 21.8994141, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2726. Part206.BottomSurface = Enum.SurfaceType.Smooth
  2727. Part206.TopSurface = Enum.SurfaceType.Smooth
  2728. Part206.Position = Vector3.new(32.7999268, 2.60002899, 21.8994141)
  2729. Part206.Orientation = Vector3.new(-90, -180, 0)
  2730. CylinderMesh207.Parent = Part206
  2731. Part208.Parent = Model43
  2732. Part208.Rotation = Vector3.new(-90, 0, -180)
  2733. Part208.Anchored = true
  2734. Part208.CanCollide = false
  2735. Part208.FormFactor = Enum.FormFactor.Custom
  2736. Part208.Size = Vector3.new(1.60000002, 2.39999986, 0.999999881)
  2737. Part208.CFrame = CFrame.new(32.7999268, 2.60002899, 18.0996094, -1, 0, 0, 0, 0, 1, 0, 1, -0)
  2738. Part208.BottomSurface = Enum.SurfaceType.Smooth
  2739. Part208.TopSurface = Enum.SurfaceType.Smooth
  2740. Part208.Position = Vector3.new(32.7999268, 2.60002899, 18.0996094)
  2741. Part208.Orientation = Vector3.new(-90, -180, 0)
  2742. CylinderMesh209.Parent = Part208
  2743. Part210.Parent = Model43
  2744. Part210.BrickColor = BrickColor.new("Dark stone grey")
  2745. Part210.Anchored = true
  2746. Part210.CanCollide = false
  2747. Part210.FormFactor = Enum.FormFactor.Custom
  2748. Part210.Size = Vector3.new(1.5, 1.20000005, 1.5)
  2749. Part210.CFrame = CFrame.new(32.75, 2.80004096, 21.5493164, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  2750. Part210.BottomSurface = Enum.SurfaceType.Smooth
  2751. Part210.TopSurface = Enum.SurfaceType.Smooth
  2752. Part210.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2753. Part210.Position = Vector3.new(32.75, 2.80004096, 21.5493164)
  2754. Part210.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2755. SpecialMesh211.Parent = Part210
  2756. SpecialMesh211.MeshType = Enum.MeshType.Torso
  2757. Part212.Parent = Model43
  2758. Part212.BrickColor = BrickColor.new("Dark stone grey")
  2759. Part212.Rotation = Vector3.new(90, -60, 90)
  2760. Part212.Anchored = true
  2761. Part212.FormFactor = Enum.FormFactor.Custom
  2762. Part212.Size = Vector3.new(1.20000005, 0.5, 3.10000014)
  2763. Part212.CFrame = CFrame.new(29.2172852, 4.19152117, 24.2993164, -1.1920929e-07, -0.500000238, -0.866025329, 0, 0.866025329, -0.500000238, 1, 0, -1.1920929e-07)
  2764. Part212.BottomSurface = Enum.SurfaceType.Smooth
  2765. Part212.TopSurface = Enum.SurfaceType.Smooth
  2766. Part212.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2767. Part212.Position = Vector3.new(29.2172852, 4.19152117, 24.2993164)
  2768. Part212.Orientation = Vector3.new(30, -90, 0)
  2769. Part212.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2770. Part213.Parent = Model43
  2771. Part213.BrickColor = BrickColor.new("Dark stone grey")
  2772. Part213.Rotation = Vector3.new(90, -55, 90)
  2773. Part213.Anchored = true
  2774. Part213.FormFactor = Enum.FormFactor.Custom
  2775. Part213.Size = Vector3.new(0.799999237, 0.300000042, 1.50000024)
  2776. Part213.CFrame = CFrame.new(29.0679932, 5.44749784, 24.2993164, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  2777. Part213.BottomSurface = Enum.SurfaceType.Smooth
  2778. Part213.TopSurface = Enum.SurfaceType.Smooth
  2779. Part213.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2780. Part213.Position = Vector3.new(29.0679932, 5.44749784, 24.2993164)
  2781. Part213.Orientation = Vector3.new(35, -90, 0)
  2782. Part213.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2783. Part214.Parent = Model43
  2784. Part214.BrickColor = BrickColor.new("Dark stone grey")
  2785. Part214.Rotation = Vector3.new(0, -90, 0)
  2786. Part214.Anchored = true
  2787. Part214.FormFactor = Enum.FormFactor.Custom
  2788. Part214.Size = Vector3.new(1.20000005, 0.5, 0.30000028)
  2789. Part214.CFrame = CFrame.new(30.5845947, 4.9330368, 24.2993164, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2790. Part214.BottomSurface = Enum.SurfaceType.Smooth
  2791. Part214.TopSurface = Enum.SurfaceType.Smooth
  2792. Part214.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2793. Part214.Position = Vector3.new(30.5845947, 4.9330368, 24.2993164)
  2794. Part214.Orientation = Vector3.new(0, -90, 0)
  2795. Part214.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2796. Part215.Parent = Model43
  2797. Part215.BrickColor = BrickColor.new("Dark stone grey")
  2798. Part215.Rotation = Vector3.new(90, -70, 90)
  2799. Part215.Anchored = true
  2800. Part215.FormFactor = Enum.FormFactor.Custom
  2801. Part215.Size = Vector3.new(1.20000005, 0.600000024, 2.9000001)
  2802. Part215.CFrame = CFrame.new(28.9650879, 4.28014278, 24.2993164, 0, -0.342020392, -0.939692557, 0, 0.939692557, -0.342020392, 1, 0, 0)
  2803. Part215.BottomSurface = Enum.SurfaceType.Smooth
  2804. Part215.TopSurface = Enum.SurfaceType.Smooth
  2805. Part215.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2806. Part215.Position = Vector3.new(28.9650879, 4.28014278, 24.2993164)
  2807. Part215.Orientation = Vector3.new(20, -90, 0)
  2808. Part215.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2809. Part216.Parent = Model43
  2810. Part216.BrickColor = BrickColor.new("Dark stone grey")
  2811. Part216.Rotation = Vector3.new(0, -90, 0)
  2812. Part216.Anchored = true
  2813. Part216.FormFactor = Enum.FormFactor.Custom
  2814. Part216.Size = Vector3.new(1.20000005, 1, 4.5)
  2815. Part216.CFrame = CFrame.new(25.7498779, 3.7000041, 24.2993164, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  2816. Part216.BottomSurface = Enum.SurfaceType.Smooth
  2817. Part216.TopSurface = Enum.SurfaceType.Smooth
  2818. Part216.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2819. Part216.Position = Vector3.new(25.7498779, 3.7000041, 24.2993164)
  2820. Part216.Orientation = Vector3.new(0, -90, 0)
  2821. Part216.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2822. Part217.Parent = Model43
  2823. Part217.BrickColor = BrickColor.new("Dark stone grey")
  2824. Part217.Rotation = Vector3.new(70, 0, -90)
  2825. Part217.Anchored = true
  2826. Part217.FormFactor = Enum.FormFactor.Custom
  2827. Part217.Size = Vector3.new(0.599999249, 0.600000024, 3.20000005)
  2828. Part217.CFrame = CFrame.new(29.5328369, 7.04973316, 23.7763672, 5.60283661e-06, 0.999996543, 4.38839197e-06, -0.342021585, 8.22544098e-06, -0.939688504, -0.939688444, 5.66244125e-07, 0.342024922)
  2829. Part217.BottomSurface = Enum.SurfaceType.Smooth
  2830. Part217.TopSurface = Enum.SurfaceType.Smooth
  2831. Part217.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2832. Part217.Position = Vector3.new(29.5328369, 7.04973316, 23.7763672)
  2833. Part217.Orientation = Vector3.new(70, 0, -90)
  2834. Part217.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2835. Part218.Parent = Model43
  2836. Part218.BrickColor = BrickColor.new("Dark stone grey")
  2837. Part218.Rotation = Vector3.new(25, 0, 90)
  2838. Part218.Anchored = true
  2839. Part218.FormFactor = Enum.FormFactor.Custom
  2840. Part218.Size = Vector3.new(0.599999249, 0.600000024, 1.20000005)
  2841. Part218.CFrame = CFrame.new(29.5330811, 8.63749981, 22.840332, 7.21216202e-06, -0.999998808, 1.49011612e-07, 0.906307161, 6.56396151e-06, -0.42261681, 0.42261678, 2.63750553e-06, 0.906308353)
  2842. Part218.BottomSurface = Enum.SurfaceType.Smooth
  2843. Part218.TopSurface = Enum.SurfaceType.Smooth
  2844. Part218.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2845. Part218.Position = Vector3.new(29.5330811, 8.63749981, 22.840332)
  2846. Part218.Orientation = Vector3.new(25, 0, 90)
  2847. Part218.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2848. Part219.Parent = Model43
  2849. Part219.Rotation = Vector3.new(90, -5, 90)
  2850. Part219.Anchored = true
  2851. Part219.FormFactor = Enum.FormFactor.Custom
  2852. Part219.Size = Vector3.new(0.200000048, 0.200000003, 2.5999999)
  2853. Part219.CFrame = CFrame.new(29.4578857, 7.04601288, 24.9497089, 0, -0.99619472, -0.0871555582, 0, 0.0871555284, -0.99619472, 1, -0, 0)
  2854. Part219.BottomSurface = Enum.SurfaceType.Smooth
  2855. Part219.TopSurface = Enum.SurfaceType.Smooth
  2856. Part219.Position = Vector3.new(29.4578857, 7.04601288, 24.9497089)
  2857. Part219.Orientation = Vector3.new(85, -90, 0)
  2858. Part220.Parent = Model43
  2859. Part220.BrickColor = BrickColor.new("Black")
  2860. Part220.Rotation = Vector3.new(-90, -75, -90)
  2861. Part220.Anchored = true
  2862. Part220.FormFactor = Enum.FormFactor.Custom
  2863. Part220.Size = Vector3.new(1.39999986, 0.50000006, 0.699999988)
  2864. Part220.CFrame = CFrame.new(28.9497089, 6.82622385, 22.0996094, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  2865. Part220.BottomSurface = Enum.SurfaceType.Smooth
  2866. Part220.TopSurface = Enum.SurfaceType.Smooth
  2867. Part220.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2868. Part220.Position = Vector3.new(28.9497089, 6.82622385, 22.0996094)
  2869. Part220.Orientation = Vector3.new(-15, -90, 0)
  2870. Part220.Color = Color3.new(0.105882, 0.164706, 0.207843)
  2871. SpecialMesh221.Parent = Part220
  2872. SpecialMesh221.MeshType = Enum.MeshType.Torso
  2873. Part222.Parent = Model43
  2874. Part222.BrickColor = BrickColor.new("Dark stone grey")
  2875. Part222.Rotation = Vector3.new(-90, -75, -90)
  2876. Part222.Anchored = true
  2877. Part222.FormFactor = Enum.FormFactor.Custom
  2878. Part222.Size = Vector3.new(2.19999981, 0.400000036, 1.10000002)
  2879. Part222.CFrame = CFrame.new(29.2268066, 6.70024681, 22.0996094, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  2880. Part222.BottomSurface = Enum.SurfaceType.Smooth
  2881. Part222.TopSurface = Enum.SurfaceType.Smooth
  2882. Part222.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2883. Part222.Position = Vector3.new(29.2268066, 6.70024681, 22.0996094)
  2884. Part222.Orientation = Vector3.new(-15, -90, 0)
  2885. Part222.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2886. SpecialMesh223.Parent = Part222
  2887. SpecialMesh223.MeshType = Enum.MeshType.Torso
  2888. Part224.Parent = Model43
  2889. Part224.BrickColor = BrickColor.new("Dark stone grey")
  2890. Part224.Rotation = Vector3.new(-90, -75, -90)
  2891. Part224.Anchored = true
  2892. Part224.FormFactor = Enum.FormFactor.Custom
  2893. Part224.Size = Vector3.new(2.20000005, 0.499999881, 1.10000002)
  2894. Part224.CFrame = CFrame.new(29.1102295, 6.26561499, 22.0996094, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  2895. Part224.BottomSurface = Enum.SurfaceType.Smooth
  2896. Part224.TopSurface = Enum.SurfaceType.Smooth
  2897. Part224.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2898. Part224.Position = Vector3.new(29.1102295, 6.26561499, 22.0996094)
  2899. Part224.Orientation = Vector3.new(-15, -90, 0)
  2900. Part224.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2901. Part225.Parent = Model43
  2902. Part225.BrickColor = BrickColor.new("Dark stone grey")
  2903. Part225.Rotation = Vector3.new(0, 90, 0)
  2904. Part225.Anchored = true
  2905. Part225.CanCollide = false
  2906. Part225.FormFactor = Enum.FormFactor.Custom
  2907. Part225.Size = Vector3.new(1.5, 0.5, 1.5)
  2908. Part225.CFrame = CFrame.new(32.75, 1.94994497, 21.5493164, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2909. Part225.BottomSurface = Enum.SurfaceType.Smooth
  2910. Part225.TopSurface = Enum.SurfaceType.Smooth
  2911. Part225.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2912. Part225.Position = Vector3.new(32.75, 1.94994497, 21.5493164)
  2913. Part225.Orientation = Vector3.new(0, 90, 0)
  2914. Part225.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2915. Part226.Parent = Model43
  2916. Part226.BrickColor = BrickColor.new("Dark stone grey")
  2917. Part226.Rotation = Vector3.new(90, 25, 90)
  2918. Part226.Anchored = true
  2919. Part226.FormFactor = Enum.FormFactor.Custom
  2920. Part226.Size = Vector3.new(1.50000024, 2.70000029, 1.5999999)
  2921. Part226.CFrame = CFrame.new(28.4390869, 4.27733517, 19.9995117, 3.39746498e-06, -0.906303167, 0.422619969, 2.98023224e-08, -0.422616482, -0.906303227, 0.999996483, -2.98023224e-08, 3.57627869e-06)
  2922. Part226.BottomSurface = Enum.SurfaceType.Smooth
  2923. Part226.TopSurface = Enum.SurfaceType.Smooth
  2924. Part226.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2925. Part226.Position = Vector3.new(28.4390869, 4.27733517, 19.9995117)
  2926. Part226.Orientation = Vector3.new(65, 90, 180)
  2927. Part226.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2928. Part227.Parent = Model43
  2929. Part227.BrickColor = BrickColor.new("Dark stone grey")
  2930. Part227.Rotation = Vector3.new(90, -55, 90)
  2931. Part227.Anchored = true
  2932. Part227.FormFactor = Enum.FormFactor.Custom
  2933. Part227.Size = Vector3.new(10, 0.5, 5)
  2934. Part227.CFrame = CFrame.new(29.9045429, 4.33873701, 19.9995117, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  2935. Part227.BottomSurface = Enum.SurfaceType.Smooth
  2936. Part227.TopSurface = Enum.SurfaceType.Smooth
  2937. Part227.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2938. Part227.Position = Vector3.new(29.9045429, 4.33873701, 19.9995117)
  2939. Part227.Orientation = Vector3.new(35, -90, 0)
  2940. Part227.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2941. Part228.Parent = Model43
  2942. Part228.BrickColor = BrickColor.new("Dark stone grey")
  2943. Part228.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  2944. Part228.Anchored = true
  2945. Part228.CanCollide = false
  2946. Part228.FormFactor = Enum.FormFactor.Custom
  2947. Part228.Size = Vector3.new(10, 0.5, 1.0999999)
  2948. Part228.CFrame = CFrame.new(34.5590858, 5.22746992, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  2949. Part228.BottomSurface = Enum.SurfaceType.Smooth
  2950. Part228.TopSurface = Enum.SurfaceType.Smooth
  2951. Part228.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2952. Part228.Position = Vector3.new(34.5590858, 5.22746992, 19.9995117)
  2953. Part228.Orientation = Vector3.new(0, -90, 0)
  2954. Part228.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2955. Part229.Parent = Model43
  2956. Part229.BrickColor = BrickColor.new("Dark stone grey")
  2957. Part229.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  2958. Part229.Anchored = true
  2959. Part229.FormFactor = Enum.FormFactor.Custom
  2960. Part229.Size = Vector3.new(10, 0.5, 3.29999995)
  2961. Part229.CFrame = CFrame.new(33.4589844, 5.72746992, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  2962. Part229.BottomSurface = Enum.SurfaceType.Smooth
  2963. Part229.TopSurface = Enum.SurfaceType.Smooth
  2964. Part229.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2965. Part229.Position = Vector3.new(33.4589844, 5.72746992, 19.9995117)
  2966. Part229.Orientation = Vector3.new(0, -90, 0)
  2967. Part229.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2968. Part230.Parent = Model43
  2969. Part230.BrickColor = BrickColor.new("Dark stone grey")
  2970. Part230.Rotation = Vector3.new(180, 90, 0)
  2971. Part230.Anchored = true
  2972. Part230.CanCollide = false
  2973. Part230.FormFactor = Enum.FormFactor.Custom
  2974. Part230.Size = Vector3.new(7.29999971, 1.79999995, 4.5999999)
  2975. Part230.CFrame = CFrame.new(34.0089111, 4.87755585, 19.9995117, 0, 0, 1, 0, -1, 0, 1, 0, -0)
  2976. Part230.BottomSurface = Enum.SurfaceType.Smooth
  2977. Part230.TopSurface = Enum.SurfaceType.Smooth
  2978. Part230.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2979. Part230.Position = Vector3.new(34.0089111, 4.87755585, 19.9995117)
  2980. Part230.Orientation = Vector3.new(0, 90, 180)
  2981. Part230.Color = Color3.new(0.388235, 0.372549, 0.384314)
  2982. SpecialMesh231.Parent = Part230
  2983. SpecialMesh231.MeshType = Enum.MeshType.Torso
  2984. Part232.Parent = Model43
  2985. Part232.Rotation = Vector3.new(0, 90, 0)
  2986. Part232.Anchored = true
  2987. Part232.CanCollide = false
  2988. Part232.FormFactor = Enum.FormFactor.Custom
  2989. Part232.Size = Vector3.new(1.0999999, 0.700000048, 1.70000005)
  2990. Part232.CFrame = CFrame.new(32.75, 1.94994497, 18.4497089, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  2991. Part232.BottomSurface = Enum.SurfaceType.Smooth
  2992. Part232.TopSurface = Enum.SurfaceType.Smooth
  2993. Part232.Position = Vector3.new(32.75, 1.94994497, 18.4497089)
  2994. Part232.Orientation = Vector3.new(0, 90, 0)
  2995. Part233.Parent = Model43
  2996. Part233.BrickColor = BrickColor.new("Black")
  2997. Part233.Rotation = Vector3.new(180, 0, 85)
  2998. Part233.Anchored = true
  2999. Part233.FormFactor = Enum.FormFactor.Custom
  3000. Part233.Size = Vector3.new(1.03999972, 0.200000003, 7.76000023)
  3001. Part233.CFrame = CFrame.new(29.7299805, 6.51530886, 20.0004883, 0.0871537849, -0.996194899, -2.9575292e-06, -0.996194899, -0.0871537849, -7.95727556e-06, 7.66923677e-06, 3.63978256e-06, -1)
  3002. Part233.BottomSurface = Enum.SurfaceType.Smooth
  3003. Part233.TopSurface = Enum.SurfaceType.Smooth
  3004. Part233.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3005. Part233.Position = Vector3.new(29.7299805, 6.51530886, 20.0004883)
  3006. Part233.Orientation = Vector3.new(0, -180, -95)
  3007. Part233.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3008. Part234.Parent = Model43
  3009. Part234.BrickColor = BrickColor.new("Black")
  3010. Part234.Rotation = Vector3.new(180, 0, 85)
  3011. Part234.Anchored = true
  3012. Part234.FormFactor = Enum.FormFactor.Custom
  3013. Part234.Size = Vector3.new(0.319999695, 0.200000003, 7.13000011)
  3014. Part234.CFrame = CFrame.new(29.6166992, 7.81029081, 20.0004883, 0.0871534422, -0.996195018, -2.95753125e-06, -0.996195078, -0.0871537849, -7.95727647e-06, 7.66923858e-06, 3.63978256e-06, -1.00000048)
  3015. Part234.BottomSurface = Enum.SurfaceType.Smooth
  3016. Part234.TopSurface = Enum.SurfaceType.Smooth
  3017. Part234.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3018. Part234.Position = Vector3.new(29.6166992, 7.81029081, 20.0004883)
  3019. Part234.Orientation = Vector3.new(0, -180, -95)
  3020. Part234.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3021. Part235.Parent = Model43
  3022. Part235.BrickColor = BrickColor.new("Dark stone grey")
  3023. Part235.Rotation = Vector3.new(90, -85, 90)
  3024. Part235.Anchored = true
  3025. Part235.FormFactor = Enum.FormFactor.Custom
  3026. Part235.Size = Vector3.new(8.30000019, 0.600000024, 5.69999981)
  3027. Part235.CFrame = CFrame.new(32.1898193, 5.52232885, 20.1494141, 3.5762784e-07, -0.0871558785, -0.996194601, -5.21540606e-08, 0.996194661, -0.0871558636, 0.999999881, 7.07805157e-08, 3.57627869e-07)
  3028. Part235.BottomSurface = Enum.SurfaceType.Smooth
  3029. Part235.TopSurface = Enum.SurfaceType.Smooth
  3030. Part235.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3031. Part235.Position = Vector3.new(32.1898193, 5.52232885, 20.1494141)
  3032. Part235.Orientation = Vector3.new(5, -90, 0)
  3033. Part235.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3034. Part236.Parent = Model43
  3035. Part236.BrickColor = BrickColor.new("Dark stone grey")
  3036. Part236.Rotation = Vector3.new(90, -5, 90)
  3037. Part236.Anchored = true
  3038. Part236.FormFactor = Enum.FormFactor.Custom
  3039. Part236.Size = Vector3.new(1.4000001, 0.300000012, 0.599999905)
  3040. Part236.CFrame = CFrame.new(29.5014648, 7.54424286, 24.3994141, 0, -0.99619472, -0.0871555582, 0, 0.0871555284, -0.99619472, 1, -0, 0)
  3041. Part236.BottomSurface = Enum.SurfaceType.Smooth
  3042. Part236.TopSurface = Enum.SurfaceType.Smooth
  3043. Part236.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3044. Part236.Position = Vector3.new(29.5014648, 7.54424286, 24.3994141)
  3045. Part236.Orientation = Vector3.new(85, -90, 0)
  3046. Part236.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3047. Part237.Parent = Model43
  3048. Part237.BrickColor = BrickColor.new("Dark stone grey")
  3049. Part237.Rotation = Vector3.new(-90, -75, -90)
  3050. Part237.Anchored = true
  3051. Part237.FormFactor = Enum.FormFactor.Custom
  3052. Part237.Size = Vector3.new(2.20000005, 1.69999993, 1.10000002)
  3053. Part237.CFrame = CFrame.new(28.5926514, 4.33373213, 17.9995117, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  3054. Part237.BottomSurface = Enum.SurfaceType.Smooth
  3055. Part237.TopSurface = Enum.SurfaceType.Smooth
  3056. Part237.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3057. Part237.Position = Vector3.new(28.5926514, 4.33373213, 17.9995117)
  3058. Part237.Orientation = Vector3.new(-15, -90, 0)
  3059. Part237.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3060. Part238.Parent = Model43
  3061. Part238.BrickColor = BrickColor.new("Dark stone grey")
  3062. Part238.Rotation = Vector3.new(-90, -75, 90)
  3063. Part238.Anchored = true
  3064. Part238.FormFactor = Enum.FormFactor.Custom
  3065. Part238.Size = Vector3.new(2.19999981, 0.400000036, 1.10000002)
  3066. Part238.CFrame = CFrame.new(28.9938965, 5.83092117, 17.9995117, -1.1920929e-07, -0.258818865, -0.965925932, 1.49011612e-08, -0.965925932, 0.258818865, -1, 1.49011612e-08, 5.96046448e-08)
  3067. Part238.BottomSurface = Enum.SurfaceType.Smooth
  3068. Part238.TopSurface = Enum.SurfaceType.Smooth
  3069. Part238.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3070. Part238.Position = Vector3.new(28.9938965, 5.83092117, 17.9995117)
  3071. Part238.Orientation = Vector3.new(-15, -90, 180)
  3072. Part238.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3073. SpecialMesh239.Parent = Part238
  3074. SpecialMesh239.MeshType = Enum.MeshType.Torso
  3075. Part240.Parent = Model43
  3076. Part240.BrickColor = BrickColor.new("Dark stone grey")
  3077. Part240.Rotation = Vector3.new(-90, -75, -90)
  3078. Part240.Anchored = true
  3079. Part240.FormFactor = Enum.FormFactor.Custom
  3080. Part240.Size = Vector3.new(2.19999981, 0.400000036, 1.10000002)
  3081. Part240.CFrame = CFrame.new(28.864502, 5.34795284, 17.9995117, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  3082. Part240.BottomSurface = Enum.SurfaceType.Smooth
  3083. Part240.TopSurface = Enum.SurfaceType.Smooth
  3084. Part240.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3085. Part240.Position = Vector3.new(28.864502, 5.34795284, 17.9995117)
  3086. Part240.Orientation = Vector3.new(-15, -90, 0)
  3087. Part240.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3088. SpecialMesh241.Parent = Part240
  3089. SpecialMesh241.MeshType = Enum.MeshType.Torso
  3090. Part242.Parent = Model43
  3091. Part242.BrickColor = BrickColor.new("Dark stone grey")
  3092. Part242.Rotation = Vector3.new(-90, -75, -90)
  3093. Part242.Anchored = true
  3094. Part242.FormFactor = Enum.FormFactor.Custom
  3095. Part242.Size = Vector3.new(2.20000005, 0.499999881, 1.10000002)
  3096. Part242.CFrame = CFrame.new(29.1102295, 6.26561499, 17.9995117, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  3097. Part242.BottomSurface = Enum.SurfaceType.Smooth
  3098. Part242.TopSurface = Enum.SurfaceType.Smooth
  3099. Part242.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3100. Part242.Position = Vector3.new(29.1102295, 6.26561499, 17.9995117)
  3101. Part242.Orientation = Vector3.new(-15, -90, 0)
  3102. Part242.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3103. Part243.Parent = Model43
  3104. Part243.BrickColor = BrickColor.new("Black")
  3105. Part243.Rotation = Vector3.new(-90, -75, -90)
  3106. Part243.Anchored = true
  3107. Part243.FormFactor = Enum.FormFactor.Custom
  3108. Part243.Size = Vector3.new(1.4000001, 3.0999999, 0.700000048)
  3109. Part243.CFrame = CFrame.new(28.4841309, 5.08751583, 22.0996094, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  3110. Part243.BottomSurface = Enum.SurfaceType.Smooth
  3111. Part243.TopSurface = Enum.SurfaceType.Smooth
  3112. Part243.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3113. Part243.Position = Vector3.new(28.4841309, 5.08751583, 22.0996094)
  3114. Part243.Orientation = Vector3.new(-15, -90, 0)
  3115. Part243.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3116. Part244.Parent = Model43
  3117. Part244.BrickColor = BrickColor.new("Black")
  3118. Part244.Rotation = Vector3.new(-90, -75, -90)
  3119. Part244.Anchored = true
  3120. Part244.FormFactor = Enum.FormFactor.Custom
  3121. Part244.Size = Vector3.new(1.99999988, 0.600000083, 0.699999988)
  3122. Part244.CFrame = CFrame.new(28.3743896, 5.06511688, 22.0996094, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  3123. Part244.BottomSurface = Enum.SurfaceType.Smooth
  3124. Part244.TopSurface = Enum.SurfaceType.Smooth
  3125. Part244.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3126. Part244.Position = Vector3.new(28.3743896, 5.06511688, 22.0996094)
  3127. Part244.Orientation = Vector3.new(-15, -90, 0)
  3128. Part244.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3129. SpecialMesh245.Parent = Part244
  3130. SpecialMesh245.MeshType = Enum.MeshType.Torso
  3131. Part246.Parent = Model43
  3132. Part246.BrickColor = BrickColor.new("Dark stone grey")
  3133. Part246.Rotation = Vector3.new(-90, -75, -90)
  3134. Part246.Anchored = true
  3135. Part246.FormFactor = Enum.FormFactor.Custom
  3136. Part246.Size = Vector3.new(2.20000005, 1.69999993, 1.10000002)
  3137. Part246.CFrame = CFrame.new(28.5926514, 4.33373213, 22.0996094, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  3138. Part246.BottomSurface = Enum.SurfaceType.Smooth
  3139. Part246.TopSurface = Enum.SurfaceType.Smooth
  3140. Part246.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3141. Part246.Position = Vector3.new(28.5926514, 4.33373213, 22.0996094)
  3142. Part246.Orientation = Vector3.new(-15, -90, 0)
  3143. Part246.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3144. Part247.Parent = Model43
  3145. Part247.BrickColor = BrickColor.new("Dark stone grey")
  3146. Part247.Rotation = Vector3.new(-90, -75, 90)
  3147. Part247.Anchored = true
  3148. Part247.FormFactor = Enum.FormFactor.Custom
  3149. Part247.Size = Vector3.new(2.19999981, 0.400000036, 1.10000002)
  3150. Part247.CFrame = CFrame.new(28.9938965, 5.83092117, 22.0996094, -1.1920929e-07, -0.258818865, -0.965925932, 1.49011612e-08, -0.965925932, 0.258818865, -1, 1.49011612e-08, 5.96046448e-08)
  3151. Part247.BottomSurface = Enum.SurfaceType.Smooth
  3152. Part247.TopSurface = Enum.SurfaceType.Smooth
  3153. Part247.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3154. Part247.Position = Vector3.new(28.9938965, 5.83092117, 22.0996094)
  3155. Part247.Orientation = Vector3.new(-15, -90, 180)
  3156. Part247.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3157. SpecialMesh248.Parent = Part247
  3158. SpecialMesh248.MeshType = Enum.MeshType.Torso
  3159. Part249.Parent = Model43
  3160. Part249.BrickColor = BrickColor.new("Dark stone grey")
  3161. Part249.Rotation = Vector3.new(-90, -75, -90)
  3162. Part249.Anchored = true
  3163. Part249.FormFactor = Enum.FormFactor.Custom
  3164. Part249.Size = Vector3.new(2.19999981, 0.400000036, 1.10000002)
  3165. Part249.CFrame = CFrame.new(28.864502, 5.34795284, 22.0996094, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  3166. Part249.BottomSurface = Enum.SurfaceType.Smooth
  3167. Part249.TopSurface = Enum.SurfaceType.Smooth
  3168. Part249.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3169. Part249.Position = Vector3.new(28.864502, 5.34795284, 22.0996094)
  3170. Part249.Orientation = Vector3.new(-15, -90, 0)
  3171. Part249.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3172. SpecialMesh250.Parent = Part249
  3173. SpecialMesh250.MeshType = Enum.MeshType.Torso
  3174. Part251.Parent = Model43
  3175. Part251.BrickColor = BrickColor.new("Black")
  3176. Part251.Rotation = Vector3.new(180, 0, 90)
  3177. Part251.Anchored = true
  3178. Part251.FormFactor = Enum.FormFactor.Custom
  3179. Part251.Size = Vector3.new(0.300000012, 2.5, 0.950000405)
  3180. Part251.CFrame = CFrame.new(28.2828369, 8.96299839, 20.0004883, -2.01910734e-06, -0.999999881, -2.95752852e-06, -0.999999881, 2.19792128e-06, -7.95727374e-06, 7.9572801e-06, 2.95751192e-06, -0.999999762)
  3181. Part251.BottomSurface = Enum.SurfaceType.Smooth
  3182. Part251.TopSurface = Enum.SurfaceType.Smooth
  3183. Part251.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3184. Part251.Position = Vector3.new(28.2828369, 8.96299839, 20.0004883)
  3185. Part251.Orientation = Vector3.new(0, -180, -90)
  3186. Part251.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3187. Part252.Parent = Model43
  3188. Part252.BrickColor = BrickColor.new("Dark stone grey")
  3189. Part252.Rotation = Vector3.new(90, -10, 90)
  3190. Part252.Anchored = true
  3191. Part252.FormFactor = Enum.FormFactor.Custom
  3192. Part252.Size = Vector3.new(8.30000019, 0.600000024, 1.5999999)
  3193. Part252.CFrame = CFrame.new(29.4812012, 4.73283911, 20.1494141, 5.96046493e-06, -0.984803975, -0.17365101, 2.20537186e-06, 0.173654258, -0.984803975, 0.999996781, 2.20537186e-06, 5.96046448e-06)
  3194. Part252.BottomSurface = Enum.SurfaceType.Smooth
  3195. Part252.TopSurface = Enum.SurfaceType.Smooth
  3196. Part252.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3197. Part252.Position = Vector3.new(29.4812012, 4.73283911, 20.1494141)
  3198. Part252.Orientation = Vector3.new(80, -90, 0)
  3199. Part252.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3200. Part253.Parent = Model43
  3201. Part253.BrickColor = BrickColor.new("Dark stone grey")
  3202. Part253.Rotation = Vector3.new(-90, -75, -90)
  3203. Part253.Anchored = true
  3204. Part253.FormFactor = Enum.FormFactor.Custom
  3205. Part253.Size = Vector3.new(2.19999981, 0.400000036, 1.10000002)
  3206. Part253.CFrame = CFrame.new(29.2268066, 6.70024681, 17.9995117, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  3207. Part253.BottomSurface = Enum.SurfaceType.Smooth
  3208. Part253.TopSurface = Enum.SurfaceType.Smooth
  3209. Part253.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3210. Part253.Position = Vector3.new(29.2268066, 6.70024681, 17.9995117)
  3211. Part253.Orientation = Vector3.new(-15, -90, 0)
  3212. Part253.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3213. SpecialMesh254.Parent = Part253
  3214. SpecialMesh254.MeshType = Enum.MeshType.Torso
  3215. Part255.Parent = Model43
  3216. Part255.BrickColor = BrickColor.new("Black")
  3217. Part255.Rotation = Vector3.new(-90, -75, -90)
  3218. Part255.Anchored = true
  3219. Part255.FormFactor = Enum.FormFactor.Custom
  3220. Part255.Size = Vector3.new(1.39999986, 0.50000006, 0.699999988)
  3221. Part255.CFrame = CFrame.new(28.9497089, 6.82622385, 17.9995117, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  3222. Part255.BottomSurface = Enum.SurfaceType.Smooth
  3223. Part255.TopSurface = Enum.SurfaceType.Smooth
  3224. Part255.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3225. Part255.Position = Vector3.new(28.9497089, 6.82622385, 17.9995117)
  3226. Part255.Orientation = Vector3.new(-15, -90, 0)
  3227. Part255.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3228. SpecialMesh256.Parent = Part255
  3229. SpecialMesh256.MeshType = Enum.MeshType.Torso
  3230. Part257.Parent = Model43
  3231. Part257.BrickColor = BrickColor.new("Black")
  3232. Part257.Rotation = Vector3.new(-90, -75, -90)
  3233. Part257.Anchored = true
  3234. Part257.FormFactor = Enum.FormFactor.Custom
  3235. Part257.Size = Vector3.new(2, 1.19999993, 0.800000072)
  3236. Part257.CFrame = CFrame.new(28.1899414, 4.18291521, 17.9995117, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  3237. Part257.BottomSurface = Enum.SurfaceType.Smooth
  3238. Part257.TopSurface = Enum.SurfaceType.Smooth
  3239. Part257.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3240. Part257.Position = Vector3.new(28.1899414, 4.18291521, 17.9995117)
  3241. Part257.Orientation = Vector3.new(-15, -90, 0)
  3242. Part257.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3243. Part258.Parent = Model43
  3244. Part258.BrickColor = BrickColor.new("Black")
  3245. Part258.Rotation = Vector3.new(-90, -75, -90)
  3246. Part258.Anchored = true
  3247. Part258.FormFactor = Enum.FormFactor.Custom
  3248. Part258.Size = Vector3.new(1.99999988, 0.600000083, 0.699999988)
  3249. Part258.CFrame = CFrame.new(28.3743896, 5.06511688, 17.9995117, -1.1920929e-07, 0.258818865, -0.965925932, 1.49011612e-08, 0.965925872, 0.258818865, 1, 1.49011612e-08, -1.1920929e-07)
  3250. Part258.BottomSurface = Enum.SurfaceType.Smooth
  3251. Part258.TopSurface = Enum.SurfaceType.Smooth
  3252. Part258.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3253. Part258.Position = Vector3.new(28.3743896, 5.06511688, 17.9995117)
  3254. Part258.Orientation = Vector3.new(-15, -90, 0)
  3255. Part258.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3256. SpecialMesh259.Parent = Part258
  3257. SpecialMesh259.MeshType = Enum.MeshType.Torso
  3258. Part260.Parent = Model43
  3259. Part260.BrickColor = BrickColor.new("Black")
  3260. Part260.Rotation = Vector3.new(-90, -75, -90)
  3261. Part260.Anchored = true
  3262. Part260.FormFactor = Enum.FormFactor.Custom
  3263. Part260.Size = Vector3.new(1.4000001, 3.0999999, 0.700000048)
  3264. Part260.CFrame = CFrame.new(28.4841309, 5.08751583, 17.9995117, -1.1920929e-07, 0.258818835, -0.965925932, 0, 0.965925872, 0.258818835, 1, 0, -1.1920929e-07)
  3265. Part260.BottomSurface = Enum.SurfaceType.Smooth
  3266. Part260.TopSurface = Enum.SurfaceType.Smooth
  3267. Part260.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3268. Part260.Position = Vector3.new(28.4841309, 5.08751583, 17.9995117)
  3269. Part260.Orientation = Vector3.new(-15, -90, 0)
  3270. Part260.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3271. Part261.Parent = Model43
  3272. Part261.BrickColor = BrickColor.new("Dark stone grey")
  3273. Part261.Rotation = Vector3.new(155, 0, 90)
  3274. Part261.Anchored = true
  3275. Part261.FormFactor = Enum.FormFactor.Custom
  3276. Part261.Size = Vector3.new(0.599999249, 0.600000024, 1.20000005)
  3277. Part261.CFrame = CFrame.new(29.5329571, 8.63749981, 17.1586914, 4.17232513e-07, -0.999998927, -4.9136579e-06, -0.906306863, 3.86685133e-06, -0.422617644, 0.422617644, 4.17232513e-06, -0.906305671)
  3278. Part261.BottomSurface = Enum.SurfaceType.Smooth
  3279. Part261.TopSurface = Enum.SurfaceType.Smooth
  3280. Part261.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3281. Part261.Position = Vector3.new(29.5329571, 8.63749981, 17.1586914)
  3282. Part261.Orientation = Vector3.new(25, -180, -90)
  3283. Part261.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3284. Part262.Parent = Model43
  3285. Part262.BrickColor = BrickColor.new("Dark stone grey")
  3286. Part262.Rotation = Vector3.new(0, 90, 0)
  3287. Part262.Anchored = true
  3288. Part262.CanCollide = false
  3289. Part262.FormFactor = Enum.FormFactor.Custom
  3290. Part262.Size = Vector3.new(1.5, 0.5, 1.5)
  3291. Part262.CFrame = CFrame.new(32.75, 1.94994497, 18.4497089, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  3292. Part262.BottomSurface = Enum.SurfaceType.Smooth
  3293. Part262.TopSurface = Enum.SurfaceType.Smooth
  3294. Part262.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3295. Part262.Position = Vector3.new(32.75, 1.94994497, 18.4497089)
  3296. Part262.Orientation = Vector3.new(0, 90, 0)
  3297. Part262.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3298. WedgePart263.Name = "Part"
  3299. WedgePart263.Parent = Model43
  3300. WedgePart263.BrickColor = BrickColor.new("Dark stone grey")
  3301. WedgePart263.Rotation = Vector3.new(-180, 0, -90)
  3302. WedgePart263.Anchored = true
  3303. WedgePart263.FormFactor = Enum.FormFactor.Custom
  3304. WedgePart263.Size = Vector3.new(1.00000012, 1.60000002, 1.60000002)
  3305. WedgePart263.CFrame = CFrame.new(35.9088135, 5.47746992, 24.1997089, 0, 1, 0, 1, 0, 0, 0, 0, -1)
  3306. WedgePart263.BottomSurface = Enum.SurfaceType.Smooth
  3307. WedgePart263.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3308. WedgePart263.Position = Vector3.new(35.9088135, 5.47746992, 24.1997089)
  3309. WedgePart263.Orientation = Vector3.new(0, 180, 90)
  3310. WedgePart263.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3311. Part264.Parent = Model43
  3312. Part264.Rotation = Vector3.new(9.67999935, 37.7399979, -119.290001)
  3313. Part264.Anchored = true
  3314. Part264.FormFactor = Enum.FormFactor.Custom
  3315. Part264.Size = Vector3.new(0.200000003, 1.29999971, 0.200000003)
  3316. Part264.CFrame = CFrame.new(15.2679443, 5.28880882, 21.8525391, -0.38691783, 0.689705908, 0.612045109, -0.910074651, -0.392525345, -0.132992238, 0.148517922, -0.608464062, 0.77955997)
  3317. Part264.BottomSurface = Enum.SurfaceType.Smooth
  3318. Part264.TopSurface = Enum.SurfaceType.Smooth
  3319. Part264.Position = Vector3.new(15.2679443, 5.28880882, 21.8525391)
  3320. Part264.Orientation = Vector3.new(7.63999987, 38.1399994, -113.329994)
  3321. Part265.Parent = Model43
  3322. Part265.BrickColor = BrickColor.new("Dark stone grey")
  3323. Part265.Rotation = Vector3.new(0, -90, 0)
  3324. Part265.Anchored = true
  3325. Part265.FormFactor = Enum.FormFactor.Custom
  3326. Part265.Size = Vector3.new(1.20000005, 0.5, 0.30000028)
  3327. Part265.CFrame = CFrame.new(30.5845947, 4.9330368, 15.6997061, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3328. Part265.BottomSurface = Enum.SurfaceType.Smooth
  3329. Part265.TopSurface = Enum.SurfaceType.Smooth
  3330. Part265.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3331. Part265.Position = Vector3.new(30.5845947, 4.9330368, 15.6997061)
  3332. Part265.Orientation = Vector3.new(0, -90, 0)
  3333. Part265.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3334. Part266.Parent = Model43
  3335. Part266.BrickColor = BrickColor.new("Dark stone grey")
  3336. Part266.Rotation = Vector3.new(90, -55, 90)
  3337. Part266.Anchored = true
  3338. Part266.FormFactor = Enum.FormFactor.Custom
  3339. Part266.Size = Vector3.new(0.799999237, 0.300000042, 1.50000024)
  3340. Part266.CFrame = CFrame.new(29.0679932, 5.44749784, 15.6997061, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  3341. Part266.BottomSurface = Enum.SurfaceType.Smooth
  3342. Part266.TopSurface = Enum.SurfaceType.Smooth
  3343. Part266.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3344. Part266.Position = Vector3.new(29.0679932, 5.44749784, 15.6997061)
  3345. Part266.Orientation = Vector3.new(35, -90, 0)
  3346. Part266.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3347. Part267.Parent = Model43
  3348. Part267.BrickColor = BrickColor.new("Dark stone grey")
  3349. Part267.Rotation = Vector3.new(90, -60, 90)
  3350. Part267.Anchored = true
  3351. Part267.FormFactor = Enum.FormFactor.Custom
  3352. Part267.Size = Vector3.new(1.20000005, 0.5, 3.10000014)
  3353. Part267.CFrame = CFrame.new(29.2172852, 4.19152117, 15.6997061, -1.1920929e-07, -0.500000238, -0.866025329, 0, 0.866025329, -0.500000238, 1, 0, -1.1920929e-07)
  3354. Part267.BottomSurface = Enum.SurfaceType.Smooth
  3355. Part267.TopSurface = Enum.SurfaceType.Smooth
  3356. Part267.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3357. Part267.Position = Vector3.new(29.2172852, 4.19152117, 15.6997061)
  3358. Part267.Orientation = Vector3.new(30, -90, 0)
  3359. Part267.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3360. Part268.Parent = Model43
  3361. Part268.BrickColor = BrickColor.new("Dark stone grey")
  3362. Part268.Rotation = Vector3.new(90, -70, 90)
  3363. Part268.Anchored = true
  3364. Part268.FormFactor = Enum.FormFactor.Custom
  3365. Part268.Size = Vector3.new(1.20000005, 0.5, 2.9000001)
  3366. Part268.CFrame = CFrame.new(28.947876, 4.32707977, 15.6997061, 0, -0.342020392, -0.939692557, 0, 0.939692557, -0.342020392, 1, 0, 0)
  3367. Part268.BottomSurface = Enum.SurfaceType.Smooth
  3368. Part268.TopSurface = Enum.SurfaceType.Smooth
  3369. Part268.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3370. Part268.Position = Vector3.new(28.947876, 4.32707977, 15.6997061)
  3371. Part268.Orientation = Vector3.new(20, -90, 0)
  3372. Part268.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3373. Part269.Parent = Model43
  3374. Part269.Rotation = Vector3.new(90, -5, 90)
  3375. Part269.Anchored = true
  3376. Part269.FormFactor = Enum.FormFactor.Custom
  3377. Part269.Size = Vector3.new(0.200000048, 0.200000003, 2.5999999)
  3378. Part269.CFrame = CFrame.new(29.4578857, 7.04601288, 15.0493164, 0, -0.99619472, -0.0871555582, 0, 0.0871555284, -0.99619472, 1, -0, 0)
  3379. Part269.BottomSurface = Enum.SurfaceType.Smooth
  3380. Part269.TopSurface = Enum.SurfaceType.Smooth
  3381. Part269.Position = Vector3.new(29.4578857, 7.04601288, 15.0493164)
  3382. Part269.Orientation = Vector3.new(85, -90, 0)
  3383. Part270.Parent = Model43
  3384. Part270.BrickColor = BrickColor.new("Dark stone grey")
  3385. Part270.Rotation = Vector3.new(110, 0, 90)
  3386. Part270.Anchored = true
  3387. Part270.FormFactor = Enum.FormFactor.Custom
  3388. Part270.Size = Vector3.new(0.599999249, 0.600000024, 3.20000005)
  3389. Part270.CFrame = CFrame.new(29.5328369, 7.04973316, 16.2226563, 8.32602382e-07, -0.999999285, 4.54485416e-07, -0.342021018, 2.90572643e-07, -0.939691544, 0.939691544, -8.94069672e-08, -0.342020273)
  3390. Part270.BottomSurface = Enum.SurfaceType.Smooth
  3391. Part270.TopSurface = Enum.SurfaceType.Smooth
  3392. Part270.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3393. Part270.Position = Vector3.new(29.5328369, 7.04973316, 16.2226563)
  3394. Part270.Orientation = Vector3.new(70, 180, -90)
  3395. Part270.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3396. Part271.Parent = Model43
  3397. Part271.BrickColor = BrickColor.new("Dark stone grey")
  3398. Part271.Rotation = Vector3.new(90, -5, 90)
  3399. Part271.Anchored = true
  3400. Part271.FormFactor = Enum.FormFactor.Custom
  3401. Part271.Size = Vector3.new(1.4000001, 0.300000012, 0.599999905)
  3402. Part271.CFrame = CFrame.new(29.5014648, 7.54424286, 15.5996084, 0, -0.99619472, -0.0871555582, 0, 0.0871555284, -0.99619472, 1, -0, 0)
  3403. Part271.BottomSurface = Enum.SurfaceType.Smooth
  3404. Part271.TopSurface = Enum.SurfaceType.Smooth
  3405. Part271.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3406. Part271.Position = Vector3.new(29.5014648, 7.54424286, 15.5996084)
  3407. Part271.Orientation = Vector3.new(85, -90, 0)
  3408. Part271.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3409. Part272.Parent = Model43
  3410. Part272.BrickColor = BrickColor.new("Black")
  3411. Part272.Rotation = Vector3.new(40, -90, 0)
  3412. Part272.Anchored = true
  3413. Part272.FormFactor = Enum.FormFactor.Custom
  3414. Part272.Size = Vector3.new(0.600000024, 0.200000003, 2.4000001)
  3415. Part272.CFrame = CFrame.new(25.5, 2.78050995, 25.4648438, 2.94297934e-07, 8.19563866e-08, -1, -0.642787457, 0.766044497, -8.19563866e-08, 0.766044438, 0.642787457, 2.98023224e-07)
  3416. Part272.BottomSurface = Enum.SurfaceType.Smooth
  3417. Part272.TopSurface = Enum.SurfaceType.Smooth
  3418. Part272.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3419. Part272.Position = Vector3.new(25.5, 2.78050995, 25.4648438)
  3420. Part272.Orientation = Vector3.new(0, -90, -40)
  3421. Part272.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3422. Part273.Parent = Model43
  3423. Part273.BrickColor = BrickColor.new("Dark stone grey")
  3424. Part273.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3425. Part273.Anchored = true
  3426. Part273.FormFactor = Enum.FormFactor.Custom
  3427. Part273.Size = Vector3.new(6.80000019, 0.400000006, 1.60000014)
  3428. Part273.CFrame = CFrame.new(35.9088135, 5.17748117, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3429. Part273.BottomSurface = Enum.SurfaceType.Smooth
  3430. Part273.TopSurface = Enum.SurfaceType.Smooth
  3431. Part273.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3432. Part273.Position = Vector3.new(35.9088135, 5.17748117, 19.9995117)
  3433. Part273.Orientation = Vector3.new(0, -90, 0)
  3434. Part273.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3435. Part274.Parent = Model43
  3436. Part274.BrickColor = BrickColor.new("Dark stone grey")
  3437. Part274.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3438. Part274.Anchored = true
  3439. Part274.FormFactor = Enum.FormFactor.Custom
  3440. Part274.Size = Vector3.new(3.5999999, 0.800000012, 1.60000014)
  3441. Part274.CFrame = CFrame.new(35.9089355, 5.57744217, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3442. Part274.BottomSurface = Enum.SurfaceType.Smooth
  3443. Part274.TopSurface = Enum.SurfaceType.Smooth
  3444. Part274.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3445. Part274.Position = Vector3.new(35.9089355, 5.57744217, 19.9995117)
  3446. Part274.Orientation = Vector3.new(0, -90, 0)
  3447. Part274.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3448. Part275.Parent = Model43
  3449. Part275.BrickColor = BrickColor.new("Dark stone grey")
  3450. Part275.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3451. Part275.Anchored = true
  3452. Part275.FormFactor = Enum.FormFactor.Custom
  3453. Part275.Size = Vector3.new(0.200000003, 1.29999995, 1.4000001)
  3454. Part275.CFrame = CFrame.new(35.8088379, 6.82750416, 22.2993164, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3455. Part275.BottomSurface = Enum.SurfaceType.Smooth
  3456. Part275.TopSurface = Enum.SurfaceType.Smooth
  3457. Part275.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3458. Part275.Position = Vector3.new(35.8088379, 6.82750416, 22.2993164)
  3459. Part275.Orientation = Vector3.new(0, -90, 0)
  3460. Part275.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3461. Part276.Parent = Model43
  3462. Part276.BrickColor = BrickColor.new("Institutional white")
  3463. Part276.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3464. Part276.Anchored = true
  3465. Part276.FormFactor = Enum.FormFactor.Custom
  3466. Part276.Size = Vector3.new(0.300000012, 0.200000003, 0.5)
  3467. Part276.CFrame = CFrame.new(36.30896, 7.12749481, 17.5996094, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3468. Part276.BottomSurface = Enum.SurfaceType.Smooth
  3469. Part276.TopSurface = Enum.SurfaceType.Smooth
  3470. Part276.Color = Color3.new(0.972549, 0.972549, 0.972549)
  3471. Part276.Position = Vector3.new(36.30896, 7.12749481, 17.5996094)
  3472. Part276.Orientation = Vector3.new(0, -90, 0)
  3473. Part276.Color = Color3.new(0.972549, 0.972549, 0.972549)
  3474. Part277.Parent = Model43
  3475. Part277.BrickColor = BrickColor.new("Dark stone grey")
  3476. Part277.Rotation = Vector3.new(0, -90, 0)
  3477. Part277.Anchored = true
  3478. Part277.FormFactor = Enum.FormFactor.Custom
  3479. Part277.Size = Vector3.new(6.70000029, 0.699999928, 1.20000005)
  3480. Part277.CFrame = CFrame.new(35.80896, 7.02739286, 19.9497089, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3481. Part277.BottomSurface = Enum.SurfaceType.Smooth
  3482. Part277.TopSurface = Enum.SurfaceType.Smooth
  3483. Part277.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3484. Part277.Position = Vector3.new(35.80896, 7.02739286, 19.9497089)
  3485. Part277.Orientation = Vector3.new(0, -90, 0)
  3486. Part277.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3487. SpecialMesh278.Parent = Part277
  3488. SpecialMesh278.MeshType = Enum.MeshType.Torso
  3489. Part279.Parent = Model43
  3490. Part279.BrickColor = BrickColor.new("Dark stone grey")
  3491. Part279.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3492. Part279.Anchored = true
  3493. Part279.FormFactor = Enum.FormFactor.Custom
  3494. Part279.Size = Vector3.new(6.89999962, 0.5, 1.4000001)
  3495. Part279.CFrame = CFrame.new(35.8088379, 6.42748117, 19.9497089, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3496. Part279.BottomSurface = Enum.SurfaceType.Smooth
  3497. Part279.TopSurface = Enum.SurfaceType.Smooth
  3498. Part279.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3499. Part279.Position = Vector3.new(35.8088379, 6.42748117, 19.9497089)
  3500. Part279.Orientation = Vector3.new(0, -90, 0)
  3501. Part279.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3502. Part280.Parent = Model43
  3503. Part280.BrickColor = BrickColor.new("Dark stone grey")
  3504. Part280.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3505. Part280.Anchored = true
  3506. Part280.FormFactor = Enum.FormFactor.Custom
  3507. Part280.Size = Vector3.new(0.200000003, 1.29999995, 1.4000001)
  3508. Part280.CFrame = CFrame.new(35.8088379, 6.82750416, 17.5996094, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3509. Part280.BottomSurface = Enum.SurfaceType.Smooth
  3510. Part280.TopSurface = Enum.SurfaceType.Smooth
  3511. Part280.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3512. Part280.Position = Vector3.new(35.8088379, 6.82750416, 17.5996094)
  3513. Part280.Orientation = Vector3.new(0, -90, 0)
  3514. Part280.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3515. WedgePart281.Name = "Part"
  3516. WedgePart281.Parent = Model43
  3517. WedgePart281.BrickColor = BrickColor.new("Dark stone grey")
  3518. WedgePart281.Rotation = Vector3.new(70, 0, -90)
  3519. WedgePart281.Anchored = true
  3520. WedgePart281.FormFactor = Enum.FormFactor.Custom
  3521. WedgePart281.Size = Vector3.new(0.200000003, 3.59999967, 1.89999986)
  3522. WedgePart281.CFrame = CFrame.new(33.3330078, 6.50725412, 24.1865234, -1.55158341e-06, 1, 2.08616257e-07, -0.342019171, -3.57627869e-07, -0.939692974, -0.939692974, -1.57952309e-06, 0.3420192)
  3523. WedgePart281.BottomSurface = Enum.SurfaceType.Smooth
  3524. WedgePart281.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3525. WedgePart281.Position = Vector3.new(33.3330078, 6.50725412, 24.1865234)
  3526. WedgePart281.Orientation = Vector3.new(70, 0, -90)
  3527. WedgePart281.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3528. Part282.Parent = Model43
  3529. Part282.BrickColor = BrickColor.new("Dark stone grey")
  3530. Part282.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3531. Part282.Anchored = true
  3532. Part282.FormFactor = Enum.FormFactor.Custom
  3533. Part282.Size = Vector3.new(0.599999905, 0.800000012, 1.60000014)
  3534. Part282.CFrame = CFrame.new(35.9089355, 5.57744217, 16.8994141, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3535. Part282.BottomSurface = Enum.SurfaceType.Smooth
  3536. Part282.TopSurface = Enum.SurfaceType.Smooth
  3537. Part282.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3538. Part282.Position = Vector3.new(35.9089355, 5.57744217, 16.8994141)
  3539. Part282.Orientation = Vector3.new(0, -90, 0)
  3540. Part282.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3541. WedgePart283.Name = "Part"
  3542. WedgePart283.Parent = Model43
  3543. WedgePart283.BrickColor = BrickColor.new("Dark stone grey")
  3544. WedgePart283.Rotation = Vector3.new(-90, -90, 0)
  3545. WedgePart283.Anchored = true
  3546. WedgePart283.FormFactor = Enum.FormFactor.Custom
  3547. WedgePart283.Size = Vector3.new(1, 1.60000002, 1.60000002)
  3548. WedgePart283.CFrame = CFrame.new(35.9088135, 5.47746992, 15.7993164, 7.4505806e-09, 1.1920929e-07, -1.00000012, 1.00000012, 0, 1.1920929e-07, 1.1920929e-07, -1.00000012, -2.38418579e-07)
  3549. WedgePart283.BottomSurface = Enum.SurfaceType.Smooth
  3550. WedgePart283.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3551. WedgePart283.Position = Vector3.new(35.9088135, 5.47746992, 15.7993164)
  3552. WedgePart283.Orientation = Vector3.new(0, -90, 90)
  3553. WedgePart283.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3554. WedgePart284.Name = "Part"
  3555. WedgePart284.Parent = Model43
  3556. WedgePart284.BrickColor = BrickColor.new("Dark stone grey")
  3557. WedgePart284.Rotation = Vector3.new(-90, 0, 90)
  3558. WedgePart284.Anchored = true
  3559. WedgePart284.CanCollide = false
  3560. WedgePart284.FormFactor = Enum.FormFactor.Custom
  3561. WedgePart284.Size = Vector3.new(10, 1.60000002, 0.50000006)
  3562. WedgePart284.CFrame = CFrame.new(33.2089844, 5.22753, 19.9995117, 0, -0.99999994, -1.13248825e-06, 5.96046448e-08, -1.07288361e-06, 0.99999994, -0.99999994, 5.96046448e-08, 1.1920929e-07)
  3563. WedgePart284.BottomSurface = Enum.SurfaceType.Smooth
  3564. WedgePart284.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3565. WedgePart284.Position = Vector3.new(33.2089844, 5.22753, 19.9995117)
  3566. WedgePart284.Orientation = Vector3.new(-89.9799957, -83.9899979, 176.819992)
  3567. WedgePart284.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3568. Part285.Parent = Model43
  3569. Part285.BrickColor = BrickColor.new("Dark stone grey")
  3570. Part285.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3571. Part285.Anchored = true
  3572. Part285.FormFactor = Enum.FormFactor.Custom
  3573. Part285.Size = Vector3.new(0.599999905, 0.800000012, 1.60000014)
  3574. Part285.CFrame = CFrame.new(35.9089355, 5.57744217, 23.0996094, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3575. Part285.BottomSurface = Enum.SurfaceType.Smooth
  3576. Part285.TopSurface = Enum.SurfaceType.Smooth
  3577. Part285.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3578. Part285.Position = Vector3.new(35.9089355, 5.57744217, 23.0996094)
  3579. Part285.Orientation = Vector3.new(0, -90, 0)
  3580. Part285.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3581. Part286.Parent = Model43
  3582. Part286.BrickColor = BrickColor.new("Black")
  3583. Part286.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3584. Part286.Anchored = true
  3585. Part286.FormFactor = Enum.FormFactor.Custom
  3586. Part286.Size = Vector3.new(0.600000024, 0.200000018, 1.30000007)
  3587. Part286.CFrame = CFrame.new(34.2089844, 6.07750416, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3588. Part286.BottomSurface = Enum.SurfaceType.Smooth
  3589. Part286.TopSurface = Enum.SurfaceType.Smooth
  3590. Part286.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3591. Part286.Position = Vector3.new(34.2089844, 6.07750416, 19.9995117)
  3592. Part286.Orientation = Vector3.new(0, -90, 0)
  3593. Part286.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3594. Part287.Parent = Model43
  3595. Part287.BrickColor = BrickColor.new("Black")
  3596. Part287.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3597. Part287.Anchored = true
  3598. Part287.CanCollide = false
  3599. Part287.FormFactor = Enum.FormFactor.Custom
  3600. Part287.Size = Vector3.new(2.89999986, 0.200000018, 2.89999986)
  3601. Part287.CFrame = CFrame.new(32.30896, 6.07744217, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3602. Part287.BottomSurface = Enum.SurfaceType.Smooth
  3603. Part287.TopSurface = Enum.SurfaceType.Smooth
  3604. Part287.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3605. Part287.Position = Vector3.new(32.30896, 6.07744217, 19.9995117)
  3606. Part287.Orientation = Vector3.new(0, -90, 0)
  3607. Part287.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3608. CylinderMesh288.Parent = Part287
  3609. Part289.Parent = Model43
  3610. Part289.BrickColor = BrickColor.new("Dark stone grey")
  3611. Part289.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  3612. Part289.Anchored = true
  3613. Part289.FormFactor = Enum.FormFactor.Custom
  3614. Part289.Size = Vector3.new(4.0999999, 0.600000024, 4.0999999)
  3615. Part289.CFrame = CFrame.new(32.30896, 5.77739286, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  3616. Part289.BottomSurface = Enum.SurfaceType.Smooth
  3617. Part289.TopSurface = Enum.SurfaceType.Smooth
  3618. Part289.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3619. Part289.Position = Vector3.new(32.30896, 5.77739286, 19.9995117)
  3620. Part289.Orientation = Vector3.new(0, -90, 0)
  3621. Part289.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3622. CylinderMesh290.Parent = Part289
  3623. Model291.Name = "BackRight"
  3624. Model291.Parent = Model0
  3625. Part292.Name = "BackRight"
  3626. Part292.Parent = Model291
  3627. Part292.BrickColor = BrickColor.new("Dark stone grey")
  3628. Part292.Rotation = Vector3.new(-90, 0, 0)
  3629. Part292.Anchored = true
  3630. Part292.CanCollide = false
  3631. Part292.FormFactor = Enum.FormFactor.Custom
  3632. Part292.Size = Vector3.new(0.699999988, 0.300000012, 0.699999988)
  3633. Part292.CFrame = CFrame.new(33.4407959, 3.21001291, 14.6997061, 1, -8.74227766e-08, 0, 0, 1.7881392e-07, 0.999999881, -8.74227766e-08, -0.999999881, 1.78813934e-07)
  3634. Part292.BottomSurface = Enum.SurfaceType.Smooth
  3635. Part292.TopSurface = Enum.SurfaceType.Smooth
  3636. Part292.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3637. Part292.Position = Vector3.new(33.4407959, 3.21001291, 14.6997061)
  3638. Part292.Orientation = Vector3.new(-89.9700012, 0, 0)
  3639. Part292.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3640. CylinderMesh293.Parent = Part292
  3641. Part294.Name = "BackRight"
  3642. Part294.Parent = Model291
  3643. Part294.Rotation = Vector3.new(-90, 0, 0)
  3644. Part294.Anchored = true
  3645. Part294.CanCollide = false
  3646. Part294.FormFactor = Enum.FormFactor.Custom
  3647. Part294.Size = Vector3.new(1, 0.699999988, 1)
  3648. Part294.CFrame = CFrame.new(33.4407959, 3.21001291, 14.9497061, 1, -8.74227766e-08, 0, 0, 1.7881392e-07, 0.999999881, -8.74227766e-08, -0.999999881, 1.78813934e-07)
  3649. Part294.BottomSurface = Enum.SurfaceType.Smooth
  3650. Part294.TopSurface = Enum.SurfaceType.Smooth
  3651. Part294.Position = Vector3.new(33.4407959, 3.21001291, 14.9497061)
  3652. Part294.Orientation = Vector3.new(-89.9700012, 0, 0)
  3653. CylinderMesh295.Parent = Part294
  3654. Part296.Name = "BackRight"
  3655. Part296.Parent = Model291
  3656. Part296.BrickColor = BrickColor.new("Black")
  3657. Part296.Rotation = Vector3.new(90, 70, 180)
  3658. Part296.Anchored = true
  3659. Part296.CanCollide = false
  3660. Part296.FormFactor = Enum.FormFactor.Symmetric
  3661. Part296.Size = Vector3.new(1, 1, 1)
  3662. Part296.CFrame = CFrame.new(32.9409142, 2.7100749, 15.4995117, -0.342020392, -5.96046448e-08, 0.939692676, -0.939692676, 0, -0.342020273, -5.96046448e-08, -1.00000012, -2.38418579e-07)
  3663. Part296.BottomSurface = Enum.SurfaceType.Smooth
  3664. Part296.TopSurface = Enum.SurfaceType.Smooth
  3665. Part296.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3666. Part296.Position = Vector3.new(32.9409142, 2.7100749, 15.4995117)
  3667. Part296.Orientation = Vector3.new(20, 90, -90)
  3668. Part296.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3669. SpecialMesh297.Parent = Part296
  3670. SpecialMesh297.MeshId = "http://www.roblox.com/asset/?id=1078075"
  3671. SpecialMesh297.Scale = Vector3.new(4, 2, 4)
  3672. SpecialMesh297.MeshType = Enum.MeshType.FileMesh
  3673. SpecialMesh297.Scale = Vector3.new(4, 2, 4)
  3674. Part298.Name = "BackRight"
  3675. Part298.Parent = Model291
  3676. Part298.BrickColor = BrickColor.new("Black")
  3677. Part298.Rotation = Vector3.new(-90, 90, 0)
  3678. Part298.Anchored = true
  3679. Part298.CanCollide = false
  3680. Part298.FormFactor = Enum.FormFactor.Symmetric
  3681. Part298.Size = Vector3.new(1, 1, 1)
  3682. Part298.CFrame = CFrame.new(32.9409142, 2.7100749, 15.2993164, 0, -1.19209282e-07, 1, -1, 1.1920929e-07, 0, -1.1920929e-07, -1, -1.1920929e-07)
  3683. Part298.BottomSurface = Enum.SurfaceType.Smooth
  3684. Part298.TopSurface = Enum.SurfaceType.Smooth
  3685. Part298.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3686. Part298.Position = Vector3.new(32.9409142, 2.7100749, 15.2993164)
  3687. Part298.Orientation = Vector3.new(0, 90, -90)
  3688. Part298.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3689. SpecialMesh299.Parent = Part298
  3690. SpecialMesh299.MeshId = "http://www.roblox.com/asset/?id=1078075"
  3691. SpecialMesh299.Scale = Vector3.new(4, 2, 4)
  3692. SpecialMesh299.MeshType = Enum.MeshType.FileMesh
  3693. SpecialMesh299.Scale = Vector3.new(4, 2, 4)
  3694. Part300.Name = "BackRight"
  3695. Part300.Parent = Model291
  3696. Part300.BrickColor = BrickColor.new("Dark stone grey")
  3697. Part300.Anchored = true
  3698. Part300.CanCollide = false
  3699. Part300.FormFactor = Enum.FormFactor.Symmetric
  3700. Part300.Size = Vector3.new(1, 1, 1)
  3701. Part300.CFrame = CFrame.new(32.9409142, 2.7100749, 14.6997061, 1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, 1)
  3702. Part300.BottomSurface = Enum.SurfaceType.Smooth
  3703. Part300.TopSurface = Enum.SurfaceType.Smooth
  3704. Part300.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3705. Part300.Position = Vector3.new(32.9409142, 2.7100749, 14.6997061)
  3706. Part300.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3707. SpecialMesh301.Parent = Part300
  3708. SpecialMesh301.MeshId = "http://www.roblox.com/asset/?id=85737661"
  3709. SpecialMesh301.Scale = Vector3.new(2, 2, 0.5)
  3710. SpecialMesh301.MeshType = Enum.MeshType.FileMesh
  3711. SpecialMesh301.Scale = Vector3.new(2, 2, 0.5)
  3712. Part302.Name = "BackRight"
  3713. Part302.Parent = Model291
  3714. Part302.BrickColor = BrickColor.new("Black")
  3715. Part302.Rotation = Vector3.new(90, 0, 0)
  3716. Part302.Anchored = true
  3717. Part302.CanCollide = false
  3718. Part302.FormFactor = Enum.FormFactor.Symmetric
  3719. Part302.Size = Vector3.new(1, 2, 1)
  3720. Part302.CFrame = CFrame.new(32.9409142, 2.7100749, 16.0996056, 1, 8.74227766e-08, 0, 0, 1.78813934e-07, -0.999999881, -8.74227766e-08, 0.999999881, 1.78813934e-07)
  3721. Part302.BottomSurface = Enum.SurfaceType.Smooth
  3722. Part302.TopSurface = Enum.SurfaceType.Smooth
  3723. Part302.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3724. Part302.Position = Vector3.new(32.9409142, 2.7100749, 16.0996056)
  3725. Part302.Orientation = Vector3.new(89.9700012, 0, 0)
  3726. Part302.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3727. SpecialMesh303.Parent = Part302
  3728. SpecialMesh303.MeshId = "http://www.roblox.com/asset/?id=29873142"
  3729. SpecialMesh303.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  3730. SpecialMesh303.MeshType = Enum.MeshType.FileMesh
  3731. SpecialMesh303.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  3732. Part304.Name = "Wheel"
  3733. Part304.Parent = Model291
  3734. Part304.BrickColor = BrickColor.new("Black")
  3735. Part304.Transparency = 1
  3736. Part304.Rotation = Vector3.new(0, -90, 0)
  3737. Part304.Anchored = true
  3738. Part304.FormFactor = Enum.FormFactor.Symmetric
  3739. Part304.Shape = Enum.PartType.Cylinder
  3740. Part304.Size = Vector3.new(5, 5, 5)
  3741. Part304.CFrame = CFrame.new(32.9997559, 2.7000041, 14.9990215, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3742. Part304.BottomSurface = Enum.SurfaceType.Smooth
  3743. Part304.RightSurface = Enum.SurfaceType.Hinge
  3744. Part304.TopSurface = Enum.SurfaceType.Smooth
  3745. Part304.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3746. Part304.Position = Vector3.new(32.9997559, 2.7000041, 14.9990215)
  3747. Part304.Orientation = Vector3.new(0, -90, 0)
  3748. Part304.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3749. Script305.Name = "WeldScript"
  3750. Script305.Parent = Model291
  3751. Script305.Disabled = true
  3752. table.insert(cors,sandbox(Script305,function()
  3753. local BrickTable = {}
  3754.  
  3755. function RecursiveGeneric(Parent, Func, ClassLimit)
  3756. for _, Child in pairs(Parent:GetChildren()) do
  3757. if not ClassLimit or Child:IsA(ClassLimit) then
  3758. Func(Child)
  3759. end
  3760. RecursiveGeneric(Child, Func, ClassLimit)
  3761. end
  3762. end
  3763.  
  3764. RecursiveGeneric(
  3765. script.Parent,
  3766. function(Brick) table.insert(BrickTable, Brick) end,
  3767. "BasePart"
  3768. )
  3769.  
  3770. local Base = BrickTable[1]
  3771. table.remove(BrickTable, 1)
  3772.  
  3773. for _, Part in pairs(BrickTable) do
  3774. local Weld = Instance.new("Weld")
  3775. Weld.Part0 = Base
  3776. Weld.Part1 = Part
  3777. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  3778. Weld.Parent = Base
  3779. Part.Anchored = false
  3780. end
  3781.  
  3782. Base.Anchored = false
  3783. end))
  3784. Model306.Name = "FrontRight"
  3785. Model306.Parent = Model0
  3786. Part307.Name = "FrontRight"
  3787. Part307.Parent = Model306
  3788. Part307.BrickColor = BrickColor.new("Dark stone grey")
  3789. Part307.Rotation = Vector3.new(-90, 0, 0)
  3790. Part307.Anchored = true
  3791. Part307.CanCollide = false
  3792. Part307.FormFactor = Enum.FormFactor.Custom
  3793. Part307.Size = Vector3.new(0.699999988, 0.300000012, 0.699999988)
  3794. Part307.CFrame = CFrame.new(19.4407959, 3.20995212, 14.6997061, 1, -8.74227766e-08, 0, 0, 1.7881392e-07, 0.999999881, -8.74227766e-08, -0.999999881, 1.78813934e-07)
  3795. Part307.BottomSurface = Enum.SurfaceType.Smooth
  3796. Part307.TopSurface = Enum.SurfaceType.Smooth
  3797. Part307.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3798. Part307.Position = Vector3.new(19.4407959, 3.20995212, 14.6997061)
  3799. Part307.Orientation = Vector3.new(-89.9700012, 0, 0)
  3800. Part307.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3801. CylinderMesh308.Parent = Part307
  3802. Part309.Name = "FrontRight"
  3803. Part309.Parent = Model306
  3804. Part309.Rotation = Vector3.new(-90, 0, 0)
  3805. Part309.Anchored = true
  3806. Part309.CanCollide = false
  3807. Part309.FormFactor = Enum.FormFactor.Custom
  3808. Part309.Size = Vector3.new(1, 0.699999988, 1)
  3809. Part309.CFrame = CFrame.new(19.4407959, 3.20995212, 14.9497061, 1, -8.74227766e-08, 0, 0, 1.7881392e-07, 0.999999881, -8.74227766e-08, -0.999999881, 1.78813934e-07)
  3810. Part309.BottomSurface = Enum.SurfaceType.Smooth
  3811. Part309.TopSurface = Enum.SurfaceType.Smooth
  3812. Part309.Position = Vector3.new(19.4407959, 3.20995212, 14.9497061)
  3813. Part309.Orientation = Vector3.new(-89.9700012, 0, 0)
  3814. CylinderMesh310.Parent = Part309
  3815. Part311.Name = "FrontRight"
  3816. Part311.Parent = Model306
  3817. Part311.BrickColor = BrickColor.new("Dark stone grey")
  3818. Part311.Anchored = true
  3819. Part311.CanCollide = false
  3820. Part311.FormFactor = Enum.FormFactor.Symmetric
  3821. Part311.Size = Vector3.new(1, 1, 1)
  3822. Part311.CFrame = CFrame.new(18.9406738, 2.71001291, 14.6997061, 1, 0, 8.74227766e-08, 0, 1, 0, -8.74227766e-08, 0, 1)
  3823. Part311.BottomSurface = Enum.SurfaceType.Smooth
  3824. Part311.TopSurface = Enum.SurfaceType.Smooth
  3825. Part311.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3826. Part311.Position = Vector3.new(18.9406738, 2.71001291, 14.6997061)
  3827. Part311.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3828. SpecialMesh312.Parent = Part311
  3829. SpecialMesh312.MeshId = "http://www.roblox.com/asset/?id=85737661"
  3830. SpecialMesh312.Scale = Vector3.new(2, 2, 0.5)
  3831. SpecialMesh312.MeshType = Enum.MeshType.FileMesh
  3832. SpecialMesh312.Scale = Vector3.new(2, 2, 0.5)
  3833. Part313.Name = "FrontRight"
  3834. Part313.Parent = Model306
  3835. Part313.BrickColor = BrickColor.new("Black")
  3836. Part313.Rotation = Vector3.new(-90, 90, 0)
  3837. Part313.Anchored = true
  3838. Part313.CanCollide = false
  3839. Part313.FormFactor = Enum.FormFactor.Symmetric
  3840. Part313.Size = Vector3.new(1, 1, 1)
  3841. Part313.CFrame = CFrame.new(18.9406738, 2.71001291, 15.2993164, 0, -1.19209282e-07, 1, -1, 1.1920929e-07, 0, -1.1920929e-07, -1, -1.1920929e-07)
  3842. Part313.BottomSurface = Enum.SurfaceType.Smooth
  3843. Part313.TopSurface = Enum.SurfaceType.Smooth
  3844. Part313.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3845. Part313.Position = Vector3.new(18.9406738, 2.71001291, 15.2993164)
  3846. Part313.Orientation = Vector3.new(0, 90, -90)
  3847. Part313.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3848. SpecialMesh314.Parent = Part313
  3849. SpecialMesh314.MeshId = "http://www.roblox.com/asset/?id=1078075"
  3850. SpecialMesh314.Scale = Vector3.new(4, 2, 4)
  3851. SpecialMesh314.MeshType = Enum.MeshType.FileMesh
  3852. SpecialMesh314.Scale = Vector3.new(4, 2, 4)
  3853. Part315.Name = "FrontRight"
  3854. Part315.Parent = Model306
  3855. Part315.BrickColor = BrickColor.new("Black")
  3856. Part315.Rotation = Vector3.new(90, 70, 180)
  3857. Part315.Anchored = true
  3858. Part315.CanCollide = false
  3859. Part315.FormFactor = Enum.FormFactor.Symmetric
  3860. Part315.Size = Vector3.new(1, 1, 1)
  3861. Part315.CFrame = CFrame.new(18.9406738, 2.71001291, 15.4995117, -0.342020392, -5.96046448e-08, 0.939692676, -0.939692676, 0, -0.342020273, -5.96046448e-08, -1.00000012, -2.38418579e-07)
  3862. Part315.BottomSurface = Enum.SurfaceType.Smooth
  3863. Part315.TopSurface = Enum.SurfaceType.Smooth
  3864. Part315.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3865. Part315.Position = Vector3.new(18.9406738, 2.71001291, 15.4995117)
  3866. Part315.Orientation = Vector3.new(20, 90, -90)
  3867. Part315.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3868. SpecialMesh316.Parent = Part315
  3869. SpecialMesh316.MeshId = "http://www.roblox.com/asset/?id=1078075"
  3870. SpecialMesh316.Scale = Vector3.new(4, 2, 4)
  3871. SpecialMesh316.MeshType = Enum.MeshType.FileMesh
  3872. SpecialMesh316.Scale = Vector3.new(4, 2, 4)
  3873. Part317.Name = "FrontRight"
  3874. Part317.Parent = Model306
  3875. Part317.BrickColor = BrickColor.new("Black")
  3876. Part317.Rotation = Vector3.new(90, 0, 0)
  3877. Part317.Anchored = true
  3878. Part317.CanCollide = false
  3879. Part317.FormFactor = Enum.FormFactor.Symmetric
  3880. Part317.Size = Vector3.new(1, 2, 1)
  3881. Part317.CFrame = CFrame.new(18.9406738, 2.71001291, 16.0996056, 1, 8.74227766e-08, 0, 0, 1.78813934e-07, -0.999999881, -8.74227766e-08, 0.999999881, 1.78813934e-07)
  3882. Part317.BottomSurface = Enum.SurfaceType.Smooth
  3883. Part317.TopSurface = Enum.SurfaceType.Smooth
  3884. Part317.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3885. Part317.Position = Vector3.new(18.9406738, 2.71001291, 16.0996056)
  3886. Part317.Orientation = Vector3.new(89.9700012, 0, 0)
  3887. Part317.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3888. SpecialMesh318.Parent = Part317
  3889. SpecialMesh318.MeshId = "http://www.roblox.com/asset/?id=29873142"
  3890. SpecialMesh318.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  3891. SpecialMesh318.MeshType = Enum.MeshType.FileMesh
  3892. SpecialMesh318.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  3893. Part319.Name = "Wheel"
  3894. Part319.Parent = Model306
  3895. Part319.BrickColor = BrickColor.new("Black")
  3896. Part319.Transparency = 1
  3897. Part319.Rotation = Vector3.new(0, -90, 0)
  3898. Part319.Anchored = true
  3899. Part319.FormFactor = Enum.FormFactor.Symmetric
  3900. Part319.Shape = Enum.PartType.Cylinder
  3901. Part319.Size = Vector3.new(5, 5, 5)
  3902. Part319.CFrame = CFrame.new(19, 2.7000041, 14.9990215, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  3903. Part319.BottomSurface = Enum.SurfaceType.Smooth
  3904. Part319.RightSurface = Enum.SurfaceType.Hinge
  3905. Part319.TopSurface = Enum.SurfaceType.Smooth
  3906. Part319.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3907. Part319.Position = Vector3.new(19, 2.7000041, 14.9990215)
  3908. Part319.Orientation = Vector3.new(0, -90, 0)
  3909. Part319.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3910. Script320.Name = "WeldScript"
  3911. Script320.Parent = Model306
  3912. Script320.Disabled = true
  3913. table.insert(cors,sandbox(Script320,function()
  3914. local BrickTable = {}
  3915.  
  3916. function RecursiveGeneric(Parent, Func, ClassLimit)
  3917. for _, Child in pairs(Parent:GetChildren()) do
  3918. if not ClassLimit or Child:IsA(ClassLimit) then
  3919. Func(Child)
  3920. end
  3921. RecursiveGeneric(Child, Func, ClassLimit)
  3922. end
  3923. end
  3924.  
  3925. RecursiveGeneric(
  3926. script.Parent,
  3927. function(Brick) table.insert(BrickTable, Brick) end,
  3928. "BasePart"
  3929. )
  3930.  
  3931. local Base = BrickTable[1]
  3932. table.remove(BrickTable, 1)
  3933.  
  3934. for _, Part in pairs(BrickTable) do
  3935. local Weld = Instance.new("Weld")
  3936. Weld.Part0 = Base
  3937. Weld.Part1 = Part
  3938. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  3939. Weld.Parent = Base
  3940. Part.Anchored = false
  3941. end
  3942.  
  3943. Base.Anchored = false
  3944. end))
  3945. Model321.Name = "FrontLeft"
  3946. Model321.Parent = Model0
  3947. Part322.Name = "FrontLeft"
  3948. Part322.Parent = Model321
  3949. Part322.Rotation = Vector3.new(-90, 0, -180)
  3950. Part322.Anchored = true
  3951. Part322.CanCollide = false
  3952. Part322.FormFactor = Enum.FormFactor.Custom
  3953. Part322.Size = Vector3.new(1, 0.699999988, 1)
  3954. Part322.CFrame = CFrame.new(18.5, 3.21001291, 25.0493164, -0.999999762, 0, 0, 7.4505806e-09, 5.96046448e-08, 0.999999881, -0, 0.999999881, 1.78813934e-07)
  3955. Part322.BottomSurface = Enum.SurfaceType.Smooth
  3956. Part322.TopSurface = Enum.SurfaceType.Smooth
  3957. Part322.Position = Vector3.new(18.5, 3.21001291, 25.0493164)
  3958. Part322.Orientation = Vector3.new(-89.9700012, 0, 7.12999964)
  3959. CylinderMesh323.Parent = Part322
  3960. Part324.Name = "FrontLeft"
  3961. Part324.Parent = Model321
  3962. Part324.BrickColor = BrickColor.new("Dark stone grey")
  3963. Part324.Rotation = Vector3.new(-90, 0, -180)
  3964. Part324.Anchored = true
  3965. Part324.CanCollide = false
  3966. Part324.FormFactor = Enum.FormFactor.Custom
  3967. Part324.Size = Vector3.new(0.699999988, 0.300000012, 0.699999988)
  3968. Part324.CFrame = CFrame.new(18.5, 3.21001291, 25.2993164, -0.999999762, 0, 0, 7.4505806e-09, 5.96046448e-08, 0.999999881, -0, 0.999999881, 1.78813934e-07)
  3969. Part324.BottomSurface = Enum.SurfaceType.Smooth
  3970. Part324.TopSurface = Enum.SurfaceType.Smooth
  3971. Part324.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3972. Part324.Position = Vector3.new(18.5, 3.21001291, 25.2993164)
  3973. Part324.Orientation = Vector3.new(-89.9700012, 0, 7.12999964)
  3974. Part324.Color = Color3.new(0.388235, 0.372549, 0.384314)
  3975. CylinderMesh325.Parent = Part324
  3976. Part326.Name = "FrontLeft"
  3977. Part326.Parent = Model321
  3978. Part326.BrickColor = BrickColor.new("Black")
  3979. Part326.Rotation = Vector3.new(90, -70, 0)
  3980. Part326.Anchored = true
  3981. Part326.CanCollide = false
  3982. Part326.FormFactor = Enum.FormFactor.Symmetric
  3983. Part326.Size = Vector3.new(1, 1, 1)
  3984. Part326.CFrame = CFrame.new(19, 2.7100749, 24.4995117, 0.342020273, -2.98023224e-08, -0.939692616, -0.939692616, 5.96046448e-08, -0.342020333, 1.1920929e-07, 1, 0)
  3985. Part326.BottomSurface = Enum.SurfaceType.Smooth
  3986. Part326.TopSurface = Enum.SurfaceType.Smooth
  3987. Part326.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3988. Part326.Position = Vector3.new(19, 2.7100749, 24.4995117)
  3989. Part326.Orientation = Vector3.new(20, -90, -90)
  3990. Part326.Color = Color3.new(0.105882, 0.164706, 0.207843)
  3991. SpecialMesh327.Parent = Part326
  3992. SpecialMesh327.MeshId = "http://www.roblox.com/asset/?id=1078075"
  3993. SpecialMesh327.Scale = Vector3.new(4, 2, 4)
  3994. SpecialMesh327.MeshType = Enum.MeshType.FileMesh
  3995. SpecialMesh327.Scale = Vector3.new(4, 2, 4)
  3996. Part328.Name = "FrontLeft"
  3997. Part328.Parent = Model321
  3998. Part328.BrickColor = BrickColor.new("Black")
  3999. Part328.Rotation = Vector3.new(90, 0, -180)
  4000. Part328.Anchored = true
  4001. Part328.CanCollide = false
  4002. Part328.FormFactor = Enum.FormFactor.Symmetric
  4003. Part328.Size = Vector3.new(1, 2, 1)
  4004. Part328.CFrame = CFrame.new(19, 2.7100749, 23.8994141, -1, 0, -0, 0, 0, -1, 0, -1, -0)
  4005. Part328.BottomSurface = Enum.SurfaceType.Smooth
  4006. Part328.TopSurface = Enum.SurfaceType.Smooth
  4007. Part328.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4008. Part328.Position = Vector3.new(19, 2.7100749, 23.8994141)
  4009. Part328.Orientation = Vector3.new(90, 180, 0)
  4010. Part328.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4011. SpecialMesh329.Parent = Part328
  4012. SpecialMesh329.MeshId = "http://www.roblox.com/asset/?id=29873142"
  4013. SpecialMesh329.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  4014. SpecialMesh329.MeshType = Enum.MeshType.FileMesh
  4015. SpecialMesh329.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  4016. Part330.Name = "FrontLeft"
  4017. Part330.Parent = Model321
  4018. Part330.BrickColor = BrickColor.new("Black")
  4019. Part330.Rotation = Vector3.new(-90, -89.9700012, 90)
  4020. Part330.Anchored = true
  4021. Part330.CanCollide = false
  4022. Part330.FormFactor = Enum.FormFactor.Symmetric
  4023. Part330.Size = Vector3.new(1, 1, 1)
  4024. Part330.CFrame = CFrame.new(19, 2.7100749, 24.6997089, 0, -1.1920929e-07, -0.999999881, -0.999999881, 2.38418579e-07, 1.11758709e-07, 1.1920929e-07, 0.999999881, -0)
  4025. Part330.BottomSurface = Enum.SurfaceType.Smooth
  4026. Part330.TopSurface = Enum.SurfaceType.Smooth
  4027. Part330.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4028. Part330.Position = Vector3.new(19, 2.7100749, 24.6997089)
  4029. Part330.Orientation = Vector3.new(0, -90, -90)
  4030. Part330.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4031. SpecialMesh331.Parent = Part330
  4032. SpecialMesh331.MeshId = "http://www.roblox.com/asset/?id=1078075"
  4033. SpecialMesh331.Scale = Vector3.new(4, 2, 4)
  4034. SpecialMesh331.MeshType = Enum.MeshType.FileMesh
  4035. SpecialMesh331.Scale = Vector3.new(4, 2, 4)
  4036. Part332.Name = "FrontLeft"
  4037. Part332.Parent = Model321
  4038. Part332.BrickColor = BrickColor.new("Dark stone grey")
  4039. Part332.Rotation = Vector3.new(-180, 0, -180)
  4040. Part332.Anchored = true
  4041. Part332.CanCollide = false
  4042. Part332.FormFactor = Enum.FormFactor.Symmetric
  4043. Part332.Size = Vector3.new(1, 1, 1)
  4044. Part332.CFrame = CFrame.new(19, 2.7100749, 25.2993164, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4045. Part332.BottomSurface = Enum.SurfaceType.Smooth
  4046. Part332.TopSurface = Enum.SurfaceType.Smooth
  4047. Part332.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4048. Part332.Position = Vector3.new(19, 2.7100749, 25.2993164)
  4049. Part332.Orientation = Vector3.new(0, 180, 0)
  4050. Part332.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4051. SpecialMesh333.Parent = Part332
  4052. SpecialMesh333.MeshId = "http://www.roblox.com/asset/?id=85737661"
  4053. SpecialMesh333.Scale = Vector3.new(2, 2, 0.5)
  4054. SpecialMesh333.MeshType = Enum.MeshType.FileMesh
  4055. SpecialMesh333.Scale = Vector3.new(2, 2, 0.5)
  4056. Part334.Name = "Wheel"
  4057. Part334.Parent = Model321
  4058. Part334.BrickColor = BrickColor.new("Black")
  4059. Part334.Transparency = 1
  4060. Part334.Rotation = Vector3.new(0, 90, 0)
  4061. Part334.Anchored = true
  4062. Part334.FormFactor = Enum.FormFactor.Symmetric
  4063. Part334.Shape = Enum.PartType.Cylinder
  4064. Part334.Size = Vector3.new(5, 5, 5)
  4065. Part334.CFrame = CFrame.new(19, 2.7000041, 24.9995117, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  4066. Part334.BottomSurface = Enum.SurfaceType.Smooth
  4067. Part334.RightSurface = Enum.SurfaceType.Hinge
  4068. Part334.TopSurface = Enum.SurfaceType.Smooth
  4069. Part334.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4070. Part334.Position = Vector3.new(19, 2.7000041, 24.9995117)
  4071. Part334.Orientation = Vector3.new(0, 90, 0)
  4072. Part334.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4073. Script335.Name = "WeldScript"
  4074. Script335.Parent = Model321
  4075. Script335.Disabled = true
  4076. table.insert(cors,sandbox(Script335,function()
  4077. local BrickTable = {}
  4078.  
  4079. function RecursiveGeneric(Parent, Func, ClassLimit)
  4080. for _, Child in pairs(Parent:GetChildren()) do
  4081. if not ClassLimit or Child:IsA(ClassLimit) then
  4082. Func(Child)
  4083. end
  4084. RecursiveGeneric(Child, Func, ClassLimit)
  4085. end
  4086. end
  4087.  
  4088. RecursiveGeneric(
  4089. script.Parent,
  4090. function(Brick) table.insert(BrickTable, Brick) end,
  4091. "BasePart"
  4092. )
  4093.  
  4094. local Base = BrickTable[1]
  4095. table.remove(BrickTable, 1)
  4096.  
  4097. for _, Part in pairs(BrickTable) do
  4098. local Weld = Instance.new("Weld")
  4099. Weld.Part0 = Base
  4100. Weld.Part1 = Part
  4101. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  4102. Weld.Parent = Base
  4103. Part.Anchored = false
  4104. end
  4105.  
  4106. Base.Anchored = false
  4107. end))
  4108. Model336.Name = "BackLeft"
  4109. Model336.Parent = Model0
  4110. Part337.Name = "Wheel"
  4111. Part337.Parent = Model336
  4112. Part337.BrickColor = BrickColor.new("Black")
  4113. Part337.Transparency = 1
  4114. Part337.Rotation = Vector3.new(0, 90, 0)
  4115. Part337.Anchored = true
  4116. Part337.FormFactor = Enum.FormFactor.Symmetric
  4117. Part337.Shape = Enum.PartType.Cylinder
  4118. Part337.Size = Vector3.new(5, 5, 5)
  4119. Part337.CFrame = CFrame.new(32.9997559, 2.7000041, 24.9995117, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  4120. Part337.BottomSurface = Enum.SurfaceType.Smooth
  4121. Part337.RightSurface = Enum.SurfaceType.Hinge
  4122. Part337.TopSurface = Enum.SurfaceType.Smooth
  4123. Part337.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4124. Part337.Position = Vector3.new(32.9997559, 2.7000041, 24.9995117)
  4125. Part337.Orientation = Vector3.new(0, 90, 0)
  4126. Part337.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4127. Part338.Name = "BackLeft"
  4128. Part338.Parent = Model336
  4129. Part338.BrickColor = BrickColor.new("Dark stone grey")
  4130. Part338.Rotation = Vector3.new(-180, 0, -180)
  4131. Part338.Anchored = true
  4132. Part338.CanCollide = false
  4133. Part338.FormFactor = Enum.FormFactor.Symmetric
  4134. Part338.Size = Vector3.new(1, 1, 1)
  4135. Part338.CFrame = CFrame.new(32.9998741, 2.71001291, 25.2993164, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  4136. Part338.BottomSurface = Enum.SurfaceType.Smooth
  4137. Part338.TopSurface = Enum.SurfaceType.Smooth
  4138. Part338.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4139. Part338.Position = Vector3.new(32.9998741, 2.71001291, 25.2993164)
  4140. Part338.Orientation = Vector3.new(0, 180, 0)
  4141. Part338.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4142. SpecialMesh339.Parent = Part338
  4143. SpecialMesh339.MeshId = "http://www.roblox.com/asset/?id=85737661"
  4144. SpecialMesh339.Scale = Vector3.new(2, 2, 0.5)
  4145. SpecialMesh339.MeshType = Enum.MeshType.FileMesh
  4146. SpecialMesh339.Scale = Vector3.new(2, 2, 0.5)
  4147. Part340.Name = "BackLeft"
  4148. Part340.Parent = Model336
  4149. Part340.BrickColor = BrickColor.new("Black")
  4150. Part340.Rotation = Vector3.new(-90, -89.9700012, 90)
  4151. Part340.Anchored = true
  4152. Part340.CanCollide = false
  4153. Part340.FormFactor = Enum.FormFactor.Symmetric
  4154. Part340.Size = Vector3.new(1, 1, 1)
  4155. Part340.CFrame = CFrame.new(32.9998741, 2.71001291, 24.6997089, 0, -1.1920929e-07, -0.999999881, -0.999999881, 2.38418579e-07, 1.11758709e-07, 1.1920929e-07, 0.999999881, -0)
  4156. Part340.BottomSurface = Enum.SurfaceType.Smooth
  4157. Part340.TopSurface = Enum.SurfaceType.Smooth
  4158. Part340.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4159. Part340.Position = Vector3.new(32.9998741, 2.71001291, 24.6997089)
  4160. Part340.Orientation = Vector3.new(0, -90, -90)
  4161. Part340.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4162. SpecialMesh341.Parent = Part340
  4163. SpecialMesh341.MeshId = "http://www.roblox.com/asset/?id=1078075"
  4164. SpecialMesh341.Scale = Vector3.new(4, 2, 4)
  4165. SpecialMesh341.MeshType = Enum.MeshType.FileMesh
  4166. SpecialMesh341.Scale = Vector3.new(4, 2, 4)
  4167. Part342.Name = "BackLeft"
  4168. Part342.Parent = Model336
  4169. Part342.BrickColor = BrickColor.new("Black")
  4170. Part342.Rotation = Vector3.new(90, -70, 0)
  4171. Part342.Anchored = true
  4172. Part342.CanCollide = false
  4173. Part342.FormFactor = Enum.FormFactor.Symmetric
  4174. Part342.Size = Vector3.new(1, 1, 1)
  4175. Part342.CFrame = CFrame.new(32.9998741, 2.71001291, 24.4995117, 0.342020273, -2.98023224e-08, -0.939692616, -0.939692616, 5.96046448e-08, -0.342020333, 1.1920929e-07, 1, 0)
  4176. Part342.BottomSurface = Enum.SurfaceType.Smooth
  4177. Part342.TopSurface = Enum.SurfaceType.Smooth
  4178. Part342.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4179. Part342.Position = Vector3.new(32.9998741, 2.71001291, 24.4995117)
  4180. Part342.Orientation = Vector3.new(20, -90, -90)
  4181. Part342.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4182. SpecialMesh343.Parent = Part342
  4183. SpecialMesh343.MeshId = "http://www.roblox.com/asset/?id=1078075"
  4184. SpecialMesh343.Scale = Vector3.new(4, 2, 4)
  4185. SpecialMesh343.MeshType = Enum.MeshType.FileMesh
  4186. SpecialMesh343.Scale = Vector3.new(4, 2, 4)
  4187. Part344.Name = "BackLeft"
  4188. Part344.Parent = Model336
  4189. Part344.BrickColor = BrickColor.new("Dark stone grey")
  4190. Part344.Rotation = Vector3.new(-90, 0, -180)
  4191. Part344.Anchored = true
  4192. Part344.CanCollide = false
  4193. Part344.FormFactor = Enum.FormFactor.Custom
  4194. Part344.Size = Vector3.new(0.699999988, 0.300000012, 0.699999988)
  4195. Part344.CFrame = CFrame.new(32.5, 3.20995212, 25.2993164, -0.999999762, 0, 0, 7.4505806e-09, 5.96046448e-08, 0.999999881, -0, 0.999999881, 1.78813934e-07)
  4196. Part344.BottomSurface = Enum.SurfaceType.Smooth
  4197. Part344.TopSurface = Enum.SurfaceType.Smooth
  4198. Part344.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4199. Part344.Position = Vector3.new(32.5, 3.20995212, 25.2993164)
  4200. Part344.Orientation = Vector3.new(-89.9700012, 0, 7.12999964)
  4201. Part344.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4202. CylinderMesh345.Parent = Part344
  4203. Part346.Name = "BackLeft"
  4204. Part346.Parent = Model336
  4205. Part346.BrickColor = BrickColor.new("Black")
  4206. Part346.Rotation = Vector3.new(90, 0, -180)
  4207. Part346.Anchored = true
  4208. Part346.CanCollide = false
  4209. Part346.FormFactor = Enum.FormFactor.Symmetric
  4210. Part346.Size = Vector3.new(1, 2, 1)
  4211. Part346.CFrame = CFrame.new(32.9998741, 2.71001291, 23.8994141, -1, 0, -0, 0, 0, -1, 0, -1, -0)
  4212. Part346.BottomSurface = Enum.SurfaceType.Smooth
  4213. Part346.TopSurface = Enum.SurfaceType.Smooth
  4214. Part346.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4215. Part346.Position = Vector3.new(32.9998741, 2.71001291, 23.8994141)
  4216. Part346.Orientation = Vector3.new(90, 180, 0)
  4217. Part346.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4218. SpecialMesh347.Parent = Part346
  4219. SpecialMesh347.MeshId = "http://www.roblox.com/asset/?id=29873142"
  4220. SpecialMesh347.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  4221. SpecialMesh347.MeshType = Enum.MeshType.FileMesh
  4222. SpecialMesh347.Scale = Vector3.new(2.29999995, 0.800000012, 2.29999995)
  4223. Part348.Name = "BackLeft"
  4224. Part348.Parent = Model336
  4225. Part348.Rotation = Vector3.new(-90, 0, -180)
  4226. Part348.Anchored = true
  4227. Part348.CanCollide = false
  4228. Part348.FormFactor = Enum.FormFactor.Custom
  4229. Part348.Size = Vector3.new(1, 0.699999988, 1)
  4230. Part348.CFrame = CFrame.new(32.5, 3.20995212, 25.0493164, -0.999999762, 0, 0, 7.4505806e-09, 5.96046448e-08, 0.999999881, -0, 0.999999881, 1.78813934e-07)
  4231. Part348.BottomSurface = Enum.SurfaceType.Smooth
  4232. Part348.TopSurface = Enum.SurfaceType.Smooth
  4233. Part348.Position = Vector3.new(32.5, 3.20995212, 25.0493164)
  4234. Part348.Orientation = Vector3.new(-89.9700012, 0, 7.12999964)
  4235. CylinderMesh349.Parent = Part348
  4236. Script350.Name = "WeldScript"
  4237. Script350.Parent = Model336
  4238. Script350.Disabled = true
  4239. table.insert(cors,sandbox(Script350,function()
  4240. local BrickTable = {}
  4241.  
  4242. function RecursiveGeneric(Parent, Func, ClassLimit)
  4243. for _, Child in pairs(Parent:GetChildren()) do
  4244. if not ClassLimit or Child:IsA(ClassLimit) then
  4245. Func(Child)
  4246. end
  4247. RecursiveGeneric(Child, Func, ClassLimit)
  4248. end
  4249. end
  4250.  
  4251. RecursiveGeneric(
  4252. script.Parent,
  4253. function(Brick) table.insert(BrickTable, Brick) end,
  4254. "BasePart"
  4255. )
  4256.  
  4257. local Base = BrickTable[1]
  4258. table.remove(BrickTable, 1)
  4259.  
  4260. for _, Part in pairs(BrickTable) do
  4261. local Weld = Instance.new("Weld")
  4262. Weld.Part0 = Base
  4263. Weld.Part1 = Part
  4264. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  4265. Weld.Parent = Base
  4266. Part.Anchored = false
  4267. end
  4268.  
  4269. Base.Anchored = false
  4270. end))
  4271. Script351.Name = "Main"
  4272. Script351.Parent = Model0
  4273. table.insert(cors,sandbox(Script351,function()
  4274. local sp = script.Parent
  4275. local mainparts = script.Parent.Body.MainParts
  4276. local seat = mainparts.VehicleSeat
  4277. local backlight = mainparts.BackLight
  4278. local frontright = mainparts.FrontRightLight
  4279. local frontleft = mainparts.FrontLeftLight
  4280.  
  4281.  
  4282. seat.Changed:connect(function()
  4283. if seat.Throttle == -1 then
  4284. backlight.BrickColor = BrickColor.new("Bright red")
  4285. backlight.PointLight.Enabled = true
  4286. else backlight.BrickColor = BrickColor.new("Black")
  4287. backlight.PointLight.Enabled = false
  4288. end
  4289. if seat.Steer == 0 and seat.Throttle == 0 then
  4290. seat.EngineOn:Stop()
  4291. else
  4292. seat.EngineOn:Play()
  4293. end
  4294. end)
  4295.  
  4296. seat.ChildAdded:connect(function(cha)
  4297. if cha.Name ~= "SeatWeld" then return end
  4298. local player = game.Players:GetPlayerFromCharacter(cha.Part1.Parent);
  4299. if player then
  4300. CopyA = script.WarthogGui:Clone()
  4301. CopyA.Parent = player:FindFirstChild("PlayerGui")
  4302. Link = Instance.new("ObjectValue", CopyA.GuiScript)
  4303. Link.Value = seat
  4304. Link.Name = "ObjectLink"
  4305. CopyA.GuiScript.Disabled = false
  4306. end
  4307. player.Character.Humanoid.Changed:connect(function()
  4308. if not (player and player.Character and player.Character.Humanoid.Sit) then
  4309. CopyA:Destroy()
  4310. if player.Character ~= nil then
  4311. if player.Character.Torso:FindFirstChild("BodyGyro") ~= nil then
  4312. player.Character.Torso:FindFirstChild("BodyGyro"):Destroy()
  4313. end
  4314. end
  4315. end
  4316. end)
  4317. end)
  4318. end))
  4319. Model352.Name = "Turret"
  4320. Model352.Parent = Model0
  4321. Model353.Name = "Parts"
  4322. Model353.Parent = Model352
  4323. Part354.Name = "GunEngine"
  4324. Part354.Parent = Model353
  4325. Part354.Rotation = Vector3.new(89.9799957, 85, -89.9799957)
  4326. Part354.Anchored = true
  4327. Part354.CanCollide = false
  4328. Part354.FormFactor = Enum.FormFactor.Custom
  4329. Part354.Size = Vector3.new(1.0999999, 0.300000131, 2.60000014)
  4330. Part354.CFrame = CFrame.new(30.8564453, 10.5444164, 19.9995117, 2.32458096e-05, 0.0871549994, 0.996189833, -1.22934557e-06, 0.99619478, -0.0871549994, -0.999995112, 3.7252903e-07, 2.33054161e-05)
  4331. Part354.BottomSurface = Enum.SurfaceType.Smooth
  4332. Part354.TopSurface = Enum.SurfaceType.Smooth
  4333. Part354.Position = Vector3.new(30.8564453, 10.5444164, 19.9995117)
  4334. Part354.Orientation = Vector3.new(5, 90, 0)
  4335. Part355.Name = "Gun1"
  4336. Part355.Parent = Model353
  4337. Part355.BrickColor = BrickColor.new("Dark stone grey")
  4338. Part355.Rotation = Vector3.new(90, 85, 90)
  4339. Part355.Anchored = true
  4340. Part355.CanCollide = false
  4341. Part355.FormFactor = Enum.FormFactor.Custom
  4342. Part355.Size = Vector3.new(1.39999962, 0.50000006, 2.5)
  4343. Part355.CFrame = CFrame.new(28.8509521, 10.5693817, 19.8994141, 8.8817842e-16, -0.0871562809, 0.996194541, -8.94069672e-08, -0.996194601, -0.0871562883, 0.99999994, -9.68575478e-08, 1.1920929e-07)
  4344. Part355.BottomSurface = Enum.SurfaceType.Smooth
  4345. Part355.TopSurface = Enum.SurfaceType.Smooth
  4346. Part355.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4347. Part355.Position = Vector3.new(28.8509521, 10.5693817, 19.8994141)
  4348. Part355.Orientation = Vector3.new(5, 90, -180)
  4349. Part355.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4350. SpecialMesh356.Parent = Part355
  4351. SpecialMesh356.MeshId = "http://www.roblox.com/asset/?id=2806162"
  4352. SpecialMesh356.Scale = Vector3.new(0.600000024, 0.600000024, 1.20000005)
  4353. SpecialMesh356.MeshType = Enum.MeshType.FileMesh
  4354. SpecialMesh356.Scale = Vector3.new(0.600000024, 0.600000024, 1.20000005)
  4355. Sound357.Name = "Fire"
  4356. Sound357.Parent = Part355
  4357. Sound357.Pitch = 1.5
  4358. Sound357.SoundId = "http://www.roblox.com/asset/?id=2692806"
  4359. Sound357.Volume = 1
  4360. Script358.Name = "WeldScript"
  4361. Script358.Parent = Model353
  4362. Script358.Disabled = true
  4363. table.insert(cors,sandbox(Script358,function()
  4364. local BrickTable = {}
  4365.  
  4366. function RecursiveGeneric(Parent, Func, ClassLimit)
  4367. for _, Child in pairs(Parent:GetChildren()) do
  4368. if not ClassLimit or Child:IsA(ClassLimit) then
  4369. Func(Child)
  4370. end
  4371. RecursiveGeneric(Child, Func, ClassLimit)
  4372. end
  4373. end
  4374.  
  4375. RecursiveGeneric(
  4376. script.Parent,
  4377. function(Brick) table.insert(BrickTable, Brick) end,
  4378. "BasePart"
  4379. )
  4380.  
  4381. local Base = BrickTable[1]
  4382. table.remove(BrickTable, 1)
  4383.  
  4384. for _, Part in pairs(BrickTable) do
  4385. local Weld = Instance.new("Weld")
  4386. Weld.Part0 = Base
  4387. Weld.Part1 = Part
  4388. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  4389. Weld.Parent = Base
  4390. Part.Anchored = false
  4391. end
  4392.  
  4393. Base.Anchored = false
  4394. end))
  4395. Part359.Name = "SideRotation"
  4396. Part359.Parent = Model353
  4397. Part359.Transparency = 1
  4398. Part359.Rotation = Vector3.new(89.9799957, 85, -89.9799957)
  4399. Part359.Anchored = true
  4400. Part359.CanCollide = false
  4401. Part359.FormFactor = Enum.FormFactor.Custom
  4402. Part359.Size = Vector3.new(1.49999988, 1.50000024, 2.60000014)
  4403. Part359.CFrame = CFrame.new(30.9085693, 11.1421337, 19.9995117, 2.32458096e-05, 0.0871549994, 0.996189833, -1.22934557e-06, 0.99619478, -0.0871549994, -0.999995112, 3.7252903e-07, 2.33054161e-05)
  4404. Part359.BottomSurface = Enum.SurfaceType.Smooth
  4405. Part359.LeftSurface = Enum.SurfaceType.Hinge
  4406. Part359.TopSurface = Enum.SurfaceType.Smooth
  4407. Part359.Position = Vector3.new(30.9085693, 11.1421337, 19.9995117)
  4408. Part359.Orientation = Vector3.new(5, 90, 0)
  4409. Part360.Parent = Model353
  4410. Part360.Rotation = Vector3.new(-180, 0, -175)
  4411. Part360.Anchored = true
  4412. Part360.CanCollide = false
  4413. Part360.FormFactor = Enum.FormFactor.Custom
  4414. Part360.Size = Vector3.new(2.59999967, 0.50000006, 1.10000002)
  4415. Part360.CFrame = CFrame.new(30.8913574, 10.9428596, 19.9995117, -0.996194065, 0.0871558338, -3.55938326e-12, 0.0871558338, 0.99619472, 4.89997962e-13, 3.58854461e-12, 1.7791225e-13, -0.999999285)
  4416. Part360.BottomSurface = Enum.SurfaceType.Smooth
  4417. Part360.TopSurface = Enum.SurfaceType.Smooth
  4418. Part360.Position = Vector3.new(30.8913574, 10.9428596, 19.9995117)
  4419. Part360.Orientation = Vector3.new(0, -180, 5)
  4420. SpecialMesh361.Parent = Part360
  4421. SpecialMesh361.MeshType = Enum.MeshType.Torso
  4422. Part362.Parent = Model353
  4423. Part362.BrickColor = BrickColor.new("Dark stone grey")
  4424. Part362.Rotation = Vector3.new(-89.9899979, -85, -89.9899979)
  4425. Part362.Anchored = true
  4426. Part362.CanCollide = false
  4427. Part362.FormFactor = Enum.FormFactor.Custom
  4428. Part362.Size = Vector3.new(0.899999917, 1.10000014, 2.10000014)
  4429. Part362.CFrame = CFrame.new(30.7244873, 10.7566977, 19.9995117, 2.25901622e-05, 0.0871550664, -0.996190071, -1.21071957e-06, 0.99619478, 0.0871550664, 0.999995351, -3.53902578e-07, 2.25901604e-05)
  4430. Part362.BottomSurface = Enum.SurfaceType.Smooth
  4431. Part362.TopSurface = Enum.SurfaceType.Smooth
  4432. Part362.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4433. Part362.Position = Vector3.new(30.7244873, 10.7566977, 19.9995117)
  4434. Part362.Orientation = Vector3.new(-5, -90, 0)
  4435. Part362.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4436. Part363.Parent = Model353
  4437. Part363.BrickColor = BrickColor.new("Dark stone grey")
  4438. Part363.Rotation = Vector3.new(0, 0, 85)
  4439. Part363.Anchored = true
  4440. Part363.CanCollide = false
  4441. Part363.FormFactor = Enum.FormFactor.Custom
  4442. Part363.Size = Vector3.new(1.09999967, 0.50000006, 0.899999976)
  4443. Part363.CFrame = CFrame.new(29.4293213, 10.8701077, 19.9995117, 0.0871577933, -0.996193647, 2.10548939e-12, 0.996193647, 0.0871577933, 1.19433257e-11, -1.20813845e-11, 1.0565342e-12, 1)
  4444. Part363.BottomSurface = Enum.SurfaceType.Smooth
  4445. Part363.TopSurface = Enum.SurfaceType.Smooth
  4446. Part363.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4447. Part363.Position = Vector3.new(29.4293213, 10.8701077, 19.9995117)
  4448. Part363.Orientation = Vector3.new(0, 0, 85)
  4449. Part363.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4450. SpecialMesh364.Parent = Part363
  4451. SpecialMesh364.MeshType = Enum.MeshType.Torso
  4452. Part365.Parent = Model353
  4453. Part365.BrickColor = BrickColor.new("Dark stone grey")
  4454. Part365.Rotation = Vector3.new(89.9899979, 85, -89.9899979)
  4455. Part365.Anchored = true
  4456. Part365.FormFactor = Enum.FormFactor.Custom
  4457. Part365.Size = Vector3.new(0.200000048, 0.50000006, 2.5)
  4458. Part365.CFrame = CFrame.new(32.0543213, 11.0419159, 20.0996094, 2.20537186e-05, 0.0871556401, 0.99619019, -1.03190541e-06, 0.99619472, -0.0871556401, -0.99999553, 5.10364771e-07, 2.20537186e-05)
  4459. Part365.BottomSurface = Enum.SurfaceType.Smooth
  4460. Part365.TopSurface = Enum.SurfaceType.Smooth
  4461. Part365.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4462. Part365.Position = Vector3.new(32.0543213, 11.0419159, 20.0996094)
  4463. Part365.Orientation = Vector3.new(5, 90, 0)
  4464. Part365.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4465. SpecialMesh366.Parent = Part365
  4466. SpecialMesh366.MeshId = "http://www.roblox.com/asset/?id=2806162"
  4467. SpecialMesh366.Scale = Vector3.new(0.600000024, 0.600000024, 0.300000012)
  4468. SpecialMesh366.MeshType = Enum.MeshType.FileMesh
  4469. SpecialMesh366.Scale = Vector3.new(0.600000024, 0.600000024, 0.300000012)
  4470. Seat367.Parent = Model353
  4471. Seat367.BrickColor = BrickColor.new("Dark stone grey")
  4472. Seat367.Transparency = 1
  4473. Seat367.Rotation = Vector3.new(0, 89.9700012, 0)
  4474. Seat367.Anchored = true
  4475. Seat367.FormFactor = Enum.FormFactor.Custom
  4476. Seat367.Size = Vector3.new(0.899999976, 0.700000107, 1.89999998)
  4477. Seat367.CFrame = CFrame.new(33.3885498, 8.17375469, 19.9995117, 1.78813934e-07, 0, 0.999999881, 1.77635684e-15, 1, 0, -0.999999881, -1.73472348e-18, 1.78813934e-07)
  4478. Seat367.BottomSurface = Enum.SurfaceType.Weld
  4479. Seat367.TopSurface = Enum.SurfaceType.Smooth
  4480. Seat367.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4481. Seat367.Position = Vector3.new(33.3885498, 8.17375469, 19.9995117)
  4482. Seat367.Orientation = Vector3.new(0, 90, 0)
  4483. Seat367.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4484. Model368.Name = "Other"
  4485. Model368.Parent = Model352
  4486. Part369.Parent = Model368
  4487. Part369.BrickColor = BrickColor.new("Dark stone grey")
  4488. Part369.Rotation = Vector3.new(90, -80, 90)
  4489. Part369.Anchored = true
  4490. Part369.CanCollide = false
  4491. Part369.FormFactor = Enum.FormFactor.Custom
  4492. Part369.Size = Vector3.new(0.999999762, 0.200000003, 0.899999797)
  4493. Part369.CFrame = CFrame.new(30.7509766, 8.50657558, 19.9995117, 0, -0.173648179, -0.984807789, 0, 0.98480773, -0.173648179, 1, 0, 0)
  4494. Part369.BottomSurface = Enum.SurfaceType.Smooth
  4495. Part369.TopSurface = Enum.SurfaceType.Smooth
  4496. Part369.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4497. Part369.Position = Vector3.new(30.7509766, 8.50657558, 19.9995117)
  4498. Part369.Orientation = Vector3.new(10, -90, 0)
  4499. Part369.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4500. Part370.Parent = Model368
  4501. Part370.Rotation = Vector3.new(90, -55, 90)
  4502. Part370.Anchored = true
  4503. Part370.CanCollide = false
  4504. Part370.FormFactor = Enum.FormFactor.Custom
  4505. Part370.Size = Vector3.new(0.699999809, 2.79999995, 0.499999821)
  4506. Part370.CFrame = CFrame.new(31.9140625, 6.87413788, 19.9995117, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  4507. Part370.BottomSurface = Enum.SurfaceType.Smooth
  4508. Part370.TopSurface = Enum.SurfaceType.Smooth
  4509. Part370.Position = Vector3.new(31.9140625, 6.87413788, 19.9995117)
  4510. Part370.Orientation = Vector3.new(35, -90, 0)
  4511. Part371.Parent = Model368
  4512. Part371.Rotation = Vector3.new(90, -80, 90)
  4513. Part371.Anchored = true
  4514. Part371.FormFactor = Enum.FormFactor.Custom
  4515. Part371.Size = Vector3.new(0.699999809, 0.800000191, 0.499999821)
  4516. Part371.CFrame = CFrame.new(31.0830078, 8.31487083, 19.9995117, 0, -0.173648149, -0.984807789, 0, 0.98480773, -0.173648149, 1, 0, 0)
  4517. Part371.BottomSurface = Enum.SurfaceType.Smooth
  4518. Part371.TopSurface = Enum.SurfaceType.Smooth
  4519. Part371.Position = Vector3.new(31.0830078, 8.31487083, 19.9995117)
  4520. Part371.Orientation = Vector3.new(10, -90, 0)
  4521. Part372.Parent = Model368
  4522. Part372.Rotation = Vector3.new(90, -80, 90)
  4523. Part372.Anchored = true
  4524. Part372.FormFactor = Enum.FormFactor.Custom
  4525. Part372.Size = Vector3.new(0.699999571, 0.200000048, 0.5)
  4526. Part372.CFrame = CFrame.new(30.9962158, 8.80729771, 19.9995117, 0, -0.173648149, -0.984807789, 0, 0.98480773, -0.173648149, 1, 0, 0)
  4527. Part372.BottomSurface = Enum.SurfaceType.Smooth
  4528. Part372.TopSurface = Enum.SurfaceType.Smooth
  4529. Part372.Position = Vector3.new(30.9962158, 8.80729771, 19.9995117)
  4530. Part372.Orientation = Vector3.new(10, -90, 0)
  4531. SpecialMesh373.Parent = Part372
  4532. SpecialMesh373.MeshType = Enum.MeshType.Torso
  4533. Part374.Parent = Model368
  4534. Part374.BrickColor = BrickColor.new("Dark stone grey")
  4535. Part374.Rotation = Vector3.new(90, -80, 90)
  4536. Part374.Anchored = true
  4537. Part374.FormFactor = Enum.FormFactor.Custom
  4538. Part374.Size = Vector3.new(0.300000012, 1.00000024, 0.200000003)
  4539. Part374.CFrame = CFrame.new(30.8977051, 8.78990173, 19.9995117, 0, -0.173648149, -0.984807789, 0, 0.984807789, -0.173648149, 1, 0, 0)
  4540. Part374.BottomSurface = Enum.SurfaceType.Smooth
  4541. Part374.TopSurface = Enum.SurfaceType.Smooth
  4542. Part374.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4543. Part374.Position = Vector3.new(30.8977051, 8.78990173, 19.9995117)
  4544. Part374.Orientation = Vector3.new(10, -90, 0)
  4545. Part374.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4546. Part375.Parent = Model368
  4547. Part375.BrickColor = BrickColor.new("Dark stone grey")
  4548. Part375.Rotation = Vector3.new(0, 0, 85)
  4549. Part375.Anchored = true
  4550. Part375.FormFactor = Enum.FormFactor.Custom
  4551. Part375.Size = Vector3.new(1.19999957, 0.200000048, 0.700000048)
  4552. Part375.CFrame = CFrame.new(30.8497314, 10.4676304, 18.7001953, 0.0871565342, -0.996194661, 2.28951876e-06, 0.996194661, 0.0871565342, 3.31590036e-06, -3.50282858e-06, 1.99180363e-06, 1)
  4553. Part375.BottomSurface = Enum.SurfaceType.Smooth
  4554. Part375.TopSurface = Enum.SurfaceType.Smooth
  4555. Part375.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4556. Part375.Position = Vector3.new(30.8497314, 10.4676304, 18.7001953)
  4557. Part375.Orientation = Vector3.new(0, 0, 85)
  4558. Part375.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4559. SpecialMesh376.Parent = Part375
  4560. SpecialMesh376.MeshType = Enum.MeshType.Torso
  4561. Part377.Parent = Model368
  4562. Part377.BrickColor = BrickColor.new("Dark stone grey")
  4563. Part377.Rotation = Vector3.new(0, 0, 85)
  4564. Part377.Anchored = true
  4565. Part377.FormFactor = Enum.FormFactor.Custom
  4566. Part377.Size = Vector3.new(1.19999957, 0.200000048, 0.700000048)
  4567. Part377.CFrame = CFrame.new(30.8497314, 10.4676304, 21.2988281, 0.0871610045, -0.99619323, 9.03778528e-08, 0.99619323, 0.0871610045, -3.29178329e-06, 3.27137832e-06, 3.76945877e-07, 1)
  4568. Part377.BottomSurface = Enum.SurfaceType.Smooth
  4569. Part377.TopSurface = Enum.SurfaceType.Smooth
  4570. Part377.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4571. Part377.Position = Vector3.new(30.8497314, 10.4676304, 21.2988281)
  4572. Part377.Orientation = Vector3.new(0, 0, 85)
  4573. Part377.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4574. SpecialMesh378.Parent = Part377
  4575. SpecialMesh378.MeshType = Enum.MeshType.Torso
  4576. Part379.Parent = Model368
  4577. Part379.BrickColor = BrickColor.new("Dark stone grey")
  4578. Part379.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  4579. Part379.Anchored = true
  4580. Part379.FormFactor = Enum.FormFactor.Custom
  4581. Part379.Size = Vector3.new(2.5999999, 0.200000003, 2.5999999)
  4582. Part379.CFrame = CFrame.new(32.30896, 6.17742014, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  4583. Part379.BottomSurface = Enum.SurfaceType.Hinge
  4584. Part379.TopSurface = Enum.SurfaceType.Smooth
  4585. Part379.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4586. Part379.Position = Vector3.new(32.30896, 6.17742014, 19.9995117)
  4587. Part379.Orientation = Vector3.new(0, -90, 0)
  4588. Part379.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4589. CylinderMesh380.Parent = Part379
  4590. Part381.Name = "BaseRotation"
  4591. Part381.Parent = Model368
  4592. Part381.BrickColor = BrickColor.new("Dark stone grey")
  4593. Part381.Transparency = 1
  4594. Part381.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  4595. Part381.Anchored = true
  4596. Part381.CanCollide = false
  4597. Part381.FormFactor = Enum.FormFactor.Custom
  4598. Part381.Size = Vector3.new(1.40000033, 3.30000019, 1.10000014)
  4599. Part381.CFrame = CFrame.new(31.2089844, 10.427474, 21.4497089, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  4600. Part381.BottomSurface = Enum.SurfaceType.Weld
  4601. Part381.TopSurface = Enum.SurfaceType.Smooth
  4602. Part381.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4603. Part381.Position = Vector3.new(31.2089844, 10.427474, 21.4497089)
  4604. Part381.Orientation = Vector3.new(0, -90, 0)
  4605. Part381.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4606. Part382.Name = "BaseRotation"
  4607. Part382.Parent = Model368
  4608. Part382.BrickColor = BrickColor.new("Dark stone grey")
  4609. Part382.Transparency = 1
  4610. Part382.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  4611. Part382.Anchored = true
  4612. Part382.CanCollide = false
  4613. Part382.FormFactor = Enum.FormFactor.Custom
  4614. Part382.Size = Vector3.new(4.30000019, 2.70000005, 4.30000019)
  4615. Part382.CFrame = CFrame.new(32.30896, 7.42747879, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  4616. Part382.BottomSurface = Enum.SurfaceType.Hinge
  4617. Part382.TopSurface = Enum.SurfaceType.Smooth
  4618. Part382.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4619. Part382.Position = Vector3.new(32.30896, 7.42747879, 19.9995117)
  4620. Part382.Orientation = Vector3.new(0, -90, 0)
  4621. Part382.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4622. Part383.Name = "ColorPart"
  4623. Part383.Parent = Model368
  4624. Part383.BrickColor = BrickColor.new("Grime")
  4625. Part383.Rotation = Vector3.new(-90, -70, -180)
  4626. Part383.Anchored = true
  4627. Part383.FormFactor = Enum.FormFactor.Custom
  4628. Part383.Size = Vector3.new(1.0999999, 0.300000012, 0.200000003)
  4629. Part383.CFrame = CFrame.new(31.3918457, 11.8844404, 19.3627911, -0.342019588, 2.38418579e-07, -0.939692378, -0.939692378, 2.62260437e-06, 0.342019886, 2.2649765e-06, 0.999999702, -2.38418579e-07)
  4630. Part383.BottomSurface = Enum.SurfaceType.Smooth
  4631. Part383.TopSurface = Enum.SurfaceType.Smooth
  4632. Part383.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4633. Part383.Position = Vector3.new(31.3918457, 11.8844404, 19.3627911)
  4634. Part383.Orientation = Vector3.new(-20, -90, -90)
  4635. Part383.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4636. Part384.Parent = Model368
  4637. Part384.BrickColor = BrickColor.new("Dark stone grey")
  4638. Part384.Rotation = Vector3.new(-90, -85, -90)
  4639. Part384.Anchored = true
  4640. Part384.CanCollide = false
  4641. Part384.FormFactor = Enum.FormFactor.Custom
  4642. Part384.Size = Vector3.new(0.899999857, 1.10000014, 0.200000003)
  4643. Part384.CFrame = CFrame.new(31.0943604, 9.82090569, 19.9995117, 5.36441803e-07, 0.0871557221, -0.996194601, -1.49011612e-08, 0.99619472, 0.0871557295, 0.999999821, -1.49011612e-08, 5.36441803e-07)
  4644. Part384.BottomSurface = Enum.SurfaceType.Smooth
  4645. Part384.TopSurface = Enum.SurfaceType.Smooth
  4646. Part384.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4647. Part384.Position = Vector3.new(31.0943604, 9.82090569, 19.9995117)
  4648. Part384.Orientation = Vector3.new(-5, -90, 0)
  4649. Part384.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4650. Part385.Parent = Model368
  4651. Part385.Rotation = Vector3.new(-90, -85, -90)
  4652. Part385.Anchored = true
  4653. Part385.FormFactor = Enum.FormFactor.Custom
  4654. Part385.Size = Vector3.new(0.799999952, 0.300000161, 1.10000014)
  4655. Part385.CFrame = CFrame.new(31.6945801, 10.3707123, 20.3496094, 5.36441803e-07, 0.0871557221, -0.996194601, -1.49011612e-08, 0.99619472, 0.0871557295, 0.999999821, -1.49011612e-08, 5.36441803e-07)
  4656. Part385.BottomSurface = Enum.SurfaceType.Smooth
  4657. Part385.TopSurface = Enum.SurfaceType.Smooth
  4658. Part385.Position = Vector3.new(31.6945801, 10.3707123, 20.3496094)
  4659. Part385.Orientation = Vector3.new(-5, -90, 0)
  4660. Part386.Parent = Model368
  4661. Part386.BrickColor = BrickColor.new("Dark stone grey")
  4662. Part386.Rotation = Vector3.new(-90, -85, -90)
  4663. Part386.Anchored = true
  4664. Part386.FormFactor = Enum.FormFactor.Custom
  4665. Part386.Size = Vector3.new(0.200000003, 0.400000155, 1.20000017)
  4666. Part386.CFrame = CFrame.new(31.6945801, 10.3707123, 20.8496094, 5.36441803e-07, 0.0871557221, -0.996194601, -1.49011612e-08, 0.99619472, 0.0871557295, 0.999999821, -1.49011612e-08, 5.36441803e-07)
  4667. Part386.BottomSurface = Enum.SurfaceType.Smooth
  4668. Part386.TopSurface = Enum.SurfaceType.Smooth
  4669. Part386.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4670. Part386.Position = Vector3.new(31.6945801, 10.3707123, 20.8496094)
  4671. Part386.Orientation = Vector3.new(-5, -90, 0)
  4672. Part386.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4673. Part387.Parent = Model368
  4674. Part387.BrickColor = BrickColor.new("Black")
  4675. Part387.Rotation = Vector3.new(-90, -85, -140)
  4676. Part387.Anchored = true
  4677. Part387.FormFactor = Enum.FormFactor.Custom
  4678. Part387.Size = Vector3.new(0.900000095, 0.300000161, 0.700000167)
  4679. Part387.CFrame = CFrame.new(31.7650146, 10.0295277, 21.1572266, -0.0667654201, 0.0560227334, -0.996194839, -0.763127148, 0.640344262, 0.0871558711, 0.642790318, 0.766042292, -4.76837158e-07)
  4680. Part387.BottomSurface = Enum.SurfaceType.Smooth
  4681. Part387.TopSurface = Enum.SurfaceType.Smooth
  4682. Part387.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4683. Part387.Position = Vector3.new(31.7650146, 10.0295277, 21.1572266)
  4684. Part387.Orientation = Vector3.new(-5, -90, -50)
  4685. Part387.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4686. Part388.Parent = Model368
  4687. Part388.BrickColor = BrickColor.new("Black")
  4688. Part388.Rotation = Vector3.new(-90, -85, 175)
  4689. Part388.Anchored = true
  4690. Part388.FormFactor = Enum.FormFactor.Custom
  4691. Part388.Size = Vector3.new(1.50000012, 0.300000161, 0.700000167)
  4692. Part388.CFrame = CFrame.new(31.6794434, 9.05082989, 21.3466797, -0.0868238211, -0.00759556983, -0.99619472, -0.992404222, -0.0868206099, 0.0871553794, -0.0871520936, 0.996195078, 1.78813934e-07)
  4693. Part388.BottomSurface = Enum.SurfaceType.Smooth
  4694. Part388.TopSurface = Enum.SurfaceType.Smooth
  4695. Part388.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4696. Part388.Position = Vector3.new(31.6794434, 9.05082989, 21.3466797)
  4697. Part388.Orientation = Vector3.new(-5, -90, -95)
  4698. Part388.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4699. Part389.Parent = Model368
  4700. Part389.BrickColor = BrickColor.new("Black")
  4701. Part389.Rotation = Vector3.new(-85.5400009, -50.0200005, 179.319992)
  4702. Part389.Anchored = true
  4703. Part389.FormFactor = Enum.FormFactor.Custom
  4704. Part389.Size = Vector3.new(0.800000012, 0.300000161, 0.700000167)
  4705. Part389.CFrame = CFrame.new(31.4377441, 8.1951189, 21.2705078, -0.642515242, -0.00759533048, -0.766234875, -0.762939692, -0.0868208408, 0.640612841, -0.0713909864, 0.996194839, 0.0499892831)
  4706. Part389.BottomSurface = Enum.SurfaceType.Smooth
  4707. Part389.TopSurface = Enum.SurfaceType.Smooth
  4708. Part389.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4709. Part389.Position = Vector3.new(31.4377441, 8.1951189, 21.2705078)
  4710. Part389.Orientation = Vector3.new(-39.8400002, -86.2699966, -96.4899979)
  4711. Part389.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4712. Part390.Parent = Model368
  4713. Part390.BrickColor = BrickColor.new("Black")
  4714. Part390.Rotation = Vector3.new(-85.5400009, -50.0200005, 119.32)
  4715. Part390.Anchored = true
  4716. Part390.FormFactor = Enum.FormFactor.Custom
  4717. Part390.Size = Vector3.new(1.4000001, 0.300000161, 0.700000167)
  4718. Part390.CFrame = CFrame.new(31.0433331, 7.76805687, 20.6967773, -0.314677507, -0.560229778, -0.76623559, -0.306277752, -0.704136372, 0.64060986, -0.89842546, 0.436267912, 0.0499927998)
  4719. Part390.BottomSurface = Enum.SurfaceType.Smooth
  4720. Part390.TopSurface = Enum.SurfaceType.Smooth
  4721. Part390.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4722. Part390.Position = Vector3.new(31.0433331, 7.76805687, 20.6967773)
  4723. Part390.Orientation = Vector3.new(-39.8400002, -86.2699966, -156.48999)
  4724. Part390.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4725. Part391.Parent = Model368
  4726. Part391.BrickColor = BrickColor.new("Dark stone grey")
  4727. Part391.Rotation = Vector3.new(90, -55, 90)
  4728. Part391.Anchored = true
  4729. Part391.FormFactor = Enum.FormFactor.Custom
  4730. Part391.Size = Vector3.new(0.899999857, 0.300000042, 0.699999809)
  4731. Part391.CFrame = CFrame.new(31.7377911, 7.30009985, 19.9995117, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  4732. Part391.BottomSurface = Enum.SurfaceType.Smooth
  4733. Part391.TopSurface = Enum.SurfaceType.Smooth
  4734. Part391.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4735. Part391.Position = Vector3.new(31.7377911, 7.30009985, 19.9995117)
  4736. Part391.Orientation = Vector3.new(35, -90, 0)
  4737. Part391.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4738. Part392.Parent = Model368
  4739. Part392.BrickColor = BrickColor.new("Dark stone grey")
  4740. Part392.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  4741. Part392.Anchored = true
  4742. Part392.FormFactor = Enum.FormFactor.Custom
  4743. Part392.Size = Vector3.new(0.899999857, 0.300000042, 1.59999979)
  4744. Part392.CFrame = CFrame.new(32.7386475, 7.47374487, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  4745. Part392.BottomSurface = Enum.SurfaceType.Smooth
  4746. Part392.TopSurface = Enum.SurfaceType.Smooth
  4747. Part392.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4748. Part392.Position = Vector3.new(32.7386475, 7.47374487, 19.9995117)
  4749. Part392.Orientation = Vector3.new(0, -90, 0)
  4750. Part392.Color = Color3.new(0.388235, 0.372549, 0.384314)
  4751. Part393.Parent = Model368
  4752. Part393.BrickColor = BrickColor.new("Black")
  4753. Part393.Rotation = Vector3.new(-43.7799988, -89.9700012, -43.7799988)
  4754. Part393.Anchored = true
  4755. Part393.FormFactor = Enum.FormFactor.Custom
  4756. Part393.Size = Vector3.new(1.0999999, 0.400000036, 0.599999785)
  4757. Part393.CFrame = CFrame.new(33.088623, 7.47380686, 19.9995117, 1.78813934e-07, 1.71363354e-07, -0.999999881, -5.32907052e-15, 1, 1.71363354e-07, 0.999999881, -7.10542736e-15, 1.78813934e-07)
  4758. Part393.BottomSurface = Enum.SurfaceType.Smooth
  4759. Part393.TopSurface = Enum.SurfaceType.Smooth
  4760. Part393.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4761. Part393.Position = Vector3.new(33.088623, 7.47380686, 19.9995117)
  4762. Part393.Orientation = Vector3.new(0, -90, 0)
  4763. Part393.Color = Color3.new(0.105882, 0.164706, 0.207843)
  4764. Part394.Name = "ColorPart"
  4765. Part394.Parent = Model368
  4766. Part394.BrickColor = BrickColor.new("Grime")
  4767. Part394.Rotation = Vector3.new(-90, -70, 0)
  4768. Part394.Anchored = true
  4769. Part394.FormFactor = Enum.FormFactor.Custom
  4770. Part394.Size = Vector3.new(1.0999999, 0.300000012, 0.200000003)
  4771. Part394.CFrame = CFrame.new(31.3918457, 11.8844404, 20.6357422, 0.342019796, -5.96046448e-07, -0.939692616, 0.939692616, 3.09944153e-06, 0.342019618, 2.50339508e-06, -0.999999821, 1.66893005e-06)
  4772. Part394.BottomSurface = Enum.SurfaceType.Smooth
  4773. Part394.TopSurface = Enum.SurfaceType.Smooth
  4774. Part394.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4775. Part394.Position = Vector3.new(31.3918457, 11.8844404, 20.6357422)
  4776. Part394.Orientation = Vector3.new(-20, -90, 90)
  4777. Part394.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4778. Part395.Name = "ColorPart"
  4779. Part395.Parent = Model368
  4780. Part395.BrickColor = BrickColor.new("Grime")
  4781. Part395.Rotation = Vector3.new(90, -55, 90)
  4782. Part395.Anchored = true
  4783. Part395.CanCollide = false
  4784. Part395.FormFactor = Enum.FormFactor.Custom
  4785. Part395.Size = Vector3.new(1.09999979, 1.70000005, 0.999999821)
  4786. Part395.CFrame = CFrame.new(31.3118896, 7.12395287, 19.9995117, -2.38418579e-07, -0.57357651, -0.819152117, -5.96046448e-08, 0.819151998, -0.57357657, 1, -5.96046448e-08, -2.38418579e-07)
  4787. Part395.BottomSurface = Enum.SurfaceType.Smooth
  4788. Part395.TopSurface = Enum.SurfaceType.Smooth
  4789. Part395.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4790. Part395.Position = Vector3.new(31.3118896, 7.12395287, 19.9995117)
  4791. Part395.Orientation = Vector3.new(35, -90, 0)
  4792. Part395.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4793. Part396.Name = "ColorPart"
  4794. Part396.Parent = Model368
  4795. Part396.BrickColor = BrickColor.new("Grime")
  4796. Part396.Rotation = Vector3.new(-90, -85, -90)
  4797. Part396.Anchored = true
  4798. Part396.CanCollide = false
  4799. Part396.FormFactor = Enum.FormFactor.Custom
  4800. Part396.Size = Vector3.new(2.0999999, 0.900000215, 0.200000003)
  4801. Part396.CFrame = CFrame.new(30.9683838, 9.53075027, 19.9995117, 5.36441803e-07, 0.0871557221, -0.996194601, -1.49011612e-08, 0.99619472, 0.0871557295, 0.999999821, -1.49011612e-08, 5.36441803e-07)
  4802. Part396.BottomSurface = Enum.SurfaceType.Smooth
  4803. Part396.TopSurface = Enum.SurfaceType.Smooth
  4804. Part396.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4805. Part396.Position = Vector3.new(30.9683838, 9.53075027, 19.9995117)
  4806. Part396.Orientation = Vector3.new(-5, -90, 0)
  4807. Part396.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4808. Part397.Name = "ColorPart"
  4809. Part397.Parent = Model368
  4810. Part397.BrickColor = BrickColor.new("Grime")
  4811. Part397.Rotation = Vector3.new(-90, -85, -45)
  4812. Part397.Anchored = true
  4813. Part397.CanCollide = false
  4814. Part397.FormFactor = Enum.FormFactor.Custom
  4815. Part397.Size = Vector3.new(0.899999857, 0.900000215, 0.200000003)
  4816. Part397.CFrame = CFrame.new(30.9847412, 9.71647644, 21.0493164, 0.0616330542, 0.0616265275, -0.996192813, 0.704413831, 0.704417527, 0.0871564224, 0.707106173, -0.707104743, 5.24520874e-06)
  4817. Part397.BottomSurface = Enum.SurfaceType.Smooth
  4818. Part397.TopSurface = Enum.SurfaceType.Smooth
  4819. Part397.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4820. Part397.Position = Vector3.new(30.9847412, 9.71647644, 21.0493164)
  4821. Part397.Orientation = Vector3.new(-5, -90, 45)
  4822. Part397.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4823. Part398.Name = "ColorPart"
  4824. Part398.Parent = Model368
  4825. Part398.BrickColor = BrickColor.new("Grime")
  4826. Part398.Rotation = Vector3.new(-90, -85, -135)
  4827. Part398.Anchored = true
  4828. Part398.CanCollide = false
  4829. Part398.FormFactor = Enum.FormFactor.Custom
  4830. Part398.Size = Vector3.new(0.899999857, 0.900000215, 0.200000003)
  4831. Part398.CFrame = CFrame.new(30.9847412, 9.71647644, 18.9497089, -0.0616221502, 0.061630521, -0.996192336, -0.704413474, 0.704417765, 0.0871545598, 0.707106233, 0.707103908, 6.49690628e-06)
  4832. Part398.BottomSurface = Enum.SurfaceType.Smooth
  4833. Part398.TopSurface = Enum.SurfaceType.Smooth
  4834. Part398.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4835. Part398.Position = Vector3.new(30.9847412, 9.71647644, 18.9497089)
  4836. Part398.Orientation = Vector3.new(-5, -90, -45)
  4837. Part398.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4838. Part399.Name = "ColorPart"
  4839. Part399.Parent = Model368
  4840. Part399.BrickColor = BrickColor.new("Grime")
  4841. Part399.Rotation = Vector3.new(-90, -85, -180)
  4842. Part399.Anchored = true
  4843. Part399.FormFactor = Enum.FormFactor.Custom
  4844. Part399.Size = Vector3.new(1.39999986, 0.900000215, 0.200000003)
  4845. Part399.CFrame = CFrame.new(31.0456543, 10.4137964, 18.7631836, -0.087155588, 8.94069672e-08, -0.99619472, -0.99619472, 2.02655815e-06, 0.0871556699, 2.02655792e-06, 1, -1.1920929e-07)
  4846. Part399.BottomSurface = Enum.SurfaceType.Smooth
  4847. Part399.TopSurface = Enum.SurfaceType.Smooth
  4848. Part399.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4849. Part399.Position = Vector3.new(31.0456543, 10.4137964, 18.7631836)
  4850. Part399.Orientation = Vector3.new(-5, -90, -90)
  4851. Part399.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4852. Part400.Name = "ColorPart"
  4853. Part400.Parent = Model368
  4854. Part400.BrickColor = BrickColor.new("Grime")
  4855. Part400.Rotation = Vector3.new(-90, -85, 0)
  4856. Part400.Anchored = true
  4857. Part400.FormFactor = Enum.FormFactor.Custom
  4858. Part400.Size = Vector3.new(1.39999986, 0.900000215, 0.200000003)
  4859. Part400.CFrame = CFrame.new(31.0456543, 10.4137964, 21.2358398, 0.0871554613, -4.47034836e-07, -0.996194601, 0.996194482, 2.98023201e-06, 0.0871552303, 2.74181366e-06, -0.999999762, 8.94069672e-07)
  4860. Part400.BottomSurface = Enum.SurfaceType.Smooth
  4861. Part400.TopSurface = Enum.SurfaceType.Smooth
  4862. Part400.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4863. Part400.Position = Vector3.new(31.0456543, 10.4137964, 21.2358398)
  4864. Part400.Orientation = Vector3.new(-5, -90, 90)
  4865. Part400.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4866. Part401.Name = "ColorPart"
  4867. Part401.Parent = Model368
  4868. Part401.BrickColor = BrickColor.new("Grime")
  4869. Part401.Rotation = Vector3.new(-90, -70, 0)
  4870. Part401.Anchored = true
  4871. Part401.FormFactor = Enum.FormFactor.Custom
  4872. Part401.Size = Vector3.new(1.39999986, 0.900000215, 0.200000003)
  4873. Part401.CFrame = CFrame.new(31.3405762, 11.7434559, 21.2358398, 0.342019796, -5.96046448e-07, -0.939692616, 0.939692616, 3.09944153e-06, 0.342019618, 2.50339508e-06, -0.999999821, 1.66893005e-06)
  4874. Part401.BottomSurface = Enum.SurfaceType.Smooth
  4875. Part401.TopSurface = Enum.SurfaceType.Smooth
  4876. Part401.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4877. Part401.Position = Vector3.new(31.3405762, 11.7434559, 21.2358398)
  4878. Part401.Orientation = Vector3.new(-20, -90, 90)
  4879. Part401.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4880. Part402.Name = "ColorPart"
  4881. Part402.Parent = Model368
  4882. Part402.BrickColor = BrickColor.new("Grime")
  4883. Part402.Rotation = Vector3.new(-90, -70, -180)
  4884. Part402.Anchored = true
  4885. Part402.FormFactor = Enum.FormFactor.Custom
  4886. Part402.Size = Vector3.new(1.39999986, 0.900000215, 0.200000003)
  4887. Part402.CFrame = CFrame.new(31.3405762, 11.7434559, 18.7631836, -0.342019588, 2.38418579e-07, -0.939692378, -0.939692378, 2.62260437e-06, 0.342019886, 2.2649765e-06, 0.999999702, -2.38418579e-07)
  4888. Part402.BottomSurface = Enum.SurfaceType.Smooth
  4889. Part402.TopSurface = Enum.SurfaceType.Smooth
  4890. Part402.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4891. Part402.Position = Vector3.new(31.3405762, 11.7434559, 18.7631836)
  4892. Part402.Orientation = Vector3.new(-20, -90, -90)
  4893. Part402.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4894. Part403.Name = "ColorPart"
  4895. Part403.Parent = Model368
  4896. Part403.BrickColor = BrickColor.new("Grime")
  4897. Part403.Rotation = Vector3.new(90, -80, 90)
  4898. Part403.Anchored = true
  4899. Part403.CanCollide = false
  4900. Part403.FormFactor = Enum.FormFactor.Custom
  4901. Part403.Size = Vector3.new(1.09999979, 0.900000095, 0.999999821)
  4902. Part403.CFrame = CFrame.new(30.8291016, 8.06340408, 19.9995117, 0, -0.173648179, -0.984807789, 0, 0.98480773, -0.173648179, 1, 0, 0)
  4903. Part403.BottomSurface = Enum.SurfaceType.Smooth
  4904. Part403.TopSurface = Enum.SurfaceType.Smooth
  4905. Part403.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4906. Part403.Position = Vector3.new(30.8291016, 8.06340408, 19.9995117)
  4907. Part403.Orientation = Vector3.new(10, -90, 0)
  4908. Part403.Color = Color3.new(0.498039, 0.556863, 0.392157)
  4909. Script404.Name = "WeldScript"
  4910. Script404.Parent = Model368
  4911. Script404.Disabled = true
  4912. table.insert(cors,sandbox(Script404,function()
  4913. local BrickTable = {}
  4914.  
  4915. function RecursiveGeneric(Parent, Func, ClassLimit)
  4916. for _, Child in pairs(Parent:GetChildren()) do
  4917. if not ClassLimit or Child:IsA(ClassLimit) then
  4918. Func(Child)
  4919. end
  4920. RecursiveGeneric(Child, Func, ClassLimit)
  4921. end
  4922. end
  4923.  
  4924. RecursiveGeneric(
  4925. script.Parent,
  4926. function(Brick) table.insert(BrickTable, Brick) end,
  4927. "BasePart"
  4928. )
  4929.  
  4930. local Base = BrickTable[1]
  4931. table.remove(BrickTable, 1)
  4932.  
  4933. for _, Part in pairs(BrickTable) do
  4934. local Weld = Instance.new("Weld")
  4935. Weld.Part0 = Base
  4936. Weld.Part1 = Part
  4937. Weld.C1 = Part.CFrame:inverse() * Base.CFrame
  4938. Weld.Parent = Base
  4939. Part.Anchored = false
  4940. end
  4941.  
  4942. Base.Anchored = false
  4943. end))
  4944. IntValue405.Name = "HealthValue"
  4945. IntValue405.Parent = Model0
  4946. IntValue405.Value = 5000
  4947. Script406.Parent = IntValue405
  4948. table.insert(cors,sandbox(Script406,function()
  4949. local Smoke = script.Parent.Parent.Body.Parts.EngineSmoke.Smoke
  4950. local Fire = script.Parent.Parent.Body.Parts.EngineSmoke.Fire
  4951. local ExplosionEffect = false
  4952.  
  4953. local Seat = script.Parent.Parent.Body.MainParts.Seat
  4954.  
  4955. local Stage1Cap = 1900
  4956. local Stage2Cap = 1500
  4957. local Stage3Cap = 1
  4958.  
  4959. script.Parent.Changed:connect(function(Change)
  4960. if Change <= Stage1Cap then
  4961. Smoke.Enabled = true
  4962. elseif Change > Stage1Cap then
  4963. Smoke.Enabled = false
  4964. end
  4965. if Change <= Stage2Cap then
  4966. Fire.Enabled = true
  4967. elseif Change > Stage2Cap then
  4968. Fire.Enabled = false
  4969. end
  4970. if Change <= Stage3Cap then
  4971. ExplosionEffect = true
  4972. elseif Change > Stage3Cap then
  4973. ExplosionEffect = false
  4974. end
  4975. if Change <= 0 then
  4976. Instance.new("Explosion", Seat).Position = Seat.Position
  4977. Instance.new("Explosion", Seat).BlastRadius = 5
  4978. Instance.new("Explosion", Seat).BlastPressure = 5
  4979. wait(5)
  4980. if script.Parent.Parent ~= nil then
  4981. script.Parent.Parent:Destroy()
  4982. end
  4983. end
  4984. end)
  4985.  
  4986. while wait(.1) do
  4987. local Part = script.Parent.Parent.Body.Parts.EngineSmoke
  4988. if ExplosionEffect == true then
  4989. local FakeExplosion = Instance.new("Explosion", Part)
  4990. FakeExplosion.Position = Part.Position
  4991. FakeExplosion.BlastRadius = 0
  4992. FakeExplosion.BlastPressure = 0
  4993. else end
  4994. end
  4995. end))
  4996. for i,v in pairs(mas:GetChildren()) do
  4997. v.Parent = workspace
  4998. pcall(function() v:MakeJoints() end)
  4999. end
  5000. mas:Destroy()
  5001. for i,v in pairs(cors) do
  5002. spawn(function()
  5003. pcall(v)
  5004. end)
  5005. end
  5006. Model0:MakeJoints()
  5007. Model0:MoveTo(game.Players.LocalPlayer.Character.Head.Position)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement