-----------------

plane

Sep 13th, 2020 (edited)
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 179.20 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. local player = game.Players.LocalPlayer
  153. local char = player.Character
  154. local mouse = player:GetMouse()
  155. local camera = game.Workspace.CurrentCamera
  156. local hpressed = 0
  157. local engineon = false
  158. local flightready = false
  159. local rotateangle = 0
  160. local speed = 10
  161. local wpressed = false
  162. local kpressed = 0
  163. local ppressed = 0
  164. local xpressed = 0
  165. local lpressed = 0
  166. local planehealth = 100
  167. function weld(p0,p1,c0)
  168. local w=Instance.new("Weld",p0)
  169. w.Part0=p0
  170. w.Part1=p1
  171. w.C0=c0
  172. return w
  173. end
  174.  
  175.  
  176. local mcarrier = Instance.new("Model", workspace)
  177. mcarrier.Name = "MCarrier"
  178.  
  179. part = Instance.new("Part", mcarrier)
  180. part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  181. part.TopSurface = Enum.SurfaceType.Smooth
  182. part.Size = Vector3.new(2, 4.8, 1)
  183. part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  184. part.CFrame = CFrame.new(9.399, 7.2, -135.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  185. part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  186. part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  187. part.BrickColor = BrickColor.new("Black")
  188. part.Friction = 0.3
  189. part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  190.  
  191. part_2 = Instance.new("Part", mcarrier)
  192. part_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  193. part_2.TopSurface = Enum.SurfaceType.Smooth
  194. part_2.Size = Vector3.new(2, 4.8, 1)
  195. part_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  196. part_2.CFrame = CFrame.new(9.399, 7.2, -133.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  197. part_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  198. part_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  199. part_2.BrickColor = BrickColor.new("Black")
  200. part_2.Friction = 0.3
  201. part_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  202.  
  203. part_3 = Instance.new("Part", mcarrier)
  204. part_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  205. part_3.TopSurface = Enum.SurfaceType.Smooth
  206. part_3.Size = Vector3.new(2, 4.8, 1)
  207. part_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  208. part_3.CFrame = CFrame.new(9.399, 7.2, -131.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  209. part_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  210. part_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  211. part_3.BrickColor = BrickColor.new("Black")
  212. part_3.Friction = 0.3
  213. part_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  214.  
  215. part_4 = Instance.new("Part", mcarrier)
  216. part_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  217. part_4.TopSurface = Enum.SurfaceType.Smooth
  218. part_4.Size = Vector3.new(2, 4.8, 1)
  219. part_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  220. part_4.CFrame = CFrame.new(9.399, 7.2, -129.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  221. part_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  222. part_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  223. part_4.BrickColor = BrickColor.new("Black")
  224. part_4.Friction = 0.3
  225. part_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  226.  
  227. part_5 = Instance.new("Part", mcarrier)
  228. part_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  229. part_5.TopSurface = Enum.SurfaceType.Smooth
  230. part_5.Size = Vector3.new(2, 4.8, 1)
  231. part_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  232. part_5.CFrame = CFrame.new(9.399, 7.2, -127.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  233. part_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  234. part_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  235. part_5.BrickColor = BrickColor.new("Black")
  236. part_5.Friction = 0.3
  237. part_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  238.  
  239. seat = Instance.new("Seat", mcarrier)
  240. seat.Friction = 0.3
  241. seat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  242. seat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  243. seat.TopSurface = Enum.SurfaceType.Smooth
  244. seat.FormFactor = Enum.FormFactor.Custom
  245. seat.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  246. seat.BrickColor = BrickColor.new("Black")
  247. seat.Size = Vector3.new(2, 1, 2)
  248. seat.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  249. seat.CFrame = CFrame.new(7.899, 5.3, -133.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  250. seat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  251.  
  252. part_6 = Instance.new("Part", mcarrier)
  253. part_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  254. part_6.TopSurface = Enum.SurfaceType.Smooth
  255. part_6.Size = Vector3.new(2, 4.8, 1)
  256. part_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  257. part_6.CFrame = CFrame.new(9.399, 7.2, -125.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  258. part_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  259. part_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  260. part_6.BrickColor = BrickColor.new("Black")
  261. part_6.Friction = 0.3
  262. part_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  263.  
  264. part_7 = Instance.new("Part", mcarrier)
  265. part_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  266. part_7.TopSurface = Enum.SurfaceType.Smooth
  267. part_7.Size = Vector3.new(2, 4.8, 1)
  268. part_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  269. part_7.CFrame = CFrame.new(9.399, 7.2, -115.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  270. part_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  271. part_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  272. part_7.BrickColor = BrickColor.new("Black")
  273. part_7.Friction = 0.3
  274. part_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  275.  
  276. seat_2 = Instance.new("Seat", mcarrier)
  277. seat_2.Friction = 0.3
  278. seat_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  279. seat_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  280. seat_2.TopSurface = Enum.SurfaceType.Smooth
  281. seat_2.FormFactor = Enum.FormFactor.Custom
  282. seat_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  283. seat_2.BrickColor = BrickColor.new("Black")
  284. seat_2.Size = Vector3.new(2, 1, 2)
  285. seat_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  286. seat_2.CFrame = CFrame.new(7.899, 5.3, -127.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  287. seat_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  288.  
  289. seat_3 = Instance.new("Seat", mcarrier)
  290. seat_3.Friction = 0.3
  291. seat_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  292. seat_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  293. seat_3.TopSurface = Enum.SurfaceType.Smooth
  294. seat_3.FormFactor = Enum.FormFactor.Custom
  295. seat_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  296. seat_3.BrickColor = BrickColor.new("Black")
  297. seat_3.Size = Vector3.new(2, 1, 2)
  298. seat_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  299. seat_3.CFrame = CFrame.new(7.899, 5.3, -135.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  300. seat_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  301.  
  302. seat_4 = Instance.new("Seat", mcarrier)
  303. seat_4.Friction = 0.3
  304. seat_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  305. seat_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  306. seat_4.TopSurface = Enum.SurfaceType.Smooth
  307. seat_4.FormFactor = Enum.FormFactor.Custom
  308. seat_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  309. seat_4.BrickColor = BrickColor.new("Black")
  310. seat_4.Size = Vector3.new(2, 1, 2)
  311. seat_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  312. seat_4.CFrame = CFrame.new(7.899, 5.3, -119.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  313. seat_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  314.  
  315. part_8 = Instance.new("Part", mcarrier)
  316. part_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  317. part_8.TopSurface = Enum.SurfaceType.Smooth
  318. part_8.Size = Vector3.new(2, 4.8, 1)
  319. part_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  320. part_8.CFrame = CFrame.new(9.399, 7.2, -117.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  321. part_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  322. part_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  323. part_8.BrickColor = BrickColor.new("Black")
  324. part_8.Friction = 0.3
  325. part_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  326.  
  327. part_9 = Instance.new("Part", mcarrier)
  328. part_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  329. part_9.TopSurface = Enum.SurfaceType.Smooth
  330. part_9.Size = Vector3.new(2, 4.8, 1)
  331. part_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  332. part_9.CFrame = CFrame.new(9.399, 7.2, -113.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  333. part_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  334. part_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  335. part_9.BrickColor = BrickColor.new("Black")
  336. part_9.Friction = 0.3
  337. part_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  338.  
  339. seat_5 = Instance.new("Seat", mcarrier)
  340. seat_5.Friction = 0.3
  341. seat_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  342. seat_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  343. seat_5.TopSurface = Enum.SurfaceType.Smooth
  344. seat_5.FormFactor = Enum.FormFactor.Custom
  345. seat_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  346. seat_5.BrickColor = BrickColor.new("Black")
  347. seat_5.Size = Vector3.new(2, 1, 2)
  348. seat_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  349. seat_5.CFrame = CFrame.new(7.899, 5.3, -115.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  350. seat_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  351.  
  352. seat_6 = Instance.new("Seat", mcarrier)
  353. seat_6.Friction = 0.3
  354. seat_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  355. seat_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  356. seat_6.TopSurface = Enum.SurfaceType.Smooth
  357. seat_6.FormFactor = Enum.FormFactor.Custom
  358. seat_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  359. seat_6.BrickColor = BrickColor.new("Black")
  360. seat_6.Size = Vector3.new(2, 1, 2)
  361. seat_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  362. seat_6.CFrame = CFrame.new(7.899, 5.3, -129.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  363. seat_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  364.  
  365. seat_7 = Instance.new("Seat", mcarrier)
  366. seat_7.Friction = 0.3
  367. seat_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  368. seat_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  369. seat_7.TopSurface = Enum.SurfaceType.Smooth
  370. seat_7.FormFactor = Enum.FormFactor.Custom
  371. seat_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  372. seat_7.BrickColor = BrickColor.new("Black")
  373. seat_7.Size = Vector3.new(2, 1, 2)
  374. seat_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  375. seat_7.CFrame = CFrame.new(7.899, 5.3, -123.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  376. seat_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  377.  
  378. part_10 = Instance.new("Part", mcarrier)
  379. part_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  380. part_10.TopSurface = Enum.SurfaceType.Smooth
  381. part_10.Size = Vector3.new(2, 4.8, 1)
  382. part_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  383. part_10.CFrame = CFrame.new(9.399, 7.2, -119.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  384. part_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  385. part_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  386. part_10.BrickColor = BrickColor.new("Black")
  387. part_10.Friction = 0.3
  388. part_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  389.  
  390. seat_8 = Instance.new("Seat", mcarrier)
  391. seat_8.Friction = 0.3
  392. seat_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  393. seat_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  394. seat_8.TopSurface = Enum.SurfaceType.Smooth
  395. seat_8.FormFactor = Enum.FormFactor.Custom
  396. seat_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  397. seat_8.BrickColor = BrickColor.new("Black")
  398. seat_8.Size = Vector3.new(2, 1, 2)
  399. seat_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  400. seat_8.CFrame = CFrame.new(7.899, 5.3, -131.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  401. seat_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  402.  
  403. seat_9 = Instance.new("Seat", mcarrier)
  404. seat_9.Friction = 0.3
  405. seat_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  406. seat_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  407. seat_9.TopSurface = Enum.SurfaceType.Smooth
  408. seat_9.FormFactor = Enum.FormFactor.Custom
  409. seat_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  410. seat_9.BrickColor = BrickColor.new("Black")
  411. seat_9.Size = Vector3.new(2, 1, 2)
  412. seat_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  413. seat_9.CFrame = CFrame.new(7.899, 5.3, -117.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  414. seat_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  415.  
  416. seat_10 = Instance.new("Seat", mcarrier)
  417. seat_10.Friction = 0.3
  418. seat_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  419. seat_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  420. seat_10.TopSurface = Enum.SurfaceType.Smooth
  421. seat_10.FormFactor = Enum.FormFactor.Custom
  422. seat_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  423. seat_10.BrickColor = BrickColor.new("Black")
  424. seat_10.Size = Vector3.new(2, 1, 2)
  425. seat_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  426. seat_10.CFrame = CFrame.new(7.899, 5.3, -125.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  427. seat_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  428.  
  429. seat_11 = Instance.new("Seat", mcarrier)
  430. seat_11.Friction = 0.3
  431. seat_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  432. seat_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  433. seat_11.TopSurface = Enum.SurfaceType.Smooth
  434. seat_11.FormFactor = Enum.FormFactor.Custom
  435. seat_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  436. seat_11.BrickColor = BrickColor.new("Black")
  437. seat_11.Size = Vector3.new(2, 1, 2)
  438. seat_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  439. seat_11.CFrame = CFrame.new(7.899, 5.3, -121.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  440. seat_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  441.  
  442. seat_12 = Instance.new("Seat", mcarrier)
  443. seat_12.Friction = 0.3
  444. seat_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  445. seat_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  446. seat_12.TopSurface = Enum.SurfaceType.Smooth
  447. seat_12.FormFactor = Enum.FormFactor.Custom
  448. seat_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  449. seat_12.BrickColor = BrickColor.new("Black")
  450. seat_12.Size = Vector3.new(2, 1, 2)
  451. seat_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  452. seat_12.CFrame = CFrame.new(7.899, 5.3, -113.001)* CFrame.Angles(-6.5654114089764e-011, 1.5707963705063, 0)
  453. seat_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  454.  
  455. part_11 = Instance.new("Part", mcarrier)
  456. part_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  457. part_11.TopSurface = Enum.SurfaceType.Smooth
  458. part_11.Size = Vector3.new(2, 4.8, 1)
  459. part_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  460. part_11.CFrame = CFrame.new(9.399, 7.2, -123.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  461. part_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  462. part_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  463. part_11.BrickColor = BrickColor.new("Black")
  464. part_11.Friction = 0.3
  465. part_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  466.  
  467. part_12 = Instance.new("Part", mcarrier)
  468. part_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  469. part_12.TopSurface = Enum.SurfaceType.Smooth
  470. part_12.Size = Vector3.new(2, 4.8, 1)
  471. part_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  472. part_12.CFrame = CFrame.new(9.399, 7.2, -121.001)* CFrame.Angles(-6.5666728998881e-011, 1.5707963705063, 0)
  473. part_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  474. part_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  475. part_12.BrickColor = BrickColor.new("Black")
  476. part_12.Friction = 0.3
  477. part_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  478.  
  479. part_13 = Instance.new("Part", mcarrier)
  480. part_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  481. part_13.TopSurface = Enum.SurfaceType.Smooth
  482. part_13.Size = Vector3.new(2, 4.8, 1)
  483. part_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  484. part_13.CFrame = CFrame.new(0.599, 7.2, -117.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  485. part_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  486. part_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  487. part_13.BrickColor = BrickColor.new("Black")
  488. part_13.Friction = 0.3
  489. part_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  490.  
  491. seat_13 = Instance.new("Seat", mcarrier)
  492. seat_13.Friction = 0.3
  493. seat_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  494. seat_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  495. seat_13.TopSurface = Enum.SurfaceType.Smooth
  496. seat_13.FormFactor = Enum.FormFactor.Custom
  497. seat_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  498. seat_13.BrickColor = BrickColor.new("Black")
  499. seat_13.Size = Vector3.new(2, 1, 2)
  500. seat_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  501. seat_13.CFrame = CFrame.new(2.099, 5.3, -117.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  502. seat_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  503.  
  504. seat_14 = Instance.new("Seat", mcarrier)
  505. seat_14.Friction = 0.3
  506. seat_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  507. seat_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  508. seat_14.TopSurface = Enum.SurfaceType.Smooth
  509. seat_14.FormFactor = Enum.FormFactor.Custom
  510. seat_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  511. seat_14.BrickColor = BrickColor.new("Black")
  512. seat_14.Size = Vector3.new(2, 1, 2)
  513. seat_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  514. seat_14.CFrame = CFrame.new(2.099, 5.3, -131.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  515. seat_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  516.  
  517. part_14 = Instance.new("Part", mcarrier)
  518. part_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  519. part_14.TopSurface = Enum.SurfaceType.Smooth
  520. part_14.Size = Vector3.new(2, 4.8, 1)
  521. part_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  522. part_14.CFrame = CFrame.new(0.599, 7.2, -125.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  523. part_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  524. part_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  525. part_14.BrickColor = BrickColor.new("Black")
  526. part_14.Friction = 0.3
  527. part_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  528.  
  529. seat_15 = Instance.new("Seat", mcarrier)
  530. seat_15.Friction = 0.3
  531. seat_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  532. seat_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  533. seat_15.TopSurface = Enum.SurfaceType.Smooth
  534. seat_15.FormFactor = Enum.FormFactor.Custom
  535. seat_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  536. seat_15.BrickColor = BrickColor.new("Black")
  537. seat_15.Size = Vector3.new(2, 1, 2)
  538. seat_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  539. seat_15.CFrame = CFrame.new(2.099, 5.3, -125.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  540. seat_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  541.  
  542. seat_16 = Instance.new("Seat", mcarrier)
  543. seat_16.Friction = 0.3
  544. seat_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  545. seat_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  546. seat_16.TopSurface = Enum.SurfaceType.Smooth
  547. seat_16.FormFactor = Enum.FormFactor.Custom
  548. seat_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  549. seat_16.BrickColor = BrickColor.new("Black")
  550. seat_16.Size = Vector3.new(2, 1, 2)
  551. seat_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  552. seat_16.CFrame = CFrame.new(2.099, 5.3, -133.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  553. seat_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  554.  
  555. part_15 = Instance.new("Part", mcarrier)
  556. part_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  557. part_15.TopSurface = Enum.SurfaceType.Smooth
  558. part_15.Size = Vector3.new(2, 4.8, 1)
  559. part_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  560. part_15.CFrame = CFrame.new(0.599, 7.2, -133.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  561. part_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  562. part_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  563. part_15.BrickColor = BrickColor.new("Black")
  564. part_15.Friction = 0.3
  565. part_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  566.  
  567. seat_17 = Instance.new("Seat", mcarrier)
  568. seat_17.Friction = 0.3
  569. seat_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  570. seat_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  571. seat_17.TopSurface = Enum.SurfaceType.Smooth
  572. seat_17.FormFactor = Enum.FormFactor.Custom
  573. seat_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  574. seat_17.BrickColor = BrickColor.new("Black")
  575. seat_17.Size = Vector3.new(2, 1, 2)
  576. seat_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  577. seat_17.CFrame = CFrame.new(2.099, 5.3, -129.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  578. seat_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  579.  
  580. part_16 = Instance.new("Part", mcarrier)
  581. part_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  582. part_16.TopSurface = Enum.SurfaceType.Smooth
  583. part_16.Size = Vector3.new(2, 4.8, 1)
  584. part_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  585. part_16.CFrame = CFrame.new(0.599, 7.2, -127.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  586. part_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  587. part_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  588. part_16.BrickColor = BrickColor.new("Black")
  589. part_16.Friction = 0.3
  590. part_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  591.  
  592. part_17 = Instance.new("Part", mcarrier)
  593. part_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  594. part_17.TopSurface = Enum.SurfaceType.Smooth
  595. part_17.Size = Vector3.new(2, 4.8, 1)
  596. part_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  597. part_17.CFrame = CFrame.new(0.599, 7.2, -135.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  598. part_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  599. part_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  600. part_17.BrickColor = BrickColor.new("Black")
  601. part_17.Friction = 0.3
  602. part_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  603.  
  604. seat_18 = Instance.new("Seat", mcarrier)
  605. seat_18.Friction = 0.3
  606. seat_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  607. seat_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  608. seat_18.TopSurface = Enum.SurfaceType.Smooth
  609. seat_18.FormFactor = Enum.FormFactor.Custom
  610. seat_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  611. seat_18.BrickColor = BrickColor.new("Black")
  612. seat_18.Size = Vector3.new(2, 1, 2)
  613. seat_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  614. seat_18.CFrame = CFrame.new(2.099, 5.3, -135.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  615. seat_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  616.  
  617. part_18 = Instance.new("Part", mcarrier)
  618. part_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  619. part_18.TopSurface = Enum.SurfaceType.Smooth
  620. part_18.Size = Vector3.new(2, 4.8, 1)
  621. part_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  622. part_18.CFrame = CFrame.new(0.599, 7.2, -129.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  623. part_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  624. part_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  625. part_18.BrickColor = BrickColor.new("Black")
  626. part_18.Friction = 0.3
  627. part_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  628.  
  629. part_19 = Instance.new("Part", mcarrier)
  630. part_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  631. part_19.TopSurface = Enum.SurfaceType.Smooth
  632. part_19.Size = Vector3.new(2, 4.8, 1)
  633. part_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  634. part_19.CFrame = CFrame.new(0.599, 7.2, -131.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  635. part_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  636. part_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  637. part_19.BrickColor = BrickColor.new("Black")
  638. part_19.Friction = 0.3
  639. part_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  640.  
  641. seat_19 = Instance.new("Seat", mcarrier)
  642. seat_19.Friction = 0.3
  643. seat_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  644. seat_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  645. seat_19.TopSurface = Enum.SurfaceType.Smooth
  646. seat_19.FormFactor = Enum.FormFactor.Custom
  647. seat_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  648. seat_19.BrickColor = BrickColor.new("Black")
  649. seat_19.Size = Vector3.new(2, 1, 2)
  650. seat_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  651. seat_19.CFrame = CFrame.new(2.099, 5.3, -127.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  652. seat_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  653.  
  654. seat_20 = Instance.new("Seat", mcarrier)
  655. seat_20.Friction = 0.3
  656. seat_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  657. seat_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  658. seat_20.TopSurface = Enum.SurfaceType.Smooth
  659. seat_20.FormFactor = Enum.FormFactor.Custom
  660. seat_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  661. seat_20.BrickColor = BrickColor.new("Black")
  662. seat_20.Size = Vector3.new(2, 1, 2)
  663. seat_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  664. seat_20.CFrame = CFrame.new(2.099, 5.3, -119.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  665. seat_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  666.  
  667. part_20 = Instance.new("Part", mcarrier)
  668. part_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  669. part_20.TopSurface = Enum.SurfaceType.Smooth
  670. part_20.Size = Vector3.new(2, 4.8, 1)
  671. part_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  672. part_20.CFrame = CFrame.new(0.599, 7.2, -115.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  673. part_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  674. part_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  675. part_20.BrickColor = BrickColor.new("Black")
  676. part_20.Friction = 0.3
  677. part_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  678.  
  679. seat_21 = Instance.new("Seat", mcarrier)
  680. seat_21.Friction = 0.3
  681. seat_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  682. seat_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  683. seat_21.TopSurface = Enum.SurfaceType.Smooth
  684. seat_21.FormFactor = Enum.FormFactor.Custom
  685. seat_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  686. seat_21.BrickColor = BrickColor.new("Black")
  687. seat_21.Size = Vector3.new(2, 1, 2)
  688. seat_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  689. seat_21.CFrame = CFrame.new(2.099, 5.3, -115.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  690. seat_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  691.  
  692. part_21 = Instance.new("Part", mcarrier)
  693. part_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  694. part_21.TopSurface = Enum.SurfaceType.Smooth
  695. part_21.Size = Vector3.new(2, 4.8, 1)
  696. part_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  697. part_21.CFrame = CFrame.new(0.599, 7.2, -119.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  698. part_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  699. part_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  700. part_21.BrickColor = BrickColor.new("Black")
  701. part_21.Friction = 0.3
  702. part_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  703.  
  704. seat_22 = Instance.new("Seat", mcarrier)
  705. seat_22.Friction = 0.3
  706. seat_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  707. seat_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  708. seat_22.TopSurface = Enum.SurfaceType.Smooth
  709. seat_22.FormFactor = Enum.FormFactor.Custom
  710. seat_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  711. seat_22.BrickColor = BrickColor.new("Black")
  712. seat_22.Size = Vector3.new(2, 1, 2)
  713. seat_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  714. seat_22.CFrame = CFrame.new(2.099, 5.3, -121.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  715. seat_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  716.  
  717. seat_23 = Instance.new("Seat", mcarrier)
  718. seat_23.Friction = 0.3
  719. seat_23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  720. seat_23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  721. seat_23.TopSurface = Enum.SurfaceType.Smooth
  722. seat_23.FormFactor = Enum.FormFactor.Custom
  723. seat_23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  724. seat_23.BrickColor = BrickColor.new("Black")
  725. seat_23.Size = Vector3.new(2, 1, 2)
  726. seat_23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  727. seat_23.CFrame = CFrame.new(2.099, 5.3, -123.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  728. seat_23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  729.  
  730. part_22 = Instance.new("Part", mcarrier)
  731. part_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  732. part_22.TopSurface = Enum.SurfaceType.Smooth
  733. part_22.Size = Vector3.new(2, 4.8, 1)
  734. part_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  735. part_22.CFrame = CFrame.new(0.599, 7.2, -123.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  736. part_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  737. part_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  738. part_22.BrickColor = BrickColor.new("Black")
  739. part_22.Friction = 0.3
  740. part_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  741.  
  742. part_23 = Instance.new("Part", mcarrier)
  743. part_23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  744. part_23.TopSurface = Enum.SurfaceType.Smooth
  745. part_23.Size = Vector3.new(2, 4.8, 1)
  746. part_23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  747. part_23.CFrame = CFrame.new(0.599, 7.2, -121.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  748. part_23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  749. part_23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  750. part_23.BrickColor = BrickColor.new("Black")
  751. part_23.Friction = 0.3
  752. part_23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  753.  
  754. propeller2pos = Instance.new("Part", mcarrier)
  755. propeller2pos.FormFactor = Enum.FormFactor.Symmetric
  756. propeller2pos.CanCollide = false
  757. propeller2pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  758. propeller2pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  759. propeller2pos.Material = Enum.Material.SmoothPlastic
  760. propeller2pos.Size = Vector3.new(2, 2, 2)
  761. propeller2pos.Name = "propeller2pos"
  762. propeller2pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  763. propeller2pos.CFrame = CFrame.new(-8.191, 5.092, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0)
  764. propeller2pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  765. propeller2pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  766. propeller2pos.BrickColor = BrickColor.new("Dark stone grey")
  767. propeller2pos.Friction = 0.3
  768. propeller2pos.Shape = Enum.PartType.Cylinder
  769. propeller2pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  770.  
  771. propeller3 = Instance.new("Model", mcarrier)
  772. propeller3.Name = "propeller3"
  773.  
  774. propellercenter = Instance.new("Part", propeller3)
  775. propellercenter.FormFactor = Enum.FormFactor.Symmetric
  776. propellercenter.CanCollide = false
  777. propellercenter.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  778. propellercenter.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  779. propellercenter.Material = Enum.Material.SmoothPlastic
  780. propellercenter.Size = Vector3.new(2, 2, 2)
  781. propellercenter.Name = "propellercenter"
  782. propellercenter.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  783. propellercenter.CFrame = CFrame.new(19.409, 5.315, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0)
  784. propellercenter.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  785. propellercenter.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  786. propellercenter.BrickColor = BrickColor.new("Dark stone grey")
  787. propellercenter.Friction = 0.3
  788. propellercenter.Shape = Enum.PartType.Cylinder
  789. propellercenter.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  790.  
  791. part_24 = Instance.new("Part", propeller3)
  792. part_24.FormFactor = Enum.FormFactor.Plate
  793. part_24.CanCollide = false
  794. part_24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  795. part_24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  796. part_24.Material = Enum.Material.SmoothPlastic
  797. part_24.Size = Vector3.new(2, 0.4, 5)
  798. part_24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  799. part_24.CFrame = CFrame.new(20.909, 3.815, -138.6)* CFrame.Angles(-1.5707515478134, -0.76795387268066, -3.1415314674377)
  800. part_24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  801. part_24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  802. part_24.BrickColor = BrickColor.new("Dark stone grey")
  803. part_24.Friction = 0.3
  804. part_24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  805.  
  806. mesh = Instance.new("SpecialMesh", part_24)
  807. mesh.MeshType = Enum.MeshType.Sphere
  808.  
  809. part_25 = Instance.new("Part", propeller3)
  810. part_25.FormFactor = Enum.FormFactor.Plate
  811. part_25.CanCollide = false
  812. part_25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  813. part_25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  814. part_25.Material = Enum.Material.SmoothPlastic
  815. part_25.Size = Vector3.new(2, 0.4, 5)
  816. part_25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  817. part_25.CFrame = CFrame.new(19.409, 7.815, -138.6)* CFrame.Angles(-1.5707963705063, 1.4532548497925e-008, -3.1415505409241)
  818. part_25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  819. part_25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  820. part_25.BrickColor = BrickColor.new("Dark stone grey")
  821. part_25.Friction = 0.3
  822. part_25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  823.  
  824. mesh_2 = Instance.new("SpecialMesh", part_25)
  825. mesh_2.MeshType = Enum.MeshType.Sphere
  826.  
  827. part_26 = Instance.new("Part", propeller3)
  828. part_26.FormFactor = Enum.FormFactor.Plate
  829. part_26.CanCollide = false
  830. part_26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  831. part_26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  832. part_26.Material = Enum.Material.SmoothPlastic
  833. part_26.Size = Vector3.new(2, 0.4, 5)
  834. part_26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  835. part_26.CFrame = CFrame.new(17.409, 4.015, -138.6)* CFrame.Angles(-1.5708765983582, 1.0472055673599, -3.1415021419525)
  836. part_26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  837. part_26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  838. part_26.BrickColor = BrickColor.new("Dark stone grey")
  839. part_26.Friction = 0.3
  840. part_26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  841.  
  842. mesh_3 = Instance.new("SpecialMesh", part_26)
  843. mesh_3.MeshType = Enum.MeshType.Sphere
  844.  
  845. mainseat = Instance.new("Seat", mcarrier)
  846. mainseat.Friction = 0.3
  847. mainseat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  848. mainseat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  849. mainseat.TopSurface = Enum.SurfaceType.Smooth
  850. mainseat.FormFactor = Enum.FormFactor.Custom
  851. mainseat.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  852. mainseat.BrickColor = BrickColor.new("Black")
  853. mainseat.Size = Vector3.new(2, 1, 2)
  854. mainseat.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  855. mainseat.CFrame = CFrame.new(1.599, 5.3, -162.501)* CFrame.Angles(1.5113250928511e-011, -2.9842770507375e-013, -7.5566228621704e-012)
  856. mainseat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  857. mainseat.Name = "mainseat"
  858.  
  859. part_27 = Instance.new("Part", mcarrier)
  860. part_27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  861. part_27.TopSurface = Enum.SurfaceType.Smooth
  862. part_27.Size = Vector3.new(2, 4.8, 1)
  863. part_27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  864. part_27.CFrame = CFrame.new(0.599, 7.2, -113.001)* CFrame.Angles(6.5666715121093e-011, -1.5707963705063, 0)
  865. part_27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  866. part_27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  867. part_27.BrickColor = BrickColor.new("Black")
  868. part_27.Friction = 0.3
  869. part_27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  870.  
  871. seat_24 = Instance.new("Seat", mcarrier)
  872. seat_24.Friction = 0.3
  873. seat_24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  874. seat_24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  875. seat_24.TopSurface = Enum.SurfaceType.Smooth
  876. seat_24.FormFactor = Enum.FormFactor.Custom
  877. seat_24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  878. seat_24.BrickColor = BrickColor.new("Black")
  879. seat_24.Size = Vector3.new(2, 1, 2)
  880. seat_24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  881. seat_24.CFrame = CFrame.new(2.099, 5.3, -113.001)* CFrame.Angles(6.5654100211976e-011, -1.5707963705063, 0)
  882. seat_24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  883.  
  884. part_28 = Instance.new("Part", mcarrier)
  885. part_28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  886. part_28.TopSurface = Enum.SurfaceType.Smooth
  887. part_28.Size = Vector3.new(2, 4.8, 1)
  888. part_28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  889. part_28.CFrame = CFrame.new(1.599, 7.2, -161.001)* CFrame.Angles(1.5125864102905e-011, -4.3711565922422e-008, -7.5585778955278e-012)
  890. part_28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  891. part_28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  892. part_28.BrickColor = BrickColor.new("Black")
  893. part_28.Friction = 0.3
  894. part_28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  895.  
  896. part_29 = Instance.new("Part", mcarrier)
  897. part_29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  898. part_29.TopSurface = Enum.SurfaceType.Smooth
  899. part_29.Size = Vector3.new(2, 4.8, 1)
  900. part_29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  901. part_29.CFrame = CFrame.new(8.799, 7.2, -161.001)* CFrame.Angles(1.5125864102905e-011, -4.3711565922422e-008, -7.5585778955278e-012)
  902. part_29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  903. part_29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  904. part_29.BrickColor = BrickColor.new("Black")
  905. part_29.Friction = 0.3
  906. part_29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  907.  
  908. seat_25 = Instance.new("Seat", mcarrier)
  909. seat_25.Friction = 0.3
  910. seat_25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  911. seat_25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  912. seat_25.TopSurface = Enum.SurfaceType.Smooth
  913. seat_25.FormFactor = Enum.FormFactor.Custom
  914. seat_25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  915. seat_25.BrickColor = BrickColor.new("Black")
  916. seat_25.Size = Vector3.new(2, 1, 2)
  917. seat_25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  918. seat_25.CFrame = CFrame.new(8.799, 5.3, -162.501)* CFrame.Angles(1.5113250928511e-011, -2.9842770507375e-013, -7.5566228621704e-012)
  919. seat_25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  920.  
  921. propeller4 = Instance.new("Model", mcarrier)
  922. propeller4.Name = "propeller4"
  923.  
  924. propellercenter_2 = Instance.new("Part", propeller4)
  925. propellercenter_2.FormFactor = Enum.FormFactor.Symmetric
  926. propellercenter_2.CanCollide = false
  927. propellercenter_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  928. propellercenter_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  929. propellercenter_2.Material = Enum.Material.SmoothPlastic
  930. propellercenter_2.Size = Vector3.new(2, 2, 2)
  931. propellercenter_2.Name = "propellercenter"
  932. propellercenter_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  933. propellercenter_2.CFrame = CFrame.new(26.309, 5.208, -136.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0)
  934. propellercenter_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  935. propellercenter_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  936. propellercenter_2.BrickColor = BrickColor.new("Dark stone grey")
  937. propellercenter_2.Friction = 0.3
  938. propellercenter_2.Shape = Enum.PartType.Cylinder
  939. propellercenter_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  940.  
  941. part_30 = Instance.new("Part", propeller4)
  942. part_30.FormFactor = Enum.FormFactor.Plate
  943. part_30.CanCollide = false
  944. part_30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  945. part_30.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  946. part_30.Material = Enum.Material.SmoothPlastic
  947. part_30.Size = Vector3.new(2, 0.4, 5)
  948. part_30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  949. part_30.CFrame = CFrame.new(27.809, 3.708, -136.6)* CFrame.Angles(-1.5707515478134, -0.76795387268066, -3.1415314674377)
  950. part_30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  951. part_30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  952. part_30.BrickColor = BrickColor.new("Dark stone grey")
  953. part_30.Friction = 0.3
  954. part_30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  955.  
  956. mesh_4 = Instance.new("SpecialMesh", part_30)
  957. mesh_4.MeshType = Enum.MeshType.Sphere
  958.  
  959. part_31 = Instance.new("Part", propeller4)
  960. part_31.FormFactor = Enum.FormFactor.Plate
  961. part_31.CanCollide = false
  962. part_31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  963. part_31.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  964. part_31.Material = Enum.Material.SmoothPlastic
  965. part_31.Size = Vector3.new(2, 0.4, 5)
  966. part_31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  967. part_31.CFrame = CFrame.new(26.309, 7.708, -136.6)* CFrame.Angles(-1.5707963705063, 1.4532548497925e-008, -3.1415505409241)
  968. part_31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  969. part_31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  970. part_31.BrickColor = BrickColor.new("Dark stone grey")
  971. part_31.Friction = 0.3
  972. part_31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  973.  
  974. mesh_5 = Instance.new("SpecialMesh", part_31)
  975. mesh_5.MeshType = Enum.MeshType.Sphere
  976.  
  977. part_32 = Instance.new("Part", propeller4)
  978. part_32.FormFactor = Enum.FormFactor.Plate
  979. part_32.CanCollide = false
  980. part_32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  981. part_32.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  982. part_32.Material = Enum.Material.SmoothPlastic
  983. part_32.Size = Vector3.new(2, 0.4, 5)
  984. part_32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  985. part_32.CFrame = CFrame.new(24.309, 3.908, -136.6)* CFrame.Angles(-1.5708765983582, 1.0472055673599, -3.1415021419525)
  986. part_32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  987. part_32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  988. part_32.BrickColor = BrickColor.new("Dark stone grey")
  989. part_32.Friction = 0.3
  990. part_32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  991.  
  992. mesh_6 = Instance.new("SpecialMesh", part_32)
  993. mesh_6.MeshType = Enum.MeshType.Sphere
  994.  
  995. propeller1pos = Instance.new("Part", mcarrier)
  996. propeller1pos.FormFactor = Enum.FormFactor.Symmetric
  997. propeller1pos.CanCollide = false
  998. propeller1pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  999. propeller1pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1000. propeller1pos.Material = Enum.Material.SmoothPlastic
  1001. propeller1pos.Size = Vector3.new(2, 2, 2)
  1002. propeller1pos.Name = "propeller1pos"
  1003. propeller1pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1004. propeller1pos.CFrame = CFrame.new(-16.191, 5.092, -136.5)* CFrame.Angles(-3.7818981724058e-008, 1.5707963705063, 0)
  1005. propeller1pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1006. propeller1pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1007. propeller1pos.BrickColor = BrickColor.new("Dark stone grey")
  1008. propeller1pos.Friction = 0.3
  1009. propeller1pos.Shape = Enum.PartType.Cylinder
  1010. propeller1pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1011.  
  1012. propeller4pos = Instance.new("Part", mcarrier)
  1013. propeller4pos.FormFactor = Enum.FormFactor.Symmetric
  1014. propeller4pos.CanCollide = false
  1015. propeller4pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. propeller4pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1017. propeller4pos.Material = Enum.Material.SmoothPlastic
  1018. propeller4pos.Size = Vector3.new(2, 2, 2)
  1019. propeller4pos.Name = "propeller4pos"
  1020. propeller4pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1021. propeller4pos.CFrame = CFrame.new(26.309, 5.208, -136.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0)
  1022. propeller4pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1023. propeller4pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1024. propeller4pos.BrickColor = BrickColor.new("Dark stone grey")
  1025. propeller4pos.Friction = 0.3
  1026. propeller4pos.Shape = Enum.PartType.Cylinder
  1027. propeller4pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1028.  
  1029. propeller2 = Instance.new("Model", mcarrier)
  1030. propeller2.Name = "propeller2"
  1031.  
  1032. propellercenter_3 = Instance.new("Part", propeller2)
  1033. propellercenter_3.FormFactor = Enum.FormFactor.Symmetric
  1034. propellercenter_3.CanCollide = false
  1035. propellercenter_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. propellercenter_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1037. propellercenter_3.Material = Enum.Material.SmoothPlastic
  1038. propellercenter_3.Size = Vector3.new(2, 2, 2)
  1039. propellercenter_3.Name = "propellercenter"
  1040. propellercenter_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1041. propellercenter_3.CFrame = CFrame.new(-8.291, 5.093, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0)
  1042. propellercenter_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1043. propellercenter_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1044. propellercenter_3.BrickColor = BrickColor.new("Dark stone grey")
  1045. propellercenter_3.Friction = 0.3
  1046. propellercenter_3.Shape = Enum.PartType.Cylinder
  1047. propellercenter_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1048.  
  1049. part_33 = Instance.new("Part", propeller2)
  1050. part_33.FormFactor = Enum.FormFactor.Plate
  1051. part_33.CanCollide = false
  1052. part_33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1053. part_33.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. part_33.Material = Enum.Material.SmoothPlastic
  1055. part_33.Size = Vector3.new(2, 0.4, 5)
  1056. part_33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1057. part_33.CFrame = CFrame.new(-6.791, 3.593, -138.6)* CFrame.Angles(-1.5707515478134, -0.76795387268066, -3.1415314674377)
  1058. part_33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1059. part_33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1060. part_33.BrickColor = BrickColor.new("Dark stone grey")
  1061. part_33.Friction = 0.3
  1062. part_33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1063.  
  1064. mesh_7 = Instance.new("SpecialMesh", part_33)
  1065. mesh_7.MeshType = Enum.MeshType.Sphere
  1066.  
  1067. part_34 = Instance.new("Part", propeller2)
  1068. part_34.FormFactor = Enum.FormFactor.Plate
  1069. part_34.CanCollide = false
  1070. part_34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1071. part_34.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. part_34.Material = Enum.Material.SmoothPlastic
  1073. part_34.Size = Vector3.new(2, 0.4, 5)
  1074. part_34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. part_34.CFrame = CFrame.new(-8.291, 7.593, -138.6)* CFrame.Angles(-1.5707963705063, 1.4532548497925e-008, -3.1415505409241)
  1076. part_34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1077. part_34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. part_34.BrickColor = BrickColor.new("Dark stone grey")
  1079. part_34.Friction = 0.3
  1080. part_34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1081.  
  1082. mesh_8 = Instance.new("SpecialMesh", part_34)
  1083. mesh_8.MeshType = Enum.MeshType.Sphere
  1084.  
  1085. part_35 = Instance.new("Part", propeller2)
  1086. part_35.FormFactor = Enum.FormFactor.Plate
  1087. part_35.CanCollide = false
  1088. part_35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1089. part_35.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1090. part_35.Material = Enum.Material.SmoothPlastic
  1091. part_35.Size = Vector3.new(2, 0.4, 5)
  1092. part_35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. part_35.CFrame = CFrame.new(-10.291, 3.793, -138.6)* CFrame.Angles(-1.5708765983582, 1.0472055673599, -3.1415021419525)
  1094. part_35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1095. part_35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1096. part_35.BrickColor = BrickColor.new("Dark stone grey")
  1097. part_35.Friction = 0.3
  1098. part_35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1099.  
  1100. mesh_9 = Instance.new("SpecialMesh", part_35)
  1101. mesh_9.MeshType = Enum.MeshType.Sphere
  1102.  
  1103. troopdooropen = Instance.new("Part", mcarrier)
  1104. troopdooropen.FormFactor = Enum.FormFactor.Custom
  1105. troopdooropen.CanCollide = true
  1106. troopdooropen.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. troopdooropen.Transparency = 0
  1108. troopdooropen.TopSurface = Enum.SurfaceType.Smooth
  1109. troopdooropen.Material = Enum.Material.SmoothPlastic
  1110. troopdooropen.Size = Vector3.new(12, 8.4, 1)
  1111. troopdooropen.Name = "troopdooropen"
  1112. troopdooropen.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. troopdooropen.CFrame = CFrame.new(5, 3.4, -89.1)* CFrame.Angles(1.7976890802383, 0, -0)
  1114. troopdooropen.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1115. troopdooropen.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1116. troopdooropen.BrickColor = BrickColor.new("Buttermilk")
  1117. troopdooropen.Friction = 0.3
  1118. troopdooropen.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1119.  
  1120. mesh_10 = Instance.new("SpecialMesh", troopdooropen)
  1121. mesh_10.MeshType = Enum.MeshType.Wedge
  1122.  
  1123. propeller3pos = Instance.new("Part", mcarrier)
  1124. propeller3pos.FormFactor = Enum.FormFactor.Symmetric
  1125. propeller3pos.CanCollide = false
  1126. propeller3pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. propeller3pos.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1128. propeller3pos.Material = Enum.Material.SmoothPlastic
  1129. propeller3pos.Size = Vector3.new(2, 2, 2)
  1130. propeller3pos.Name = "propeller3pos"
  1131. propeller3pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. propeller3pos.CFrame = CFrame.new(19.409, 5.315, -138.2)* CFrame.Angles(-5.0020066311163e-008, 1.5707963705063, 0)
  1133. propeller3pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. propeller3pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1135. propeller3pos.BrickColor = BrickColor.new("Dark stone grey")
  1136. propeller3pos.Friction = 0.3
  1137. propeller3pos.Shape = Enum.PartType.Cylinder
  1138. propeller3pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1139.  
  1140. propeller1 = Instance.new("Model", mcarrier)
  1141. propeller1.Name = "propeller1"
  1142.  
  1143. propellercenter_4 = Instance.new("Part", propeller1)
  1144. propellercenter_4.FormFactor = Enum.FormFactor.Symmetric
  1145. propellercenter_4.CanCollide = false
  1146. propellercenter_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1147. propellercenter_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1148. propellercenter_4.Material = Enum.Material.SmoothPlastic
  1149. propellercenter_4.Size = Vector3.new(2, 2, 2)
  1150. propellercenter_4.Name = "propellercenter"
  1151. propellercenter_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. propellercenter_4.CFrame = CFrame.new(-16.191, 5.093, -136.5)* CFrame.Angles(-3.7818981724058e-008, 1.5707963705063, 0)
  1153. propellercenter_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1154. propellercenter_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. propellercenter_4.BrickColor = BrickColor.new("Dark stone grey")
  1156. propellercenter_4.Friction = 0.3
  1157. propellercenter_4.Shape = Enum.PartType.Cylinder
  1158. propellercenter_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1159.  
  1160. part_36 = Instance.new("Part", propeller1)
  1161. part_36.FormFactor = Enum.FormFactor.Plate
  1162. part_36.CanCollide = false
  1163. part_36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1164. part_36.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1165. part_36.Material = Enum.Material.SmoothPlastic
  1166. part_36.Size = Vector3.new(2, 0.4, 5)
  1167. part_36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. part_36.CFrame = CFrame.new(-14.691, 3.593, -136.9)* CFrame.Angles(-1.5707515478134, -0.7679540514946, -3.1415314674377)
  1169. part_36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. part_36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1171. part_36.BrickColor = BrickColor.new("Dark stone grey")
  1172. part_36.Friction = 0.3
  1173. part_36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1174.  
  1175. mesh_11 = Instance.new("SpecialMesh", part_36)
  1176. mesh_11.MeshType = Enum.MeshType.Sphere
  1177.  
  1178. part_37 = Instance.new("Part", propeller1)
  1179. part_37.FormFactor = Enum.FormFactor.Plate
  1180. part_37.CanCollide = false
  1181. part_37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1182. part_37.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1183. part_37.Material = Enum.Material.SmoothPlastic
  1184. part_37.Size = Vector3.new(2, 0.4, 5)
  1185. part_37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1186. part_37.CFrame = CFrame.new(-16.191, 7.593, -136.9)* CFrame.Angles(-1.5707963705063, -2.336129654168e-007, -3.1415505409241)
  1187. part_37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. part_37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. part_37.BrickColor = BrickColor.new("Dark stone grey")
  1190. part_37.Friction = 0.3
  1191. part_37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1192.  
  1193. mesh_12 = Instance.new("SpecialMesh", part_37)
  1194. mesh_12.MeshType = Enum.MeshType.Sphere
  1195.  
  1196. part_38 = Instance.new("Part", propeller1)
  1197. part_38.FormFactor = Enum.FormFactor.Plate
  1198. part_38.CanCollide = false
  1199. part_38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1200. part_38.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1201. part_38.Material = Enum.Material.SmoothPlastic
  1202. part_38.Size = Vector3.new(2, 0.4, 5)
  1203. part_38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1204. part_38.CFrame = CFrame.new(-18.191, 3.793, -136.9)* CFrame.Angles(-1.5708764791489, 1.0472053289413, -3.1415021419525)
  1205. part_38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1206. part_38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. part_38.BrickColor = BrickColor.new("Dark stone grey")
  1208. part_38.Friction = 0.3
  1209. part_38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1210.  
  1211. mesh_13 = Instance.new("SpecialMesh", part_38)
  1212. mesh_13.MeshType = Enum.MeshType.Sphere
  1213.  
  1214. part_39 = Instance.new("Part", mcarrier)
  1215. part_39.FormFactor = Enum.FormFactor.Plate
  1216. part_39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1217. part_39.TopSurface = Enum.SurfaceType.Smooth
  1218. part_39.Material = Enum.Material.SmoothPlastic
  1219. part_39.Size = Vector3.new(3, 0.8, 2)
  1220. part_39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1221. part_39.CFrame = CFrame.new(32.4, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  1222. part_39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1223. part_39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. part_39.BrickColor = BrickColor.new("Dark stone grey")
  1225. part_39.Friction = 0.3
  1226. part_39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. part_39.Name = "Wheel1"
  1228.  
  1229. mesh_14 = Instance.new("CylinderMesh", part_39)
  1230.  
  1231. part_40 = Instance.new("Part", mcarrier)
  1232. part_40.FormFactor = Enum.FormFactor.Plate
  1233. part_40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. part_40.TopSurface = Enum.SurfaceType.Smooth
  1235. part_40.Material = Enum.Material.SmoothPlastic
  1236. part_40.Size = Vector3.new(3, 0.8, 2)
  1237. part_40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. part_40.CFrame = CFrame.new(-22.6, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  1239. part_40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. part_40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. part_40.BrickColor = BrickColor.new("Dark stone grey")
  1242. part_40.Friction = 0.3
  1243. part_40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1244. part_40.Name = "Wheel2"
  1245.  
  1246. mesh_15 = Instance.new("CylinderMesh", part_40)
  1247.  
  1248. part_41 = Instance.new("Part", mcarrier)
  1249. part_41.FormFactor = Enum.FormFactor.Plate
  1250. part_41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1251. part_41.TopSurface = Enum.SurfaceType.Smooth
  1252. part_41.Material = Enum.Material.SmoothPlastic
  1253. part_41.Size = Vector3.new(6, 2, 2)
  1254. part_41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. part_41.CFrame = CFrame.new(5, 7, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1256. part_41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1257. part_41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1258. part_41.BrickColor = BrickColor.new("Dark stone grey")
  1259. part_41.Friction = 0.3
  1260. part_41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1261.  
  1262. mesh_16 = Instance.new("SpecialMesh", part_41)
  1263. mesh_16.MeshType = Enum.MeshType.Wedge
  1264.  
  1265. part_42 = Instance.new("Part", mcarrier)
  1266. part_42.FormFactor = Enum.FormFactor.Plate
  1267. part_42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1268. part_42.TopSurface = Enum.SurfaceType.Smooth
  1269. part_42.Material = Enum.Material.SmoothPlastic
  1270. part_42.Size = Vector3.new(3, 0.8, 2)
  1271. part_42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1272. part_42.CFrame = CFrame.new(32.4, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  1273. part_42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. part_42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. part_42.BrickColor = BrickColor.new("Dark stone grey")
  1276. part_42.Friction = 0.3
  1277. part_42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1278. part_42.Name = "Wheel3"
  1279.  
  1280. mesh_17 = Instance.new("CylinderMesh", part_42)
  1281.  
  1282. part_43 = Instance.new("Part", mcarrier)
  1283. part_43.FormFactor = Enum.FormFactor.Plate
  1284. part_43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. part_43.TopSurface = Enum.SurfaceType.Smooth
  1286. part_43.Material = Enum.Material.SmoothPlastic
  1287. part_43.Size = Vector3.new(2, 2.8, 2)
  1288. part_43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1289. part_43.CFrame = CFrame.new(1, 6.2, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  1290. part_43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1291. part_43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1292. part_43.BrickColor = BrickColor.new("Dark stone grey")
  1293. part_43.Friction = 0.3
  1294. part_43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1295.  
  1296. mesh_18 = Instance.new("BlockMesh", part_43)
  1297.  
  1298. part_44 = Instance.new("Part", mcarrier)
  1299. part_44.FormFactor = Enum.FormFactor.Plate
  1300. part_44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1301. part_44.TopSurface = Enum.SurfaceType.Smooth
  1302. part_44.Material = Enum.Material.SmoothPlastic
  1303. part_44.Size = Vector3.new(1, 4.4, 3)
  1304. part_44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. part_44.CFrame = CFrame.new(8.5, 10.2, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1306. part_44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. part_44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. part_44.BrickColor = BrickColor.new("Buttermilk")
  1309. part_44.Friction = 0.3
  1310. part_44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1311.  
  1312. mesh_19 = Instance.new("BlockMesh", part_44)
  1313.  
  1314. part_45 = Instance.new("Part", mcarrier)
  1315. part_45.FormFactor = Enum.FormFactor.Plate
  1316. part_45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1317. part_45.Transparency = 0.5
  1318. part_45.TopSurface = Enum.SurfaceType.Smooth
  1319. part_45.Material = Enum.Material.SmoothPlastic
  1320. part_45.Size = Vector3.new(4, 3.2, 1)
  1321. part_45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. part_45.CFrame = CFrame.new(-0.5, 9.6, -164)* CFrame.Angles(-0, -1.5707963705063, 0)
  1323. part_45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1324. part_45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1325. part_45.BrickColor = BrickColor.new("Buttermilk")
  1326. part_45.Friction = 0.3
  1327. part_45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1328.  
  1329. mesh_20 = Instance.new("BlockMesh", part_45)
  1330.  
  1331. part_46 = Instance.new("Part", mcarrier)
  1332. part_46.FormFactor = Enum.FormFactor.Plate
  1333. part_46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1334. part_46.Transparency = 0.5
  1335. part_46.TopSurface = Enum.SurfaceType.Smooth
  1336. part_46.Material = Enum.Material.SmoothPlastic
  1337. part_46.Size = Vector3.new(4, 3.2, 1)
  1338. part_46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1339. part_46.CFrame = CFrame.new(10.5, 9.6, -164)* CFrame.Angles(-0, -1.5707963705063, 0)
  1340. part_46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1341. part_46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1342. part_46.BrickColor = BrickColor.new("Buttermilk")
  1343. part_46.Friction = 0.3
  1344. part_46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1345.  
  1346. mesh_21 = Instance.new("BlockMesh", part_46)
  1347.  
  1348. part_47 = Instance.new("Part", mcarrier)
  1349. part_47.FormFactor = Enum.FormFactor.Plate
  1350. part_47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. part_47.TopSurface = Enum.SurfaceType.Smooth
  1352. part_47.Material = Enum.Material.SmoothPlastic
  1353. part_47.Size = Vector3.new(4, 1.2, 1)
  1354. part_47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. part_47.CFrame = CFrame.new(10.5, 11.8, -164)* CFrame.Angles(-0, -1.5707963705063, 0)
  1356. part_47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1357. part_47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1358. part_47.BrickColor = BrickColor.new("Buttermilk")
  1359. part_47.Friction = 0.3
  1360. part_47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1361.  
  1362. mesh_22 = Instance.new("BlockMesh", part_47)
  1363.  
  1364. part_48 = Instance.new("Part", mcarrier)
  1365. part_48.FormFactor = Enum.FormFactor.Plate
  1366. part_48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1367. part_48.TopSurface = Enum.SurfaceType.Smooth
  1368. part_48.Material = Enum.Material.SmoothPlastic
  1369. part_48.Size = Vector3.new(7, 4.4, 1)
  1370. part_48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1371. part_48.CFrame = CFrame.new(10.5, 10.2, -158.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1372. part_48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. part_48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. part_48.BrickColor = BrickColor.new("Buttermilk")
  1375. part_48.Friction = 0.3
  1376. part_48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1377.  
  1378. mesh_23 = Instance.new("BlockMesh", part_48)
  1379.  
  1380. part_49 = Instance.new("Part", mcarrier)
  1381. part_49.FormFactor = Enum.FormFactor.Plate
  1382. part_49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1383. part_49.TopSurface = Enum.SurfaceType.Smooth
  1384. part_49.Material = Enum.Material.SmoothPlastic
  1385. part_49.Size = Vector3.new(7, 4.4, 1)
  1386. part_49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. part_49.CFrame = CFrame.new(-0.5, 10.2, -158.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1388. part_49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. part_49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1390. part_49.BrickColor = BrickColor.new("Buttermilk")
  1391. part_49.Friction = 0.3
  1392. part_49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1393.  
  1394. mesh_24 = Instance.new("BlockMesh", part_49)
  1395.  
  1396. part_50 = Instance.new("Part", mcarrier)
  1397. part_50.FormFactor = Enum.FormFactor.Plate
  1398. part_50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1399. part_50.TopSurface = Enum.SurfaceType.Smooth
  1400. part_50.Material = Enum.Material.SmoothPlastic
  1401. part_50.Size = Vector3.new(4, 1.2, 1)
  1402. part_50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. part_50.CFrame = CFrame.new(-0.5, 11.8, -164)* CFrame.Angles(-0, -1.5707963705063, 0)
  1404. part_50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1405. part_50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1406. part_50.BrickColor = BrickColor.new("Buttermilk")
  1407. part_50.Friction = 0.3
  1408. part_50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1409.  
  1410. mesh_25 = Instance.new("BlockMesh", part_50)
  1411.  
  1412. part_51 = Instance.new("Part", mcarrier)
  1413. part_51.FormFactor = Enum.FormFactor.Plate
  1414. part_51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. part_51.TopSurface = Enum.SurfaceType.Smooth
  1416. part_51.Material = Enum.Material.SmoothPlastic
  1417. part_51.Size = Vector3.new(1, 4.4, 3)
  1418. part_51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1419. part_51.CFrame = CFrame.new(1.5, 10.2, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1420. part_51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1421. part_51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1422. part_51.BrickColor = BrickColor.new("Buttermilk")
  1423. part_51.Friction = 0.3
  1424. part_51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1425.  
  1426. mesh_26 = Instance.new("BlockMesh", part_51)
  1427.  
  1428. part_52 = Instance.new("Part", mcarrier)
  1429. part_52.FormFactor = Enum.FormFactor.Plate
  1430. part_52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1431. part_52.Transparency = 0.5
  1432. part_52.TopSurface = Enum.SurfaceType.Smooth
  1433. part_52.Material = Enum.Material.SmoothPlastic
  1434. part_52.Size = Vector3.new(10, 1.6, 2)
  1435. part_52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1436. part_52.CFrame = CFrame.new(5, 12, -167)
  1437. part_52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. part_52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1439. part_52.BrickColor = BrickColor.new("Buttermilk")
  1440. part_52.Friction = 0.3
  1441. part_52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1442.  
  1443. mesh_27 = Instance.new("SpecialMesh", part_52)
  1444. mesh_27.MeshType = Enum.MeshType.Wedge
  1445.  
  1446. part_53 = Instance.new("Part", mcarrier)
  1447. part_53.FormFactor = Enum.FormFactor.Plate
  1448. part_53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1449. part_53.TopSurface = Enum.SurfaceType.Smooth
  1450. part_53.Material = Enum.Material.SmoothPlastic
  1451. part_53.Size = Vector3.new(12, 2, 2)
  1452. part_53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. part_53.CFrame = CFrame.new(5, 5, -171)* CFrame.Angles(-1.5707963705063, 0, -0)
  1454. part_53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. part_53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1456. part_53.BrickColor = BrickColor.new("Dark stone grey")
  1457. part_53.Friction = 0.3
  1458. part_53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. part_53.Name = "crasherfront"
  1460.  
  1461. mesh_28 = Instance.new("SpecialMesh", part_53)
  1462. mesh_28.MeshType = Enum.MeshType.Wedge
  1463.  
  1464. part_54 = Instance.new("Part", mcarrier)
  1465. part_54.FormFactor = Enum.FormFactor.Plate
  1466. part_54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1467. part_54.TopSurface = Enum.SurfaceType.Smooth
  1468. part_54.Material = Enum.Material.SmoothPlastic
  1469. part_54.Size = Vector3.new(1, 1.6, 2)
  1470. part_54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1471. part_54.CFrame = CFrame.new(-0.5, 12, -167)
  1472. part_54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. part_54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1474. part_54.BrickColor = BrickColor.new("Buttermilk")
  1475. part_54.Friction = 0.3
  1476. part_54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1477.  
  1478. mesh_29 = Instance.new("SpecialMesh", part_54)
  1479. mesh_29.MeshType = Enum.MeshType.Wedge
  1480.  
  1481. part_55 = Instance.new("Part", mcarrier)
  1482. part_55.FormFactor = Enum.FormFactor.Plate
  1483. part_55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1484. part_55.TopSurface = Enum.SurfaceType.Smooth
  1485. part_55.Material = Enum.Material.SmoothPlastic
  1486. part_55.Size = Vector3.new(1, 1.6, 2)
  1487. part_55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1488. part_55.CFrame = CFrame.new(10.5, 12, -167)
  1489. part_55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1490. part_55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1491. part_55.BrickColor = BrickColor.new("Buttermilk")
  1492. part_55.Friction = 0.3
  1493. part_55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1494.  
  1495. mesh_30 = Instance.new("SpecialMesh", part_55)
  1496. mesh_30.MeshType = Enum.MeshType.Wedge
  1497.  
  1498. part_56 = Instance.new("Part", mcarrier)
  1499. part_56.FormFactor = Enum.FormFactor.Plate
  1500. part_56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1501. part_56.TopSurface = Enum.SurfaceType.Smooth
  1502. part_56.Material = Enum.Material.SmoothPlastic
  1503. part_56.Size = Vector3.new(1, 3.2, 2)
  1504. part_56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1505. part_56.CFrame = CFrame.new(-0.5, 9.6, -169)
  1506. part_56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1507. part_56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1508. part_56.BrickColor = BrickColor.new("Buttermilk")
  1509. part_56.Friction = 0.3
  1510. part_56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1511.  
  1512. mesh_31 = Instance.new("SpecialMesh", part_56)
  1513. mesh_31.MeshType = Enum.MeshType.Wedge
  1514.  
  1515. part_57 = Instance.new("Part", mcarrier)
  1516. part_57.FormFactor = Enum.FormFactor.Plate
  1517. part_57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1518. part_57.Transparency = 0.5
  1519. part_57.TopSurface = Enum.SurfaceType.Smooth
  1520. part_57.Material = Enum.Material.SmoothPlastic
  1521. part_57.Size = Vector3.new(10, 3.2, 2)
  1522. part_57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1523. part_57.CFrame = CFrame.new(5, 9.6, -169)
  1524. part_57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1525. part_57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1526. part_57.BrickColor = BrickColor.new("Buttermilk")
  1527. part_57.Friction = 0.3
  1528. part_57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1529.  
  1530. mesh_32 = Instance.new("SpecialMesh", part_57)
  1531. mesh_32.MeshType = Enum.MeshType.Wedge
  1532.  
  1533. part_58 = Instance.new("Part", mcarrier)
  1534. part_58.FormFactor = Enum.FormFactor.Plate
  1535. part_58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1536. part_58.TopSurface = Enum.SurfaceType.Smooth
  1537. part_58.Material = Enum.Material.SmoothPlastic
  1538. part_58.Size = Vector3.new(12, 2, 2)
  1539. part_58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1540. part_58.CFrame = CFrame.new(5, 7, -171)
  1541. part_58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1542. part_58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1543. part_58.BrickColor = BrickColor.new("Buttermilk")
  1544. part_58.Friction = 0.3
  1545. part_58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1546.  
  1547. mesh_33 = Instance.new("SpecialMesh", part_58)
  1548. mesh_33.MeshType = Enum.MeshType.Wedge
  1549.  
  1550. part_59 = Instance.new("Part", mcarrier)
  1551. part_59.FormFactor = Enum.FormFactor.Plate
  1552. part_59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. part_59.TopSurface = Enum.SurfaceType.Smooth
  1554. part_59.Material = Enum.Material.SmoothPlastic
  1555. part_59.Size = Vector3.new(1, 3.2, 2)
  1556. part_59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1557. part_59.CFrame = CFrame.new(10.5, 9.6, -169)
  1558. part_59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1559. part_59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1560. part_59.BrickColor = BrickColor.new("Buttermilk")
  1561. part_59.Friction = 0.3
  1562. part_59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1563.  
  1564. mesh_34 = Instance.new("SpecialMesh", part_59)
  1565. mesh_34.MeshType = Enum.MeshType.Wedge
  1566.  
  1567. part_60 = Instance.new("Part", mcarrier)
  1568. part_60.FormFactor = Enum.FormFactor.Plate
  1569. part_60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. part_60.TopSurface = Enum.SurfaceType.Smooth
  1571. part_60.Material = Enum.Material.SmoothPlastic
  1572. part_60.Size = Vector3.new(2, 3.2, 1)
  1573. part_60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1574. part_60.CFrame = CFrame.new(10.5, 9.6, -167)* CFrame.Angles(-0, -1.5707963705063, 0)
  1575. part_60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1576. part_60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1577. part_60.BrickColor = BrickColor.new("Buttermilk")
  1578. part_60.Friction = 0.3
  1579. part_60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1580.  
  1581. mesh_35 = Instance.new("BlockMesh", part_60)
  1582.  
  1583. part_61 = Instance.new("Part", mcarrier)
  1584. part_61.FormFactor = Enum.FormFactor.Plate
  1585. part_61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1586. part_61.TopSurface = Enum.SurfaceType.Smooth
  1587. part_61.Material = Enum.Material.SmoothPlastic
  1588. part_61.Size = Vector3.new(3, 3.6, 1)
  1589. part_61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1590. part_61.CFrame = CFrame.new(10.5, 9.8, -142.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1591. part_61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1592. part_61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1593. part_61.BrickColor = BrickColor.new("Dark stone grey")
  1594. part_61.Friction = 0.3
  1595. part_61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1596.  
  1597. mesh_36 = Instance.new("BlockMesh", part_61)
  1598.  
  1599. part_62 = Instance.new("Part", mcarrier)
  1600. part_62.FormFactor = Enum.FormFactor.Plate
  1601. part_62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1602. part_62.TopSurface = Enum.SurfaceType.Smooth
  1603. part_62.Material = Enum.Material.SmoothPlastic
  1604. part_62.Size = Vector3.new(10, 0.8, 12)
  1605. part_62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. part_62.CFrame = CFrame.new(5, 12.8, -160)* CFrame.Angles(-0, -1.5707963705063, 0)
  1607. part_62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1608. part_62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1609. part_62.BrickColor = BrickColor.new("Buttermilk")
  1610. part_62.Friction = 0.3
  1611. part_62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1612.  
  1613. mesh_37 = Instance.new("BlockMesh", part_62)
  1614.  
  1615. part_63 = Instance.new("Part", mcarrier)
  1616. part_63.FormFactor = Enum.FormFactor.Plate
  1617. part_63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1618. part_63.TopSurface = Enum.SurfaceType.Smooth
  1619. part_63.Material = Enum.Material.SmoothPlastic
  1620. part_63.Size = Vector3.new(2, 3.2, 1)
  1621. part_63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1622. part_63.CFrame = CFrame.new(-0.5, 9.6, -167)* CFrame.Angles(-0, -1.5707963705063, 0)
  1623. part_63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1624. part_63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. part_63.BrickColor = BrickColor.new("Buttermilk")
  1626. part_63.Friction = 0.3
  1627. part_63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1628.  
  1629. mesh_38 = Instance.new("BlockMesh", part_63)
  1630.  
  1631. part_64 = Instance.new("Part", mcarrier)
  1632. part_64.FormFactor = Enum.FormFactor.Plate
  1633. part_64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1634. part_64.TopSurface = Enum.SurfaceType.Smooth
  1635. part_64.Material = Enum.Material.SmoothPlastic
  1636. part_64.Size = Vector3.new(5, 4.8, 1)
  1637. part_64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1638. part_64.CFrame = CFrame.new(-0.5, 10.4, -152.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1639. part_64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1640. part_64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1641. part_64.BrickColor = BrickColor.new("Buttermilk")
  1642. part_64.Friction = 0.3
  1643. part_64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1644.  
  1645. mesh_39 = Instance.new("BlockMesh", part_64)
  1646.  
  1647. part_65 = Instance.new("Part", mcarrier)
  1648. part_65.FormFactor = Enum.FormFactor.Plate
  1649. part_65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1650. part_65.TopSurface = Enum.SurfaceType.Smooth
  1651. part_65.Material = Enum.Material.SmoothPlastic
  1652. part_65.Size = Vector3.new(2, 3.6, 1)
  1653. part_65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1654. part_65.CFrame = CFrame.new(10.5, 9.8, -145)* CFrame.Angles(-0, -1.5707963705063, 0)
  1655. part_65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1656. part_65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. part_65.BrickColor = BrickColor.new("Buttermilk")
  1658. part_65.Friction = 0.3
  1659. part_65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1660.  
  1661. mesh_40 = Instance.new("BlockMesh", part_65)
  1662.  
  1663. part_66 = Instance.new("Part", mcarrier)
  1664. part_66.FormFactor = Enum.FormFactor.Plate
  1665. part_66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1666. part_66.TopSurface = Enum.SurfaceType.Smooth
  1667. part_66.Material = Enum.Material.SmoothPlastic
  1668. part_66.Size = Vector3.new(2, 3.6, 1)
  1669. part_66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1670. part_66.CFrame = CFrame.new(10.5, 9.8, -140)* CFrame.Angles(-0, -1.5707963705063, 0)
  1671. part_66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1672. part_66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1673. part_66.BrickColor = BrickColor.new("Buttermilk")
  1674. part_66.Friction = 0.3
  1675. part_66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1676.  
  1677. mesh_41 = Instance.new("BlockMesh", part_66)
  1678.  
  1679. part_67 = Instance.new("Part", mcarrier)
  1680. part_67.FormFactor = Enum.FormFactor.Plate
  1681. part_67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1682. part_67.TopSurface = Enum.SurfaceType.Smooth
  1683. part_67.Material = Enum.Material.SmoothPlastic
  1684. part_67.Size = Vector3.new(5, 4.8, 1)
  1685. part_67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1686. part_67.CFrame = CFrame.new(10.5, 10.4, -152.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1687. part_67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1688. part_67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1689. part_67.BrickColor = BrickColor.new("Buttermilk")
  1690. part_67.Friction = 0.3
  1691. part_67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1692.  
  1693. mesh_42 = Instance.new("BlockMesh", part_67)
  1694.  
  1695. part_68 = Instance.new("Part", mcarrier)
  1696. part_68.FormFactor = Enum.FormFactor.Plate
  1697. part_68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1698. part_68.TopSurface = Enum.SurfaceType.Smooth
  1699. part_68.Material = Enum.Material.SmoothPlastic
  1700. part_68.Size = Vector3.new(2, 3.6, 1)
  1701. part_68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1702. part_68.CFrame = CFrame.new(10.5, 9.8, -135)* CFrame.Angles(-0, -1.5707963705063, 0)
  1703. part_68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1704. part_68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1705. part_68.BrickColor = BrickColor.new("Buttermilk")
  1706. part_68.Friction = 0.3
  1707. part_68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1708.  
  1709. mesh_43 = Instance.new("BlockMesh", part_68)
  1710.  
  1711. part_69 = Instance.new("Part", mcarrier)
  1712. part_69.FormFactor = Enum.FormFactor.Plate
  1713. part_69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1714. part_69.TopSurface = Enum.SurfaceType.Smooth
  1715. part_69.Material = Enum.Material.SmoothPlastic
  1716. part_69.Size = Vector3.new(2, 3.6, 1)
  1717. part_69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1718. part_69.CFrame = CFrame.new(-0.5, 9.8, -130)* CFrame.Angles(-0, -1.5707963705063, 0)
  1719. part_69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1720. part_69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1721. part_69.BrickColor = BrickColor.new("Buttermilk")
  1722. part_69.Friction = 0.3
  1723. part_69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1724.  
  1725. mesh_44 = Instance.new("BlockMesh", part_69)
  1726.  
  1727. part_70 = Instance.new("Part", mcarrier)
  1728. part_70.FormFactor = Enum.FormFactor.Plate
  1729. part_70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1730. part_70.TopSurface = Enum.SurfaceType.Smooth
  1731. part_70.Material = Enum.Material.SmoothPlastic
  1732. part_70.Size = Vector3.new(4, 3.6, 1)
  1733. part_70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1734. part_70.CFrame = CFrame.new(-0.5, 9.8, -114)* CFrame.Angles(-0, -1.5707963705063, 0)
  1735. part_70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1736. part_70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1737. part_70.BrickColor = BrickColor.new("Buttermilk")
  1738. part_70.Friction = 0.3
  1739. part_70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1740.  
  1741. mesh_45 = Instance.new("BlockMesh", part_70)
  1742.  
  1743. part_71 = Instance.new("Part", mcarrier)
  1744. part_71.FormFactor = Enum.FormFactor.Plate
  1745. part_71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1746. part_71.TopSurface = Enum.SurfaceType.Smooth
  1747. part_71.Material = Enum.Material.SmoothPlastic
  1748. part_71.Size = Vector3.new(2, 3.6, 1)
  1749. part_71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1750. part_71.CFrame = CFrame.new(10.5, 9.8, -130)* CFrame.Angles(-0, -1.5707963705063, 0)
  1751. part_71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. part_71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1753. part_71.BrickColor = BrickColor.new("Buttermilk")
  1754. part_71.Friction = 0.3
  1755. part_71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1756.  
  1757. mesh_46 = Instance.new("BlockMesh", part_71)
  1758.  
  1759. part_72 = Instance.new("Part", mcarrier)
  1760. part_72.FormFactor = Enum.FormFactor.Plate
  1761. part_72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1762. part_72.TopSurface = Enum.SurfaceType.Smooth
  1763. part_72.Material = Enum.Material.SmoothPlastic
  1764. part_72.Size = Vector3.new(2, 3.6, 1)
  1765. part_72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1766. part_72.CFrame = CFrame.new(10.5, 9.8, -125)* CFrame.Angles(-0, -1.5707963705063, 0)
  1767. part_72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1768. part_72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1769. part_72.BrickColor = BrickColor.new("Buttermilk")
  1770. part_72.Friction = 0.3
  1771. part_72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1772.  
  1773. mesh_47 = Instance.new("BlockMesh", part_72)
  1774.  
  1775. part_73 = Instance.new("Part", mcarrier)
  1776. part_73.FormFactor = Enum.FormFactor.Plate
  1777. part_73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1778. part_73.TopSurface = Enum.SurfaceType.Smooth
  1779. part_73.Material = Enum.Material.SmoothPlastic
  1780. part_73.Size = Vector3.new(4, 3.6, 1)
  1781. part_73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1782. part_73.CFrame = CFrame.new(10.5, 9.8, -114)* CFrame.Angles(-0, -1.5707963705063, 0)
  1783. part_73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1784. part_73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1785. part_73.BrickColor = BrickColor.new("Buttermilk")
  1786. part_73.Friction = 0.3
  1787. part_73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1788.  
  1789. mesh_48 = Instance.new("BlockMesh", part_73)
  1790.  
  1791. part_74 = Instance.new("Part", mcarrier)
  1792. part_74.FormFactor = Enum.FormFactor.Plate
  1793. part_74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1794. part_74.TopSurface = Enum.SurfaceType.Smooth
  1795. part_74.Material = Enum.Material.SmoothPlastic
  1796. part_74.Size = Vector3.new(2, 3.6, 1)
  1797. part_74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1798. part_74.CFrame = CFrame.new(-0.5, 9.8, -120)* CFrame.Angles(-0, -1.5707963705063, 0)
  1799. part_74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1800. part_74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1801. part_74.BrickColor = BrickColor.new("Buttermilk")
  1802. part_74.Friction = 0.3
  1803. part_74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1804.  
  1805. mesh_49 = Instance.new("BlockMesh", part_74)
  1806.  
  1807. part_75 = Instance.new("Part", mcarrier)
  1808. part_75.FormFactor = Enum.FormFactor.Plate
  1809. part_75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1810. part_75.TopSurface = Enum.SurfaceType.Smooth
  1811. part_75.Material = Enum.Material.SmoothPlastic
  1812. part_75.Size = Vector3.new(2, 3.6, 1)
  1813. part_75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1814. part_75.CFrame = CFrame.new(10.5, 9.8, -120)* CFrame.Angles(-0, -1.5707963705063, 0)
  1815. part_75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1816. part_75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1817. part_75.BrickColor = BrickColor.new("Buttermilk")
  1818. part_75.Friction = 0.3
  1819. part_75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1820.  
  1821. mesh_50 = Instance.new("BlockMesh", part_75)
  1822.  
  1823. part_76 = Instance.new("Part", mcarrier)
  1824. part_76.FormFactor = Enum.FormFactor.Plate
  1825. part_76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1826. part_76.TopSurface = Enum.SurfaceType.Smooth
  1827. part_76.Material = Enum.Material.SmoothPlastic
  1828. part_76.Size = Vector3.new(2, 3.6, 1)
  1829. part_76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1830. part_76.CFrame = CFrame.new(-0.5, 9.8, -125)* CFrame.Angles(-0, -1.5707963705063, 0)
  1831. part_76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1832. part_76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1833. part_76.BrickColor = BrickColor.new("Buttermilk")
  1834. part_76.Friction = 0.3
  1835. part_76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1836.  
  1837. mesh_51 = Instance.new("BlockMesh", part_76)
  1838.  
  1839. part_77 = Instance.new("Part", mcarrier)
  1840. part_77.FormFactor = Enum.FormFactor.Plate
  1841. part_77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1842. part_77.TopSurface = Enum.SurfaceType.Smooth
  1843. part_77.Material = Enum.Material.SmoothPlastic
  1844. part_77.Size = Vector3.new(3, 3.6, 1)
  1845. part_77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1846. part_77.CFrame = CFrame.new(10.5, 9.8, -117.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1847. part_77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1848. part_77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1849. part_77.BrickColor = BrickColor.new("Dark stone grey")
  1850. part_77.Friction = 0.3
  1851. part_77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1852.  
  1853. mesh_52 = Instance.new("BlockMesh", part_77)
  1854.  
  1855. part_78 = Instance.new("Part", mcarrier)
  1856. part_78.FormFactor = Enum.FormFactor.Plate
  1857. part_78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1858. part_78.TopSurface = Enum.SurfaceType.Smooth
  1859. part_78.Material = Enum.Material.SmoothPlastic
  1860. part_78.Size = Vector3.new(3, 3.6, 1)
  1861. part_78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1862. part_78.CFrame = CFrame.new(-0.5, 9.8, -117.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1863. part_78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1864. part_78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. part_78.BrickColor = BrickColor.new("Dark stone grey")
  1866. part_78.Friction = 0.3
  1867. part_78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1868.  
  1869. mesh_53 = Instance.new("BlockMesh", part_78)
  1870.  
  1871. part_79 = Instance.new("Part", mcarrier)
  1872. part_79.FormFactor = Enum.FormFactor.Plate
  1873. part_79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1874. part_79.TopSurface = Enum.SurfaceType.Smooth
  1875. part_79.Material = Enum.Material.SmoothPlastic
  1876. part_79.Size = Vector3.new(2, 3.6, 1)
  1877. part_79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1878. part_79.CFrame = CFrame.new(-0.5, 9.8, -135)* CFrame.Angles(-0, -1.5707963705063, 0)
  1879. part_79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. part_79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1881. part_79.BrickColor = BrickColor.new("Buttermilk")
  1882. part_79.Friction = 0.3
  1883. part_79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1884.  
  1885. mesh_54 = Instance.new("BlockMesh", part_79)
  1886.  
  1887. part_80 = Instance.new("Part", mcarrier)
  1888. part_80.FormFactor = Enum.FormFactor.Plate
  1889. part_80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1890. part_80.TopSurface = Enum.SurfaceType.Smooth
  1891. part_80.Material = Enum.Material.SmoothPlastic
  1892. part_80.Size = Vector3.new(2, 3.6, 1)
  1893. part_80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. part_80.CFrame = CFrame.new(-0.5, 9.8, -140)* CFrame.Angles(-0, -1.5707963705063, 0)
  1895. part_80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1896. part_80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1897. part_80.BrickColor = BrickColor.new("Buttermilk")
  1898. part_80.Friction = 0.3
  1899. part_80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1900.  
  1901. mesh_55 = Instance.new("BlockMesh", part_80)
  1902.  
  1903. part_81 = Instance.new("Part", mcarrier)
  1904. part_81.FormFactor = Enum.FormFactor.Plate
  1905. part_81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1906. part_81.TopSurface = Enum.SurfaceType.Smooth
  1907. part_81.Material = Enum.Material.SmoothPlastic
  1908. part_81.Size = Vector3.new(3, 3.6, 1)
  1909. part_81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1910. part_81.CFrame = CFrame.new(10.5, 9.8, -127.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1911. part_81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1912. part_81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1913. part_81.BrickColor = BrickColor.new("Dark stone grey")
  1914. part_81.Friction = 0.3
  1915. part_81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1916.  
  1917. mesh_56 = Instance.new("BlockMesh", part_81)
  1918.  
  1919. part_82 = Instance.new("Part", mcarrier)
  1920. part_82.FormFactor = Enum.FormFactor.Plate
  1921. part_82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1922. part_82.TopSurface = Enum.SurfaceType.Smooth
  1923. part_82.Material = Enum.Material.SmoothPlastic
  1924. part_82.Size = Vector3.new(3, 3.6, 1)
  1925. part_82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1926. part_82.CFrame = CFrame.new(10.5, 9.8, -122.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1927. part_82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1928. part_82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1929. part_82.BrickColor = BrickColor.new("Dark stone grey")
  1930. part_82.Friction = 0.3
  1931. part_82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1932.  
  1933. mesh_57 = Instance.new("BlockMesh", part_82)
  1934.  
  1935. part_83 = Instance.new("Part", mcarrier)
  1936. part_83.FormFactor = Enum.FormFactor.Plate
  1937. part_83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1938. part_83.TopSurface = Enum.SurfaceType.Smooth
  1939. part_83.Material = Enum.Material.SmoothPlastic
  1940. part_83.Size = Vector3.new(3, 3.6, 1)
  1941. part_83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1942. part_83.CFrame = CFrame.new(10.5, 9.8, -137.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1943. part_83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1944. part_83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1945. part_83.BrickColor = BrickColor.new("Dark stone grey")
  1946. part_83.Friction = 0.3
  1947. part_83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1948.  
  1949. mesh_58 = Instance.new("BlockMesh", part_83)
  1950.  
  1951. part_84 = Instance.new("Part", mcarrier)
  1952. part_84.FormFactor = Enum.FormFactor.Plate
  1953. part_84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1954. part_84.TopSurface = Enum.SurfaceType.Smooth
  1955. part_84.Material = Enum.Material.SmoothPlastic
  1956. part_84.Size = Vector3.new(3, 3.6, 1)
  1957. part_84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1958. part_84.CFrame = CFrame.new(10.5, 9.8, -132.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1959. part_84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1960. part_84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1961. part_84.BrickColor = BrickColor.new("Dark stone grey")
  1962. part_84.Friction = 0.3
  1963. part_84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1964.  
  1965. mesh_59 = Instance.new("BlockMesh", part_84)
  1966.  
  1967. part_85 = Instance.new("Part", mcarrier)
  1968. part_85.FormFactor = Enum.FormFactor.Plate
  1969. part_85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1970. part_85.TopSurface = Enum.SurfaceType.Smooth
  1971. part_85.Material = Enum.Material.SmoothPlastic
  1972. part_85.Size = Vector3.new(3, 3.6, 1)
  1973. part_85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1974. part_85.CFrame = CFrame.new(-0.5, 9.8, -122.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1975. part_85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1976. part_85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1977. part_85.BrickColor = BrickColor.new("Dark stone grey")
  1978. part_85.Friction = 0.3
  1979. part_85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1980.  
  1981. mesh_60 = Instance.new("BlockMesh", part_85)
  1982.  
  1983. part_86 = Instance.new("Part", mcarrier)
  1984. part_86.FormFactor = Enum.FormFactor.Plate
  1985. part_86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1986. part_86.TopSurface = Enum.SurfaceType.Smooth
  1987. part_86.Material = Enum.Material.SmoothPlastic
  1988. part_86.Size = Vector3.new(3, 3.6, 1)
  1989. part_86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1990. part_86.CFrame = CFrame.new(-0.5, 9.8, -142.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  1991. part_86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1992. part_86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1993. part_86.BrickColor = BrickColor.new("Dark stone grey")
  1994. part_86.Friction = 0.3
  1995. part_86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1996.  
  1997. mesh_61 = Instance.new("BlockMesh", part_86)
  1998.  
  1999. part_87 = Instance.new("Part", mcarrier)
  2000. part_87.FormFactor = Enum.FormFactor.Plate
  2001. part_87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2002. part_87.TopSurface = Enum.SurfaceType.Smooth
  2003. part_87.Material = Enum.Material.SmoothPlastic
  2004. part_87.Size = Vector3.new(43, 1.2, 1)
  2005. part_87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2006. part_87.CFrame = CFrame.new(-0.5, 12.2, -128.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  2007. part_87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2008. part_87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2009. part_87.BrickColor = BrickColor.new("Buttermilk")
  2010. part_87.Friction = 0.3
  2011. part_87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2012.  
  2013. mesh_62 = Instance.new("BlockMesh", part_87)
  2014.  
  2015. part_88 = Instance.new("Part", mcarrier)
  2016. part_88.FormFactor = Enum.FormFactor.Plate
  2017. part_88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2018. part_88.TopSurface = Enum.SurfaceType.Smooth
  2019. part_88.Material = Enum.Material.SmoothPlastic
  2020. part_88.Size = Vector3.new(12, 0.4, 1)
  2021. part_88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2022. part_88.CFrame = CFrame.new(5, 13, -165.5)
  2023. part_88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2024. part_88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2025. part_88.BrickColor = BrickColor.new("Buttermilk")
  2026. part_88.Friction = 0.3
  2027. part_88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2028.  
  2029. mesh_63 = Instance.new("SpecialMesh", part_88)
  2030. mesh_63.MeshType = Enum.MeshType.Wedge
  2031.  
  2032. part_89 = Instance.new("Part", mcarrier)
  2033. part_89.FormFactor = Enum.FormFactor.Plate
  2034. part_89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2035. part_89.TopSurface = Enum.SurfaceType.Smooth
  2036. part_89.Material = Enum.Material.SmoothPlastic
  2037. part_89.Size = Vector3.new(3, 3.6, 1)
  2038. part_89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. part_89.CFrame = CFrame.new(-0.5, 9.8, -137.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  2040. part_89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2041. part_89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2042. part_89.BrickColor = BrickColor.new("Dark stone grey")
  2043. part_89.Friction = 0.3
  2044. part_89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2045.  
  2046. mesh_64 = Instance.new("BlockMesh", part_89)
  2047.  
  2048. part_90 = Instance.new("Part", mcarrier)
  2049. part_90.FormFactor = Enum.FormFactor.Plate
  2050. part_90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2051. part_90.TopSurface = Enum.SurfaceType.Smooth
  2052. part_90.Material = Enum.Material.SmoothPlastic
  2053. part_90.Size = Vector3.new(3, 3.6, 1)
  2054. part_90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2055. part_90.CFrame = CFrame.new(-0.5, 9.8, -127.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  2056. part_90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2057. part_90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. part_90.BrickColor = BrickColor.new("Dark stone grey")
  2059. part_90.Friction = 0.3
  2060. part_90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2061.  
  2062. mesh_65 = Instance.new("BlockMesh", part_90)
  2063.  
  2064. part_91 = Instance.new("Part", mcarrier)
  2065. part_91.FormFactor = Enum.FormFactor.Plate
  2066. part_91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2067. part_91.TopSurface = Enum.SurfaceType.Smooth
  2068. part_91.Material = Enum.Material.SmoothPlastic
  2069. part_91.Size = Vector3.new(3, 3.6, 1)
  2070. part_91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2071. part_91.CFrame = CFrame.new(-0.5, 9.8, -132.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  2072. part_91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2073. part_91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2074. part_91.BrickColor = BrickColor.new("Dark stone grey")
  2075. part_91.Friction = 0.3
  2076. part_91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2077.  
  2078. mesh_66 = Instance.new("BlockMesh", part_91)
  2079.  
  2080. part_92 = Instance.new("Part", mcarrier)
  2081. part_92.FormFactor = Enum.FormFactor.Plate
  2082. part_92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2083. part_92.TopSurface = Enum.SurfaceType.Smooth
  2084. part_92.Material = Enum.Material.SmoothPlastic
  2085. part_92.Size = Vector3.new(1, 0.4, 12)
  2086. part_92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2087. part_92.CFrame = CFrame.new(5, 12.6, -165.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  2088. part_92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2089. part_92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2090. part_92.BrickColor = BrickColor.new("Buttermilk")
  2091. part_92.Friction = 0.3
  2092. part_92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2093.  
  2094. mesh_67 = Instance.new("BlockMesh", part_92)
  2095.  
  2096. troopdoor = Instance.new("Part", mcarrier)
  2097. troopdoor.FormFactor = Enum.FormFactor.Plate
  2098. troopdoor.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2099. troopdoor.TopSurface = Enum.SurfaceType.Smooth
  2100. troopdoor.Material = Enum.Material.SmoothPlastic
  2101. troopdoor.Size = Vector3.new(48, 0.4, 12)
  2102. troopdoor.Name = "troopdoor"
  2103. troopdoor.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2104. troopdoor.CFrame = CFrame.new(5, 13, -131)* CFrame.Angles(-0, -1.5707963705063, 0)
  2105. troopdoor.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2106. troopdoor.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2107. troopdoor.BrickColor = BrickColor.new("Buttermilk")
  2108. troopdoor.Friction = 0.3
  2109. troopdoor.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2110.  
  2111. mesh_68 = Instance.new("BlockMesh", troopdoor)
  2112.  
  2113. door = Instance.new("Part", mcarrier)
  2114. door.FormFactor = Enum.FormFactor.Plate
  2115. door.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2116. door.TopSurface = Enum.SurfaceType.Smooth
  2117. door.Material = Enum.Material.SmoothPlastic
  2118. door.Size = Vector3.new(1, 0.8, 5)
  2119. door.Name = "Door"
  2120. door.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2121. door.CFrame = CFrame.new(10.5, 11.2, -109.5)
  2122. door.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2123. door.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2124. door.BrickColor = BrickColor.new("Buttermilk")
  2125. door.Friction = 0.3
  2126. door.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2127.  
  2128. mesh_69 = Instance.new("BlockMesh", door)
  2129.  
  2130. door_2 = Instance.new("Part", mcarrier)
  2131. door_2.FormFactor = Enum.FormFactor.Plate
  2132. door_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2133. door_2.TopSurface = Enum.SurfaceType.Smooth
  2134. door_2.Material = Enum.Material.SmoothPlastic
  2135. door_2.Size = Vector3.new(1, 2.8, 1)
  2136. door_2.Name = "Door"
  2137. door_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2138. door_2.CFrame = CFrame.new(10.5, 9.4, -107.5)
  2139. door_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2140. door_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2141. door_2.BrickColor = BrickColor.new("Buttermilk")
  2142. door_2.Friction = 0.3
  2143. door_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2144.  
  2145. mesh_70 = Instance.new("BlockMesh", door_2)
  2146.  
  2147. click_door = Instance.new("Part", mcarrier)
  2148. click_door.FormFactor = Enum.FormFactor.Plate
  2149. click_door.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2150. click_door.TopSurface = Enum.SurfaceType.Smooth
  2151. click_door.Material = Enum.Material.SmoothPlastic
  2152. click_door.Size = Vector3.new(1, 3.2, 5)
  2153. click_door.Name = "Click Door"
  2154. click_door.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2155. click_door.CFrame = CFrame.new(10.5, 6.4, -109.5)
  2156. click_door.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2157. click_door.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2158. click_door.BrickColor = BrickColor.new("Buttermilk")
  2159. click_door.Friction = 0.3
  2160. click_door.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2161.  
  2162. door_3 = Instance.new("Part", mcarrier)
  2163. door_3.FormFactor = Enum.FormFactor.Plate
  2164. door_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2165. door_3.TopSurface = Enum.SurfaceType.Smooth
  2166. door_3.Material = Enum.Material.SmoothPlastic
  2167. door_3.Size = Vector3.new(1, 2.8, 1)
  2168. door_3.Name = "Door"
  2169. door_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2170. door_3.CFrame = CFrame.new(10.5, 9.4, -111.5)
  2171. door_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2172. door_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2173. door_3.BrickColor = BrickColor.new("Buttermilk")
  2174. door_3.Friction = 0.3
  2175. door_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2176.  
  2177. mesh_71 = Instance.new("BlockMesh", door_3)
  2178.  
  2179. part_93 = Instance.new("Part", mcarrier)
  2180. part_93.FormFactor = Enum.FormFactor.Plate
  2181. part_93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2182. part_93.TopSurface = Enum.SurfaceType.Smooth
  2183. part_93.Material = Enum.Material.SmoothPlastic
  2184. part_93.Size = Vector3.new(43, 1.2, 1)
  2185. part_93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2186. part_93.CFrame = CFrame.new(10.5, 12.2, -128.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  2187. part_93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2188. part_93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2189. part_93.BrickColor = BrickColor.new("Buttermilk")
  2190. part_93.Friction = 0.3
  2191. part_93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2192.  
  2193. mesh_72 = Instance.new("BlockMesh", part_93)
  2194.  
  2195. door_4 = Instance.new("Part", mcarrier)
  2196. door_4.FormFactor = Enum.FormFactor.Plate
  2197. door_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2198. door_4.TopSurface = Enum.SurfaceType.Smooth
  2199. door_4.Material = Enum.Material.SmoothPlastic
  2200. door_4.Size = Vector3.new(1, 2.8, 3)
  2201. door_4.Name = "Door"
  2202. door_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2203. door_4.CFrame = CFrame.new(10.5, 9.4, -109.5)
  2204. door_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2205. door_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2206. door_4.BrickColor = BrickColor.new("Buttermilk")
  2207. door_4.Friction = 0.3
  2208. door_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2209.  
  2210. mesh_73 = Instance.new("BlockMesh", door_4)
  2211.  
  2212. door_5 = Instance.new("Part", mcarrier)
  2213. door_5.FormFactor = Enum.FormFactor.Plate
  2214. door_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. door_5.TopSurface = Enum.SurfaceType.Smooth
  2216. door_5.Material = Enum.Material.SmoothPlastic
  2217. door_5.Size = Vector3.new(1, 2.8, 3)
  2218. door_5.Name = "Door"
  2219. door_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2220. door_5.CFrame = CFrame.new(-0.5, 9.4, -109.5)
  2221. door_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2222. door_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2223. door_5.BrickColor = BrickColor.new("Buttermilk")
  2224. door_5.Friction = 0.3
  2225. door_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2226.  
  2227. mesh_74 = Instance.new("BlockMesh", door_5)
  2228.  
  2229. door_6 = Instance.new("Part", mcarrier)
  2230. door_6.FormFactor = Enum.FormFactor.Plate
  2231. door_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2232. door_6.TopSurface = Enum.SurfaceType.Smooth
  2233. door_6.Material = Enum.Material.SmoothPlastic
  2234. door_6.Size = Vector3.new(1, 0.8, 5)
  2235. door_6.Name = "Door"
  2236. door_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2237. door_6.CFrame = CFrame.new(-0.5, 11.2, -109.5)
  2238. door_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2239. door_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2240. door_6.BrickColor = BrickColor.new("Buttermilk")
  2241. door_6.Friction = 0.3
  2242. door_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2243.  
  2244. mesh_75 = Instance.new("BlockMesh", door_6)
  2245.  
  2246. door_7 = Instance.new("Part", mcarrier)
  2247. door_7.FormFactor = Enum.FormFactor.Plate
  2248. door_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2249. door_7.TopSurface = Enum.SurfaceType.Smooth
  2250. door_7.Material = Enum.Material.SmoothPlastic
  2251. door_7.Size = Vector3.new(1, 2.8, 1)
  2252. door_7.Name = "Door"
  2253. door_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2254. door_7.CFrame = CFrame.new(-0.5, 9.4, -111.5)
  2255. door_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2256. door_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2257. door_7.BrickColor = BrickColor.new("Buttermilk")
  2258. door_7.Friction = 0.3
  2259. door_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2260.  
  2261. mesh_76 = Instance.new("BlockMesh", door_7)
  2262.  
  2263. click_door_2 = Instance.new("Part", mcarrier)
  2264. click_door_2.FormFactor = Enum.FormFactor.Plate
  2265. click_door_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2266. click_door_2.TopSurface = Enum.SurfaceType.Smooth
  2267. click_door_2.Material = Enum.Material.SmoothPlastic
  2268. click_door_2.Size = Vector3.new(1, 3.2, 5)
  2269. click_door_2.Name = "Click Door"
  2270. click_door_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2271. click_door_2.CFrame = CFrame.new(-0.5, 6.4, -109.5)
  2272. click_door_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. click_door_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2274. click_door_2.BrickColor = BrickColor.new("Buttermilk")
  2275. click_door_2.Friction = 0.3
  2276. click_door_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2277.  
  2278. door_8 = Instance.new("Part", mcarrier)
  2279. door_8.FormFactor = Enum.FormFactor.Plate
  2280. door_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2281. door_8.TopSurface = Enum.SurfaceType.Smooth
  2282. door_8.Material = Enum.Material.SmoothPlastic
  2283. door_8.Size = Vector3.new(1, 2.8, 1)
  2284. door_8.Name = "Door"
  2285. door_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2286. door_8.CFrame = CFrame.new(-0.5, 9.4, -107.5)
  2287. door_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. door_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2289. door_8.BrickColor = BrickColor.new("Buttermilk")
  2290. door_8.Friction = 0.3
  2291. door_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2292.  
  2293. mesh_77 = Instance.new("BlockMesh", door_8)
  2294.  
  2295. door_9 = Instance.new("Part", mcarrier)
  2296. door_9.FormFactor = Enum.FormFactor.Plate
  2297. door_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2298. door_9.TopSurface = Enum.SurfaceType.Smooth
  2299. door_9.Material = Enum.Material.SmoothPlastic
  2300. door_9.Size = Vector3.new(1, 0.8, 4)
  2301. door_9.Name = "Door"
  2302. door_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2303. door_9.CFrame = CFrame.new(10.5, 11.2, -148)
  2304. door_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2305. door_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2306. door_9.BrickColor = BrickColor.new("Buttermilk")
  2307. door_9.Friction = 0.3
  2308. door_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2309.  
  2310. mesh_78 = Instance.new("BlockMesh", door_9)
  2311.  
  2312. door_10 = Instance.new("Part", mcarrier)
  2313. door_10.FormFactor = Enum.FormFactor.Plate
  2314. door_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2315. door_10.TopSurface = Enum.SurfaceType.Smooth
  2316. door_10.Material = Enum.Material.SmoothPlastic
  2317. door_10.Size = Vector3.new(1, 2.8, 1)
  2318. door_10.Name = "Door"
  2319. door_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2320. door_10.CFrame = CFrame.new(10.5, 9.4, -146.5)
  2321. door_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2322. door_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. door_10.BrickColor = BrickColor.new("Buttermilk")
  2324. door_10.Friction = 0.3
  2325. door_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2326.  
  2327. mesh_79 = Instance.new("BlockMesh", door_10)
  2328.  
  2329. door_11 = Instance.new("Part", mcarrier)
  2330. door_11.FormFactor = Enum.FormFactor.Plate
  2331. door_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2332. door_11.TopSurface = Enum.SurfaceType.Smooth
  2333. door_11.Material = Enum.Material.SmoothPlastic
  2334. door_11.Size = Vector3.new(1, 2.8, 2)
  2335. door_11.Name = "Door"
  2336. door_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2337. door_11.CFrame = CFrame.new(10.5, 9.4, -148)
  2338. door_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2339. door_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2340. door_11.BrickColor = BrickColor.new("Buttermilk")
  2341. door_11.Friction = 0.3
  2342. door_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2343.  
  2344. mesh_80 = Instance.new("BlockMesh", door_11)
  2345.  
  2346. click_door_3 = Instance.new("Part", mcarrier)
  2347. click_door_3.FormFactor = Enum.FormFactor.Plate
  2348. click_door_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2349. click_door_3.TopSurface = Enum.SurfaceType.Smooth
  2350. click_door_3.Material = Enum.Material.SmoothPlastic
  2351. click_door_3.Size = Vector3.new(1, 3.2, 4)
  2352. click_door_3.Name = "Click Door"
  2353. click_door_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2354. click_door_3.CFrame = CFrame.new(10.5, 6.4, -148)
  2355. click_door_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2356. click_door_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2357. click_door_3.BrickColor = BrickColor.new("Buttermilk")
  2358. click_door_3.Friction = 0.3
  2359. click_door_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2360.  
  2361. local weight = Instance.new("Part", mcarrier)
  2362. weight.FormFactor = Enum.FormFactor.Plate
  2363. weight.CanCollide = false
  2364. weight.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2365. weight.Transparency = 1
  2366. weight.TopSurface = Enum.SurfaceType.Smooth
  2367. weight.Material = Enum.Material.SmoothPlastic
  2368. weight.Size = Vector3.new(40, 16.4, 36)
  2369. weight.Name = "weight"
  2370. weight.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2371. weight.CFrame = CFrame.new(18, 21.4, -134)* CFrame.Angles(-0, -1.5707963705063, 0)
  2372. weight.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2373. weight.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2374. weight.BrickColor = BrickColor.new("Buttermilk")
  2375. weight.Friction = 0.3
  2376. weight.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2377.  
  2378. door_12 = Instance.new("Part", mcarrier)
  2379. door_12.FormFactor = Enum.FormFactor.Plate
  2380. door_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2381. door_12.TopSurface = Enum.SurfaceType.Smooth
  2382. door_12.Material = Enum.Material.SmoothPlastic
  2383. door_12.Size = Vector3.new(1, 2.8, 1)
  2384. door_12.Name = "Door"
  2385. door_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2386. door_12.CFrame = CFrame.new(10.5, 9.4, -149.5)
  2387. door_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2388. door_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2389. door_12.BrickColor = BrickColor.new("Buttermilk")
  2390. door_12.Friction = 0.3
  2391. door_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2392.  
  2393. mesh_81 = Instance.new("BlockMesh", door_12)
  2394.  
  2395. door_13 = Instance.new("Part", mcarrier)
  2396. door_13.FormFactor = Enum.FormFactor.Plate
  2397. door_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2398. door_13.TopSurface = Enum.SurfaceType.Smooth
  2399. door_13.Material = Enum.Material.SmoothPlastic
  2400. door_13.Size = Vector3.new(1, 2.8, 1)
  2401. door_13.Name = "Door"
  2402. door_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2403. door_13.CFrame = CFrame.new(-0.5, 9.4, -146.5)
  2404. door_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2405. door_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2406. door_13.BrickColor = BrickColor.new("Buttermilk")
  2407. door_13.Friction = 0.3
  2408. door_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2409.  
  2410. mesh_82 = Instance.new("BlockMesh", door_13)
  2411.  
  2412. door_14 = Instance.new("Part", mcarrier)
  2413. door_14.FormFactor = Enum.FormFactor.Plate
  2414. door_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2415. door_14.TopSurface = Enum.SurfaceType.Smooth
  2416. door_14.Material = Enum.Material.SmoothPlastic
  2417. door_14.Size = Vector3.new(1, 0.8, 4)
  2418. door_14.Name = "Door"
  2419. door_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2420. door_14.CFrame = CFrame.new(-0.5, 11.2, -148)
  2421. door_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2422. door_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2423. door_14.BrickColor = BrickColor.new("Buttermilk")
  2424. door_14.Friction = 0.3
  2425. door_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2426.  
  2427. mesh_83 = Instance.new("BlockMesh", door_14)
  2428.  
  2429. door_15 = Instance.new("Part", mcarrier)
  2430. door_15.FormFactor = Enum.FormFactor.Plate
  2431. door_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2432. door_15.TopSurface = Enum.SurfaceType.Smooth
  2433. door_15.Material = Enum.Material.SmoothPlastic
  2434. door_15.Size = Vector3.new(1, 2.8, 1)
  2435. door_15.Name = "Door"
  2436. door_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2437. door_15.CFrame = CFrame.new(-0.5, 9.4, -149.5)
  2438. door_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2439. door_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2440. door_15.BrickColor = BrickColor.new("Buttermilk")
  2441. door_15.Friction = 0.3
  2442. door_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2443.  
  2444. mesh_84 = Instance.new("BlockMesh", door_15)
  2445.  
  2446. click_door_4 = Instance.new("Part", mcarrier)
  2447. click_door_4.FormFactor = Enum.FormFactor.Plate
  2448. click_door_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2449. click_door_4.TopSurface = Enum.SurfaceType.Smooth
  2450. click_door_4.Material = Enum.Material.SmoothPlastic
  2451. click_door_4.Size = Vector3.new(1, 3.2, 4)
  2452. click_door_4.Name = "Click Door"
  2453. click_door_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. click_door_4.CFrame = CFrame.new(-0.5, 6.4, -148)
  2455. click_door_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2456. click_door_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2457. click_door_4.BrickColor = BrickColor.new("Buttermilk")
  2458. click_door_4.Friction = 0.3
  2459. click_door_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2460.  
  2461. part_94 = Instance.new("Part", mcarrier)
  2462. part_94.FormFactor = Enum.FormFactor.Plate
  2463. part_94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2464. part_94.TopSurface = Enum.SurfaceType.Smooth
  2465. part_94.Material = Enum.Material.SmoothPlastic
  2466. part_94.Size = Vector3.new(2, 3.6, 1)
  2467. part_94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2468. part_94.CFrame = CFrame.new(-0.5, 9.8, -145)* CFrame.Angles(-0, -1.5707963705063, 0)
  2469. part_94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2470. part_94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2471. part_94.BrickColor = BrickColor.new("Buttermilk")
  2472. part_94.Friction = 0.3
  2473. part_94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2474.  
  2475. mesh_85 = Instance.new("BlockMesh", part_94)
  2476.  
  2477. door_16 = Instance.new("Part", mcarrier)
  2478. door_16.FormFactor = Enum.FormFactor.Plate
  2479. door_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2480. door_16.TopSurface = Enum.SurfaceType.Smooth
  2481. door_16.Material = Enum.Material.SmoothPlastic
  2482. door_16.Size = Vector3.new(1, 2.8, 2)
  2483. door_16.Name = "Door"
  2484. door_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. door_16.CFrame = CFrame.new(-0.5, 9.4, -148)
  2486. door_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2487. door_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2488. door_16.BrickColor = BrickColor.new("Buttermilk")
  2489. door_16.Friction = 0.3
  2490. door_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2491.  
  2492. mesh_86 = Instance.new("BlockMesh", door_16)
  2493.  
  2494. part_95 = Instance.new("Part", mcarrier)
  2495. part_95.FormFactor = Enum.FormFactor.Plate
  2496. part_95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2497. part_95.TopSurface = Enum.SurfaceType.Smooth
  2498. part_95.Material = Enum.Material.SmoothPlastic
  2499. part_95.Size = Vector3.new(1, 7.6, 9)
  2500. part_95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2501. part_95.CFrame = CFrame.new(51.5, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, -1.5707963705063, 0)
  2502. part_95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2503. part_95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2504. part_95.BrickColor = BrickColor.new("Buttermilk")
  2505. part_95.Friction = 0.3
  2506. part_95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2507.  
  2508. mesh_87 = Instance.new("SpecialMesh", part_95)
  2509. mesh_87.MeshType = Enum.MeshType.Wedge
  2510.  
  2511. part_96 = Instance.new("Part", mcarrier)
  2512. part_96.FormFactor = Enum.FormFactor.Plate
  2513. part_96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2514. part_96.TopSurface = Enum.SurfaceType.Smooth
  2515. part_96.Material = Enum.Material.SmoothPlastic
  2516. part_96.Size = Vector3.new(1, 10, 36)
  2517. part_96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2518. part_96.CFrame = CFrame.new(-19, 5.3, -135.2)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0)
  2519. part_96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2520. part_96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2521. part_96.BrickColor = BrickColor.new("Buttermilk")
  2522. part_96.Friction = 0.3
  2523. part_96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. part_96.Name = "crasherleftwing"
  2525.  
  2526. mesh_88 = Instance.new("SpecialMesh", part_96)
  2527. mesh_88.MeshType = Enum.MeshType.Wedge
  2528.  
  2529. part_97 = Instance.new("Part", mcarrier)
  2530. part_97.FormFactor = Enum.FormFactor.Plate
  2531. part_97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2532. part_97.TopSurface = Enum.SurfaceType.Smooth
  2533. part_97.Material = Enum.Material.SmoothPlastic
  2534. part_97.Size = Vector3.new(1, 7.6, 9)
  2535. part_97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2536. part_97.CFrame = CFrame.new(-41.5, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0)
  2537. part_97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2538. part_97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2539. part_97.BrickColor = BrickColor.new("Buttermilk")
  2540. part_97.Friction = 0.3
  2541. part_97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2542.  
  2543. mesh_89 = Instance.new("SpecialMesh", part_97)
  2544. mesh_89.MeshType = Enum.MeshType.Wedge
  2545.  
  2546. part_98 = Instance.new("Part", mcarrier)
  2547. part_98.FormFactor = Enum.FormFactor.Plate
  2548. part_98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2549. part_98.TopSurface = Enum.SurfaceType.Smooth
  2550. part_98.Material = Enum.Material.SmoothPlastic
  2551. part_98.Size = Vector3.new(45, 0.8, 1)
  2552. part_98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2553. part_98.CFrame = CFrame.new(33.5, 5.3, -122.2)* CFrame.Angles(1.5707963705063, 0, 0)
  2554. part_98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2555. part_98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2556. part_98.BrickColor = BrickColor.new("Buttermilk")
  2557. part_98.Friction = 0.3
  2558. part_98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2559.  
  2560. mesh_90 = Instance.new("SpecialMesh", part_98)
  2561. mesh_90.MeshType = Enum.MeshType.Wedge
  2562.  
  2563. part_99 = Instance.new("Part", mcarrier)
  2564. part_99.FormFactor = Enum.FormFactor.Plate
  2565. part_99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2566. part_99.TopSurface = Enum.SurfaceType.Smooth
  2567. part_99.Material = Enum.Material.SmoothPlastic
  2568. part_99.Size = Vector3.new(45, 0.8, 1)
  2569. part_99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2570. part_99.CFrame = CFrame.new(-23.5, 5.3, -122.2)* CFrame.Angles(1.5707963705063, 0, 0)
  2571. part_99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2572. part_99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2573. part_99.BrickColor = BrickColor.new("Buttermilk")
  2574. part_99.Friction = 0.3
  2575. part_99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2576.  
  2577. mesh_91 = Instance.new("SpecialMesh", part_99)
  2578. mesh_91.MeshType = Enum.MeshType.Wedge
  2579.  
  2580. part_100 = Instance.new("Part", mcarrier)
  2581. part_100.FormFactor = Enum.FormFactor.Plate
  2582. part_100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2583. part_100.TopSurface = Enum.SurfaceType.Smooth
  2584. part_100.Material = Enum.Material.SmoothPlastic
  2585. part_100.Size = Vector3.new(1, 8.4, 14)
  2586. part_100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2587. part_100.CFrame = CFrame.new(10.5, 9, -100)
  2588. part_100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. part_100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2590. part_100.BrickColor = BrickColor.new("Buttermilk")
  2591. part_100.Friction = 0.3
  2592. part_100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2593.  
  2594. mesh_92 = Instance.new("BlockMesh", part_100)
  2595.  
  2596. part_101 = Instance.new("Part", mcarrier)
  2597. part_101.FormFactor = Enum.FormFactor.Plate
  2598. part_101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2599. part_101.TopSurface = Enum.SurfaceType.Smooth
  2600. part_101.Material = Enum.Material.SmoothPlastic
  2601. part_101.Size = Vector3.new(1, 8.4, 14)
  2602. part_101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2603. part_101.CFrame = CFrame.new(-0.5, 9, -100)
  2604. part_101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2605. part_101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2606. part_101.BrickColor = BrickColor.new("Buttermilk")
  2607. part_101.Friction = 0.3
  2608. part_101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2609.  
  2610. mesh_93 = Instance.new("BlockMesh", part_101)
  2611.  
  2612. part_102 = Instance.new("Part", mcarrier)
  2613. part_102.FormFactor = Enum.FormFactor.Plate
  2614. part_102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2615. part_102.TopSurface = Enum.SurfaceType.Smooth
  2616. part_102.Material = Enum.Material.SmoothPlastic
  2617. part_102.Size = Vector3.new(1, 7.6, 36)
  2618. part_102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2619. part_102.CFrame = CFrame.new(-19, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0)
  2620. part_102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2621. part_102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2622. part_102.BrickColor = BrickColor.new("Buttermilk")
  2623. part_102.Friction = 0.3
  2624. part_102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2625.  
  2626. mesh_94 = Instance.new("BlockMesh", part_102)
  2627.  
  2628. part_103 = Instance.new("Part", mcarrier)
  2629. part_103.FormFactor = Enum.FormFactor.Plate
  2630. part_103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2631. part_103.TopSurface = Enum.SurfaceType.Smooth
  2632. part_103.Material = Enum.Material.SmoothPlastic
  2633. part_103.Size = Vector3.new(1, 10, 36)
  2634. part_103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2635. part_103.CFrame = CFrame.new(29, 5.3, -135.2)* CFrame.Angles(-1.5707963705063, -1.5707963705063, 0)
  2636. part_103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2637. part_103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2638. part_103.BrickColor = BrickColor.new("Buttermilk")
  2639. part_103.Friction = 0.3
  2640. part_103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2641. part_103.Name = "crasherrightwing"
  2642.  
  2643. mesh_95 = Instance.new("SpecialMesh", part_103)
  2644. mesh_95.MeshType = Enum.MeshType.Wedge
  2645.  
  2646. part_104 = Instance.new("Part", mcarrier)
  2647. part_104.FormFactor = Enum.FormFactor.Plate
  2648. part_104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2649. part_104.TopSurface = Enum.SurfaceType.Smooth
  2650. part_104.Material = Enum.Material.SmoothPlastic
  2651. part_104.Size = Vector3.new(1, 7.6, 36)
  2652. part_104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2653. part_104.CFrame = CFrame.new(29, 5.3, -126.4)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0)
  2654. part_104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2655. part_104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2656. part_104.BrickColor = BrickColor.new("Buttermilk")
  2657. part_104.Friction = 0.3
  2658. part_104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2659.  
  2660. mesh_96 = Instance.new("BlockMesh", part_104)
  2661.  
  2662. part_105 = Instance.new("Part", mcarrier)
  2663. part_105.FormFactor = Enum.FormFactor.Plate
  2664. part_105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2665. part_105.TopSurface = Enum.SurfaceType.Smooth
  2666. part_105.Material = Enum.Material.SmoothPlastic
  2667. part_105.Size = Vector3.new(1, 9.2, 2)
  2668. part_105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2669. part_105.CFrame = CFrame.new(-5.6, 20.3, -87)* CFrame.Angles(-0, 0, -1.5707963705063)
  2670. part_105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2671. part_105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2672. part_105.BrickColor = BrickColor.new("Buttermilk")
  2673. part_105.Friction = 0.3
  2674. part_105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2675.  
  2676. mesh_97 = Instance.new("BlockMesh", part_105)
  2677.  
  2678. troopdoorclosed = Instance.new("Part", mcarrier)
  2679. troopdoorclosed.FormFactor = Enum.FormFactor.Plate
  2680. troopdoorclosed.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2681. troopdoorclosed.TopSurface = Enum.SurfaceType.Smooth
  2682. troopdoorclosed.Material = Enum.Material.SmoothPlastic
  2683. troopdoorclosed.Size = Vector3.new(12, 8.4, 4)
  2684. troopdoorclosed.Name = "troopdoorclosed"
  2685. troopdoorclosed.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2686. troopdoorclosed.CFrame = CFrame.new(5, 9, -91)* CFrame.Angles(-3.1415927410126, 0, -0)
  2687. troopdoorclosed.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2688. troopdoorclosed.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2689. troopdoorclosed.BrickColor = BrickColor.new("Buttermilk")
  2690. troopdoorclosed.Friction = 0.3
  2691. troopdoorclosed.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2692. troopdoorclosed.CanCollide = false
  2693. troopdoorclosed.Transparency = 1
  2694.  
  2695. mesh_98 = Instance.new("SpecialMesh", troopdoorclosed)
  2696. mesh_98.MeshType = Enum.MeshType.Wedge
  2697.  
  2698. part_106 = Instance.new("Part", mcarrier)
  2699. part_106.FormFactor = Enum.FormFactor.Plate
  2700. part_106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2701. part_106.TopSurface = Enum.SurfaceType.Smooth
  2702. part_106.Material = Enum.Material.SmoothPlastic
  2703. part_106.Size = Vector3.new(4, 7.6, 18)
  2704. part_106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2705. part_106.CFrame = CFrame.new(9, 17, -98)
  2706. part_106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2707. part_106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2708. part_106.BrickColor = BrickColor.new("Buttermilk")
  2709. part_106.Friction = 0.3
  2710. part_106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2711.  
  2712. mesh_99 = Instance.new("SpecialMesh", part_106)
  2713. mesh_99.MeshType = Enum.MeshType.Wedge
  2714.  
  2715. part_107 = Instance.new("Part", mcarrier)
  2716. part_107.FormFactor = Enum.FormFactor.Plate
  2717. part_107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2718. part_107.TopSurface = Enum.SurfaceType.Smooth
  2719. part_107.Material = Enum.Material.SmoothPlastic
  2720. part_107.Size = Vector3.new(4, 7.6, 18)
  2721. part_107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2722. part_107.CFrame = CFrame.new(1, 17, -98)
  2723. part_107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2724. part_107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2725. part_107.BrickColor = BrickColor.new("Buttermilk")
  2726. part_107.Friction = 0.3
  2727. part_107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2728.  
  2729. mesh_100 = Instance.new("SpecialMesh", part_107)
  2730. mesh_100.MeshType = Enum.MeshType.Wedge
  2731.  
  2732. part_108 = Instance.new("Part", mcarrier)
  2733. part_108.FormFactor = Enum.FormFactor.Plate
  2734. part_108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2735. part_108.TopSurface = Enum.SurfaceType.Smooth
  2736. part_108.Material = Enum.Material.SmoothPlastic
  2737. part_108.Size = Vector3.new(4, 15.2, 9)
  2738. part_108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2739. part_108.CFrame = CFrame.new(5, 20.8, -84.5)* CFrame.Angles(-3.1415927410126, 0, -0)
  2740. part_108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2741. part_108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2742. part_108.BrickColor = BrickColor.new("Buttermilk")
  2743. part_108.Friction = 0.3
  2744. part_108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2745.  
  2746. mesh_101 = Instance.new("SpecialMesh", part_108)
  2747. mesh_101.MeshType = Enum.MeshType.Wedge
  2748.  
  2749. part_109 = Instance.new("Part", mcarrier)
  2750. part_109.FormFactor = Enum.FormFactor.Plate
  2751. part_109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2752. part_109.TopSurface = Enum.SurfaceType.Smooth
  2753. part_109.Material = Enum.Material.SmoothPlastic
  2754. part_109.Size = Vector3.new(4, 7.6, 4)
  2755. part_109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2756. part_109.CFrame = CFrame.new(9, 17, -87)* CFrame.Angles(-3.1415927410126, 0, -0)
  2757. part_109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2758. part_109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2759. part_109.BrickColor = BrickColor.new("Buttermilk")
  2760. part_109.Friction = 0.3
  2761. part_109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2762.  
  2763. mesh_102 = Instance.new("SpecialMesh", part_109)
  2764. mesh_102.MeshType = Enum.MeshType.Wedge
  2765.  
  2766. part_110 = Instance.new("Part", mcarrier)
  2767. part_110.FormFactor = Enum.FormFactor.Plate
  2768. part_110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2769. part_110.TopSurface = Enum.SurfaceType.Smooth
  2770. part_110.Material = Enum.Material.SmoothPlastic
  2771. part_110.Size = Vector3.new(4, 7.6, 4)
  2772. part_110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2773. part_110.CFrame = CFrame.new(1, 17, -87)* CFrame.Angles(-3.1415927410126, 0, -0)
  2774. part_110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2775. part_110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2776. part_110.BrickColor = BrickColor.new("Buttermilk")
  2777. part_110.Friction = 0.3
  2778. part_110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2779.  
  2780. mesh_103 = Instance.new("SpecialMesh", part_110)
  2781. mesh_103.MeshType = Enum.MeshType.Wedge
  2782.  
  2783. part_111 = Instance.new("Part", mcarrier)
  2784. part_111.FormFactor = Enum.FormFactor.Plate
  2785. part_111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2786. part_111.TopSurface = Enum.SurfaceType.Smooth
  2787. part_111.Material = Enum.Material.SmoothPlastic
  2788. part_111.Size = Vector3.new(4, 15.2, 18)
  2789. part_111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2790. part_111.CFrame = CFrame.new(5, 20.8, -98)
  2791. part_111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2792. part_111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2793. part_111.BrickColor = BrickColor.new("Buttermilk")
  2794. part_111.Friction = 0.3
  2795. part_111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2796.  
  2797. mesh_104 = Instance.new("SpecialMesh", part_111)
  2798. mesh_104.MeshType = Enum.MeshType.Wedge
  2799.  
  2800. part_112 = Instance.new("Part", mcarrier)
  2801. part_112.FormFactor = Enum.FormFactor.Plate
  2802. part_112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2803. part_112.TopSurface = Enum.SurfaceType.Smooth
  2804. part_112.Material = Enum.Material.SmoothPlastic
  2805. part_112.Size = Vector3.new(1, 3.2, 15)
  2806. part_112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2807. part_112.CFrame = CFrame.new(10.5, 6.4, -119.5)
  2808. part_112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2809. part_112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2810. part_112.BrickColor = BrickColor.new("Buttermilk")
  2811. part_112.Friction = 0.3
  2812. part_112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2813.  
  2814. mesh_105 = Instance.new("BlockMesh", part_112)
  2815.  
  2816. part_113 = Instance.new("Part", mcarrier)
  2817. part_113.FormFactor = Enum.FormFactor.Plate
  2818. part_113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2819. part_113.TopSurface = Enum.SurfaceType.Smooth
  2820. part_113.Material = Enum.Material.SmoothPlastic
  2821. part_113.Size = Vector3.new(1, 3.2, 15)
  2822. part_113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2823. part_113.CFrame = CFrame.new(-0.5, 6.4, -119.5)
  2824. part_113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2825. part_113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2826. part_113.BrickColor = BrickColor.new("Buttermilk")
  2827. part_113.Friction = 0.3
  2828. part_113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2829.  
  2830. mesh_106 = Instance.new("BlockMesh", part_113)
  2831.  
  2832. part_114 = Instance.new("Part", mcarrier)
  2833. part_114.FormFactor = Enum.FormFactor.Plate
  2834. part_114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2835. part_114.TopSurface = Enum.SurfaceType.Smooth
  2836. part_114.Material = Enum.Material.SmoothPlastic
  2837. part_114.Size = Vector3.new(12, 0.8, 34)
  2838. part_114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2839. part_114.CFrame = CFrame.new(5, 4.4, -110)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2840. part_114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2841. part_114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2842. part_114.BrickColor = BrickColor.new("Dark stone grey")
  2843. part_114.Friction = 0.3
  2844. part_114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2845.  
  2846. mesh_107 = Instance.new("BlockMesh", part_114)
  2847.  
  2848. part_115 = Instance.new("Part", mcarrier)
  2849. part_115.FormFactor = Enum.FormFactor.Plate
  2850. part_115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2851. part_115.TopSurface = Enum.SurfaceType.Smooth
  2852. part_115.Material = Enum.Material.SmoothPlastic
  2853. part_115.Size = Vector3.new(9, 1.2, 1)
  2854. part_115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2855. part_115.CFrame = CFrame.new(-5.5, 20.3, -85.4)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2856. part_115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2857. part_115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2858. part_115.BrickColor = BrickColor.new("Buttermilk")
  2859. part_115.Friction = 0.3
  2860. part_115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2861.  
  2862. mesh_108 = Instance.new("SpecialMesh", part_115)
  2863. mesh_108.MeshType = Enum.MeshType.Wedge
  2864.  
  2865. part_116 = Instance.new("Part", mcarrier)
  2866. part_116.FormFactor = Enum.FormFactor.Plate
  2867. part_116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2868. part_116.TopSurface = Enum.SurfaceType.Smooth
  2869. part_116.Material = Enum.Material.SmoothPlastic
  2870. part_116.Size = Vector3.new(1, 1.2, 9)
  2871. part_116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2872. part_116.CFrame = CFrame.new(-5.5, 20.3, -88.6)* CFrame.Angles(-1.5707963705063, 1.5707963705063, 0)
  2873. part_116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2874. part_116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2875. part_116.BrickColor = BrickColor.new("Buttermilk")
  2876. part_116.Friction = 0.3
  2877. part_116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2878.  
  2879. mesh_109 = Instance.new("SpecialMesh", part_116)
  2880. mesh_109.MeshType = Enum.MeshType.Wedge
  2881.  
  2882. part_117 = Instance.new("Part", mcarrier)
  2883. part_117.FormFactor = Enum.FormFactor.Plate
  2884. part_117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2885. part_117.TopSurface = Enum.SurfaceType.Smooth
  2886. part_117.Material = Enum.Material.SmoothPlastic
  2887. part_117.Size = Vector3.new(1, 1.2, 9)
  2888. part_117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2889. part_117.CFrame = CFrame.new(15.5, 20.3, -88.6)* CFrame.Angles(-1.5707963705063, -1.5707963705063, 0)
  2890. part_117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2891. part_117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2892. part_117.BrickColor = BrickColor.new("Buttermilk")
  2893. part_117.Friction = 0.3
  2894. part_117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2895.  
  2896. mesh_110 = Instance.new("SpecialMesh", part_117)
  2897. mesh_110.MeshType = Enum.MeshType.Wedge
  2898.  
  2899. part_118 = Instance.new("Part", mcarrier)
  2900. part_118.FormFactor = Enum.FormFactor.Plate
  2901. part_118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2902. part_118.TopSurface = Enum.SurfaceType.Smooth
  2903. part_118.Material = Enum.Material.SmoothPlastic
  2904. part_118.Size = Vector3.new(1, 9.2, 2)
  2905. part_118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2906. part_118.CFrame = CFrame.new(15.6, 20.3, -87)* CFrame.Angles(-0, 0, -1.5707963705063)
  2907. part_118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2908. part_118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2909. part_118.BrickColor = BrickColor.new("Buttermilk")
  2910. part_118.Friction = 0.3
  2911. part_118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2912.  
  2913. mesh_111 = Instance.new("BlockMesh", part_118)
  2914.  
  2915. part_119 = Instance.new("Part", mcarrier)
  2916. part_119.FormFactor = Enum.FormFactor.Plate
  2917. part_119.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2918. part_119.TopSurface = Enum.SurfaceType.Smooth
  2919. part_119.Material = Enum.Material.SmoothPlastic
  2920. part_119.Size = Vector3.new(9, 1.2, 1)
  2921. part_119.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2922. part_119.CFrame = CFrame.new(15.5, 20.3, -85.4)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2923. part_119.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2924. part_119.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2925. part_119.BrickColor = BrickColor.new("Buttermilk")
  2926. part_119.Friction = 0.3
  2927. part_119.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2928.  
  2929. mesh_112 = Instance.new("SpecialMesh", part_119)
  2930. mesh_112.MeshType = Enum.MeshType.Wedge
  2931.  
  2932. part_120 = Instance.new("Part", mcarrier)
  2933. part_120.FormFactor = Enum.FormFactor.Plate
  2934. part_120.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2935. part_120.TopSurface = Enum.SurfaceType.Smooth
  2936. part_120.Material = Enum.Material.SmoothPlastic
  2937. part_120.Size = Vector3.new(12, 3.2, 2)
  2938. part_120.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2939. part_120.CFrame = CFrame.new(5, 6.4, -169)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2940. part_120.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2941. part_120.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2942. part_120.BrickColor = BrickColor.new("Buttermilk")
  2943. part_120.Friction = 0.3
  2944. part_120.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2945.  
  2946. mesh_113 = Instance.new("BlockMesh", part_120)
  2947.  
  2948. part_121 = Instance.new("Part", mcarrier)
  2949. part_121.FormFactor = Enum.FormFactor.Plate
  2950. part_121.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2951. part_121.TopSurface = Enum.SurfaceType.Smooth
  2952. part_121.Material = Enum.Material.SmoothPlastic
  2953. part_121.Size = Vector3.new(3, 0.8, 2)
  2954. part_121.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2955. part_121.CFrame = CFrame.new(-21.4, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  2956. part_121.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2957. part_121.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2958. part_121.BrickColor = BrickColor.new("Dark stone grey")
  2959. part_121.Friction = 0.3
  2960. part_121.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2961. part_121.Name = "Wheel4"
  2962.  
  2963. mesh_114 = Instance.new("CylinderMesh", part_121)
  2964.  
  2965. part_122 = Instance.new("Part", mcarrier)
  2966. part_122.FormFactor = Enum.FormFactor.Plate
  2967. part_122.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2968. part_122.TopSurface = Enum.SurfaceType.Smooth
  2969. part_122.Material = Enum.Material.SmoothPlastic
  2970. part_122.Size = Vector3.new(1, 0.8, 1)
  2971. part_122.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2972. part_122.CFrame = CFrame.new(4.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126)
  2973. part_122.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2974. part_122.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2975. part_122.BrickColor = BrickColor.new("Dark stone grey")
  2976. part_122.Friction = 0.3
  2977. part_122.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2978.  
  2979. mesh_115 = Instance.new("CylinderMesh", part_122)
  2980. mesh_115.Scale = Vector3.new(0.1, 1, 1)
  2981.  
  2982. part_123 = Instance.new("Part", mcarrier)
  2983. part_123.FormFactor = Enum.FormFactor.Plate
  2984. part_123.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2985. part_123.TopSurface = Enum.SurfaceType.Smooth
  2986. part_123.Material = Enum.Material.SmoothPlastic
  2987. part_123.Size = Vector3.new(1, 0.8, 1)
  2988. part_123.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2989. part_123.CFrame = CFrame.new(3.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126)
  2990. part_123.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2991. part_123.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2992. part_123.BrickColor = BrickColor.new("Dark stone grey")
  2993. part_123.Friction = 0.3
  2994. part_123.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2995.  
  2996. mesh_116 = Instance.new("CylinderMesh", part_123)
  2997. mesh_116.Scale = Vector3.new(0.1, 1, 1)
  2998.  
  2999. part_124 = Instance.new("Part", mcarrier)
  3000. part_124.FormFactor = Enum.FormFactor.Plate
  3001. part_124.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3002. part_124.TopSurface = Enum.SurfaceType.Smooth
  3003. part_124.Material = Enum.Material.SmoothPlastic
  3004. part_124.Size = Vector3.new(3, 0.8, 2)
  3005. part_124.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3006. part_124.CFrame = CFrame.new(4.2, 1, -164.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  3007. part_124.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3008. part_124.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3009. part_124.BrickColor = BrickColor.new("Dark stone grey")
  3010. part_124.Friction = 0.3
  3011. part_124.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3012. part_124.Name = "Wheel5"
  3013.  
  3014. mesh_117 = Instance.new("CylinderMesh", part_124)
  3015.  
  3016. part_125 = Instance.new("Part", mcarrier)
  3017. part_125.FormFactor = Enum.FormFactor.Plate
  3018. part_125.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3019. part_125.TopSurface = Enum.SurfaceType.Smooth
  3020. part_125.Material = Enum.Material.SmoothPlastic
  3021. part_125.Size = Vector3.new(1, 0.8, 1)
  3022. part_125.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3023. part_125.CFrame = CFrame.new(6.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126)
  3024. part_125.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3025. part_125.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3026. part_125.BrickColor = BrickColor.new("Dark stone grey")
  3027. part_125.Friction = 0.3
  3028. part_125.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3029.  
  3030. mesh_118 = Instance.new("CylinderMesh", part_125)
  3031. mesh_118.Scale = Vector3.new(0.1, 1, 1)
  3032.  
  3033. part_126 = Instance.new("Part", mcarrier)
  3034. part_126.FormFactor = Enum.FormFactor.Plate
  3035. part_126.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3036. part_126.TopSurface = Enum.SurfaceType.Smooth
  3037. part_126.Material = Enum.Material.SmoothPlastic
  3038. part_126.Size = Vector3.new(2, 0.4, 3)
  3039. part_126.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3040. part_126.CFrame = CFrame.new(1, 6.3, -165)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3041. part_126.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3042. part_126.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3043. part_126.BrickColor = BrickColor.new("Dark stone grey")
  3044. part_126.Friction = 0.3
  3045. part_126.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3046.  
  3047. mesh_119 = Instance.new("CylinderMesh", part_126)
  3048. mesh_119.Scale = Vector3.new(1.3, 1, 1)
  3049.  
  3050. part_127 = Instance.new("Part", mcarrier)
  3051. part_127.FormFactor = Enum.FormFactor.Plate
  3052. part_127.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3053. part_127.TopSurface = Enum.SurfaceType.Smooth
  3054. part_127.Material = Enum.Material.SmoothPlastic
  3055. part_127.Size = Vector3.new(1, 0.4, 3)
  3056. part_127.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3057. part_127.CFrame = CFrame.new(4.8, 2.5, -164.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063)
  3058. part_127.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3059. part_127.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3060. part_127.BrickColor = BrickColor.new("Dark stone grey")
  3061. part_127.Friction = 0.3
  3062. part_127.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3063. part_127.Name = "Wheelline1"
  3064.  
  3065. mesh_120 = Instance.new("BlockMesh", part_127)
  3066.  
  3067.  
  3068. part_128 = Instance.new("Part", mcarrier)
  3069. part_128.FormFactor = Enum.FormFactor.Plate
  3070. part_128.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3071. part_128.TopSurface = Enum.SurfaceType.Smooth
  3072. part_128.Material = Enum.Material.SmoothPlastic
  3073. part_128.Size = Vector3.new(1, 0.4, 3)
  3074. part_128.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3075. part_128.CFrame = CFrame.new(31.8, 3.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063)
  3076. part_128.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3077. part_128.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3078. part_128.BrickColor = BrickColor.new("Dark stone grey")
  3079. part_128.Friction = 0.3
  3080. part_128.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3081. part_128.Name = "Wheelline2"
  3082.  
  3083. mesh_121 = Instance.new("BlockMesh", part_128)
  3084.  
  3085. part_129 = Instance.new("Part", mcarrier)
  3086. part_129.FormFactor = Enum.FormFactor.Plate
  3087. part_129.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3088. part_129.TopSurface = Enum.SurfaceType.Smooth
  3089. part_129.Material = Enum.Material.SmoothPlastic
  3090. part_129.Size = Vector3.new(3, 0.8, 2)
  3091. part_129.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3092. part_129.CFrame = CFrame.new(-21.4, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  3093. part_129.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3094. part_129.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3095. part_129.BrickColor = BrickColor.new("Dark stone grey")
  3096. part_129.Friction = 0.3
  3097. part_129.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3098. part_129.Name = "Wheel6"
  3099.  
  3100. mesh_122 = Instance.new("CylinderMesh", part_129)
  3101.  
  3102. part_130 = Instance.new("Part", mcarrier)
  3103. part_130.FormFactor = Enum.FormFactor.Plate
  3104. part_130.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3105. part_130.TopSurface = Enum.SurfaceType.Smooth
  3106. part_130.Material = Enum.Material.SmoothPlastic
  3107. part_130.Size = Vector3.new(3, 0.8, 2)
  3108. part_130.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3109. part_130.CFrame = CFrame.new(-22.6, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  3110. part_130.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3111. part_130.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3112. part_130.BrickColor = BrickColor.new("Dark stone grey")
  3113. part_130.Friction = 0.3
  3114. part_130.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3115. part_130.Name = "Wheel7"
  3116.  
  3117. mesh_123 = Instance.new("CylinderMesh", part_130)
  3118.  
  3119. part_131 = Instance.new("Part", mcarrier)
  3120. part_131.FormFactor = Enum.FormFactor.Plate
  3121. part_131.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3122. part_131.TopSurface = Enum.SurfaceType.Smooth
  3123. part_131.Material = Enum.Material.SmoothPlastic
  3124. part_131.Size = Vector3.new(1, 0.8, 1)
  3125. part_131.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3126. part_131.CFrame = CFrame.new(5.5, 6.4, -165.5)* CFrame.Angles(-0, 0, -3.1415927410126)
  3127. part_131.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3128. part_131.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3129. part_131.BrickColor = BrickColor.new("Dark stone grey")
  3130. part_131.Friction = 0.3
  3131. part_131.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3132.  
  3133. mesh_124 = Instance.new("CylinderMesh", part_131)
  3134. mesh_124.Scale = Vector3.new(0.1, 1, 1)
  3135.  
  3136. part_132 = Instance.new("Part", mcarrier)
  3137. part_132.FormFactor = Enum.FormFactor.Plate
  3138. part_132.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3139. part_132.TopSurface = Enum.SurfaceType.Smooth
  3140. part_132.Material = Enum.Material.SmoothPlastic
  3141. part_132.Size = Vector3.new(12, 0.8, 43)
  3142. part_132.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3143. part_132.CFrame = CFrame.new(5, 4.4, -148.5)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3144. part_132.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3145. part_132.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3146. part_132.BrickColor = BrickColor.new("Dark stone grey")
  3147. part_132.Friction = 0.3
  3148. part_132.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3149.  
  3150. mesh_125 = Instance.new("BlockMesh", part_132)
  3151.  
  3152. part_133 = Instance.new("Part", mcarrier)
  3153. part_133.FormFactor = Enum.FormFactor.Plate
  3154. part_133.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3155. part_133.TopSurface = Enum.SurfaceType.Smooth
  3156. part_133.Material = Enum.Material.SmoothPlastic
  3157. part_133.Size = Vector3.new(1, 0.4, 3)
  3158. part_133.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3159. part_133.CFrame = CFrame.new(-22, 3.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063)
  3160. part_133.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3161. part_133.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3162. part_133.BrickColor = BrickColor.new("Dark stone grey")
  3163. part_133.Friction = 0.3
  3164. part_133.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3165. part_133.Name = "Wheelline3"
  3166.  
  3167. mesh_126 = Instance.new("BlockMesh", part_133)
  3168.  
  3169. part_134 = Instance.new("Part", mcarrier)
  3170. part_134.FormFactor = Enum.FormFactor.Plate
  3171. part_134.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3172. part_134.TopSurface = Enum.SurfaceType.Smooth
  3173. part_134.Material = Enum.Material.SmoothPlastic
  3174. part_134.Size = Vector3.new(3, 0.8, 2)
  3175. part_134.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3176. part_134.CFrame = CFrame.new(5.4, 1, -164.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  3177. part_134.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3178. part_134.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3179. part_134.BrickColor = BrickColor.new("Dark stone grey")
  3180. part_134.Friction = 0.3
  3181. part_134.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3182. part_134.Name = "Wheel8"
  3183.  
  3184. mesh_127 = Instance.new("CylinderMesh", part_134)
  3185.  
  3186. part_135 = Instance.new("Part", mcarrier)
  3187. part_135.FormFactor = Enum.FormFactor.Plate
  3188. part_135.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3189. part_135.TopSurface = Enum.SurfaceType.Smooth
  3190. part_135.Material = Enum.Material.SmoothPlastic
  3191. part_135.Size = Vector3.new(1, 3.2, 5)
  3192. part_135.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3193. part_135.CFrame = CFrame.new(10.5, 6.4, -152.5)
  3194. part_135.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3195. part_135.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3196. part_135.BrickColor = BrickColor.new("Buttermilk")
  3197. part_135.Friction = 0.3
  3198. part_135.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3199.  
  3200. mesh_128 = Instance.new("BlockMesh", part_135)
  3201.  
  3202. part_136 = Instance.new("Part", mcarrier)
  3203. part_136.FormFactor = Enum.FormFactor.Plate
  3204. part_136.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3205. part_136.TopSurface = Enum.SurfaceType.Smooth
  3206. part_136.Material = Enum.Material.SmoothPlastic
  3207. part_136.Size = Vector3.new(6, 1.2, 2)
  3208. part_136.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3209. part_136.CFrame = CFrame.new(5, 5.4, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3210. part_136.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3211. part_136.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3212. part_136.BrickColor = BrickColor.new("Buttermilk")
  3213. part_136.Friction = 0.3
  3214. part_136.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3215.  
  3216. mesh_129 = Instance.new("BlockMesh", part_136)
  3217.  
  3218. part_137 = Instance.new("Part", mcarrier)
  3219. part_137.FormFactor = Enum.FormFactor.Plate
  3220. part_137.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3221. part_137.TopSurface = Enum.SurfaceType.Smooth
  3222. part_137.Material = Enum.Material.SmoothPlastic
  3223. part_137.Size = Vector3.new(2, 0.4, 2)
  3224. part_137.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3225. part_137.CFrame = CFrame.new(9, 7.8, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3226. part_137.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3227. part_137.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3228. part_137.BrickColor = BrickColor.new("Dark stone grey")
  3229. part_137.Friction = 0.3
  3230. part_137.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3231.  
  3232. mesh_130 = Instance.new("SpecialMesh", part_137)
  3233. mesh_130.MeshType = Enum.MeshType.Wedge
  3234.  
  3235. part_138 = Instance.new("Part", mcarrier)
  3236. part_138.FormFactor = Enum.FormFactor.Plate
  3237. part_138.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3238. part_138.TopSurface = Enum.SurfaceType.Smooth
  3239. part_138.Material = Enum.Material.SmoothPlastic
  3240. part_138.Size = Vector3.new(2, 2.8, 2)
  3241. part_138.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3242. part_138.CFrame = CFrame.new(9, 6.2, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3243. part_138.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3244. part_138.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3245. part_138.BrickColor = BrickColor.new("Dark stone grey")
  3246. part_138.Friction = 0.3
  3247. part_138.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3248.  
  3249. mesh_131 = Instance.new("BlockMesh", part_138)
  3250.  
  3251. part_139 = Instance.new("Part", mcarrier)
  3252. part_139.FormFactor = Enum.FormFactor.Plate
  3253. part_139.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3254. part_139.TopSurface = Enum.SurfaceType.Smooth
  3255. part_139.Material = Enum.Material.SmoothPlastic
  3256. part_139.Size = Vector3.new(13, 3.2, 1)
  3257. part_139.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3258. part_139.CFrame = CFrame.new(-0.5, 6.4, -161.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  3259. part_139.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3260. part_139.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3261. part_139.BrickColor = BrickColor.new("Buttermilk")
  3262. part_139.Friction = 0.3
  3263. part_139.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3264.  
  3265. mesh_132 = Instance.new("BlockMesh", part_139)
  3266.  
  3267. part_140 = Instance.new("Part", mcarrier)
  3268. part_140.FormFactor = Enum.FormFactor.Plate
  3269. part_140.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3270. part_140.TopSurface = Enum.SurfaceType.Smooth
  3271. part_140.Material = Enum.Material.SmoothPlastic
  3272. part_140.Size = Vector3.new(1, 1.2, 2)
  3273. part_140.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3274. part_140.CFrame = CFrame.new(7.5, 5.4, -165)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3275. part_140.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3276. part_140.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3277. part_140.BrickColor = BrickColor.new("Dark stone grey")
  3278. part_140.Friction = 0.3
  3279. part_140.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3280.  
  3281. mesh_133 = Instance.new("SpecialMesh", part_140)
  3282. mesh_133.MeshType = Enum.MeshType.Wedge
  3283.  
  3284. part_141 = Instance.new("Part", mcarrier)
  3285. part_141.FormFactor = Enum.FormFactor.Plate
  3286. part_141.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3287. part_141.TopSurface = Enum.SurfaceType.Smooth
  3288. part_141.Material = Enum.Material.SmoothPlastic
  3289. part_141.Size = Vector3.new(13, 3.2, 1)
  3290. part_141.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3291. part_141.CFrame = CFrame.new(10.5, 6.4, -161.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  3292. part_141.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3293. part_141.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3294. part_141.BrickColor = BrickColor.new("Buttermilk")
  3295. part_141.Friction = 0.3
  3296. part_141.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3297.  
  3298. mesh_134 = Instance.new("BlockMesh", part_141)
  3299.  
  3300. part_142 = Instance.new("Part", mcarrier)
  3301. part_142.FormFactor = Enum.FormFactor.Plate
  3302. part_142.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3303. part_142.TopSurface = Enum.SurfaceType.Smooth
  3304. part_142.Material = Enum.Material.SmoothPlastic
  3305. part_142.Size = Vector3.new(3, 0.8, 2)
  3306. part_142.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3307. part_142.CFrame = CFrame.new(31.2, 1.2, -128.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  3308. part_142.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3309. part_142.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3310. part_142.BrickColor = BrickColor.new("Dark stone grey")
  3311. part_142.Friction = 0.3
  3312. part_142.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3313. part_142.Name = "Wheel9"
  3314.  
  3315. mesh_135 = Instance.new("CylinderMesh", part_142)
  3316.  
  3317. part_143 = Instance.new("Part", mcarrier)
  3318. part_143.FormFactor = Enum.FormFactor.Plate
  3319. part_143.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3320. part_143.TopSurface = Enum.SurfaceType.Smooth
  3321. part_143.Material = Enum.Material.SmoothPlastic
  3322. part_143.Size = Vector3.new(1, 3.2, 3)
  3323. part_143.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3324. part_143.CFrame = CFrame.new(1.5, 6.4, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  3325. part_143.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3326. part_143.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3327. part_143.BrickColor = BrickColor.new("Buttermilk")
  3328. part_143.Friction = 0.3
  3329. part_143.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3330.  
  3331. mesh_136 = Instance.new("BlockMesh", part_143)
  3332.  
  3333. part_144 = Instance.new("Part", mcarrier)
  3334. part_144.FormFactor = Enum.FormFactor.Plate
  3335. part_144.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3336. part_144.TopSurface = Enum.SurfaceType.Smooth
  3337. part_144.Material = Enum.Material.SmoothPlastic
  3338. part_144.Size = Vector3.new(5, 0.4, 1)
  3339. part_144.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3340. part_144.CFrame = CFrame.new(31.8, 1.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063)
  3341. part_144.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3342. part_144.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3343. part_144.BrickColor = BrickColor.new("Dark stone grey")
  3344. part_144.Friction = 0.3
  3345. part_144.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3346. part_144.Name = "Wheelbar1"
  3347.  
  3348. mesh_137 = Instance.new("BlockMesh", part_144)
  3349.  
  3350. part_145 = Instance.new("Part", mcarrier)
  3351. part_145.FormFactor = Enum.FormFactor.Plate
  3352. part_145.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3353. part_145.TopSurface = Enum.SurfaceType.Smooth
  3354. part_145.Material = Enum.Material.SmoothPlastic
  3355. part_145.Size = Vector3.new(4, 1.2, 1)
  3356. part_145.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3357. part_145.CFrame = CFrame.new(5, 5.4, -165.5)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3358. part_145.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3359. part_145.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3360. part_145.BrickColor = BrickColor.new("Dark stone grey")
  3361. part_145.Friction = 0.3
  3362. part_145.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3363.  
  3364. mesh_138 = Instance.new("BlockMesh", part_145)
  3365.  
  3366. part_146 = Instance.new("Part", mcarrier)
  3367. part_146.FormFactor = Enum.FormFactor.Plate
  3368. part_146.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3369. part_146.TopSurface = Enum.SurfaceType.Smooth
  3370. part_146.Material = Enum.Material.SmoothPlastic
  3371. part_146.Size = Vector3.new(1, 3.2, 5)
  3372. part_146.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3373. part_146.CFrame = CFrame.new(-0.5, 6.4, -152.5)
  3374. part_146.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3375. part_146.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3376. part_146.BrickColor = BrickColor.new("Buttermilk")
  3377. part_146.Friction = 0.3
  3378. part_146.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3379.  
  3380. mesh_139 = Instance.new("BlockMesh", part_146)
  3381.  
  3382. engine = Instance.new("Part", mcarrier)
  3383. engine.FormFactor = Enum.FormFactor.Plate
  3384. engine.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3385. engine.TopSurface = Enum.SurfaceType.Smooth
  3386. engine.Material = Enum.Material.SmoothPlastic
  3387. engine.Size = Vector3.new(4, 1.2, 1)
  3388. engine.Name = "engine"
  3389. engine.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3390. engine.CFrame = CFrame.new(5, 5.4, -164.5)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3391. engine.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3392. engine.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3393. engine.BrickColor = BrickColor.new("Dark stone grey")
  3394. engine.Friction = 0.3
  3395. engine.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3396.  
  3397. mesh_140 = Instance.new("SpecialMesh", engine)
  3398. mesh_140.MeshType = Enum.MeshType.Wedge
  3399.  
  3400. part_147 = Instance.new("Part", mcarrier)
  3401. part_147.FormFactor = Enum.FormFactor.Plate
  3402. part_147.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3403. part_147.TopSurface = Enum.SurfaceType.Smooth
  3404. part_147.Material = Enum.Material.SmoothPlastic
  3405. part_147.Size = Vector3.new(1, 1.2, 2)
  3406. part_147.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3407. part_147.CFrame = CFrame.new(2.5, 5.4, -165)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3408. part_147.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3409. part_147.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3410. part_147.BrickColor = BrickColor.new("Dark stone grey")
  3411. part_147.Friction = 0.3
  3412. part_147.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3413.  
  3414. mesh_141 = Instance.new("SpecialMesh", part_147)
  3415. mesh_141.MeshType = Enum.MeshType.Wedge
  3416.  
  3417. part_148 = Instance.new("Part", mcarrier)
  3418. part_148.FormFactor = Enum.FormFactor.Plate
  3419. part_148.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3420. part_148.TopSurface = Enum.SurfaceType.Smooth
  3421. part_148.Material = Enum.Material.SmoothPlastic
  3422. part_148.Size = Vector3.new(5, 0.4, 1)
  3423. part_148.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3424. part_148.CFrame = CFrame.new(-22, 1.3, -126.5)* CFrame.Angles(-1.5707963705063, 0, 1.5707963705063)
  3425. part_148.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3426. part_148.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3427. part_148.BrickColor = BrickColor.new("Dark stone grey")
  3428. part_148.Friction = 0.3
  3429. part_148.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3430. part_148.Name = "Wheelbar2"
  3431.  
  3432. mesh_142 = Instance.new("BlockMesh", part_148)
  3433.  
  3434. part_149 = Instance.new("Part", mcarrier)
  3435. part_149.FormFactor = Enum.FormFactor.Plate
  3436. part_149.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3437. part_149.TopSurface = Enum.SurfaceType.Smooth
  3438. part_149.Material = Enum.Material.SmoothPlastic
  3439. part_149.Size = Vector3.new(1, 3.2, 3)
  3440. part_149.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3441. part_149.CFrame = CFrame.new(8.5, 6.4, -155.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  3442. part_149.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3443. part_149.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3444. part_149.BrickColor = BrickColor.new("Buttermilk")
  3445. part_149.Friction = 0.3
  3446. part_149.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3447.  
  3448. mesh_143 = Instance.new("BlockMesh", part_149)
  3449.  
  3450. part_150 = Instance.new("Part", mcarrier)
  3451. part_150.FormFactor = Enum.FormFactor.Plate
  3452. part_150.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3453. part_150.TopSurface = Enum.SurfaceType.Smooth
  3454. part_150.Material = Enum.Material.SmoothPlastic
  3455. part_150.Size = Vector3.new(1, 3.2, 19)
  3456. part_150.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3457. part_150.CFrame = CFrame.new(-0.5, 6.4, -136.5)
  3458. part_150.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3459. part_150.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3460. part_150.BrickColor = BrickColor.new("Buttermilk")
  3461. part_150.Friction = 0.3
  3462. part_150.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3463.  
  3464. mesh_144 = Instance.new("BlockMesh", part_150)
  3465.  
  3466. part_151 = Instance.new("Part", mcarrier)
  3467. part_151.FormFactor = Enum.FormFactor.Plate
  3468. part_151.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3469. part_151.TopSurface = Enum.SurfaceType.Smooth
  3470. part_151.Material = Enum.Material.SmoothPlastic
  3471. part_151.Size = Vector3.new(1, 3.2, 19)
  3472. part_151.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3473. part_151.CFrame = CFrame.new(10.5, 6.4, -136.5)
  3474. part_151.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3475. part_151.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3476. part_151.BrickColor = BrickColor.new("Buttermilk")
  3477. part_151.Friction = 0.3
  3478. part_151.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3479.  
  3480. mesh_145 = Instance.new("BlockMesh", part_151)
  3481.  
  3482. part_152 = Instance.new("Part", mcarrier)
  3483. part_152.FormFactor = Enum.FormFactor.Plate
  3484. part_152.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3485. part_152.TopSurface = Enum.SurfaceType.Smooth
  3486. part_152.Material = Enum.Material.SmoothPlastic
  3487. part_152.Size = Vector3.new(3, 0.8, 2)
  3488. part_152.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3489. part_152.CFrame = CFrame.new(31.2, 1.2, -124.5)* CFrame.Angles(-1.5707963705063, 0, -1.5707963705063)
  3490. part_152.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3491. part_152.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3492. part_152.BrickColor = BrickColor.new("Dark stone grey")
  3493. part_152.Friction = 0.3
  3494. part_152.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3495. part_152.Name = "Wheel10"
  3496.  
  3497. mesh_146 = Instance.new("CylinderMesh", part_152)
  3498.  
  3499. part_153 = Instance.new("Part", mcarrier)
  3500. part_153.FormFactor = Enum.FormFactor.Plate
  3501. part_153.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3502. part_153.TopSurface = Enum.SurfaceType.Smooth
  3503. part_153.Material = Enum.Material.SmoothPlastic
  3504. part_153.Size = Vector3.new(2, 0.8, 1)
  3505. part_153.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3506. part_153.CFrame = CFrame.new(9, 6.3, -165.6)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3507. part_153.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3508. part_153.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3509. part_153.BrickColor = BrickColor.new("Dark stone grey")
  3510. part_153.Friction = 0.3
  3511. part_153.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3512.  
  3513. mesh_147 = Instance.new("CylinderMesh", part_153)
  3514.  
  3515. part_154 = Instance.new("Part", mcarrier)
  3516. part_154.FormFactor = Enum.FormFactor.Plate
  3517. part_154.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3518. part_154.TopSurface = Enum.SurfaceType.Smooth
  3519. part_154.Material = Enum.Material.SmoothPlastic
  3520. part_154.Size = Vector3.new(2, 0.4, 2)
  3521. part_154.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3522. part_154.CFrame = CFrame.new(1, 7.8, -167)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3523. part_154.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3524. part_154.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3525. part_154.BrickColor = BrickColor.new("Dark stone grey")
  3526. part_154.Friction = 0.3
  3527. part_154.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3528.  
  3529. mesh_148 = Instance.new("SpecialMesh", part_154)
  3530. mesh_148.MeshType = Enum.MeshType.Wedge
  3531.  
  3532. part_155 = Instance.new("Part", mcarrier)
  3533. part_155.FormFactor = Enum.FormFactor.Plate
  3534. part_155.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3535. part_155.TopSurface = Enum.SurfaceType.Smooth
  3536. part_155.Material = Enum.Material.SmoothPlastic
  3537. part_155.Size = Vector3.new(2, 0.8, 1)
  3538. part_155.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3539. part_155.CFrame = CFrame.new(1, 6.3, -165.6)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3540. part_155.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3541. part_155.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3542. part_155.BrickColor = BrickColor.new("Dark stone grey")
  3543. part_155.Friction = 0.3
  3544. part_155.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3545.  
  3546. mesh_149 = Instance.new("CylinderMesh", part_155)
  3547.  
  3548. part_156 = Instance.new("Part", mcarrier)
  3549. part_156.FormFactor = Enum.FormFactor.Plate
  3550. part_156.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3551. part_156.TopSurface = Enum.SurfaceType.Smooth
  3552. part_156.Material = Enum.Material.SmoothPlastic
  3553. part_156.Size = Vector3.new(2, 0.4, 3)
  3554. part_156.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3555. part_156.CFrame = CFrame.new(9, 6.3, -165)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3556. part_156.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3557. part_156.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3558. part_156.BrickColor = BrickColor.new("Dark stone grey")
  3559. part_156.Friction = 0.3
  3560. part_156.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3561.  
  3562. mesh_150 = Instance.new("CylinderMesh", part_156)
  3563. mesh_150.Scale = Vector3.new(1.3, 1, 1)
  3564.  
  3565. local identifylight = Instance.new("Part", mcarrier)
  3566. identifylight.FormFactor = Enum.FormFactor.Custom
  3567. identifylight.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3568. identifylight.TopSurface = Enum.SurfaceType.Smooth
  3569. identifylight.Material = Enum.Material.SmoothPlastic
  3570. identifylight.Size = Vector3.new(1, 1, 1)
  3571. identifylight.Name = "identifylight"
  3572. identifylight.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3573. identifylight.CFrame = CFrame.new(10.8, 5.9, -163.3)* CFrame.Angles(-3.1415927410126, -1.5707963705063, 0)
  3574. identifylight.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3575. identifylight.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3576. identifylight.BrickColor = BrickColor.new("Really black")
  3577. identifylight.Friction = 0.3
  3578. identifylight.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3579.  
  3580. local light = Instance.new("PointLight", identifylight)
  3581. light.Enabled = false
  3582. light.Name = "light"
  3583. light.Color = Color3.new(1, 0, 0)
  3584. light.Brightness = 20
  3585. light.Range = 40
  3586.  
  3587. mcarrier:BreakJoints()
  3588.  
  3589. local engine = mcarrier.mainseat
  3590. local propeller1 = mcarrier.propeller1
  3591. local propeller2 = mcarrier.propeller2
  3592. local propeller3 = mcarrier.propeller3
  3593. local propeller4 = mcarrier.propeller4
  3594. propeller1:BreakJoints()
  3595. propeller2:BreakJoints()
  3596. propeller3:BreakJoints()
  3597. propeller4:BreakJoints()
  3598.  
  3599. local prev
  3600. local parts = mcarrier:GetChildren()
  3601.  
  3602. for i = 1,#parts do
  3603. if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  3604. if (prev ~= nil)then
  3605. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3606. local weld = Instance.new("Weld")
  3607. weld.Part0 = prev
  3608. weld.Part1 = parts[i]
  3609. weld.C0 = prev.CFrame:inverse()
  3610. weld.C1 = parts[i].CFrame:inverse()
  3611. weld.Parent = prev
  3612. parts[i].CustomPhysicalProperties = PhysicalProperties.new(400,4,0.1)
  3613. end
  3614. prev = parts[i]
  3615. end
  3616. end
  3617. mcarrier:MakeJoints()
  3618. mcarrier.Parent = char
  3619.  
  3620.  
  3621. local prev
  3622. local parts = propeller1:GetChildren()
  3623.  
  3624. for i = 1,#parts do
  3625. if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  3626. if (prev ~= nil)then
  3627. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3628. local weld = Instance.new("Weld")
  3629. weld.Part0 = prev
  3630. weld.Part1 = parts[i]
  3631. weld.C0 = prev.CFrame:inverse()
  3632. weld.C1 = parts[i].CFrame:inverse()
  3633. weld.Parent = prev
  3634. parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0)
  3635. end
  3636. prev = parts[i]
  3637. end
  3638. end
  3639. propeller1:MakeJoints()
  3640.  
  3641. local prev
  3642. local parts = propeller2:GetChildren()
  3643.  
  3644. for i = 1,#parts do
  3645. if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  3646. if (prev ~= nil)then
  3647. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3648. local weld = Instance.new("Weld")
  3649. weld.Part0 = prev
  3650. weld.Part1 = parts[i]
  3651. weld.C0 = prev.CFrame:inverse()
  3652. weld.C1 = parts[i].CFrame:inverse()
  3653. weld.Parent = prev
  3654. parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0)
  3655. end
  3656. prev = parts[i]
  3657. end
  3658. end
  3659. propeller2:MakeJoints()
  3660.  
  3661. local prev
  3662. local parts = propeller3:GetChildren()
  3663.  
  3664. for i = 1,#parts do
  3665. if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  3666. if (prev ~= nil)then
  3667. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3668. local weld = Instance.new("Weld")
  3669. weld.Part0 = prev
  3670. weld.Part1 = parts[i]
  3671. weld.C0 = prev.CFrame:inverse()
  3672. weld.C1 = parts[i].CFrame:inverse()
  3673. weld.Parent = prev
  3674. parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0)
  3675. end
  3676. prev = parts[i]
  3677. end
  3678. end
  3679. propeller3:MakeJoints()
  3680.  
  3681. local prev
  3682. local parts = propeller4:GetChildren()
  3683.  
  3684. for i = 1,#parts do
  3685. if (parts[i].className == "Part") or (parts[i].className == "WedgePart") or (parts[i].className == "Seat") or (parts[i].className == "VehicleSeat") or (parts[i].className == "CornerWedgePart") then
  3686. if (prev ~= nil)then
  3687. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3688. local weld = Instance.new("Weld")
  3689. weld.Part0 = prev
  3690. weld.Part1 = parts[i]
  3691. weld.C0 = prev.CFrame:inverse()
  3692. weld.C1 = parts[i].CFrame:inverse()
  3693. weld.Parent = prev
  3694. parts[i].CustomPhysicalProperties = PhysicalProperties.new(500,4,0)
  3695. end
  3696. prev = parts[i]
  3697. end
  3698. end
  3699. propeller4:MakeJoints()
  3700.  
  3701. weld(propeller1.propellercenter, mcarrier.propeller1pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3702. weld(propeller2.propellercenter, mcarrier.propeller2pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3703. weld(propeller3.propellercenter, mcarrier.propeller3pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3704. weld(propeller4.propellercenter, mcarrier.propeller4pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3705. propeller1.propellercenter.Weld.Name = "propellerweld"
  3706. propeller2.propellercenter.Weld.Name = "propellerweld"
  3707. propeller3.propellercenter.Weld.Name = "propellerweld"
  3708. propeller4.propellercenter.Weld.Name = "propellerweld"
  3709. engine.CFrame = char["Left Leg"].CFrame*CFrame.new(5,40,15)
  3710.  
  3711.  
  3712. --PlaneSounds Start--
  3713. local enginesound=Instance.new("Sound")
  3714. enginesound.SoundId="http://www.roblox.com/asset/?id=142317661"
  3715. enginesound.PlayOnRemove=false
  3716. enginesound.Volume=0.95
  3717. enginesound.Looped=true
  3718. enginesound.Pitch = 1
  3719. enginesound.Parent=engine
  3720. local pros=Instance.new("Sound")
  3721. pros.SoundId="http://www.roblox.com/asset/?id=133082569"
  3722. pros.PlayOnRemove=false
  3723. pros.Volume=0.85
  3724. pros.Looped=true
  3725. pros.Pitch = 1
  3726. pros.Parent=propeller1.propellercenter
  3727. local air=Instance.new("Sound")
  3728. air.SoundId="http://www.roblox.com/asset/?id=142840797"
  3729. air.PlayOnRemove=false
  3730. air.Volume=5
  3731. air.Looped=true
  3732. air.Pitch = 1
  3733. air.Parent=engine
  3734. local pros2=Instance.new("Sound")
  3735. pros2.SoundId="http://www.roblox.com/asset/?id=133082569"
  3736. pros2.PlayOnRemove=false
  3737. pros2.Volume=0.85
  3738. pros2.Looped=true
  3739. pros2.Pitch = 1
  3740. pros2.Parent=propeller3.propellercenter
  3741. --PlaneSounds End--
  3742.  
  3743. mouse.KeyDown:connect(function(key)
  3744. if key == "y" and engineon == false then
  3745. engineon = true
  3746. --enginesound:Play()
  3747. pros:Play()
  3748. pros2:Play()
  3749. while engineon == true do wait()
  3750. rotateangle = rotateangle + 10
  3751.  
  3752. propeller1.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0)
  3753. propeller2.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0)
  3754. propeller3.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0)
  3755. propeller4.propellercenter.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(rotateangle),0,0)
  3756. end
  3757. end
  3758. end)
  3759.  
  3760. local bg = Instance.new("BodyGyro",engine)
  3761. bg.D = 500
  3762. bg.MaxTorque = Vector3.new(0,0,0)
  3763. bg.P = 1000
  3764. local bv = Instance.new("BodyVelocity",engine)
  3765. bv.MaxForce = Vector3.new(0,0,0)
  3766. bv.P = 1250
  3767. bv.Velocity = Vector3.new(0,0.16,0)
  3768.  
  3769. mouse.KeyDown:connect(function(key)
  3770. if key == "u" and engineon == true then
  3771. engineon = false
  3772. --enginesound:Stop()
  3773. pros:Stop()
  3774. pros2:Stop()
  3775. air:Stop()
  3776. bv.MaxForce = Vector3.new(0,0,0)
  3777. --bg.CFrame = CFrame.new(engine.CFrame.p, mouse.Hit.p)
  3778. end
  3779. end)
  3780.  
  3781. --Gui Start--
  3782. local speedgui = Instance.new("ScreenGui", player.PlayerGui)
  3783. speedgui.Name = "SpeedGui"
  3784.  
  3785. local speedguibackground = Instance.new("Frame", speedgui)
  3786. speedguibackground.Size = UDim2.new(0, 20, 0, 200)
  3787. speedguibackground.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3788. speedguibackground.Name = "speedguibackground"
  3789. speedguibackground.Position = UDim2.new(0.8, 0, 0.1, 0)
  3790. speedguibackground.BorderSizePixel = 0
  3791. speedguibackground.BackgroundTransparency = 0.4
  3792. speedguibackground.BackgroundColor3 = Color3.new(1, 1, 1)
  3793.  
  3794. local speedbar = Instance.new("Frame", speedgui)
  3795. speedbar.Size = UDim2.new(0, 40, 0, 20)
  3796. speedbar.Draggable = true
  3797. speedbar.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3798. speedbar.Name = "speedbar"
  3799. speedbar.Position = UDim2.new(0.786, 0, 0.44, 0)
  3800. speedbar.BorderSizePixel = 0
  3801. speedbar.BackgroundTransparency = 0.1
  3802. speedbar.BackgroundColor3 = Color3.new(0, 0, 0)
  3803.  
  3804. local textlabel = Instance.new("TextLabel", speedgui)
  3805. textlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  3806. textlabel.BackgroundTransparency = 1
  3807. textlabel.Size = UDim2.new(0, 200, 0, 50)
  3808. textlabel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3809. textlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3810. textlabel.Text = "Speed Meter"
  3811. textlabel.Position = UDim2.new(0.6, 0, 0.2, 0)
  3812. textlabel.Font = Enum.Font.SourceSans
  3813. textlabel.FontSize = Enum.FontSize.Size14
  3814.  
  3815. local speedadd = Instance.new("ImageButton", speedgui)
  3816. speedadd.BackgroundColor3 = Color3.new(1, 1, 1)
  3817. speedadd.Image = "http://www.roblox.com/asset/?id=13890082"
  3818. speedadd.Size = UDim2.new(0, 20, 0, 20)
  3819. speedadd.BackgroundTransparency = 1
  3820. speedadd.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3821. speedadd.Name = "speedadd"
  3822. speedadd.Position = UDim2.new(0.7, 0, 0.28, 0)
  3823.  
  3824. local speedsubtract = Instance.new("ImageButton", speedgui)
  3825. speedsubtract.BackgroundColor3 = Color3.new(1, 1, 1)
  3826. speedsubtract.Image = "http://www.roblox.com/asset/?id=57419479"
  3827. speedsubtract.Size = UDim2.new(0, 20, 0, 20)
  3828. speedsubtract.BackgroundTransparency = 1
  3829. speedsubtract.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3830. speedsubtract.Name = "speedsubtract"
  3831. speedsubtract.Position = UDim2.new(0.733, 0, 0.28, 0)
  3832.  
  3833. local planehealthlabel = Instance.new("TextLabel", speedgui)
  3834. planehealthlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  3835. planehealthlabel.BackgroundTransparency = 1
  3836. planehealthlabel.Size = UDim2.new(0, 200, 0, 50)
  3837. planehealthlabel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3838. planehealthlabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3839. planehealthlabel.Text = "Plane Health:"..planehealth
  3840. planehealthlabel.Position = UDim2.new(0.6, 0, 0.3, 0)
  3841. planehealthlabel.Font = Enum.Font.SourceSans
  3842. planehealthlabel.Name = "planehealthlabel"
  3843. planehealthlabel.FontSize = Enum.FontSize.Size14
  3844.  
  3845. local toggledoor = Instance.new("TextLabel", speedgui)
  3846. toggledoor.BackgroundColor3 = Color3.new(1, 1, 1)
  3847. toggledoor.BackgroundTransparency = 1
  3848. toggledoor.Size = UDim2.new(0, 200, 0, 50)
  3849. toggledoor.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3850. toggledoor.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3851. toggledoor.Text = "Toggle Door (H): Open"
  3852.  
  3853. toggledoor.Position = UDim2.new(0.5, 0, 0.35, 0)
  3854. toggledoor.Font = Enum.Font.SourceSans
  3855. toggledoor.Name = "toggledoor"
  3856. toggledoor.FontSize = Enum.FontSize.Size14
  3857.  
  3858. local flightreadylabel = Instance.new("TextLabel", speedgui)
  3859. flightreadylabel.BackgroundColor3 = Color3.new(1, 1, 1)
  3860. flightreadylabel.BackgroundTransparency = 1
  3861. flightreadylabel.Size = UDim2.new(0, 200, 0, 50)
  3862. flightreadylabel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3863. flightreadylabel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3864. flightreadylabel.Text = "Flight Mode(P): Autopilot"
  3865.  
  3866. flightreadylabel.Position = UDim2.new(0.5, 0, 0.4, 0)
  3867. flightreadylabel.Font = Enum.Font.SourceSans
  3868. flightreadylabel.Name = "flightreadylabel"
  3869. flightreadylabel.FontSize = Enum.FontSize.Size14
  3870.  
  3871. local autointerference = Instance.new("TextLabel", speedgui)
  3872. autointerference.BackgroundColor3 = Color3.new(1, 1, 1)
  3873. autointerference.BackgroundTransparency = 1
  3874. autointerference.Size = UDim2.new(0, 200, 0, 50)
  3875. autointerference.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3876. autointerference.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3877. autointerference.Text = "Anti Autopilot Interference(K, Disables W and Seats): Off"
  3878.  
  3879. autointerference.Position = UDim2.new(0.5, 0, 0.45, 0)
  3880. autointerference.Font = Enum.Font.SourceSans
  3881. autointerference.Name = "autointerference"
  3882. autointerference.FontSize = Enum.FontSize.Size12
  3883.  
  3884. local togglewheel = Instance.new("TextLabel", speedgui)
  3885. togglewheel.BackgroundColor3 = Color3.new(1, 1, 1)
  3886. togglewheel.BackgroundTransparency = 1
  3887. togglewheel.Size = UDim2.new(0, 200, 0, 50)
  3888. togglewheel.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3889. togglewheel.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3890. togglewheel.Text = "Toggle Wheels (X): On"
  3891.  
  3892. togglewheel.Position = UDim2.new(0.5, 0, 0.5, 0)
  3893. togglewheel.Font = Enum.Font.SourceSans
  3894. togglewheel.Name = "togglewheel"
  3895. togglewheel.FontSize = Enum.FontSize.Size14
  3896.  
  3897. local togglelight = Instance.new("TextLabel", speedgui)
  3898. togglelight.BackgroundColor3 = Color3.new(1, 1, 1)
  3899. togglelight.BackgroundTransparency = 1
  3900. togglelight.Size = UDim2.new(0, 200, 0, 50)
  3901. togglelight.TextColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3902. togglelight.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3903. togglelight.Text = "Toggle Light (L): Off"
  3904.  
  3905. togglelight.Position = UDim2.new(0.5, 0, 0.55, 0)
  3906. togglelight.Font = Enum.Font.SourceSans
  3907. togglelight.Name = "togglelight"
  3908. togglelight.FontSize = Enum.FontSize.Size14
  3909.  
  3910. --Gui End--
  3911.  
  3912. speedadd.MouseButton1Click:connect(function()
  3913. speed = speed + 5
  3914. if speed >= 150 then speed = 150 end
  3915. textlabel.Text = "Speed:"..speed
  3916. print("Speed:"..speed)
  3917. speedbar.Position = UDim2.new(0.786, 0, speedbar.Position.Y.Scale - .01, 0)
  3918. end)
  3919. speedsubtract.MouseButton1Click:connect(function()
  3920. speed = speed - 5
  3921. if speed <= 5 then speed = 5 end
  3922. textlabel.Text = "Speed:"..speed
  3923. print("Speed:"..speed)
  3924. speedbar.Position = UDim2.new(0.786, 0, speedbar.Position.Y.Scale + .01, 0)
  3925. end)
  3926.  
  3927. mouse.KeyDown:connect(function(key)
  3928. if key == "h" then
  3929. hpressed = hpressed + 1
  3930. if hpressed == 1 then
  3931. toggledoor.Text = "Toggle Door (H): Closed"
  3932. mcarrier.troopdooropen.Transparency = 1
  3933. mcarrier.troopdooropen.CanCollide = false
  3934. mcarrier.troopdoorclosed.Transparency = 0
  3935. mcarrier.troopdoorclosed.CanCollide = true
  3936. end
  3937. if hpressed == 2 then
  3938. hpressed = 0
  3939. toggledoor.Text = "Toggle Door (H): Open"
  3940. mcarrier.troopdoorclosed.Transparency = 1
  3941. mcarrier.troopdoorclosed.CanCollide = false
  3942. mcarrier.troopdooropen.Transparency = 0
  3943. mcarrier.troopdooropen.CanCollide = true
  3944. end
  3945. end
  3946. end)
  3947.  
  3948. mouse.KeyDown:connect(function(key)
  3949. if key == "w" and engineon == true and kpressed == 0 then
  3950. wpressed = true
  3951.  
  3952. bv.MaxForce = Vector3.new(9e20,9e20,9e20)
  3953. while wpressed == true do wait(.08)
  3954. if flightready == true then
  3955. bv.Velocity = (engine.CFrame.lookVector * speed) + Vector3.new(0,2,0)
  3956. air:Play()
  3957. end
  3958. if flightready == false then
  3959. bv.Velocity = (engine.CFrame.lookVector * 30) + Vector3.new(0,0,0)
  3960. air:Stop()
  3961. end
  3962. end
  3963. end
  3964. end)
  3965. mouse.KeyUp:connect(function(key)
  3966. if key == "w" and kpressed == 0 then
  3967. wpressed = false
  3968. bv.Velocity = Vector3.new(0,bv.Velocity.y,0)
  3969. end
  3970. end)
  3971.  
  3972. mouse.KeyDown:connect(function(key)
  3973. if key == "p" and engineon == true then
  3974. ppressed = ppressed + 1
  3975. if ppressed == 1 then
  3976. flightready = true
  3977. flightreadylabel.Text = "Flight Mode(P): Manual"
  3978. end
  3979. if ppressed == 2 then
  3980. ppressed = 0
  3981. flightready = false
  3982. flightreadylabel.Text = "Flight Mode(P): Autopilot"
  3983. end
  3984. end
  3985. end)
  3986.  
  3987. mouse.KeyDown:connect(function(key)
  3988. if key == "k" and engineon == true then
  3989. kpressed = kpressed + 1
  3990. if kpressed ==1 then
  3991. autointerference.Text = "Anti Autopilot Interference(K, Disables W and Seats): On"
  3992. local seats = mcarrier:GetChildren()
  3993.  
  3994. for i = 1,#seats do
  3995. if (seats[i].className == "Seat") then
  3996. if (prev ~= nil)then
  3997. seats[i].Disabled = true
  3998. end
  3999. prev = seats[i]
  4000. end
  4001. end
  4002.  
  4003. end
  4004. if kpressed ==2 then
  4005. kpressed = 0
  4006. autointerference.Text = "Anti Autopilot Interference(K, Disables W and Seats): Off"
  4007. local seats = mcarrier:GetChildren()
  4008.  
  4009. for i = 1,#seats do
  4010. if (seats[i].className == "Seat") then
  4011. if (prev ~= nil)then
  4012. seats[i].Disabled = false
  4013. end
  4014. prev = seats[i]
  4015. end
  4016. end
  4017.  
  4018. end
  4019. end
  4020. end)
  4021.  
  4022.  
  4023. game:GetService("RunService").RenderStepped:connect(function()
  4024. if wpressed == true and engineon == true and flightready == true and kpressed == 0 then
  4025. bg.MaxTorque = Vector3.new(9e20,9e20,9e20)
  4026. bg.CFrame = CFrame.new(engine.CFrame.p, mouse.Hit.p)
  4027. end
  4028. end)
  4029.  
  4030. mcarrier.crasherfront.Touched:connect(function(h)
  4031. planehealth = planehealth - math.random(1,5)
  4032. planehealthlabel.Text = "Plane Health:"..planehealth
  4033. end)
  4034. mcarrier.crasherleftwing.Touched:connect(function(h)
  4035. planehealth = planehealth - math.random(1,5)
  4036. planehealthlabel.Text = "Plane Health:"..planehealth
  4037. end)
  4038. mcarrier.crasherrightwing.Touched:connect(function(h)
  4039. planehealth = planehealth - math.random(1,5)
  4040. planehealthlabel.Text = "Plane Health:"..planehealth
  4041. end)
  4042. propeller1.propellercenter.Touched:connect(function(h)
  4043. planehealth = planehealth - math.random(1,5)
  4044. planehealthlabel.Text = "Plane Health:"..planehealth
  4045. end)
  4046. propeller2.propellercenter.Touched:connect(function(h)
  4047. planehealth = planehealth - math.random(1,5)
  4048. planehealthlabel.Text = "Plane Health:"..planehealth
  4049. end)
  4050. propeller3.propellercenter.Touched:connect(function(h)
  4051. planehealth = planehealth - math.random(1,5)
  4052. planehealthlabel.Text = "Plane Health:"..planehealth
  4053. end)
  4054. propeller4.propellercenter.Touched:connect(function(h)
  4055. planehealth = planehealth - math.random(1,5)
  4056. planehealthlabel.Text = "Plane Health:"..planehealth
  4057. end)
  4058.  
  4059. mouse.KeyDown:connect(function(key)
  4060. if key == "l" then
  4061. lpressed = lpressed + 1
  4062. if lpressed == 1 then
  4063. togglelight.Text = "Toggle Light (L): On"
  4064. while lpressed == 1 do wait(.4)
  4065. light.Enabled = true
  4066. identifylight.BrickColor = BrickColor.new("Really red")
  4067. wait(.4)
  4068. light.Enabled = false
  4069. identifylight.BrickColor = BrickColor.new("Really black")
  4070. end
  4071. end
  4072. if lpressed == 2 then
  4073. lpressed = 0
  4074. togglelight.Text = "Toggle Light (L): Off"
  4075. light.Enabled = false
  4076. identifylight.BrickColor = BrickColor.new("Really black")
  4077. end
  4078. end
  4079. end)
  4080.  
  4081. mouse.KeyDown:connect(function(key)
  4082. if key == "x" then
  4083. xpressed = xpressed + 1
  4084. if xpressed == 1 then
  4085. togglewheel.Text = "Toggle Wheels (X): Off"
  4086. mcarrier.Wheelbar1.Transparency = 1
  4087. mcarrier.Wheelbar2.Transparency = 1
  4088. mcarrier.Wheelbar1.CanCollide = false
  4089. mcarrier.Wheelbar2.CanCollide = false
  4090. mcarrier.Wheelline1.Transparency = 1
  4091. mcarrier.Wheelline2.Transparency = 1
  4092. mcarrier.Wheelline3.Transparency = 1
  4093. mcarrier.Wheelline1.CanCollide = false
  4094. mcarrier.Wheelline2.CanCollide = false
  4095. mcarrier.Wheelline3.CanCollide = false
  4096. mcarrier.Wheel1.Transparency = 1
  4097. mcarrier.Wheel2.Transparency = 1
  4098. mcarrier.Wheel3.Transparency = 1
  4099. mcarrier.Wheel4.Transparency = 1
  4100. mcarrier.Wheel5.Transparency = 1
  4101. mcarrier.Wheel6.Transparency = 1
  4102. mcarrier.Wheel7.Transparency = 1
  4103. mcarrier.Wheel8.Transparency = 1
  4104. mcarrier.Wheel9.Transparency = 1
  4105. mcarrier.Wheel10.Transparency = 1
  4106. mcarrier.Wheel1.CanCollide = false
  4107. mcarrier.Wheel2.CanCollide = false
  4108. mcarrier.Wheel3.CanCollide = false
  4109. mcarrier.Wheel4.CanCollide = false
  4110. mcarrier.Wheel5.CanCollide = false
  4111. mcarrier.Wheel6.CanCollide = false
  4112. mcarrier.Wheel7.CanCollide = false
  4113. mcarrier.Wheel8.CanCollide = false
  4114. mcarrier.Wheel9.CanCollide = false
  4115. mcarrier.Wheel10.CanCollide = false
  4116. end
  4117. if xpressed == 2 then
  4118. xpressed = 0
  4119. togglewheel.Text = "Toggle Wheels (X): On"
  4120. mcarrier.Wheelbar1.Transparency = 0
  4121. mcarrier.Wheelbar2.Transparency = 0
  4122. mcarrier.Wheelbar1.CanCollide = true
  4123. mcarrier.Wheelbar2.CanCollide = true
  4124. mcarrier.Wheel1.Transparency = 0
  4125. mcarrier.Wheelline1.Transparency = 0
  4126. mcarrier.Wheelline2.Transparency = 0
  4127. mcarrier.Wheelline3.Transparency = 0
  4128. mcarrier.Wheelline1.CanCollide = true
  4129. mcarrier.Wheelline2.CanCollide = true
  4130. mcarrier.Wheelline3.CanCollide = true
  4131. mcarrier.Wheel2.Transparency = 0
  4132. mcarrier.Wheel3.Transparency = 0
  4133. mcarrier.Wheel4.Transparency = 0
  4134. mcarrier.Wheel5.Transparency = 0
  4135. mcarrier.Wheel6.Transparency = 0
  4136. mcarrier.Wheel7.Transparency = 0
  4137. mcarrier.Wheel8.Transparency = 0
  4138. mcarrier.Wheel9.Transparency = 0
  4139. mcarrier.Wheel10.Transparency = 0
  4140. mcarrier.Wheel1.CanCollide = true
  4141. mcarrier.Wheel2.CanCollide = true
  4142. mcarrier.Wheel3.CanCollide = true
  4143. mcarrier.Wheel4.CanCollide = true
  4144. mcarrier.Wheel5.CanCollide = true
  4145. mcarrier.Wheel6.CanCollide = true
  4146. mcarrier.Wheel7.CanCollide = true
  4147. mcarrier.Wheel8.CanCollide = true
  4148. mcarrier.Wheel9.CanCollide = true
  4149. mcarrier.Wheel10.CanCollide = true
  4150. end
  4151. end
  4152. end)
Add Comment
Please, Sign In to add comment