Advertisement
waconline

old car

Oct 27th, 2019
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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 = owner
  153. local char = player.Character
  154. local mouse = player:GetMouse()
  155. local engineon = false
  156. local wpressed = false
  157. local apressed = false
  158. local apressed2 = false
  159. local spressed = false
  160. local dpressed = false
  161. local dpressed2 = false
  162. local bpressed = false
  163. local gpressed = 0
  164. local lpressed = 0
  165. local forcelevel = 4e+6
  166. local accel = 0
  167. local accellimit = 100
  168. local angletorque = 5850000
  169. local gearspeed = 100
  170. local wheelaccel = 0
  171. local rotateangle = 0
  172. local doorangle = 0
  173. local ppressed = 0
  174. local kpressed = 0
  175. local vpressed = 0
  176. local colors = {BrickColor.new"Storm blue";BrickColor.new'Bright yellow';BrickColor.new'Sea green';BrickColor.new'Really black';BrickColor.new'Medium stone grey';BrickColor.new'Cocoa';};
  177. local bodycolor = colors[math.random(1,#colors)]
  178.  
  179. function weld(p0,p1,c0)
  180. local w=Instance.new("Weld",p0)
  181. w.Part0=p0
  182. w.Part1=p1
  183. w.C0=c0
  184. return w
  185. end
  186.  
  187. local mcar = Instance.new("Model", workspace)
  188. mcar.Name = "MCar"
  189.  
  190. doorpos = Instance.new("Part", mcar)
  191. doorpos.FormFactor = Enum.FormFactor.Plate
  192. doorpos.CanCollide = false
  193. doorpos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  194. doorpos.Transparency = 1
  195. doorpos.TopSurface = Enum.SurfaceType.Smooth
  196. doorpos.Material = Enum.Material.SmoothPlastic
  197. doorpos.Size = Vector3.new(1, 3.6, 5)
  198. doorpos.Name = "doorpos"
  199. doorpos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  200. doorpos.CFrame = CFrame.new(48.845, 3.606, -154.156)* CFrame.Angles(3.141592502594, -1.2660163406508e-007, -3.141592502594)
  201. doorpos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  202. doorpos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  203. doorpos.BrickColor = bodycolor
  204. doorpos.Friction = 0.3
  205. doorpos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  206.  
  207. door = Instance.new("Model", mcar)
  208. door.Name = "Door"
  209.  
  210. part = Instance.new("Part", door)
  211. part.FormFactor = Enum.FormFactor.Plate
  212. part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  213. part.TopSurface = Enum.SurfaceType.Smooth
  214. part.Material = Enum.Material.SmoothPlastic
  215. part.Size = Vector3.new(1, 3.6, 5)
  216. part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  217. part.CFrame = CFrame.new(48.845, 3.603, -154.156)* CFrame.Angles(3.141592502594, -2.2057429305278e-007, -3.1415927410126)
  218. part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  219. part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  220. part.BrickColor = bodycolor
  221. part.Friction = 0.3
  222. part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  223. part.Name = "doormain"
  224.  
  225. part_2 = Instance.new("Part", door)
  226. part_2.FormFactor = Enum.FormFactor.Plate
  227. part_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  228. part_2.TopSurface = Enum.SurfaceType.Smooth
  229. part_2.Material = Enum.Material.SmoothPlastic
  230. part_2.Size = Vector3.new(1, 2, 1)
  231. part_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  232. part_2.CFrame = CFrame.new(48.847, 6.405, -151.052)* CFrame.Angles(3.141592502594, -1.1626889317995e-007, -3.1415927410126)
  233. part_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  234. part_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  235. part_2.BrickColor = bodycolor
  236. part_2.Friction = 0.3
  237. part_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  238.  
  239. part_3 = Instance.new("Part", door)
  240. part_3.FormFactor = Enum.FormFactor.Plate
  241. part_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  242. part_3.TopSurface = Enum.SurfaceType.Smooth
  243. part_3.Material = Enum.Material.SmoothPlastic
  244. part_3.Size = Vector3.new(1, 2, 1)
  245. part_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  246. part_3.CFrame = CFrame.new(48.848, 6.405, -156.052)* CFrame.Angles(3.141592502594, -2.250999386888e-007, 3.1415927410126)
  247. part_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  248. part_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  249. part_3.BrickColor = bodycolor
  250. part_3.Friction = 0.3
  251. part_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  252.  
  253. window6 = Instance.new("Part", door)
  254. window6.FormFactor = Enum.FormFactor.Plate
  255. window6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  256. window6.Transparency = 0.5
  257. window6.TopSurface = Enum.SurfaceType.Smooth
  258. window6.Reflectance = 0.5
  259. window6.Material = Enum.Material.SmoothPlastic
  260. window6.Size = Vector3.new(4, 2, 1)
  261. window6.Name = "window6"
  262. window6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  263. window6.CFrame = CFrame.new(48.848, 6.405, -153.552)* CFrame.Angles(-0.15858368575573, 1.5663747787476, 0.15816649794579)
  264. window6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  265. window6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  266. window6.BrickColor = BrickColor.new("Institutional white")
  267. window6.Friction = 0.3
  268. window6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  269.  
  270. door2pos = Instance.new("Part", mcar)
  271. door2pos.FormFactor = Enum.FormFactor.Plate
  272. door2pos.CanCollide = false
  273. door2pos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  274. door2pos.Transparency = 1
  275. door2pos.TopSurface = Enum.SurfaceType.Smooth
  276. door2pos.Material = Enum.Material.SmoothPlastic
  277. door2pos.Size = Vector3.new(1, 3.6, 5)
  278. door2pos.Name = "door2pos"
  279. door2pos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  280. door2pos.CFrame = CFrame.new(58.844, 3.605, -154.153)* CFrame.Angles(3.141592502594, -2.2057338355808e-007, -3.1415927410126)
  281. door2pos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  282. door2pos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  283. door2pos.BrickColor = bodycolor
  284. door2pos.Friction = 0.3
  285. door2pos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  286.  
  287. backwheels = Instance.new("Model", mcar)
  288. backwheels.Name = "backwheels"
  289.  
  290. bcollide1 = Instance.new("Part", mcar)
  291. bcollide1.FormFactor = Enum.FormFactor.Custom
  292. bcollide1.Elasticity = 0
  293. bcollide1.TopSurface = Enum.SurfaceType.Smooth
  294. bcollide1.Size = Vector3.new(3.4, 1.4, 4.4)
  295. bcollide1.CFrame = CFrame.new(58.6, 1.7, -141.21)* CFrame.Angles(-0, 0, 1.5707963705063)
  296. bcollide1.BrickColor = BrickColor.new("Really black")
  297. bcollide1.Friction = 0.3
  298. bcollide1.BottomSurface = Enum.SurfaceType.Smooth
  299. bcollide1.CanCollide = true
  300. bcollide1.Transparency = 1
  301.  
  302. bcollide2 = Instance.new("Part", mcar)
  303. bcollide2.FormFactor = Enum.FormFactor.Custom
  304. bcollide2.Elasticity = 0
  305. bcollide2.TopSurface = Enum.SurfaceType.Smooth
  306. bcollide2.Size = Vector3.new(1.8, 11, 0.2)
  307. bcollide2.Name = "bcollide2"
  308. bcollide2.CFrame = CFrame.new(53.8, 1.7, -141.2)* CFrame.Angles(-0, 0, 1.5707963705063)
  309. bcollide2.Friction = 0.3
  310. bcollide2.BottomSurface = Enum.SurfaceType.Smooth
  311. bcollide2.CanCollide = true
  312. bcollide2.Transparency = 1
  313.  
  314. bcollide3 = Instance.new("Part", mcar)
  315. bcollide3.FormFactor = Enum.FormFactor.Custom
  316. bcollide3.Elasticity = 0
  317. bcollide3.TopSurface = Enum.SurfaceType.Smooth
  318. bcollide3.Size = Vector3.new(1.8, 1.8, 2)
  319. bcollide3.CFrame = CFrame.new(58.6, 1.7, -141.21)* CFrame.Angles(-0, 0, 1.5707963705063)
  320. bcollide3.Friction = 0.3
  321. bcollide3.BottomSurface = Enum.SurfaceType.Smooth
  322. bcollide3.CanCollide = true
  323. bcollide3.Transparency = 1
  324.  
  325. bcollide4 = Instance.new("Part", mcar)
  326. bcollide4.FormFactor = Enum.FormFactor.Custom
  327. bcollide4.Elasticity = 0
  328. bcollide4.TopSurface = Enum.SurfaceType.Smooth
  329. bcollide4.Size = Vector3.new(1.8, 1.8, 2)
  330. bcollide4.CFrame = CFrame.new(49.1, 1.7, -141.2)* CFrame.Angles(-0, 0, 1.5707963705063)
  331. bcollide4.Friction = 0.3
  332. bcollide4.BottomSurface = Enum.SurfaceType.Smooth
  333. bcollide4.CanCollide = true
  334. bcollide4.Transparency = 1
  335.  
  336. bcollide5 = Instance.new("Part", mcar)
  337. bcollide5.FormFactor = Enum.FormFactor.Custom
  338. bcollide5.Elasticity = 0
  339. bcollide5.TopSurface = Enum.SurfaceType.Smooth
  340. bcollide5.Size = Vector3.new(3.4, 1.4, 4.4)
  341. bcollide5.CFrame = CFrame.new(58.6, 1.7, -141.21)* CFrame.Angles(-0, 0, 1.5707963705063)
  342. bcollide5.BrickColor = BrickColor.new("Really black")
  343. bcollide5.Friction = 0.3
  344. bcollide5.BottomSurface = Enum.SurfaceType.Smooth
  345. bcollide5.CanCollide = true
  346. bcollide5.Transparency = 1
  347.  
  348. part_4 = Instance.new("Part", backwheels)
  349. part_4.FormFactor = Enum.FormFactor.Custom
  350. part_4.Elasticity = 0
  351. part_4.TopSurface = Enum.SurfaceType.Smooth
  352. part_4.Size = Vector3.new(3.4, 1.4, 4.4)
  353. part_4.CFrame = CFrame.new(58.6, 1.7, -141.21)* CFrame.Angles(-0, 0, 1.5707963705063)
  354. part_4.BrickColor = BrickColor.new("Really black")
  355. part_4.Friction = 0.3
  356. part_4.BottomSurface = Enum.SurfaceType.Smooth
  357. part_4.CanCollide = false
  358.  
  359. mesh = Instance.new("CylinderMesh", part_4)
  360.  
  361. axle = Instance.new("Part", backwheels)
  362. axle.FormFactor = Enum.FormFactor.Custom
  363. axle.Elasticity = 0
  364. axle.TopSurface = Enum.SurfaceType.Smooth
  365. axle.Size = Vector3.new(1.8, 11, 0.2)
  366. axle.Name = "Axle"
  367. axle.CFrame = CFrame.new(53.8, 1.7, -141.2)* CFrame.Angles(-0, 0, 1.5707963705063)
  368. axle.Friction = 0.3
  369. axle.BottomSurface = Enum.SurfaceType.Smooth
  370. axle.CanCollide = false
  371.  
  372. mesh_2 = Instance.new("CylinderMesh", axle)
  373.  
  374. part_5 = Instance.new("Part", backwheels)
  375. part_5.FormFactor = Enum.FormFactor.Custom
  376. part_5.Elasticity = 0
  377. part_5.TopSurface = Enum.SurfaceType.Smooth
  378. part_5.Size = Vector3.new(1.8, 1.8, 2)
  379. part_5.CFrame = CFrame.new(58.6, 1.7, -141.21)* CFrame.Angles(-0, 0, 1.5707963705063)
  380. part_5.Friction = 0.3
  381. part_5.BottomSurface = Enum.SurfaceType.Smooth
  382. part_5.CanCollide = false
  383.  
  384. mesh_3 = Instance.new("CylinderMesh", part_5)
  385.  
  386. part_6 = Instance.new("Part", backwheels)
  387. part_6.FormFactor = Enum.FormFactor.Custom
  388. part_6.Elasticity = 0
  389. part_6.TopSurface = Enum.SurfaceType.Smooth
  390. part_6.Size = Vector3.new(1.8, 1.8, 2)
  391. part_6.CFrame = CFrame.new(49.1, 1.7, -141.2)* CFrame.Angles(-0, 0, 1.5707963705063)
  392. part_6.Friction = 0.3
  393. part_6.BottomSurface = Enum.SurfaceType.Smooth
  394. part_6.CanCollide = false
  395.  
  396. mesh_4 = Instance.new("CylinderMesh", part_6)
  397.  
  398. part_7 = Instance.new("Part", backwheels)
  399. part_7.FormFactor = Enum.FormFactor.Custom
  400. part_7.Elasticity = 0
  401. part_7.TopSurface = Enum.SurfaceType.Smooth
  402. part_7.Size = Vector3.new(3.4, 1.4, 4.4)
  403. part_7.CFrame = CFrame.new(49.1, 1.7, -141.2)* CFrame.Angles(-0, 0, 1.5707963705063)
  404. part_7.BrickColor = BrickColor.new("Really black")
  405. part_7.Friction = 0.3
  406. part_7.BottomSurface = Enum.SurfaceType.Smooth
  407. part_7.CanCollide = false
  408.  
  409. mesh_5 = Instance.new("CylinderMesh", part_7)
  410.  
  411. part_8 = Instance.new("Part", mcar)
  412. part_8.FormFactor = Enum.FormFactor.Symmetric
  413. part_8.CanCollide = false
  414. part_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  415. part_8.TopSurface = Enum.SurfaceType.Smooth
  416. part_8.Reflectance = 0.3
  417. part_8.Material = Enum.Material.SmoothPlastic
  418. part_8.Size = Vector3.new(1, 1, 1)
  419. part_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  420. part_8.CFrame = CFrame.new(50.548, 3.204, -164.351)* CFrame.Angles(-1.9569604603475e-007, 8.7457920017187e-008, 2.5507410100545e-005)
  421. part_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  422. part_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  423. part_8.Friction = 0.3
  424. part_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  425.  
  426. mesh_6 = Instance.new("SpecialMesh", part_8)
  427. mesh_6.Scale = Vector3.new(3, 3, 2)
  428. mesh_6.MeshId = "http://www.roblox.com/asset/?id=3270017"
  429. mesh_6.MeshType = Enum.MeshType.FileMesh
  430.  
  431. vivrus = Instance.new("VelocityMotor", part_8)
  432. vivrus.Name = "ViVRuS"
  433.  
  434. part_9 = Instance.new("Part", mcar)
  435. part_9.FormFactor = Enum.FormFactor.Plate
  436. part_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  437. part_9.TopSurface = Enum.SurfaceType.Smooth
  438. part_9.Reflectance = 0.3
  439. part_9.Material = Enum.Material.SmoothPlastic
  440. part_9.Size = Vector3.new(1, 0.8, 2)
  441. part_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  442. part_9.CFrame = CFrame.new(50.149, 3.605, -164.551)* CFrame.Angles(-1.5707964897156, -2.2760454854165e-008, -1.570796251297)
  443. part_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  444. part_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  445. part_9.Friction = 0.3
  446. part_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  447.  
  448. mesh_7 = Instance.new("SpecialMesh", part_9)
  449. mesh_7.Scale = Vector3.new(0.118, 0.235, 1.059)
  450. mesh_7.MeshType = Enum.MeshType.Brick
  451.  
  452. part_10 = Instance.new("Part", mcar)
  453. part_10.FormFactor = Enum.FormFactor.Plate
  454. part_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  455. part_10.TopSurface = Enum.SurfaceType.Smooth
  456. part_10.Reflectance = 0.3
  457. part_10.Material = Enum.Material.SmoothPlastic
  458. part_10.Size = Vector3.new(1, 0.4, 2)
  459. part_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  460. part_10.CFrame = CFrame.new(48.349, 3.405, -163.656)* CFrame.Angles(3.141592502594, 6.5192580223083e-009, 0.00021353382908273)
  461. part_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  462. part_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  463. part_10.Friction = 0.3
  464. part_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  465.  
  466. mesh_8 = Instance.new("SpecialMesh", part_10)
  467. mesh_8.Scale = Vector3.new(0.4, 0.4, 0.4)
  468. mesh_8.MeshId = "http://www.roblox.com/asset/?id=12221344"
  469. mesh_8.MeshType = Enum.MeshType.FileMesh
  470.  
  471. part_11 = Instance.new("Part", mcar)
  472. part_11.FormFactor = Enum.FormFactor.Plate
  473. part_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  474. part_11.TopSurface = Enum.SurfaceType.Smooth
  475. part_11.Reflectance = 0.3
  476. part_11.Material = Enum.Material.SmoothPlastic
  477. part_11.Size = Vector3.new(1, 0.8, 2)
  478. part_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  479. part_11.CFrame = CFrame.new(49.749, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  480. part_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  481. part_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  482. part_11.Friction = 0.3
  483. part_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  484.  
  485. mesh_9 = Instance.new("SpecialMesh", part_11)
  486. mesh_9.Scale = Vector3.new(0.118, 0.235, 1.059)
  487. mesh_9.MeshType = Enum.MeshType.Brick
  488.  
  489. frontlight2 = Instance.new("Part", mcar)
  490. frontlight2.FormFactor = Enum.FormFactor.Plate
  491. frontlight2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  492. frontlight2.Transparency = 0.2
  493. frontlight2.TopSurface = Enum.SurfaceType.Smooth
  494. frontlight2.Material = Enum.Material.SmoothPlastic
  495. frontlight2.Size = Vector3.new(1, 0.4, 1)
  496. frontlight2.Name = "frontlight2"
  497. frontlight2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  498. frontlight2.CFrame = CFrame.new(48.848, 5.105, -165.251)* CFrame.Angles(-1.5708879232407, 6.3079831306823e-005, 3.141140460968)
  499. frontlight2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  500. frontlight2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  501. frontlight2.BrickColor = BrickColor.new("Mid gray")
  502. frontlight2.Friction = 0.3
  503. frontlight2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  504.  
  505. mesh_10 = Instance.new("CylinderMesh", frontlight2)
  506.  
  507. headlight = Instance.new("SpotLight", frontlight2)
  508. headlight.Enabled = false
  509. headlight.Face = Enum.NormalId.Right
  510. headlight.Range = 15
  511. headlight.Name = "headlight"
  512. headlight.Angle = 180
  513. headlight.Brightness = 20
  514.  
  515. part_12 = Instance.new("Part", mcar)
  516. part_12.FormFactor = Enum.FormFactor.Plate
  517. part_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  518. part_12.TopSurface = Enum.SurfaceType.Smooth
  519. part_12.Reflectance = 0.3
  520. part_12.Material = Enum.Material.SmoothPlastic
  521. part_12.Size = Vector3.new(1, 0.4, 3)
  522. part_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  523. part_12.CFrame = CFrame.new(48.847, 3.204, -161.156)* CFrame.Angles(5.947543286311e-006, -0.00045032112393528, -0.0001974168990273)
  524. part_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  525. part_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  526. part_12.BrickColor = BrickColor.new("Grey")
  527. part_12.Friction = 0.3
  528. part_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  529.  
  530. part_13 = Instance.new("Part", mcar)
  531. part_13.FormFactor = Enum.FormFactor.Plate
  532. part_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  533. part_13.TopSurface = Enum.SurfaceType.Smooth
  534. part_13.Reflectance = 0.3
  535. part_13.Material = Enum.Material.SmoothPlastic
  536. part_13.Size = Vector3.new(1, 0.8, 2)
  537. part_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  538. part_13.CFrame = CFrame.new(51.349, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  539. part_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  540. part_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  541. part_13.Friction = 0.3
  542. part_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  543.  
  544. mesh_11 = Instance.new("SpecialMesh", part_13)
  545. mesh_11.Scale = Vector3.new(0.118, 0.235, 1.059)
  546. mesh_11.MeshType = Enum.MeshType.Brick
  547.  
  548. part_14 = Instance.new("Part", mcar)
  549. part_14.FormFactor = Enum.FormFactor.Plate
  550. part_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  551. part_14.TopSurface = Enum.SurfaceType.Smooth
  552. part_14.Reflectance = 0.3
  553. part_14.Material = Enum.Material.SmoothPlastic
  554. part_14.Size = Vector3.new(2, 0.4, 1)
  555. part_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  556. part_14.CFrame = CFrame.new(48.848, 4.005, -163.656)* CFrame.Angles(3.1281139850616, -1.5676319599152, 3.1279702186584)
  557. part_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  558. part_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  559. part_14.BrickColor = BrickColor.new("Grey")
  560. part_14.Friction = 0.3
  561. part_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  562.  
  563. part_15 = Instance.new("Part", mcar)
  564. part_15.FormFactor = Enum.FormFactor.Plate
  565. part_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  566. part_15.TopSurface = Enum.SurfaceType.Smooth
  567. part_15.Reflectance = 0.3
  568. part_15.Material = Enum.Material.SmoothPlastic
  569. part_15.Size = Vector3.new(1, 0.4, 2)
  570. part_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  571. part_15.CFrame = CFrame.new(48.349, 3.005, -163.656)* CFrame.Angles(3.141592502594, 6.4901541918516e-009, 0.00021353385818657)
  572. part_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  573. part_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  574. part_15.Friction = 0.3
  575. part_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  576.  
  577. mesh_12 = Instance.new("SpecialMesh", part_15)
  578. mesh_12.Scale = Vector3.new(0.4, 0.4, 0.4)
  579. mesh_12.MeshId = "http://www.roblox.com/asset/?id=12221344"
  580. mesh_12.MeshType = Enum.MeshType.FileMesh
  581.  
  582. part_16 = Instance.new("Part", mcar)
  583. part_16.FormFactor = Enum.FormFactor.Plate
  584. part_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  585. part_16.TopSurface = Enum.SurfaceType.Smooth
  586. part_16.Reflectance = 0.3
  587. part_16.Material = Enum.Material.SmoothPlastic
  588. part_16.Size = Vector3.new(2, 1.2, 1)
  589. part_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  590. part_16.CFrame = CFrame.new(48.848, 3.205, -163.656)* CFrame.Angles(3.1281673908234, -1.5676319599152, 3.1280233860016)
  591. part_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  592. part_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  593. part_16.BrickColor = BrickColor.new("Grey")
  594. part_16.Friction = 0.3
  595. part_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  596.  
  597. part_17 = Instance.new("Part", mcar)
  598. part_17.FormFactor = Enum.FormFactor.Plate
  599. part_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  600. part_17.TopSurface = Enum.SurfaceType.Smooth
  601. part_17.Reflectance = 0.3
  602. part_17.Material = Enum.Material.SmoothPlastic
  603. part_17.Size = Vector3.new(1, 1.6, 1)
  604. part_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  605. part_17.CFrame = CFrame.new(48.847, 2.604, -159.156)* CFrame.Angles(5.872533620277e-006, -0.00045022714766674, -0.00019739411072806)
  606. part_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  607. part_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  608. part_17.BrickColor = BrickColor.new("Grey")
  609. part_17.Friction = 0.3
  610. part_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  611.  
  612. frontlight4 = Instance.new("Part", mcar)
  613. frontlight4.FormFactor = Enum.FormFactor.Plate
  614. frontlight4.CanCollide = false
  615. frontlight4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  616. frontlight4.Transparency = 0.2
  617. frontlight4.TopSurface = Enum.SurfaceType.Smooth
  618. frontlight4.Material = Enum.Material.SmoothPlastic
  619. frontlight4.Size = Vector3.new(1, 0.4, 1)
  620. frontlight4.Name = "frontlight4"
  621. frontlight4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  622. frontlight4.CFrame = CFrame.new(48.849, 3.105, -164.856)* CFrame.Angles(-3.0908482074738, -1.5676507949829, -1.5200179815292)
  623. frontlight4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  624. frontlight4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  625. frontlight4.BrickColor = BrickColor.new("Bright orange")
  626. frontlight4.Friction = 0.3
  627. frontlight4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  628.  
  629. mesh_13 = Instance.new("CylinderMesh", frontlight4)
  630. mesh_13.Offset = Vector3.new(0, -0.3, 0)
  631. mesh_13.Scale = Vector3.new(0.6, 1, 0.6)
  632.  
  633. regularlight = Instance.new("SpotLight", frontlight4)
  634. regularlight.Enabled = false
  635. regularlight.Color = Color3.new(1, 0.333333, 0)
  636. regularlight.Face = Enum.NormalId.Right
  637. regularlight.Range = 10
  638. regularlight.Name = "regularlight"
  639. regularlight.Angle = 180
  640. regularlight.Brightness = 20
  641.  
  642. part_18 = Instance.new("Part", mcar)
  643. part_18.FormFactor = Enum.FormFactor.Plate
  644. part_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  645. part_18.TopSurface = Enum.SurfaceType.Smooth
  646. part_18.Material = Enum.Material.SmoothPlastic
  647. part_18.Size = Vector3.new(6, 0.8, 1)
  648. part_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  649. part_18.CFrame = CFrame.new(48.847, 4.604, -161.651)* CFrame.Angles(0.24924144148827, 1.5676697492599, -0.24892921745777)
  650. part_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  651. part_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  652. part_18.BrickColor = bodycolor
  653. part_18.Friction = 0.3
  654. part_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  655.  
  656. part_19 = Instance.new("Part", mcar)
  657. part_19.FormFactor = Enum.FormFactor.Plate
  658. part_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  659. part_19.TopSurface = Enum.SurfaceType.Smooth
  660. part_19.Material = Enum.Material.SmoothPlastic
  661. part_19.Size = Vector3.new(2, 0.4, 1)
  662. part_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  663. part_19.CFrame = CFrame.new(48.844, 5.203, -157.652)* CFrame.Angles(0.26357743144035, 1.5676697492599, -0.26282879710197)
  664. part_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  665. part_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  666. part_19.BrickColor = bodycolor
  667. part_19.Friction = 0.3
  668. part_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  669.  
  670. part_20 = Instance.new("Part", mcar)
  671. part_20.FormFactor = Enum.FormFactor.Plate
  672. part_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  673. part_20.TopSurface = Enum.SurfaceType.Smooth
  674. part_20.Reflectance = 0.3
  675. part_20.Material = Enum.Material.SmoothPlastic
  676. part_20.Size = Vector3.new(1, 0.8, 2)
  677. part_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  678. part_20.CFrame = CFrame.new(53.749, 3.605, -164.551)* CFrame.Angles(-1.5707964897156, -5.2237146519474e-007, -1.5707963705063)
  679. part_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  680. part_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  681. part_20.Friction = 0.3
  682. part_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  683.  
  684. mesh_14 = Instance.new("SpecialMesh", part_20)
  685. mesh_14.Scale = Vector3.new(0.118, 0.235, 1.059)
  686. mesh_14.MeshType = Enum.MeshType.Brick
  687.  
  688. part_21 = Instance.new("Part", mcar)
  689. part_21.FormFactor = Enum.FormFactor.Plate
  690. part_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  691. part_21.TopSurface = Enum.SurfaceType.Smooth
  692. part_21.Reflectance = 0.3
  693. part_21.Material = Enum.Material.SmoothPlastic
  694. part_21.Size = Vector3.new(1, 0.8, 2)
  695. part_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  696. part_21.CFrame = CFrame.new(52.949, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  697. part_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  698. part_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  699. part_21.Friction = 0.3
  700. part_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  701.  
  702. mesh_15 = Instance.new("SpecialMesh", part_21)
  703. mesh_15.Scale = Vector3.new(0.118, 0.235, 1.059)
  704. mesh_15.MeshType = Enum.MeshType.Brick
  705.  
  706. part_22 = Instance.new("Part", mcar)
  707. part_22.FormFactor = Enum.FormFactor.Plate
  708. part_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  709. part_22.TopSurface = Enum.SurfaceType.Smooth
  710. part_22.Reflectance = 0.3
  711. part_22.Material = Enum.Material.SmoothPlastic
  712. part_22.Size = Vector3.new(2, 0.8, 11)
  713. part_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  714. part_22.CFrame = CFrame.new(53.848, 2.205, -163.653)* CFrame.Angles(3.1281673908234, -1.5676131248474, 3.1280233860016)
  715. part_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  716. part_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  717. part_22.BrickColor = BrickColor.new("Grey")
  718. part_22.Friction = 0.3
  719. part_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  720.  
  721. part_23 = Instance.new("Part", mcar)
  722. part_23.FormFactor = Enum.FormFactor.Plate
  723. part_23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  724. part_23.TopSurface = Enum.SurfaceType.Smooth
  725. part_23.Reflectance = 0.3
  726. part_23.Material = Enum.Material.SmoothPlastic
  727. part_23.Size = Vector3.new(1, 0.8, 9)
  728. part_23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  729. part_23.CFrame = CFrame.new(53.849, 2.805, -164.551)* CFrame.Angles(3.0269060134888, 1.5676319599152, 0.46275079250336)
  730. part_23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  731. part_23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  732. part_23.Friction = 0.3
  733. part_23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  734.  
  735. mesh_16 = Instance.new("SpecialMesh", part_23)
  736. mesh_16.Scale = Vector3.new(0.118, 0.235, 1.059)
  737. mesh_16.MeshType = Enum.MeshType.Brick
  738.  
  739. frontbumper = Instance.new("Part", mcar)
  740. frontbumper.FormFactor = Enum.FormFactor.Plate
  741. frontbumper.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  742. frontbumper.TopSurface = Enum.SurfaceType.Smooth
  743. frontbumper.Reflectance = 0.3
  744. frontbumper.Material = Enum.Material.SmoothPlastic
  745. frontbumper.Size = Vector3.new(1, 0.4, 11)
  746. frontbumper.Name = "frontbumper"
  747. frontbumper.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  748. frontbumper.CFrame = CFrame.new(53.849, 2.105, -164.853)* CFrame.Angles(3.1280734539032, -1.5676319599152, -1.5844591856003)
  749. frontbumper.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  750. frontbumper.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  751. frontbumper.BrickColor = BrickColor.new("Grey")
  752. frontbumper.Friction = 0.3
  753. frontbumper.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  754.  
  755. part_24 = Instance.new("Part", mcar)
  756. part_24.FormFactor = Enum.FormFactor.Plate
  757. part_24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  758. part_24.TopSurface = Enum.SurfaceType.Smooth
  759. part_24.Reflectance = 0.3
  760. part_24.Material = Enum.Material.SmoothPlastic
  761. part_24.Size = Vector3.new(1, 0.8, 2)
  762. part_24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  763. part_24.CFrame = CFrame.new(51.749, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  764. part_24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  765. part_24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  766. part_24.Friction = 0.3
  767. part_24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  768.  
  769. mesh_17 = Instance.new("SpecialMesh", part_24)
  770. mesh_17.Scale = Vector3.new(0.118, 0.235, 1.059)
  771. mesh_17.MeshType = Enum.MeshType.Brick
  772.  
  773. part_25 = Instance.new("Part", mcar)
  774. part_25.FormFactor = Enum.FormFactor.Plate
  775. part_25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  776. part_25.TopSurface = Enum.SurfaceType.Smooth
  777. part_25.Material = Enum.Material.SmoothPlastic
  778. part_25.Size = Vector3.new(2, 0.8, 2)
  779. part_25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  780. part_25.CFrame = CFrame.new(50.348, 3.703, -164.151)* CFrame.Angles(1.570796251297, 0.0001225274609169, -2.0668458944328e-007)
  781. part_25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  782. part_25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  783. part_25.BrickColor = BrickColor.new("Black")
  784. part_25.Friction = 0.3
  785. part_25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  786.  
  787. mesh_18 = Instance.new("CylinderMesh", part_25)
  788.  
  789. part_26 = Instance.new("Part", mcar)
  790. part_26.FormFactor = Enum.FormFactor.Plate
  791. part_26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  792. part_26.TopSurface = Enum.SurfaceType.Smooth
  793. part_26.Reflectance = 0.3
  794. part_26.Material = Enum.Material.SmoothPlastic
  795. part_26.Size = Vector3.new(1, 0.8, 2)
  796. part_26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  797. part_26.CFrame = CFrame.new(50.549, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  798. part_26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  799. part_26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  800. part_26.Friction = 0.3
  801. part_26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  802.  
  803. mesh_19 = Instance.new("SpecialMesh", part_26)
  804. mesh_19.Scale = Vector3.new(0.118, 0.235, 1.059)
  805. mesh_19.MeshType = Enum.MeshType.Brick
  806.  
  807. part_27 = Instance.new("Part", mcar)
  808. part_27.FormFactor = Enum.FormFactor.Plate
  809. part_27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  810. part_27.TopSurface = Enum.SurfaceType.Smooth
  811. part_27.Reflectance = 0.3
  812. part_27.Material = Enum.Material.SmoothPlastic
  813. part_27.Size = Vector3.new(1, 0.8, 2)
  814. part_27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  815. part_27.CFrame = CFrame.new(50.849, 4.605, -164.551)* CFrame.Angles(-3.1349754333496, 1.5676697492599, 0.11481241136789)
  816. part_27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  817. part_27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  818. part_27.Friction = 0.3
  819. part_27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  820.  
  821. mesh_20 = Instance.new("SpecialMesh", part_27)
  822. mesh_20.Scale = Vector3.new(0.118, 0.235, 1.059)
  823. mesh_20.MeshType = Enum.MeshType.Brick
  824.  
  825. part_28 = Instance.new("Part", mcar)
  826. part_28.FormFactor = Enum.FormFactor.Plate
  827. part_28.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  828. part_28.TopSurface = Enum.SurfaceType.Smooth
  829. part_28.Material = Enum.Material.SmoothPlastic
  830. part_28.Size = Vector3.new(1, 6.8, 1)
  831. part_28.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  832. part_28.CFrame = CFrame.new(48.847, 5.104, -161.651)* CFrame.Angles(1.5710419416428, 0.00015805164002813, 0.00022255443036556)
  833. part_28.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  834. part_28.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  835. part_28.BrickColor = bodycolor
  836. part_28.Friction = 0.3
  837. part_28.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  838.  
  839. mesh_21 = Instance.new("CylinderMesh", part_28)
  840.  
  841. part_29 = Instance.new("Part", mcar)
  842. part_29.FormFactor = Enum.FormFactor.Plate
  843. part_29.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  844. part_29.TopSurface = Enum.SurfaceType.Smooth
  845. part_29.Reflectance = 0.3
  846. part_29.Material = Enum.Material.SmoothPlastic
  847. part_29.Size = Vector3.new(1, 0.4, 2)
  848. part_29.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  849. part_29.CFrame = CFrame.new(53.049, 3.705, -164.351)* CFrame.Angles(-1.5707956552505, -1.2217919826508, 1.5707969665527)
  850. part_29.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  851. part_29.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  852. part_29.Friction = 0.3
  853. part_29.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  854.  
  855. part_30 = Instance.new("Part", mcar)
  856. part_30.FormFactor = Enum.FormFactor.Plate
  857. part_30.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  858. part_30.TopSurface = Enum.SurfaceType.Smooth
  859. part_30.Reflectance = 0.3
  860. part_30.Material = Enum.Material.SmoothPlastic
  861. part_30.Size = Vector3.new(1, 0.4, 1)
  862. part_30.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  863. part_30.CFrame = CFrame.new(52.348, 4.804, -164.352)* CFrame.Angles(0.19220323860645, 1.5676319599152, -1.7630617618561)
  864. part_30.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  865. part_30.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  866. part_30.Friction = 0.3
  867. part_30.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  868.  
  869. mesh_22 = Instance.new("SpecialMesh", part_30)
  870. mesh_22.Scale = Vector3.new(0.6, 0.6, 1)
  871. mesh_22.MeshId = "http://www.roblox.com/asset/?id=12221344"
  872. mesh_22.MeshType = Enum.MeshType.FileMesh
  873.  
  874. part_31 = Instance.new("Part", mcar)
  875. part_31.FormFactor = Enum.FormFactor.Plate
  876. part_31.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  877. part_31.TopSurface = Enum.SurfaceType.Smooth
  878. part_31.Material = Enum.Material.SmoothPlastic
  879. part_31.Size = Vector3.new(17, 0.4, 11)
  880. part_31.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  881. part_31.CFrame = CFrame.new(53.843, 1.602, -151.154)* CFrame.Angles(-0.01320565212518, 1.5676319599152, 0.013349411077797)
  882. part_31.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  883. part_31.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  884. part_31.BrickColor = BrickColor.new("Black")
  885. part_31.Friction = 0.3
  886. part_31.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  887.  
  888. part_32 = Instance.new("Part", mcar)
  889. part_32.FormFactor = Enum.FormFactor.Plate
  890. part_32.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  891. part_32.TopSurface = Enum.SurfaceType.Smooth
  892. part_32.Reflectance = 0.3
  893. part_32.Material = Enum.Material.SmoothPlastic
  894. part_32.Size = Vector3.new(1, 0.8, 2)
  895. part_32.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  896. part_32.CFrame = CFrame.new(52.149, 3.605, -164.551)* CFrame.Angles(-1.5707964897156, -2.2760454854165e-008, -1.570796251297)
  897. part_32.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  898. part_32.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  899. part_32.Friction = 0.3
  900. part_32.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  901.  
  902. mesh_23 = Instance.new("SpecialMesh", part_32)
  903. mesh_23.Scale = Vector3.new(0.118, 0.235, 1.059)
  904. mesh_23.MeshType = Enum.MeshType.Brick
  905.  
  906. part_33 = Instance.new("Part", mcar)
  907. part_33.FormFactor = Enum.FormFactor.Plate
  908. part_33.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  909. part_33.TopSurface = Enum.SurfaceType.Smooth
  910. part_33.Reflectance = 0.3
  911. part_33.Material = Enum.Material.SmoothPlastic
  912. part_33.Size = Vector3.new(1, 0.4, 2)
  913. part_33.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  914. part_33.CFrame = CFrame.new(48.349, 2.605, -163.656)* CFrame.Angles(3.141592502594, 6.5192580223083e-009, 0.00021353382908273)
  915. part_33.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  916. part_33.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  917. part_33.Friction = 0.3
  918. part_33.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  919.  
  920. mesh_24 = Instance.new("SpecialMesh", part_33)
  921. mesh_24.Scale = Vector3.new(0.4, 0.4, 0.4)
  922. mesh_24.MeshId = "http://www.roblox.com/asset/?id=12221344"
  923. mesh_24.MeshType = Enum.MeshType.FileMesh
  924.  
  925. part_34 = Instance.new("Part", mcar)
  926. part_34.FormFactor = Enum.FormFactor.Plate
  927. part_34.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  928. part_34.TopSurface = Enum.SurfaceType.Smooth
  929. part_34.Reflectance = 0.3
  930. part_34.Material = Enum.Material.SmoothPlastic
  931. part_34.Size = Vector3.new(1, 0.4, 7.213)
  932. part_34.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  933. part_34.CFrame = CFrame.new(48.743, 4.501, -160.25)* CFrame.Angles(0.00034509919350967, 2.6231919036945e-006, -9.5047390402669e-008)
  934. part_34.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  935. part_34.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  936. part_34.BrickColor = BrickColor.new("Grey")
  937. part_34.Friction = 0.3
  938. part_34.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  939.  
  940. part_35 = Instance.new("Part", mcar)
  941. part_35.FormFactor = Enum.FormFactor.Plate
  942. part_35.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  943. part_35.TopSurface = Enum.SurfaceType.Smooth
  944. part_35.Reflectance = 0.3
  945. part_35.Material = Enum.Material.SmoothPlastic
  946. part_35.Size = Vector3.new(1, 0.4, 1)
  947. part_35.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  948. part_35.CFrame = CFrame.new(51.749, 4.005, -164.351)* CFrame.Angles(0.10810941457748, -1.5676697492599, 0.098645381629467)
  949. part_35.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  950. part_35.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  951. part_35.BrickColor = BrickColor.new("Grey")
  952. part_35.Friction = 0.3
  953. part_35.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  954.  
  955. part_36 = Instance.new("Part", mcar)
  956. part_36.FormFactor = Enum.FormFactor.Plate
  957. part_36.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  958. part_36.TopSurface = Enum.SurfaceType.Smooth
  959. part_36.Reflectance = 0.3
  960. part_36.Material = Enum.Material.SmoothPlastic
  961. part_36.Size = Vector3.new(1, 0.8, 2)
  962. part_36.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  963. part_36.CFrame = CFrame.new(50.949, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  964. part_36.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  965. part_36.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  966. part_36.Friction = 0.3
  967. part_36.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  968.  
  969. mesh_25 = Instance.new("SpecialMesh", part_36)
  970. mesh_25.Scale = Vector3.new(0.118, 0.235, 1.059)
  971. mesh_25.MeshType = Enum.MeshType.Brick
  972.  
  973. part_37 = Instance.new("Part", mcar)
  974. part_37.FormFactor = Enum.FormFactor.Plate
  975. part_37.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  976. part_37.TopSurface = Enum.SurfaceType.Smooth
  977. part_37.Material = Enum.Material.SmoothPlastic
  978. part_37.Size = Vector3.new(4, 0.8, 1)
  979. part_37.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  980. part_37.CFrame = CFrame.new(48.848, 3.804, -160.655)* CFrame.Angles(0.24889132380486, 1.5676889419556, -0.24860671162605)
  981. part_37.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  982. part_37.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  983. part_37.BrickColor = bodycolor
  984. part_37.Friction = 0.3
  985. part_37.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  986.  
  987. part_38 = Instance.new("Part", mcar)
  988. part_38.FormFactor = Enum.FormFactor.Plate
  989. part_38.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  990. part_38.TopSurface = Enum.SurfaceType.Smooth
  991. part_38.Reflectance = 0.3
  992. part_38.Material = Enum.Material.SmoothPlastic
  993. part_38.Size = Vector3.new(1, 0.8, 2)
  994. part_38.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  995. part_38.CFrame = CFrame.new(53.349, 3.605, -164.551)* CFrame.Angles(-1.5707964897156, 2.3386369321088e-006, -1.5707963705063)
  996. part_38.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  997. part_38.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  998. part_38.Friction = 0.3
  999. part_38.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1000.  
  1001. mesh_26 = Instance.new("SpecialMesh", part_38)
  1002. mesh_26.Scale = Vector3.new(0.118, 0.235, 1.059)
  1003. mesh_26.MeshType = Enum.MeshType.Brick
  1004.  
  1005. part_39 = Instance.new("Part", mcar)
  1006. part_39.FormFactor = Enum.FormFactor.Plate
  1007. part_39.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1008. part_39.TopSurface = Enum.SurfaceType.Smooth
  1009. part_39.Material = Enum.Material.SmoothPlastic
  1010. part_39.Size = Vector3.new(3, 0.4, 9)
  1011. part_39.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1012. part_39.CFrame = CFrame.new(53.847, 1.604, -161.154)* CFrame.Angles(-0.01320565212518, 1.5676319599152, 0.013349411077797)
  1013. part_39.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1014. part_39.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1015. part_39.BrickColor = BrickColor.new("Black")
  1016. part_39.Friction = 0.3
  1017. part_39.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1018.  
  1019. part_40 = Instance.new("Part", mcar)
  1020. part_40.FormFactor = Enum.FormFactor.Plate
  1021. part_40.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1022. part_40.TopSurface = Enum.SurfaceType.Smooth
  1023. part_40.Reflectance = 0.3
  1024. part_40.Material = Enum.Material.SmoothPlastic
  1025. part_40.Size = Vector3.new(1, 0.8, 2)
  1026. part_40.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1027. part_40.CFrame = CFrame.new(52.549, 3.605, -164.551)* CFrame.Angles(-1.5707963705063, -4.5537831283582e-008, -1.5707963705063)
  1028. part_40.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1029. part_40.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1030. part_40.Friction = 0.3
  1031. part_40.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1032.  
  1033. mesh_27 = Instance.new("SpecialMesh", part_40)
  1034. mesh_27.Scale = Vector3.new(0.118, 0.235, 1.059)
  1035. mesh_27.MeshType = Enum.MeshType.Brick
  1036.  
  1037. engine = Instance.new("Part", mcar)
  1038. engine.FormFactor = Enum.FormFactor.Plate
  1039. engine.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1040. engine.TopSurface = Enum.SurfaceType.Smooth
  1041. engine.Material = Enum.Material.SmoothPlastic
  1042. engine.Size = Vector3.new(8, 0.8, 9)
  1043. engine.Name = "engine"
  1044. engine.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1045. engine.CFrame = CFrame.new(53.848, 5.005, -160.551)* CFrame.Angles(-1.1832162272185e-007, 1.5707963705063, 0)
  1046. engine.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1047. engine.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1048. engine.BrickColor = BrickColor.new("Institutional white")
  1049. engine.Friction = 0.3
  1050. engine.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1051.  
  1052. window1 = Instance.new("Part", mcar)
  1053. window1.FormFactor = Enum.FormFactor.Plate
  1054. window1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. window1.Transparency = 0.5
  1056. window1.TopSurface = Enum.SurfaceType.Smooth
  1057. window1.Reflectance = 0.5
  1058. window1.Material = Enum.Material.SmoothPlastic
  1059. window1.Size = Vector3.new(3, 2, 1)
  1060. window1.Name = "window1"
  1061. window1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1062. window1.CFrame = CFrame.new(58.847, 6.405, -145.052)* CFrame.Angles(-3.996683517471e-008, 1.5707963705063, 0)
  1063. window1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1064. window1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1065. window1.BrickColor = BrickColor.new("Really black")
  1066. window1.Friction = 0.3
  1067. window1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1068.  
  1069. part_41 = Instance.new("Part", mcar)
  1070. part_41.FormFactor = Enum.FormFactor.Plate
  1071. part_41.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1072. part_41.TopSurface = Enum.SurfaceType.Smooth
  1073. part_41.Material = Enum.Material.SmoothPlastic
  1074. part_41.Size = Vector3.new(2, 0.4, 11)
  1075. part_41.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1076. part_41.CFrame = CFrame.new(53.848, 1.605, -163.654)* CFrame.Angles(-0.01320565212518, 1.5676319599152, 0.013349411077797)
  1077. part_41.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1078. part_41.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1079. part_41.BrickColor = BrickColor.new("Black")
  1080. part_41.Friction = 0.3
  1081. part_41.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1082.  
  1083. part_42 = Instance.new("Part", mcar)
  1084. part_42.FormFactor = Enum.FormFactor.Plate
  1085. part_42.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. part_42.TopSurface = Enum.SurfaceType.Smooth
  1087. part_42.Reflectance = 0.3
  1088. part_42.Material = Enum.Material.SmoothPlastic
  1089. part_42.Size = Vector3.new(1, 0.8, 9)
  1090. part_42.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1091. part_42.CFrame = CFrame.new(53.849, 3.705, -164.551)* CFrame.Angles(3.0269060134888, 1.5676319599152, 0.46275079250336)
  1092. part_42.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. part_42.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. part_42.Friction = 0.3
  1095. part_42.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1096.  
  1097. mesh_28 = Instance.new("SpecialMesh", part_42)
  1098. mesh_28.Scale = Vector3.new(0.118, 0.235, 1.059)
  1099. mesh_28.MeshType = Enum.MeshType.Brick
  1100.  
  1101. part_43 = Instance.new("Part", mcar)
  1102. part_43.FormFactor = Enum.FormFactor.Plate
  1103. part_43.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1104. part_43.Transparency = 0.5
  1105. part_43.TopSurface = Enum.SurfaceType.Smooth
  1106. part_43.Reflectance = 0.5
  1107. part_43.Material = Enum.Material.SmoothPlastic
  1108. part_43.Size = Vector3.new(11, 2.4, 1)
  1109. part_43.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1110. part_43.CFrame = CFrame.new(53.848, 6.605, -157.052)* CFrame.Angles(-3.7612418964272e-005, -1.0413320524094e-005, -6.5191630937989e-007)
  1111. part_43.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. part_43.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. part_43.BrickColor = BrickColor.new("White")
  1114. part_43.Friction = 0.3
  1115. part_43.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1116.  
  1117. mesh_29 = Instance.new("SpecialMesh", part_43)
  1118. mesh_29.MeshType = Enum.MeshType.Wedge
  1119.  
  1120. part_44 = Instance.new("Part", mcar)
  1121. part_44.FormFactor = Enum.FormFactor.Plate
  1122. part_44.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1123. part_44.TopSurface = Enum.SurfaceType.Smooth
  1124. part_44.Material = Enum.Material.SmoothPlastic
  1125. part_44.Size = Vector3.new(1, 3.6, 2)
  1126. part_44.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. part_44.CFrame = CFrame.new(58.842, 3.602, -150.653)* CFrame.Angles(3.141592502594, -2.2057429305278e-007, 3.1415927410126)
  1128. part_44.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1129. part_44.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1130. part_44.BrickColor = bodycolor
  1131. part_44.Friction = 0.3
  1132. part_44.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1133.  
  1134. part_45 = Instance.new("Part", mcar)
  1135. part_45.FormFactor = Enum.FormFactor.Plate
  1136. part_45.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1137. part_45.TopSurface = Enum.SurfaceType.Smooth
  1138. part_45.Reflectance = 0.3
  1139. part_45.Material = Enum.Material.SmoothPlastic
  1140. part_45.Size = Vector3.new(1, 0.4, 1)
  1141. part_45.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1142. part_45.CFrame = CFrame.new(56.049, 4.005, -164.351)* CFrame.Angles(1.5648994445801, -1.5676697492599, 1.5668820142746)
  1143. part_45.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. part_45.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. part_45.BrickColor = BrickColor.new("Grey")
  1146. part_45.Friction = 0.3
  1147. part_45.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1148.  
  1149. part_46 = Instance.new("Part", mcar)
  1150. part_46.FormFactor = Enum.FormFactor.Plate
  1151. part_46.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1152. part_46.TopSurface = Enum.SurfaceType.Smooth
  1153. part_46.Reflectance = 0.3
  1154. part_46.Material = Enum.Material.SmoothPlastic
  1155. part_46.Size = Vector3.new(1, 0.8, 7)
  1156. part_46.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1157. part_46.CFrame = CFrame.new(53.849, 4.605, -164.551)* CFrame.Angles(3.0268504619598, 1.5676507949829, 0.46282681822777)
  1158. part_46.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1159. part_46.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1160. part_46.Friction = 0.3
  1161. part_46.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1162.  
  1163. mesh_30 = Instance.new("SpecialMesh", part_46)
  1164. mesh_30.Scale = Vector3.new(0.118, 0.235, 1.059)
  1165. mesh_30.MeshType = Enum.MeshType.Brick
  1166.  
  1167. part_47 = Instance.new("Part", mcar)
  1168. part_47.FormFactor = Enum.FormFactor.Plate
  1169. part_47.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1170. part_47.TopSurface = Enum.SurfaceType.Smooth
  1171. part_47.Reflectance = 0.3
  1172. part_47.Material = Enum.Material.SmoothPlastic
  1173. part_47.Size = Vector3.new(1, 0.8, 9)
  1174. part_47.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. part_47.CFrame = CFrame.new(53.849, 4.305, -164.551)* CFrame.Angles(3.0269086360931, 1.5676131248474, 0.46262288093567)
  1176. part_47.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1177. part_47.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1178. part_47.Friction = 0.3
  1179. part_47.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1180.  
  1181. mesh_31 = Instance.new("SpecialMesh", part_47)
  1182. mesh_31.Scale = Vector3.new(0.118, 0.235, 1.059)
  1183. mesh_31.MeshType = Enum.MeshType.Brick
  1184.  
  1185. part_48 = Instance.new("Part", mcar)
  1186. part_48.FormFactor = Enum.FormFactor.Plate
  1187. part_48.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. part_48.TopSurface = Enum.SurfaceType.Smooth
  1189. part_48.Material = Enum.Material.SmoothPlastic
  1190. part_48.Size = Vector3.new(1, 3.6, 2)
  1191. part_48.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1192. part_48.CFrame = CFrame.new(48.843, 3.602, -150.656)* CFrame.Angles(3.141592502594, -2.2057429305278e-007, 3.1415927410126)
  1193. part_48.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. part_48.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. part_48.BrickColor = bodycolor
  1196. part_48.Friction = 0.3
  1197. part_48.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1198.  
  1199. part_49 = Instance.new("Part", mcar)
  1200. part_49.FormFactor = Enum.FormFactor.Plate
  1201. part_49.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1202. part_49.TopSurface = Enum.SurfaceType.Smooth
  1203. part_49.Reflectance = 0.3
  1204. part_49.Material = Enum.Material.SmoothPlastic
  1205. part_49.Size = Vector3.new(1, 0.8, 9)
  1206. part_49.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. part_49.CFrame = CFrame.new(53.849, 3.105, -164.551)* CFrame.Angles(3.0269060134888, 1.5676319599152, 0.46275079250336)
  1208. part_49.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. part_49.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1210. part_49.Friction = 0.3
  1211. part_49.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1212.  
  1213. mesh_32 = Instance.new("SpecialMesh", part_49)
  1214. mesh_32.Scale = Vector3.new(0.118, 0.235, 1.059)
  1215. mesh_32.MeshType = Enum.MeshType.Brick
  1216.  
  1217. part_50 = Instance.new("Part", mcar)
  1218. part_50.FormFactor = Enum.FormFactor.Plate
  1219. part_50.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1220. part_50.TopSurface = Enum.SurfaceType.Smooth
  1221. part_50.Material = Enum.Material.SmoothPlastic
  1222. part_50.Size = Vector3.new(9, 1.6, 1)
  1223. part_50.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1224. part_50.CFrame = CFrame.new(53.848, 3.304, -164.051)* CFrame.Angles(-1.9568877007714e-007, 8.7458829511888e-008, 0.00012352189514786)
  1225. part_50.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1226. part_50.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. part_50.BrickColor = BrickColor.new("Black")
  1228. part_50.Friction = 0.3
  1229. part_50.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1230.  
  1231. part_51 = Instance.new("Part", mcar)
  1232. part_51.FormFactor = Enum.FormFactor.Plate
  1233. part_51.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. part_51.TopSurface = Enum.SurfaceType.Smooth
  1235. part_51.Material = Enum.Material.SmoothPlastic
  1236. part_51.Size = Vector3.new(2, 3.2, 11)
  1237. part_51.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1238. part_51.CFrame = CFrame.new(53.844, 3.403, -157.652)* CFrame.Angles(0.24924144148827, 1.5676697492599, -0.24892921745777)
  1239. part_51.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1240. part_51.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1241. part_51.BrickColor = bodycolor
  1242. part_51.Friction = 0.3
  1243. part_51.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1244.  
  1245. part_52 = Instance.new("Part", mcar)
  1246. part_52.FormFactor = Enum.FormFactor.Plate
  1247. part_52.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. part_52.TopSurface = Enum.SurfaceType.Smooth
  1249. part_52.Material = Enum.Material.SmoothPlastic
  1250. part_52.Size = Vector3.new(7, 1.6, 1)
  1251. part_52.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1252. part_52.CFrame = CFrame.new(53.848, 3.904, -164.051)* CFrame.Angles(-1.9568877007714e-007, 8.7458829511888e-008, 0.00012352189514786)
  1253. part_52.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1254. part_52.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. part_52.BrickColor = BrickColor.new("Black")
  1256. part_52.Friction = 0.3
  1257. part_52.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1258.  
  1259. part_53 = Instance.new("Part", mcar)
  1260. part_53.FormFactor = Enum.FormFactor.Plate
  1261. part_53.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1262. part_53.TopSurface = Enum.SurfaceType.Smooth
  1263. part_53.Reflectance = 0.3
  1264. part_53.Material = Enum.Material.SmoothPlastic
  1265. part_53.Size = Vector3.new(1, 0.8, 2)
  1266. part_53.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. part_53.CFrame = CFrame.new(54.549, 3.605, -164.551)* CFrame.Angles(1.5707961320877, 7.7331606007647e-008, -1.5707963705063)
  1268. part_53.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1269. part_53.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1270. part_53.Friction = 0.3
  1271. part_53.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1272.  
  1273. mesh_33 = Instance.new("SpecialMesh", part_53)
  1274. mesh_33.Scale = Vector3.new(0.118, 0.235, 1.059)
  1275. mesh_33.MeshType = Enum.MeshType.Brick
  1276.  
  1277. part_54 = Instance.new("Part", mcar)
  1278. part_54.FormFactor = Enum.FormFactor.Plate
  1279. part_54.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1280. part_54.TopSurface = Enum.SurfaceType.Smooth
  1281. part_54.Reflectance = 0.3
  1282. part_54.Material = Enum.Material.SmoothPlastic
  1283. part_54.Size = Vector3.new(1, 0.8, 9)
  1284. part_54.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1285. part_54.CFrame = CFrame.new(53.849, 4.005, -164.551)* CFrame.Angles(3.0269083976746, 1.5676131248474, 0.46262234449387)
  1286. part_54.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. part_54.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. part_54.Friction = 0.3
  1289. part_54.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1290.  
  1291. mesh_34 = Instance.new("SpecialMesh", part_54)
  1292. mesh_34.Scale = Vector3.new(0.118, 0.235, 1.059)
  1293. mesh_34.MeshType = Enum.MeshType.Brick
  1294.  
  1295. part_55 = Instance.new("Part", mcar)
  1296. part_55.FormFactor = Enum.FormFactor.Plate
  1297. part_55.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1298. part_55.TopSurface = Enum.SurfaceType.Smooth
  1299. part_55.Reflectance = 0.3
  1300. part_55.Material = Enum.Material.SmoothPlastic
  1301. part_55.Size = Vector3.new(1, 0.8, 2)
  1302. part_55.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1303. part_55.CFrame = CFrame.new(54.149, 3.605, -164.551)* CFrame.Angles(1.5707961320877, 7.7331606007647e-008, -1.5707963705063)
  1304. part_55.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1305. part_55.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. part_55.Friction = 0.3
  1307. part_55.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1308.  
  1309. mesh_35 = Instance.new("SpecialMesh", part_55)
  1310. mesh_35.Scale = Vector3.new(0.118, 0.235, 1.059)
  1311. mesh_35.MeshType = Enum.MeshType.Brick
  1312.  
  1313. part_56 = Instance.new("Part", mcar)
  1314. part_56.FormFactor = Enum.FormFactor.Plate
  1315. part_56.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1316. part_56.TopSurface = Enum.SurfaceType.Smooth
  1317. part_56.Material = Enum.Material.SmoothPlastic
  1318. part_56.Size = Vector3.new(1, 3.6, 1)
  1319. part_56.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1320. part_56.CFrame = CFrame.new(48.839, 3.601, -144.157)* CFrame.Angles(-0.0056147389113903, -1.5676697492599, -0.623783826828)
  1321. part_56.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1322. part_56.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1323. part_56.BrickColor = bodycolor
  1324. part_56.Friction = 0.3
  1325. part_56.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1326.  
  1327. part_57 = Instance.new("Part", mcar)
  1328. part_57.FormFactor = Enum.FormFactor.Plate
  1329. part_57.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1330. part_57.TopSurface = Enum.SurfaceType.Smooth
  1331. part_57.Material = Enum.Material.SmoothPlastic
  1332. part_57.Size = Vector3.new(2, 0.4, 1)
  1333. part_57.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1334. part_57.CFrame = CFrame.new(58.844, 5.203, -157.653)* CFrame.Angles(0.26357743144035, 1.5676697492599, -0.26282879710197)
  1335. part_57.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1336. part_57.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1337. part_57.BrickColor = bodycolor
  1338. part_57.Friction = 0.3
  1339. part_57.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1340.  
  1341. part_58 = Instance.new("Part", mcar)
  1342. part_58.FormFactor = Enum.FormFactor.Plate
  1343. part_58.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1344. part_58.TopSurface = Enum.SurfaceType.Smooth
  1345. part_58.Reflectance = 0.3
  1346. part_58.Material = Enum.Material.SmoothPlastic
  1347. part_58.Size = Vector3.new(1, 0.8, 9)
  1348. part_58.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1349. part_58.CFrame = CFrame.new(53.849, 3.405, -164.551)* CFrame.Angles(3.0269060134888, 1.5676319599152, 0.46275079250336)
  1350. part_58.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1351. part_58.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1352. part_58.Friction = 0.3
  1353. part_58.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1354.  
  1355. mesh_36 = Instance.new("SpecialMesh", part_58)
  1356. mesh_36.Scale = Vector3.new(0.118, 0.235, 1.059)
  1357. mesh_36.MeshType = Enum.MeshType.Brick
  1358.  
  1359. part_59 = Instance.new("Part", mcar)
  1360. part_59.FormFactor = Enum.FormFactor.Plate
  1361. part_59.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1362. part_59.TopSurface = Enum.SurfaceType.Smooth
  1363. part_59.Reflectance = 0.3
  1364. part_59.Material = Enum.Material.SmoothPlastic
  1365. part_59.Size = Vector3.new(1, 0.8, 2)
  1366. part_59.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1367. part_59.CFrame = CFrame.new(55.349, 3.605, -164.551)* CFrame.Angles(1.570796251297, -4.1874045564327e-008, -1.570796251297)
  1368. part_59.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1369. part_59.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1370. part_59.Friction = 0.3
  1371. part_59.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1372.  
  1373. mesh_37 = Instance.new("SpecialMesh", part_59)
  1374. mesh_37.Scale = Vector3.new(0.118, 0.235, 1.059)
  1375. mesh_37.MeshType = Enum.MeshType.Brick
  1376.  
  1377. thing1 = Instance.new("Part", mcar)
  1378. thing1.FormFactor = Enum.FormFactor.Plate
  1379. thing1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1380. thing1.TopSurface = Enum.SurfaceType.Smooth
  1381. thing1.Material = Enum.Material.SmoothPlastic
  1382. thing1.Size = Vector3.new(3.926, 3.599, 1)
  1383. thing1.Name = "thing1"
  1384. thing1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1385. thing1.CFrame = CFrame.new(48.839, 3.604, -145.62)* CFrame.Angles(-0.0056147389113903, -1.5676697492599, 0)
  1386. thing1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1387. thing1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. thing1.BrickColor = bodycolor
  1389. thing1.Friction = 0.3
  1390. thing1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1391.  
  1392. thing2 = Instance.new("Part", mcar)
  1393. thing2.FormFactor = Enum.FormFactor.Plate
  1394. thing2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1395. thing2.TopSurface = Enum.SurfaceType.Smooth
  1396. thing2.Material = Enum.Material.SmoothPlastic
  1397. thing2.Size = Vector3.new(3.926, 3.599, 1)
  1398. thing2.Name = "thing2"
  1399. thing2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1400. thing2.CFrame = CFrame.new(58.839, 3.604, -145.62)* CFrame.Angles(-0.0056147389113903, -1.5676697492599, 0)
  1401. thing2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1402. thing2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1403. thing2.BrickColor = bodycolor
  1404. thing2.Friction = 0.3
  1405. thing2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1406.  
  1407. part_60 = Instance.new("Part", mcar)
  1408. part_60.FormFactor = Enum.FormFactor.Plate
  1409. part_60.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1410. part_60.TopSurface = Enum.SurfaceType.Smooth
  1411. part_60.Reflectance = 0.3
  1412. part_60.Material = Enum.Material.SmoothPlastic
  1413. part_60.Size = Vector3.new(1, 0.8, 2)
  1414. part_60.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. part_60.CFrame = CFrame.new(55.749, 3.605, -164.551)* CFrame.Angles(1.570796251297, -4.1874045564327e-008, -1.570796251297)
  1416. part_60.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1417. part_60.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1418. part_60.Friction = 0.3
  1419. part_60.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1420.  
  1421. mesh_38 = Instance.new("SpecialMesh", part_60)
  1422. mesh_38.Scale = Vector3.new(0.118, 0.235, 1.059)
  1423. mesh_38.MeshType = Enum.MeshType.Brick
  1424.  
  1425. window2 = Instance.new("Part", mcar)
  1426. window2.FormFactor = Enum.FormFactor.Plate
  1427. window2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. window2.Transparency = 0.5
  1429. window2.TopSurface = Enum.SurfaceType.Smooth
  1430. window2.Reflectance = 0.5
  1431. window2.Material = Enum.Material.SmoothPlastic
  1432. window2.Size = Vector3.new(3, 2, 1)
  1433. window2.Name = "window2"
  1434. window2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1435. window2.CFrame = CFrame.new(48.847, 6.405, -145.052)* CFrame.Angles(-3.996683517471e-008, 1.5707963705063, 0)
  1436. window2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1437. window2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1438. window2.BrickColor = BrickColor.new("Institutional white")
  1439. window2.Friction = 0.3
  1440. window2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1441.  
  1442. part_61 = Instance.new("Part", mcar)
  1443. part_61.FormFactor = Enum.FormFactor.Plate
  1444. part_61.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. part_61.TopSurface = Enum.SurfaceType.Smooth
  1446. part_61.Reflectance = 0.3
  1447. part_61.Material = Enum.Material.SmoothPlastic
  1448. part_61.Size = Vector3.new(1, 0.4, 2)
  1449. part_61.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1450. part_61.CFrame = CFrame.new(54.749, 3.705, -164.351)* CFrame.Angles(1.571993470192, -1.2216417789459, 1.5719218254089)
  1451. part_61.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1452. part_61.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. part_61.Friction = 0.3
  1454. part_61.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1455.  
  1456. part_62 = Instance.new("Part", mcar)
  1457. part_62.FormFactor = Enum.FormFactor.Plate
  1458. part_62.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1459. part_62.TopSurface = Enum.SurfaceType.Smooth
  1460. part_62.Reflectance = 0.3
  1461. part_62.Material = Enum.Material.SmoothPlastic
  1462. part_62.Size = Vector3.new(1, 0.8, 2)
  1463. part_62.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1464. part_62.CFrame = CFrame.new(56.149, 3.605, -164.551)* CFrame.Angles(1.5707961320877, -1.6015852452256e-005, -1.5707964897156)
  1465. part_62.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1466. part_62.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1467. part_62.Friction = 0.3
  1468. part_62.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1469.  
  1470. mesh_39 = Instance.new("SpecialMesh", part_62)
  1471. mesh_39.Scale = Vector3.new(0.118, 0.235, 1.059)
  1472. mesh_39.MeshType = Enum.MeshType.Brick
  1473.  
  1474. window4 = Instance.new("Part", mcar)
  1475. window4.FormFactor = Enum.FormFactor.Plate
  1476. window4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1477. window4.Transparency = 0.5
  1478. window4.TopSurface = Enum.SurfaceType.Smooth
  1479. window4.Reflectance = 0.5
  1480. window4.Material = Enum.Material.SmoothPlastic
  1481. window4.Size = Vector3.new(3, 2, 1)
  1482. window4.Name = "window4"
  1483. window4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1484. window4.CFrame = CFrame.new(48.847, 6.405, -149.052)* CFrame.Angles(-3.996683517471e-008, 1.5707963705063, 0)
  1485. window4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1486. window4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1487. window4.BrickColor = BrickColor.new("Institutional white")
  1488. window4.Friction = 0.3
  1489. window4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1490.  
  1491. part_63 = Instance.new("Part", mcar)
  1492. part_63.FormFactor = Enum.FormFactor.Plate
  1493. part_63.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. part_63.TopSurface = Enum.SurfaceType.Smooth
  1495. part_63.Reflectance = 0.3
  1496. part_63.Material = Enum.Material.SmoothPlastic
  1497. part_63.Size = Vector3.new(1, 0.8, 2)
  1498. part_63.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1499. part_63.CFrame = CFrame.new(58.149, 3.605, -164.551)* CFrame.Angles(1.5707964897156, 7.7331151260296e-008, -1.5707963705063)
  1500. part_63.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1501. part_63.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1502. part_63.Friction = 0.3
  1503. part_63.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1504.  
  1505. mesh_40 = Instance.new("SpecialMesh", part_63)
  1506. mesh_40.Scale = Vector3.new(0.118, 0.235, 1.059)
  1507. mesh_40.MeshType = Enum.MeshType.Brick
  1508.  
  1509. part_64 = Instance.new("Part", mcar)
  1510. part_64.FormFactor = Enum.FormFactor.Plate
  1511. part_64.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. part_64.TopSurface = Enum.SurfaceType.Smooth
  1513. part_64.Reflectance = 0.3
  1514. part_64.Material = Enum.Material.SmoothPlastic
  1515. part_64.Size = Vector3.new(1, 0.4, 1)
  1516. part_64.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1517. part_64.CFrame = CFrame.new(55.248, 4.804, -164.352)* CFrame.Angles(0.19220323860645, 1.5676319599152, -1.7630617618561)
  1518. part_64.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1519. part_64.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1520. part_64.Friction = 0.3
  1521. part_64.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1522.  
  1523. mesh_41 = Instance.new("SpecialMesh", part_64)
  1524. mesh_41.Scale = Vector3.new(0.6, 0.6, 1)
  1525. mesh_41.MeshId = "http://www.roblox.com/asset/?id=12221344"
  1526. mesh_41.MeshType = Enum.MeshType.FileMesh
  1527.  
  1528. part_65 = Instance.new("Part", mcar)
  1529. part_65.FormFactor = Enum.FormFactor.Plate
  1530. part_65.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. part_65.TopSurface = Enum.SurfaceType.Smooth
  1532. part_65.Reflectance = 0.3
  1533. part_65.Material = Enum.Material.SmoothPlastic
  1534. part_65.Size = Vector3.new(1, 0.8, 2)
  1535. part_65.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1536. part_65.CFrame = CFrame.new(54.949, 3.605, -164.551)* CFrame.Angles(1.5707961320877, 7.7331606007647e-008, -1.5707963705063)
  1537. part_65.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1538. part_65.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1539. part_65.Friction = 0.3
  1540. part_65.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1541.  
  1542. mesh_42 = Instance.new("SpecialMesh", part_65)
  1543. mesh_42.Scale = Vector3.new(0.118, 0.235, 1.059)
  1544. mesh_42.MeshType = Enum.MeshType.Brick
  1545.  
  1546. part_66 = Instance.new("Part", mcar)
  1547. part_66.FormFactor = Enum.FormFactor.Plate
  1548. part_66.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1549. part_66.TopSurface = Enum.SurfaceType.Smooth
  1550. part_66.Material = Enum.Material.SmoothPlastic
  1551. part_66.Size = Vector3.new(2, 0.8, 2)
  1552. part_66.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1553. part_66.CFrame = CFrame.new(57.448, 3.704, -164.151)* CFrame.Angles(1.570796251297, 0.0001225274609169, -2.0668458944328e-007)
  1554. part_66.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1555. part_66.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1556. part_66.BrickColor = BrickColor.new("Black")
  1557. part_66.Friction = 0.3
  1558. part_66.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1559.  
  1560. mesh_43 = Instance.new("CylinderMesh", part_66)
  1561.  
  1562. part_67 = Instance.new("Part", mcar)
  1563. part_67.FormFactor = Enum.FormFactor.Plate
  1564. part_67.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1565. part_67.TopSurface = Enum.SurfaceType.Smooth
  1566. part_67.Reflectance = 0.3
  1567. part_67.Material = Enum.Material.SmoothPlastic
  1568. part_67.Size = Vector3.new(1, 0.8, 2)
  1569. part_67.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1570. part_67.CFrame = CFrame.new(57.349, 3.605, -164.551)* CFrame.Angles(1.5707961320877, -1.6015852452256e-005, -1.5707964897156)
  1571. part_67.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1572. part_67.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1573. part_67.Friction = 0.3
  1574. part_67.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1575.  
  1576. mesh_44 = Instance.new("SpecialMesh", part_67)
  1577. mesh_44.Scale = Vector3.new(0.118, 0.235, 1.059)
  1578. mesh_44.MeshType = Enum.MeshType.Brick
  1579.  
  1580. part_68 = Instance.new("Part", mcar)
  1581. part_68.FormFactor = Enum.FormFactor.Symmetric
  1582. part_68.CanCollide = false
  1583. part_68.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1584. part_68.TopSurface = Enum.SurfaceType.Smooth
  1585. part_68.Reflectance = 0.3
  1586. part_68.Material = Enum.Material.SmoothPlastic
  1587. part_68.Size = Vector3.new(1, 1, 1)
  1588. part_68.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1589. part_68.CFrame = CFrame.new(57.248, 3.204, -164.351)* CFrame.Angles(-1.9569604603475e-007, 8.7457920017187e-008, 2.5507410100545e-005)
  1590. part_68.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1591. part_68.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1592. part_68.Friction = 0.3
  1593. part_68.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1594.  
  1595. mesh_45 = Instance.new("SpecialMesh", part_68)
  1596. mesh_45.Scale = Vector3.new(3, 3, 2)
  1597. mesh_45.MeshId = "http://www.roblox.com/asset/?id=3270017"
  1598. mesh_45.MeshType = Enum.MeshType.FileMesh
  1599.  
  1600. vivrus_2 = Instance.new("VelocityMotor", part_68)
  1601. vivrus_2.Name = "ViVRuS"
  1602.  
  1603. part_69 = Instance.new("Part", mcar)
  1604. part_69.FormFactor = Enum.FormFactor.Plate
  1605. part_69.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1606. part_69.TopSurface = Enum.SurfaceType.Smooth
  1607. part_69.Material = Enum.Material.SmoothPlastic
  1608. part_69.Size = Vector3.new(4, 0.8, 1)
  1609. part_69.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1610. part_69.CFrame = CFrame.new(58.846, 3.804, -160.651)* CFrame.Angles(0.24888914823532, 1.5676507949829, -0.24861106276512)
  1611. part_69.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1612. part_69.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1613. part_69.BrickColor = bodycolor
  1614. part_69.Friction = 0.3
  1615. part_69.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1616.  
  1617. part_70 = Instance.new("Part", mcar)
  1618. part_70.FormFactor = Enum.FormFactor.Plate
  1619. part_70.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1620. part_70.TopSurface = Enum.SurfaceType.Smooth
  1621. part_70.Reflectance = 0.3
  1622. part_70.Material = Enum.Material.SmoothPlastic
  1623. part_70.Size = Vector3.new(1, 2, 3)
  1624. part_70.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1625. part_70.CFrame = CFrame.new(48.743, 3.2, -145.756)* CFrame.Angles(-1.5708900690079, 2.4369448510697e-005, 6.0501456573547e-006)
  1626. part_70.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1627. part_70.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1628. part_70.Friction = 0.3
  1629. part_70.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1630.  
  1631. mesh_46 = Instance.new("SpecialMesh", part_70)
  1632. mesh_46.MeshType = Enum.MeshType.Wedge
  1633.  
  1634. part_71 = Instance.new("Part", mcar)
  1635. part_71.FormFactor = Enum.FormFactor.Plate
  1636. part_71.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1637. part_71.TopSurface = Enum.SurfaceType.Smooth
  1638. part_71.Reflectance = 0.3
  1639. part_71.Material = Enum.Material.SmoothPlastic
  1640. part_71.Size = Vector3.new(1, 0.4, 7)
  1641. part_71.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1642. part_71.CFrame = CFrame.new(48.838, 3.199, -140.156)* CFrame.Angles(5.872533620277e-006, -0.00045022714766674, -0.00019739411072806)
  1643. part_71.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1644. part_71.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1645. part_71.BrickColor = BrickColor.new("Grey")
  1646. part_71.Friction = 0.3
  1647. part_71.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1648.  
  1649. part_72 = Instance.new("Part", mcar)
  1650. part_72.FormFactor = Enum.FormFactor.Plate
  1651. part_72.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1652. part_72.TopSurface = Enum.SurfaceType.Smooth
  1653. part_72.Reflectance = 0.3
  1654. part_72.Material = Enum.Material.SmoothPlastic
  1655. part_72.Size = Vector3.new(1, 1.2, 1)
  1656. part_72.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1657. part_72.CFrame = CFrame.new(48.839, 2.401, -143.156)* CFrame.Angles(5.872533620277e-006, -0.00045022714766674, -0.00019739411072806)
  1658. part_72.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1659. part_72.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1660. part_72.BrickColor = BrickColor.new("Grey")
  1661. part_72.Friction = 0.3
  1662. part_72.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1663.  
  1664. part_73 = Instance.new("Part", mcar)
  1665. part_73.FormFactor = Enum.FormFactor.Plate
  1666. part_73.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1667. part_73.TopSurface = Enum.SurfaceType.Smooth
  1668. part_73.Reflectance = 0.3
  1669. part_73.Material = Enum.Material.SmoothPlastic
  1670. part_73.Size = Vector3.new(1, 0.8, 2)
  1671. part_73.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1672. part_73.CFrame = CFrame.new(56.549, 3.605, -164.551)* CFrame.Angles(1.5707961320877, -1.6015852452256e-005, -1.5707964897156)
  1673. part_73.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1674. part_73.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1675. part_73.Friction = 0.3
  1676. part_73.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1677.  
  1678. mesh_47 = Instance.new("SpecialMesh", part_73)
  1679. mesh_47.Scale = Vector3.new(0.118, 0.235, 1.059)
  1680. mesh_47.MeshType = Enum.MeshType.Brick
  1681.  
  1682. part_74 = Instance.new("Part", mcar)
  1683. part_74.FormFactor = Enum.FormFactor.Plate
  1684. part_74.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1685. part_74.TopSurface = Enum.SurfaceType.Smooth
  1686. part_74.Reflectance = 0.3
  1687. part_74.Material = Enum.Material.SmoothPlastic
  1688. part_74.Size = Vector3.new(1, 0.8, 2)
  1689. part_74.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1690. part_74.CFrame = CFrame.new(56.949, 3.605, -164.551)* CFrame.Angles(1.5707961320877, -1.6015852452256e-005, -1.5707964897156)
  1691. part_74.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1692. part_74.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1693. part_74.Friction = 0.3
  1694. part_74.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1695.  
  1696. mesh_48 = Instance.new("SpecialMesh", part_74)
  1697. mesh_48.Scale = Vector3.new(0.118, 0.235, 1.059)
  1698. mesh_48.MeshType = Enum.MeshType.Brick
  1699.  
  1700. part_75 = Instance.new("Part", mcar)
  1701. part_75.FormFactor = Enum.FormFactor.Plate
  1702. part_75.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1703. part_75.TopSurface = Enum.SurfaceType.Smooth
  1704. part_75.Reflectance = 0.3
  1705. part_75.Material = Enum.Material.SmoothPlastic
  1706. part_75.Size = Vector3.new(1, 0.8, 2)
  1707. part_75.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1708. part_75.CFrame = CFrame.new(56.949, 3.605, -164.551)* CFrame.Angles(1.5707961320877, 4.9787366151577e-005, -1.5707964897156)
  1709. part_75.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1710. part_75.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1711. part_75.Friction = 0.3
  1712. part_75.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1713.  
  1714. mesh_49 = Instance.new("SpecialMesh", part_75)
  1715. mesh_49.Scale = Vector3.new(0.118, 0.235, 1.059)
  1716. mesh_49.MeshType = Enum.MeshType.Brick
  1717.  
  1718. part_76 = Instance.new("Part", mcar)
  1719. part_76.FormFactor = Enum.FormFactor.Plate
  1720. part_76.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1721. part_76.TopSurface = Enum.SurfaceType.Smooth
  1722. part_76.Material = Enum.Material.SmoothPlastic
  1723. part_76.Size = Vector3.new(7, 2.8, 9)
  1724. part_76.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1725. part_76.CFrame = CFrame.new(53.838, 3.2, -140.154)* CFrame.Angles(-0.013111274689436, 1.5676319599152, 0.013255027122796)
  1726. part_76.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1727. part_76.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1728. part_76.BrickColor = BrickColor.new("Institutional white")
  1729. part_76.Friction = 0.3
  1730. part_76.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1731.  
  1732. part_77 = Instance.new("Part", mcar)
  1733. part_77.FormFactor = Enum.FormFactor.Plate
  1734. part_77.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1735. part_77.TopSurface = Enum.SurfaceType.Smooth
  1736. part_77.Reflectance = 0.3
  1737. part_77.Material = Enum.Material.SmoothPlastic
  1738. part_77.Size = Vector3.new(1, 2, 3)
  1739. part_77.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1740. part_77.CFrame = CFrame.new(58.943, 3.2, -145.756)* CFrame.Angles(-1.5708900690079, 2.4369448510697e-005, 6.0501456573547e-006)
  1741. part_77.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1742. part_77.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1743. part_77.Friction = 0.3
  1744. part_77.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1745.  
  1746. mesh_50 = Instance.new("SpecialMesh", part_77)
  1747. mesh_50.MeshType = Enum.MeshType.Wedge
  1748.  
  1749. part_78 = Instance.new("Part", mcar)
  1750. part_78.FormFactor = Enum.FormFactor.Plate
  1751. part_78.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1752. part_78.TopSurface = Enum.SurfaceType.Smooth
  1753. part_78.Material = Enum.Material.SmoothPlastic
  1754. part_78.Size = Vector3.new(1, 3.6, 5)
  1755. part_78.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1756. part_78.CFrame = CFrame.new(58.842, 3.602, -147.152)* CFrame.Angles(3.141592502594, -2.2057520254748e-007, 3.1415927410126)
  1757. part_78.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1758. part_78.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1759. part_78.BrickColor = bodycolor
  1760. part_78.Friction = 0.3
  1761. part_78.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1762.  
  1763. part_79 = Instance.new("Part", mcar)
  1764. part_79.FormFactor = Enum.FormFactor.Plate
  1765. part_79.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1766. part_79.TopSurface = Enum.SurfaceType.Smooth
  1767. part_79.Reflectance = 0.3
  1768. part_79.Material = Enum.Material.SmoothPlastic
  1769. part_79.Size = Vector3.new(1, 0.4, 7.101)
  1770. part_79.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1771. part_79.CFrame = CFrame.new(58.943, 4.499, -160.306)* CFrame.Angles(-1.9569604603475e-007, 8.7458829511888e-008, -2.6312985937693e-005)
  1772. part_79.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1773. part_79.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1774. part_79.BrickColor = BrickColor.new("Grey")
  1775. part_79.Friction = 0.3
  1776. part_79.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1777.  
  1778. part_80 = Instance.new("Part", mcar)
  1779. part_80.FormFactor = Enum.FormFactor.Plate
  1780. part_80.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1781. part_80.TopSurface = Enum.SurfaceType.Smooth
  1782. part_80.Reflectance = 0.3
  1783. part_80.Material = Enum.Material.SmoothPlastic
  1784. part_80.Size = Vector3.new(1, 0.8, 2)
  1785. part_80.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1786. part_80.CFrame = CFrame.new(57.749, 3.605, -164.551)* CFrame.Angles(1.5707961320877, -1.6015854271245e-005, -1.5707964897156)
  1787. part_80.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1788. part_80.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1789. part_80.Friction = 0.3
  1790. part_80.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1791.  
  1792. mesh_51 = Instance.new("SpecialMesh", part_80)
  1793. mesh_51.Scale = Vector3.new(0.118, 0.235, 1.059)
  1794. mesh_51.MeshType = Enum.MeshType.Brick
  1795.  
  1796. part_81 = Instance.new("Part", mcar)
  1797. part_81.FormFactor = Enum.FormFactor.Plate
  1798. part_81.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1799. part_81.TopSurface = Enum.SurfaceType.Smooth
  1800. part_81.Material = Enum.Material.SmoothPlastic
  1801. part_81.Size = Vector3.new(1, 2, 1)
  1802. part_81.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1803. part_81.CFrame = CFrame.new(48.847, 6.405, -147.052)* CFrame.Angles(3.141592502594, -1.1626889317995e-007, -3.1415927410126)
  1804. part_81.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1805. part_81.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1806. part_81.BrickColor = bodycolor
  1807. part_81.Friction = 0.3
  1808. part_81.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1809.  
  1810. part_82 = Instance.new("Part", mcar)
  1811. part_82.FormFactor = Enum.FormFactor.Plate
  1812. part_82.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1813. part_82.TopSurface = Enum.SurfaceType.Smooth
  1814. part_82.Material = Enum.Material.SmoothPlastic
  1815. part_82.Size = Vector3.new(1, 3.6, 5)
  1816. part_82.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1817. part_82.CFrame = CFrame.new(48.842, 3.602, -147.156)* CFrame.Angles(3.141592502594, -2.2057520254748e-007, 3.1415927410126)
  1818. part_82.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1819. part_82.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1820. part_82.BrickColor = bodycolor
  1821. part_82.Friction = 0.3
  1822. part_82.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1823.  
  1824. window3 = Instance.new("Part", mcar)
  1825. window3.FormFactor = Enum.FormFactor.Plate
  1826. window3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1827. window3.Transparency = 0.5
  1828. window3.TopSurface = Enum.SurfaceType.Smooth
  1829. window3.Reflectance = 0.5
  1830. window3.Material = Enum.Material.SmoothPlastic
  1831. window3.Size = Vector3.new(3, 2, 1)
  1832. window3.Name = "window3"
  1833. window3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1834. window3.CFrame = CFrame.new(58.847, 6.405, -149.052)* CFrame.Angles(-3.996683517471e-008, 1.5707963705063, 0)
  1835. window3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1836. window3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1837. window3.BrickColor = BrickColor.new("Really black")
  1838. window3.Friction = 0.3
  1839. window3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1840.  
  1841. part_83 = Instance.new("Part", mcar)
  1842. part_83.FormFactor = Enum.FormFactor.Plate
  1843. part_83.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1844. part_83.TopSurface = Enum.SurfaceType.Smooth
  1845. part_83.Material = Enum.Material.SmoothPlastic
  1846. part_83.Size = Vector3.new(3, 0.8, 9)
  1847. part_83.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1848. part_83.CFrame = CFrame.new(53.839, 5, -142.154)* CFrame.Angles(-0.013111274689436, 1.5676319599152, 0.013255027122796)
  1849. part_83.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1850. part_83.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1851. part_83.BrickColor = BrickColor.new("Institutional white")
  1852. part_83.Friction = 0.3
  1853. part_83.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1854.  
  1855. part_84 = Instance.new("Part", mcar)
  1856. part_84.FormFactor = Enum.FormFactor.Plate
  1857. part_84.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1858. part_84.TopSurface = Enum.SurfaceType.Smooth
  1859. part_84.Reflectance = 0.3
  1860. part_84.Material = Enum.Material.SmoothPlastic
  1861. part_84.Size = Vector3.new(1, 0.4, 3)
  1862. part_84.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1863. part_84.CFrame = CFrame.new(58.847, 3.204, -161.151)* CFrame.Angles(5.9475742091308e-006, -0.00045032109483145, -0.00019741691357922)
  1864. part_84.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1865. part_84.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1866. part_84.BrickColor = BrickColor.new("Grey")
  1867. part_84.Friction = 0.3
  1868. part_84.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1869.  
  1870. part_85 = Instance.new("Part", mcar)
  1871. part_85.FormFactor = Enum.FormFactor.Plate
  1872. part_85.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1873. part_85.TopSurface = Enum.SurfaceType.Smooth
  1874. part_85.Material = Enum.Material.SmoothPlastic
  1875. part_85.Size = Vector3.new(1, 2, 1)
  1876. part_85.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1877. part_85.CFrame = CFrame.new(58.847, 6.405, -147.052)* CFrame.Angles(3.141592502594, -1.1626889317995e-007, -3.1415927410126)
  1878. part_85.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1879. part_85.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1880. part_85.BrickColor = bodycolor
  1881. part_85.Friction = 0.3
  1882. part_85.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1883.  
  1884. part_86 = Instance.new("Part", mcar)
  1885. part_86.FormFactor = Enum.FormFactor.Plate
  1886. part_86.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1887. part_86.TopSurface = Enum.SurfaceType.Smooth
  1888. part_86.Reflectance = 0.3
  1889. part_86.Material = Enum.Material.SmoothPlastic
  1890. part_86.Size = Vector3.new(1, 1.6, 1)
  1891. part_86.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1892. part_86.CFrame = CFrame.new(58.846, 2.604, -159.151)* CFrame.Angles(5.872533620277e-006, -0.00045022714766674, -0.00019739411072806)
  1893. part_86.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1894. part_86.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1895. part_86.BrickColor = BrickColor.new("Grey")
  1896. part_86.Friction = 0.3
  1897. part_86.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1898.  
  1899. part_87 = Instance.new("Part", mcar)
  1900. part_87.FormFactor = Enum.FormFactor.Plate
  1901. part_87.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1902. part_87.TopSurface = Enum.SurfaceType.Smooth
  1903. part_87.Material = Enum.Material.SmoothPlastic
  1904. part_87.Size = Vector3.new(3, 0.4, 11)
  1905. part_87.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1906. part_87.CFrame = CFrame.new(53.837, 1.6, -138.154)* CFrame.Angles(-0.013204352930188, 1.5676319599152, 0.013348122127354)
  1907. part_87.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1908. part_87.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1909. part_87.BrickColor = BrickColor.new("Black")
  1910. part_87.Friction = 0.3
  1911. part_87.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1912.  
  1913. part_88 = Instance.new("Part", mcar)
  1914. part_88.FormFactor = Enum.FormFactor.Plate
  1915. part_88.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1916. part_88.TopSurface = Enum.SurfaceType.Smooth
  1917. part_88.Material = Enum.Material.SmoothPlastic
  1918. part_88.Size = Vector3.new(3, 0.4, 9)
  1919. part_88.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1920. part_88.CFrame = CFrame.new(53.838, 1.6, -141.154)* CFrame.Angles(-0.01320565212518, 1.5676319599152, 0.013349411077797)
  1921. part_88.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1922. part_88.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1923. part_88.BrickColor = BrickColor.new("Black")
  1924. part_88.Friction = 0.3
  1925. part_88.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1926.  
  1927. part_89 = Instance.new("Part", mcar)
  1928. part_89.FormFactor = Enum.FormFactor.Plate
  1929. part_89.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1930. part_89.TopSurface = Enum.SurfaceType.Smooth
  1931. part_89.Reflectance = 0.3
  1932. part_89.Material = Enum.Material.SmoothPlastic
  1933. part_89.Size = Vector3.new(1, 0.8, 2)
  1934. part_89.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1935. part_89.CFrame = CFrame.new(56.949, 4.605, -164.551)* CFrame.Angles(-3.1349754333496, 1.5676697492599, 0.11481241136789)
  1936. part_89.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1937. part_89.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1938. part_89.Friction = 0.3
  1939. part_89.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1940.  
  1941. mesh_52 = Instance.new("SpecialMesh", part_89)
  1942. mesh_52.Scale = Vector3.new(0.118, 0.235, 1.059)
  1943. mesh_52.MeshType = Enum.MeshType.Brick
  1944.  
  1945. part_90 = Instance.new("Part", mcar)
  1946. part_90.FormFactor = Enum.FormFactor.Plate
  1947. part_90.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1948. part_90.TopSurface = Enum.SurfaceType.Smooth
  1949. part_90.Reflectance = 0.3
  1950. part_90.Material = Enum.Material.SmoothPlastic
  1951. part_90.Size = Vector3.new(1, 0.4, 5)
  1952. part_90.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1953. part_90.CFrame = CFrame.new(53.836, 4.099, -137.054)* CFrame.Angles(0.013459369540215, 1.5676319599152, -0.013704515993595)
  1954. part_90.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1955. part_90.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1956. part_90.BrickColor = BrickColor.new("Grey")
  1957. part_90.Friction = 0.3
  1958. part_90.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1959.  
  1960. part_91 = Instance.new("Part", mcar)
  1961. part_91.FormFactor = Enum.FormFactor.Plate
  1962. part_91.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1963. part_91.TopSurface = Enum.SurfaceType.Smooth
  1964. part_91.Reflectance = 0.3
  1965. part_91.Material = Enum.Material.SmoothPlastic
  1966. part_91.Size = Vector3.new(1, 1.2, 1)
  1967. part_91.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1968. part_91.CFrame = CFrame.new(58.839, 2.401, -143.152)* CFrame.Angles(5.872533620277e-006, -0.00045022714766674, -0.00019739411072806)
  1969. part_91.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1970. part_91.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1971. part_91.BrickColor = BrickColor.new("Grey")
  1972. part_91.Friction = 0.3
  1973. part_91.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1974.  
  1975. part_92 = Instance.new("Part", mcar)
  1976. part_92.FormFactor = Enum.FormFactor.Plate
  1977. part_92.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1978. part_92.TopSurface = Enum.SurfaceType.Smooth
  1979. part_92.Reflectance = 0.3
  1980. part_92.Material = Enum.Material.SmoothPlastic
  1981. part_92.Size = Vector3.new(1, 0.4, 7)
  1982. part_92.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1983. part_92.CFrame = CFrame.new(58.838, 3.201, -140.152)* CFrame.Angles(5.872533620277e-006, -0.00045022714766674, -0.00019739411072806)
  1984. part_92.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1985. part_92.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1986. part_92.BrickColor = BrickColor.new("Grey")
  1987. part_92.Friction = 0.3
  1988. part_92.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1989.  
  1990. part_93 = Instance.new("Part", mcar)
  1991. part_93.FormFactor = Enum.FormFactor.Plate
  1992. part_93.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1993. part_93.TopSurface = Enum.SurfaceType.Smooth
  1994. part_93.Material = Enum.Material.SmoothPlastic
  1995. part_93.Size = Vector3.new(3, 1.2, 1)
  1996. part_93.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1997. part_93.CFrame = CFrame.new(48.837, 2.4, -138.156)* CFrame.Angles(-0.013111274689436, 1.5676319599152, 0.013255027122796)
  1998. part_93.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1999. part_93.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2000. part_93.BrickColor = bodycolor
  2001. part_93.Friction = 0.3
  2002. part_93.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2003.  
  2004. part_94 = Instance.new("Part", mcar)
  2005. part_94.FormFactor = Enum.FormFactor.Plate
  2006. part_94.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2007. part_94.TopSurface = Enum.SurfaceType.Smooth
  2008. part_94.Material = Enum.Material.SmoothPlastic
  2009. part_94.Size = Vector3.new(1, 3.6, 1)
  2010. part_94.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2011. part_94.CFrame = CFrame.new(58.84, 3.601, -144.153)* CFrame.Angles(-0.0056147389113903, -1.5676697492599, -0.623783826828)
  2012. part_94.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2013. part_94.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2014. part_94.BrickColor = bodycolor
  2015. part_94.Friction = 0.3
  2016. part_94.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2017.  
  2018. hood = Instance.new("Part", mcar)
  2019. hood.FormFactor = Enum.FormFactor.Plate
  2020. hood.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2021. hood.TopSurface = Enum.SurfaceType.Smooth
  2022. hood.Material = Enum.Material.SmoothPlastic
  2023. hood.Size = Vector3.new(11, 0.4, 13)
  2024. hood.Name = "hood"
  2025. hood.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2026. hood.CFrame = CFrame.new(53.845, 7.605, -150.05)* CFrame.Angles(-3.1415011882782, 8.0992285802495e-006, -3.1415579319)
  2027. hood.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2028. hood.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2029. hood.BrickColor = BrickColor.new("Institutional white")
  2030. hood.Friction = 0.3
  2031. hood.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2032.  
  2033. mesh_53 = Instance.new("SpecialMesh", hood)
  2034. mesh_53.MeshType = Enum.MeshType.Wedge
  2035.  
  2036. part_95 = Instance.new("Part", mcar)
  2037. part_95.FormFactor = Enum.FormFactor.Plate
  2038. part_95.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2039. part_95.TopSurface = Enum.SurfaceType.Smooth
  2040. part_95.Material = Enum.Material.SmoothPlastic
  2041. part_95.Size = Vector3.new(6, 0.8, 1)
  2042. part_95.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2043. part_95.CFrame = CFrame.new(58.846, 4.604, -161.651)* CFrame.Angles(0.24889597296715, 1.5676131248474, -0.24860224127769)
  2044. part_95.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2045. part_95.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2046. part_95.BrickColor = bodycolor
  2047. part_95.Friction = 0.3
  2048. part_95.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2049.  
  2050. part_96 = Instance.new("Part", mcar)
  2051. part_96.FormFactor = Enum.FormFactor.Plate
  2052. part_96.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2053. part_96.TopSurface = Enum.SurfaceType.Smooth
  2054. part_96.Reflectance = 0.3
  2055. part_96.Material = Enum.Material.SmoothPlastic
  2056. part_96.Size = Vector3.new(1, 0.4, 2)
  2057. part_96.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2058. part_96.CFrame = CFrame.new(59.349, 2.605, -163.656)* CFrame.Angles(3.141592502594, 6.5192580223083e-009, 0.00021353384363465)
  2059. part_96.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2060. part_96.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2061. part_96.Friction = 0.3
  2062. part_96.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2063.  
  2064. mesh_54 = Instance.new("SpecialMesh", part_96)
  2065. mesh_54.Scale = Vector3.new(0.4, 0.4, 0.4)
  2066. mesh_54.MeshId = "http://www.roblox.com/asset/?id=12221344"
  2067. mesh_54.MeshType = Enum.MeshType.FileMesh
  2068.  
  2069. part_97 = Instance.new("Part", mcar)
  2070. part_97.FormFactor = Enum.FormFactor.Plate
  2071. part_97.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2072. part_97.TopSurface = Enum.SurfaceType.Smooth
  2073. part_97.Material = Enum.Material.SmoothPlastic
  2074. part_97.Size = Vector3.new(1, 6.8, 1)
  2075. part_97.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2076. part_97.CFrame = CFrame.new(58.848, 5.105, -161.651)* CFrame.Angles(1.570796251297, -4.1880948487005e-008, 6.500397553566e-009)
  2077. part_97.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2078. part_97.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2079. part_97.BrickColor = bodycolor
  2080. part_97.Friction = 0.3
  2081. part_97.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2082.  
  2083. mesh_55 = Instance.new("CylinderMesh", part_97)
  2084.  
  2085. rearbumper = Instance.new("Part", mcar)
  2086. rearbumper.FormFactor = Enum.FormFactor.Plate
  2087. rearbumper.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2088. rearbumper.TopSurface = Enum.SurfaceType.Smooth
  2089. rearbumper.Reflectance = 0.3
  2090. rearbumper.Material = Enum.Material.SmoothPlastic
  2091. rearbumper.Size = Vector3.new(1, 0.4, 11)
  2092. rearbumper.Name = "rearbumper"
  2093. rearbumper.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2094. rearbumper.CFrame = CFrame.new(53.836, 1.899, -136.452)* CFrame.Angles(3.0826721191406, 1.5676697492599, 1.64488697052)
  2095. rearbumper.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2096. rearbumper.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2097. rearbumper.Friction = 0.3
  2098. rearbumper.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2099.  
  2100. trunk = Instance.new("Part", mcar)
  2101. trunk.FormFactor = Enum.FormFactor.Plate
  2102. trunk.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2103. trunk.TopSurface = Enum.SurfaceType.Smooth
  2104. trunk.Material = Enum.Material.SmoothPlastic
  2105. trunk.Size = Vector3.new(9, 0.8, 4)
  2106. trunk.Name = "trunk"
  2107. trunk.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2108. trunk.CFrame = CFrame.new(53.838, 5, -138.653)* CFrame.Angles(-3.1415860652924, 6.1592681959155e-006, 3.1415603160858)
  2109. trunk.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2110. trunk.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2111. trunk.BrickColor = BrickColor.new("Institutional white")
  2112. trunk.Friction = 0.3
  2113. trunk.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2114.  
  2115. mesh_56 = Instance.new("SpecialMesh", trunk)
  2116. mesh_56.MeshType = Enum.MeshType.Wedge
  2117.  
  2118. frontlight1 = Instance.new("Part", mcar)
  2119. frontlight1.FormFactor = Enum.FormFactor.Plate
  2120. frontlight1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2121. frontlight1.Transparency = 0.2
  2122. frontlight1.TopSurface = Enum.SurfaceType.Smooth
  2123. frontlight1.Material = Enum.Material.SmoothPlastic
  2124. frontlight1.Size = Vector3.new(1, 0.4, 1)
  2125. frontlight1.Name = "frontlight1"
  2126. frontlight1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2127. frontlight1.CFrame = CFrame.new(58.848, 5.105, -165.252)* CFrame.Angles(-1.5708878040314, 6.310259050224e-005, 3.141140460968)
  2128. frontlight1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2129. frontlight1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2130. frontlight1.BrickColor = BrickColor.new("Mid gray")
  2131. frontlight1.Friction = 0.3
  2132. frontlight1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2133.  
  2134. mesh_57 = Instance.new("CylinderMesh", frontlight1)
  2135.  
  2136. headlight_2 = Instance.new("SpotLight", frontlight1)
  2137. headlight_2.Enabled = false
  2138. headlight_2.Face = Enum.NormalId.Left
  2139. headlight_2.Range = 15
  2140. headlight_2.Name = "headlight"
  2141. headlight_2.Angle = 180
  2142. headlight_2.Brightness = 20
  2143.  
  2144. part_98 = Instance.new("Part", mcar)
  2145. part_98.FormFactor = Enum.FormFactor.Plate
  2146. part_98.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2147. part_98.TopSurface = Enum.SurfaceType.Smooth
  2148. part_98.Reflectance = 0.3
  2149. part_98.Material = Enum.Material.SmoothPlastic
  2150. part_98.Size = Vector3.new(1, 1.2, 1)
  2151. part_98.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2152. part_98.CFrame = CFrame.new(48.836, 1.799, -136.352)* CFrame.Angles(-1.9569604603475e-007, 1.7488127923571e-007, 3.141526222229)
  2153. part_98.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2154. part_98.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2155. part_98.Friction = 0.3
  2156. part_98.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2157.  
  2158. mesh_58 = Instance.new("CylinderMesh", part_98)
  2159.  
  2160. part_99 = Instance.new("Part", mcar)
  2161. part_99.FormFactor = Enum.FormFactor.Plate
  2162. part_99.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2163. part_99.TopSurface = Enum.SurfaceType.Smooth
  2164. part_99.Reflectance = 0.3
  2165. part_99.Material = Enum.Material.SmoothPlastic
  2166. part_99.Size = Vector3.new(2, 1.2, 1)
  2167. part_99.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2168. part_99.CFrame = CFrame.new(58.848, 3.205, -163.651)* CFrame.Angles(3.1281673908234, -1.567594408989, 3.1280233860016)
  2169. part_99.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2170. part_99.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2171. part_99.BrickColor = BrickColor.new("Grey")
  2172. part_99.Friction = 0.3
  2173. part_99.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2174.  
  2175. frontlight3 = Instance.new("Part", mcar)
  2176. frontlight3.FormFactor = Enum.FormFactor.Plate
  2177. frontlight3.CanCollide = false
  2178. frontlight3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2179. frontlight3.Transparency = 0.2
  2180. frontlight3.TopSurface = Enum.SurfaceType.Smooth
  2181. frontlight3.Material = Enum.Material.SmoothPlastic
  2182. frontlight3.Size = Vector3.new(1, 0.4, 1)
  2183. frontlight3.Name = "frontlight3"
  2184. frontlight3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2185. frontlight3.CFrame = CFrame.new(58.849, 3.105, -164.851)* CFrame.Angles(-3.0908482074738, -1.5676131248474, -1.5200179815292)
  2186. frontlight3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2187. frontlight3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2188. frontlight3.BrickColor = BrickColor.new("Bright orange")
  2189. frontlight3.Friction = 0.3
  2190. frontlight3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2191.  
  2192. mesh_59 = Instance.new("CylinderMesh", frontlight3)
  2193. mesh_59.Offset = Vector3.new(0, -0.3, 0)
  2194. mesh_59.Scale = Vector3.new(0.6, 1, 0.6)
  2195.  
  2196. regularlight_2 = Instance.new("SpotLight", frontlight3)
  2197. regularlight_2.Enabled = false
  2198. regularlight_2.Color = Color3.new(1, 0.333333, 0)
  2199. regularlight_2.Face = Enum.NormalId.Right
  2200. regularlight_2.Range = 10
  2201. regularlight_2.Name = "regularlight"
  2202. regularlight_2.Angle = 180
  2203. regularlight_2.Brightness = 20
  2204.  
  2205. part_100 = Instance.new("Part", mcar)
  2206. part_100.FormFactor = Enum.FormFactor.Plate
  2207. part_100.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2208. part_100.TopSurface = Enum.SurfaceType.Smooth
  2209. part_100.Reflectance = 0.3
  2210. part_100.Material = Enum.Material.SmoothPlastic
  2211. part_100.Size = Vector3.new(1, 0.4, 2)
  2212. part_100.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2213. part_100.CFrame = CFrame.new(59.349, 3.405, -163.656)* CFrame.Angles(3.141592502594, 6.5192580223083e-009, 0.00021353384363465)
  2214. part_100.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2215. part_100.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2216. part_100.Friction = 0.3
  2217. part_100.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2218.  
  2219. mesh_60 = Instance.new("SpecialMesh", part_100)
  2220. mesh_60.Scale = Vector3.new(0.4, 0.4, 0.4)
  2221. mesh_60.MeshId = "http://www.roblox.com/asset/?id=12221344"
  2222. mesh_60.MeshType = Enum.MeshType.FileMesh
  2223.  
  2224. part_101 = Instance.new("Part", mcar)
  2225. part_101.FormFactor = Enum.FormFactor.Plate
  2226. part_101.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2227. part_101.TopSurface = Enum.SurfaceType.Smooth
  2228. part_101.Material = Enum.Material.SmoothPlastic
  2229. part_101.Size = Vector3.new(7, 2, 1)
  2230. part_101.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2231. part_101.CFrame = CFrame.new(48.84, 4.4, -140.156)* CFrame.Angles(0.24961392581463, 1.5653810501099, -0.24859754741192)
  2232. part_101.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2233. part_101.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2234. part_101.BrickColor = bodycolor
  2235. part_101.Friction = 0.3
  2236. part_101.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2237.  
  2238. part_102 = Instance.new("Part", mcar)
  2239. part_102.FormFactor = Enum.FormFactor.Plate
  2240. part_102.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2241. part_102.TopSurface = Enum.SurfaceType.Smooth
  2242. part_102.Material = Enum.Material.SmoothPlastic
  2243. part_102.Size = Vector3.new(1, 0.4, 6)
  2244. part_102.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2245. part_102.CFrame = CFrame.new(48.84, 5.6, -138.856)* CFrame.Angles(-1.9568149411953e-007, 8.7458829511888e-008, 1.1233827535762e-005)
  2246. part_102.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2247. part_102.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2248. part_102.BrickColor = bodycolor
  2249. part_102.Friction = 0.3
  2250. part_102.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2251.  
  2252. mesh_61 = Instance.new("SpecialMesh", part_102)
  2253. mesh_61.MeshType = Enum.MeshType.Wedge
  2254.  
  2255. part_103 = Instance.new("Part", mcar)
  2256. part_103.FormFactor = Enum.FormFactor.Plate
  2257. part_103.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2258. part_103.TopSurface = Enum.SurfaceType.Smooth
  2259. part_103.Reflectance = 0.3
  2260. part_103.Material = Enum.Material.SmoothPlastic
  2261. part_103.Size = Vector3.new(2, 0.4, 1)
  2262. part_103.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2263. part_103.CFrame = CFrame.new(58.848, 4.005, -163.651)* CFrame.Angles(3.1281673908234, -1.567594408989, 3.1280233860016)
  2264. part_103.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2265. part_103.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2266. part_103.BrickColor = BrickColor.new("Grey")
  2267. part_103.Friction = 0.3
  2268. part_103.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2269.  
  2270. part_104 = Instance.new("Part", mcar)
  2271. part_104.FormFactor = Enum.FormFactor.Plate
  2272. part_104.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2273. part_104.TopSurface = Enum.SurfaceType.Smooth
  2274. part_104.Reflectance = 0.3
  2275. part_104.Material = Enum.Material.SmoothPlastic
  2276. part_104.Size = Vector3.new(1, 0.4, 8)
  2277. part_104.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2278. part_104.CFrame = CFrame.new(48.741, 4.7, -140.756)* CFrame.Angles(4.4527910176839e-006, -0.00034513813443482, -0.00020811511785723)
  2279. part_104.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2280. part_104.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2281. part_104.BrickColor = BrickColor.new("Grey")
  2282. part_104.Friction = 0.3
  2283. part_104.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2284.  
  2285. part_105 = Instance.new("Part", mcar)
  2286. part_105.FormFactor = Enum.FormFactor.Plate
  2287. part_105.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2288. part_105.TopSurface = Enum.SurfaceType.Smooth
  2289. part_105.Reflectance = 0.3
  2290. part_105.Material = Enum.Material.SmoothPlastic
  2291. part_105.Size = Vector3.new(1, 0.4, 2)
  2292. part_105.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2293. part_105.CFrame = CFrame.new(59.349, 3.005, -163.656)* CFrame.Angles(3.141592502594, 6.4901541918516e-009, 0.00021353385818657)
  2294. part_105.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2295. part_105.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2296. part_105.Friction = 0.3
  2297. part_105.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2298.  
  2299. mesh_62 = Instance.new("SpecialMesh", part_105)
  2300. mesh_62.Scale = Vector3.new(0.4, 0.4, 0.4)
  2301. mesh_62.MeshId = "http://www.roblox.com/asset/?id=12221344"
  2302. mesh_62.MeshType = Enum.MeshType.FileMesh
  2303.  
  2304. part_106 = Instance.new("Part", mcar)
  2305. part_106.FormFactor = Enum.FormFactor.Plate
  2306. part_106.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2307. part_106.TopSurface = Enum.SurfaceType.Smooth
  2308. part_106.Reflectance = 0.3
  2309. part_106.Material = Enum.Material.SmoothPlastic
  2310. part_106.Size = Vector3.new(1, 1.2, 1)
  2311. part_106.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2312. part_106.CFrame = CFrame.new(58.836, 1.799, -136.352)* CFrame.Angles(-1.9569604603475e-007, 1.74880369741e-007, 3.1415884494781)
  2313. part_106.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2314. part_106.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2315. part_106.Friction = 0.3
  2316. part_106.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2317.  
  2318. mesh_63 = Instance.new("CylinderMesh", part_106)
  2319.  
  2320. backlight1 = Instance.new("Part", mcar)
  2321. backlight1.FormFactor = Enum.FormFactor.Plate
  2322. backlight1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2323. backlight1.Transparency = 0.2
  2324. backlight1.TopSurface = Enum.SurfaceType.Smooth
  2325. backlight1.Material = Enum.Material.SmoothPlastic
  2326. backlight1.Size = Vector3.new(1, 0.8, 2)
  2327. backlight1.Name = "backlight1"
  2328. backlight1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2329. backlight1.CFrame = CFrame.new(58.838, 4.4, -136.252)* CFrame.Angles(-1.5707968473434, -1.1254653145443e-005, -3.141592502594)
  2330. backlight1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2331. backlight1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2332. backlight1.BrickColor = BrickColor.new("Bright red")
  2333. backlight1.Friction = 0.3
  2334. backlight1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2335.  
  2336. mesh_64 = Instance.new("SpecialMesh", backlight1)
  2337. mesh_64.MeshType = Enum.MeshType.Wedge
  2338.  
  2339. rearlight = Instance.new("SpotLight", backlight1)
  2340. rearlight.Enabled = false
  2341. rearlight.Color = Color3.new(1, 0, 0)
  2342. rearlight.Face = Enum.NormalId.Back
  2343. rearlight.Range = 10
  2344. rearlight.Name = "rearlight"
  2345. rearlight.Angle = 180
  2346. rearlight.Brightness = 20
  2347.  
  2348. part_107 = Instance.new("Part", mcar)
  2349. part_107.FormFactor = Enum.FormFactor.Plate
  2350. part_107.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2351. part_107.Transparency = 0.5
  2352. part_107.TopSurface = Enum.SurfaceType.Smooth
  2353. part_107.Reflectance = 0.5
  2354. part_107.Material = Enum.Material.SmoothPlastic
  2355. part_107.Size = Vector3.new(11, 2, 1)
  2356. part_107.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2357. part_107.CFrame = CFrame.new(53.847, 6.406, -143.051)* CFrame.Angles(3.1415436267853, -0.00021385250147432, -3.1415457725525)
  2358. part_107.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2359. part_107.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2360. part_107.BrickColor = BrickColor.new("White")
  2361. part_107.Friction = 0.3
  2362. part_107.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2363.  
  2364. mesh_65 = Instance.new("SpecialMesh", part_107)
  2365. mesh_65.MeshType = Enum.MeshType.Wedge
  2366.  
  2367. part_108 = Instance.new("Part", mcar)
  2368. part_108.FormFactor = Enum.FormFactor.Plate
  2369. part_108.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2370. part_108.TopSurface = Enum.SurfaceType.Smooth
  2371. part_108.Material = Enum.Material.SmoothPlastic
  2372. part_108.Size = Vector3.new(7, 2, 1)
  2373. part_108.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2374. part_108.CFrame = CFrame.new(58.837, 4.4, -140.152)* CFrame.Angles(0.24961392581463, 1.5653810501099, -0.24859754741192)
  2375. part_108.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2376. part_108.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2377. part_108.BrickColor = bodycolor
  2378. part_108.Friction = 0.3
  2379. part_108.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2380.  
  2381. part_109 = Instance.new("Part", mcar)
  2382. part_109.FormFactor = Enum.FormFactor.Plate
  2383. part_109.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2384. part_109.TopSurface = Enum.SurfaceType.Smooth
  2385. part_109.Material = Enum.Material.SmoothPlastic
  2386. part_109.Size = Vector3.new(1, 0.4, 6)
  2387. part_109.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2388. part_109.CFrame = CFrame.new(58.84, 5.6, -138.852)* CFrame.Angles(-0.0031524042133242, -0.0030616919975728, 0.01267381105572)
  2389. part_109.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2390. part_109.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2391. part_109.BrickColor = bodycolor
  2392. part_109.Friction = 0.3
  2393. part_109.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2394.  
  2395. mesh_66 = Instance.new("SpecialMesh", part_109)
  2396. mesh_66.MeshType = Enum.MeshType.Wedge
  2397.  
  2398. part_110 = Instance.new("Part", mcar)
  2399. part_110.FormFactor = Enum.FormFactor.Plate
  2400. part_110.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2401. part_110.TopSurface = Enum.SurfaceType.Smooth
  2402. part_110.Reflectance = 0.3
  2403. part_110.Material = Enum.Material.SmoothPlastic
  2404. part_110.Size = Vector3.new(1, 0.4, 1)
  2405. part_110.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2406. part_110.CFrame = CFrame.new(48.836, 2.899, -136.452)* CFrame.Angles(1.5707026720047, -2.4369450329687e-005, -6.0501420193759e-006)
  2407. part_110.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2408. part_110.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2409. part_110.Friction = 0.3
  2410. part_110.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2411.  
  2412. mesh_67 = Instance.new("SpecialMesh", part_110)
  2413. mesh_67.MeshType = Enum.MeshType.Wedge
  2414.  
  2415. backlight2 = Instance.new("Part", mcar)
  2416. backlight2.FormFactor = Enum.FormFactor.Plate
  2417. backlight2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2418. backlight2.Transparency = 0.2
  2419. backlight2.TopSurface = Enum.SurfaceType.Smooth
  2420. backlight2.Material = Enum.Material.SmoothPlastic
  2421. backlight2.Size = Vector3.new(1, 0.8, 2)
  2422. backlight2.Name = "backlight2"
  2423. backlight2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2424. backlight2.CFrame = CFrame.new(48.84, 4.4, -136.256)* CFrame.Angles(-1.5707968473434, -1.1254653145443e-005, -3.141592502594)
  2425. backlight2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2426. backlight2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2427. backlight2.BrickColor = BrickColor.new("Bright red")
  2428. backlight2.Friction = 0.3
  2429. backlight2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2430.  
  2431. mesh_68 = Instance.new("SpecialMesh", backlight2)
  2432. mesh_68.MeshType = Enum.MeshType.Wedge
  2433.  
  2434. rearlight_2 = Instance.new("SpotLight", backlight2)
  2435. rearlight_2.Enabled = false
  2436. rearlight_2.Color = Color3.new(1, 0, 0)
  2437. rearlight_2.Face = Enum.NormalId.Back
  2438. rearlight_2.Range = 10
  2439. rearlight_2.Name = "rearlight"
  2440. rearlight_2.Angle = 180
  2441. rearlight_2.Brightness = 20
  2442.  
  2443. part_111 = Instance.new("Part", mcar)
  2444. part_111.FormFactor = Enum.FormFactor.Plate
  2445. part_111.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2446. part_111.TopSurface = Enum.SurfaceType.Smooth
  2447. part_111.Reflectance = 0.3
  2448. part_111.Material = Enum.Material.SmoothPlastic
  2449. part_111.Size = Vector3.new(1, 0.4, 8)
  2450. part_111.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2451. part_111.CFrame = CFrame.new(58.941, 4.6, -140.757)* CFrame.Angles(4.4527910176839e-006, -0.00034513813443482, -0.00020811511785723)
  2452. part_111.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2453. part_111.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2454. part_111.BrickColor = BrickColor.new("Grey")
  2455. part_111.Friction = 0.3
  2456. part_111.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2457.  
  2458. part_112 = Instance.new("Part", mcar)
  2459. part_112.FormFactor = Enum.FormFactor.Plate
  2460. part_112.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2461. part_112.TopSurface = Enum.SurfaceType.Smooth
  2462. part_112.Reflectance = 0.3
  2463. part_112.Material = Enum.Material.SmoothPlastic
  2464. part_112.Size = Vector3.new(1, 0.4, 1)
  2465. part_112.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2466. part_112.CFrame = CFrame.new(58.836, 2.899, -136.452)* CFrame.Angles(1.5707026720047, -2.4369450329687e-005, -6.0501420193759e-006)
  2467. part_112.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2468. part_112.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2469. part_112.Friction = 0.3
  2470. part_112.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2471.  
  2472. mesh_69 = Instance.new("SpecialMesh", part_112)
  2473. mesh_69.MeshType = Enum.MeshType.Wedge
  2474.  
  2475. part_113 = Instance.new("Part", mcar)
  2476. part_113.FormFactor = Enum.FormFactor.Plate
  2477. part_113.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2478. part_113.TopSurface = Enum.SurfaceType.Smooth
  2479. part_113.Material = Enum.Material.SmoothPlastic
  2480. part_113.Size = Vector3.new(3, 1.2, 1)
  2481. part_113.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2482. part_113.CFrame = CFrame.new(58.838, 2.4, -138.152)* CFrame.Angles(0.24924147129059, 1.5676697492599, -0.24892929196358)
  2483. part_113.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2484. part_113.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2485. part_113.BrickColor = bodycolor
  2486. part_113.Friction = 0.3
  2487. part_113.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2488.  
  2489. frontaxlepos = Instance.new("Part", mcar)
  2490. frontaxlepos.FormFactor = Enum.FormFactor.Custom
  2491. frontaxlepos.CanCollide = false
  2492. frontaxlepos.Elasticity = 0
  2493. frontaxlepos.Transparency = 1
  2494. frontaxlepos.TopSurface = Enum.SurfaceType.Smooth
  2495. frontaxlepos.Size = Vector3.new(1.8, 11, 0.2)
  2496. frontaxlepos.Name = "frontaxlepos"
  2497. frontaxlepos.CFrame = CFrame.new(53.8, 1.705, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  2498. frontaxlepos.Friction = 0.3
  2499. frontaxlepos.BottomSurface = Enum.SurfaceType.Smooth
  2500.  
  2501. mesh_70 = Instance.new("CylinderMesh", frontaxlepos)
  2502.  
  2503. part_114 = Instance.new("Part", mcar)
  2504. part_114.FormFactor = Enum.FormFactor.Plate
  2505. part_114.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2506. part_114.TopSurface = Enum.SurfaceType.Smooth
  2507. part_114.Reflectance = 0.3
  2508. part_114.Material = Enum.Material.SmoothPlastic
  2509. part_114.Size = Vector3.new(1, 0.4, 7.213)
  2510. part_114.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2511. part_114.CFrame = CFrame.new(48.743, 4.506, -148.05)* CFrame.Angles(0.00034509919350967, 2.6231919036945e-006, -9.5047390402669e-008)
  2512. part_114.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2513. part_114.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2514. part_114.BrickColor = BrickColor.new("Grey")
  2515. part_114.Friction = 0.3
  2516. part_114.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2517.  
  2518. door2 = Instance.new("Model", mcar)
  2519. door2.Name = "Door2"
  2520.  
  2521. part_115 = Instance.new("Part", door2)
  2522. part_115.FormFactor = Enum.FormFactor.Plate
  2523. part_115.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2524. part_115.TopSurface = Enum.SurfaceType.Smooth
  2525. part_115.Material = Enum.Material.SmoothPlastic
  2526. part_115.Size = Vector3.new(1, 2, 1)
  2527. part_115.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2528. part_115.CFrame = CFrame.new(58.847, 6.405, -151.052)* CFrame.Angles(3.141592502594, -1.1626889317995e-007, -3.1415927410126)
  2529. part_115.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2530. part_115.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2531. part_115.BrickColor = bodycolor
  2532. part_115.Friction = 0.3
  2533. part_115.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2534.  
  2535. part_116 = Instance.new("Part", door2)
  2536. part_116.FormFactor = Enum.FormFactor.Plate
  2537. part_116.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2538. part_116.TopSurface = Enum.SurfaceType.Smooth
  2539. part_116.Material = Enum.Material.SmoothPlastic
  2540. part_116.Size = Vector3.new(1, 3.6, 5)
  2541. part_116.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2542. part_116.CFrame = CFrame.new(58.844, 3.603, -154.153)* CFrame.Angles(3.141592502594, -2.2057338355808e-007, -3.1415927410126)
  2543. part_116.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2544. part_116.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2545. part_116.BrickColor = bodycolor
  2546. part_116.Friction = 0.3
  2547. part_116.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2548. part_116.Name = "doormain"
  2549.  
  2550. window5 = Instance.new("Part", door2)
  2551. window5.FormFactor = Enum.FormFactor.Plate
  2552. window5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2553. window5.Transparency = 0.5
  2554. window5.TopSurface = Enum.SurfaceType.Smooth
  2555. window5.Reflectance = 0.5
  2556. window5.Material = Enum.Material.SmoothPlastic
  2557. window5.Size = Vector3.new(4, 2, 1)
  2558. window5.Name = "window5"
  2559. window5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2560. window5.CFrame = CFrame.new(58.847, 6.405, -153.552)* CFrame.Angles(-9.2511669208761e-005, 1.5707963705063, 0)
  2561. window5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2562. window5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2563. window5.BrickColor = BrickColor.new("Really black")
  2564. window5.Friction = 0.3
  2565. window5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2566.  
  2567. part_117 = Instance.new("Part", door2)
  2568. part_117.FormFactor = Enum.FormFactor.Plate
  2569. part_117.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2570. part_117.TopSurface = Enum.SurfaceType.Smooth
  2571. part_117.Material = Enum.Material.SmoothPlastic
  2572. part_117.Size = Vector3.new(1, 2, 1)
  2573. part_117.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2574. part_117.CFrame = CFrame.new(58.848, 6.405, -156.052)* CFrame.Angles(3.141592502594, -2.250999386888e-007, 3.1415927410126)
  2575. part_117.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2576. part_117.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2577. part_117.BrickColor = bodycolor
  2578. part_117.Friction = 0.3
  2579. part_117.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2580.  
  2581. part_118 = Instance.new("Part", mcar)
  2582. part_118.FormFactor = Enum.FormFactor.Plate
  2583. part_118.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  2584. part_118.TopSurface = Enum.SurfaceType.Smooth
  2585. part_118.Reflectance = 0.3
  2586. part_118.Material = Enum.Material.SmoothPlastic
  2587. part_118.Size = Vector3.new(1, 0.4, 7.163)
  2588. part_118.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  2589. part_118.CFrame = CFrame.new(58.943, 4.505, -148.075)* CFrame.Angles(-1.9569604603475e-007, 8.7458829511888e-008, -2.6312985937693e-005)
  2590. part_118.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  2591. part_118.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  2592. part_118.BrickColor = BrickColor.new("Grey")
  2593. part_118.Friction = 0.3
  2594. part_118.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  2595.  
  2596. part_119 = Instance.new("Part", mcar)
  2597. part_119.FormFactor = Enum.FormFactor.Plate
  2598. part_119.TopSurface = Enum.SurfaceType.Smooth
  2599. part_119.Material = Enum.Material.Concrete
  2600. part_119.Size = Vector3.new(1.827, 1.462, 0.914)
  2601. part_119.CFrame = CFrame.new(52.57, 2.912, -153.683)* CFrame.Angles(0, 1.5707963705063, 0)
  2602. part_119.BrickColor = BrickColor.new("Dirt brown")
  2603. part_119.Friction = 0.3
  2604. part_119.BottomSurface = Enum.SurfaceType.Smooth
  2605.  
  2606. part_120 = Instance.new("Part", mcar)
  2607. part_120.FormFactor = Enum.FormFactor.Plate
  2608. part_120.TopSurface = Enum.SurfaceType.Smooth
  2609. part_120.Material = Enum.Material.Concrete
  2610. part_120.Size = Vector3.new(0.914, 1.462, 0.914)
  2611. part_120.CFrame = CFrame.new(52.57, 2.912, -155.053)
  2612. part_120.BrickColor = BrickColor.new("Dirt brown")
  2613. part_120.Friction = 0.3
  2614. part_120.BottomSurface = Enum.SurfaceType.Smooth
  2615.  
  2616. mesh_71 = Instance.new("SpecialMesh", part_120)
  2617. mesh_71.MeshType = Enum.MeshType.Wedge
  2618.  
  2619. part_121 = Instance.new("Part", mcar)
  2620. part_121.FormFactor = Enum.FormFactor.Plate
  2621. part_121.TopSurface = Enum.SurfaceType.Smooth
  2622. part_121.Material = Enum.Material.Concrete
  2623. part_121.Size = Vector3.new(1.827, 0.365, 0.914)
  2624. part_121.CFrame = CFrame.new(51.2, 2.364, -155.053)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2625. part_121.BrickColor = BrickColor.new("Dirt brown")
  2626. part_121.Friction = 0.3
  2627. part_121.BottomSurface = Enum.SurfaceType.Smooth
  2628.  
  2629. part_122 = Instance.new("Part", mcar)
  2630. part_122.FormFactor = Enum.FormFactor.Plate
  2631. part_122.TopSurface = Enum.SurfaceType.Smooth
  2632. part_122.Size = Vector3.new(2.741, 0.365, 3.654)
  2633. part_122.CFrame = CFrame.new(51.2, 1.999, -154.139)* CFrame.Angles(-0, 1.5707963705063, 0)
  2634. part_122.BrickColor = BrickColor.new("Dirt brown")
  2635. part_122.Friction = 0.3
  2636. part_122.BottomSurface = Enum.SurfaceType.Smooth
  2637.  
  2638. part_123 = Instance.new("Part", mcar)
  2639. part_123.FormFactor = Enum.FormFactor.Plate
  2640. part_123.TopSurface = Enum.SurfaceType.Smooth
  2641. part_123.Material = Enum.Material.Concrete
  2642. part_123.Size = Vector3.new(1.827, 1.462, 0.914)
  2643. part_123.CFrame = CFrame.new(49.83, 2.912, -153.683)* CFrame.Angles(0, 1.5707963705063, 0)
  2644. part_123.BrickColor = BrickColor.new("Dirt brown")
  2645. part_123.Friction = 0.3
  2646. part_123.BottomSurface = Enum.SurfaceType.Smooth
  2647.  
  2648. part_124 = Instance.new("Part", mcar)
  2649. part_124.FormFactor = Enum.FormFactor.Plate
  2650. part_124.TopSurface = Enum.SurfaceType.Smooth
  2651. part_124.Material = Enum.Material.Concrete
  2652. part_124.Size = Vector3.new(0.914, 1.096, 1.827)
  2653. part_124.CFrame = CFrame.new(57.27, 2.719, -147.121)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2654. part_124.BrickColor = BrickColor.new("Dirt brown")
  2655. part_124.Friction = 0.3
  2656. part_124.BottomSurface = Enum.SurfaceType.Smooth
  2657.  
  2658. mesh_72 = Instance.new("SpecialMesh", part_124)
  2659. mesh_72.MeshType = Enum.MeshType.Wedge
  2660.  
  2661. part_125 = Instance.new("Part", mcar)
  2662. part_125.FormFactor = Enum.FormFactor.Plate
  2663. part_125.TopSurface = Enum.SurfaceType.Smooth
  2664. part_125.Material = Enum.Material.Concrete
  2665. part_125.Size = Vector3.new(0.914, 2.558, 0.914)
  2666. part_125.CFrame = CFrame.new(57.27, 4.911, -147.212)
  2667. part_125.BrickColor = BrickColor.new("Dirt brown")
  2668. part_125.Friction = 0.3
  2669. part_125.BottomSurface = Enum.SurfaceType.Smooth
  2670.  
  2671. mesh_73 = Instance.new("SpecialMesh", part_125)
  2672. mesh_73.MeshType = Enum.MeshType.Wedge
  2673.  
  2674. part_126 = Instance.new("Part", mcar)
  2675. part_126.FormFactor = Enum.FormFactor.Plate
  2676. part_126.TopSurface = Enum.SurfaceType.Smooth
  2677. part_126.Material = Enum.Material.Concrete
  2678. part_126.Size = Vector3.new(1.827, 1.096, 1.827)
  2679. part_126.CFrame = CFrame.new(55.9, 2.719, -147.121)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2680. part_126.BrickColor = BrickColor.new("Dirt brown")
  2681. part_126.Friction = 0.3
  2682. part_126.BottomSurface = Enum.SurfaceType.Smooth
  2683.  
  2684. mesh_74 = Instance.new("SpecialMesh", part_126)
  2685. mesh_74.MeshType = Enum.MeshType.Wedge
  2686.  
  2687.  
  2688. part_127 = Instance.new("Part", mcar)
  2689. part_127.FormFactor = Enum.FormFactor.Plate
  2690. part_127.TopSurface = Enum.SurfaceType.Smooth
  2691. part_127.Material = Enum.Material.Concrete
  2692. part_127.Size = Vector3.new(1.827, 0.365, 0.914)
  2693. part_127.CFrame = CFrame.new(55.9, 2.353, -149.953)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  2694. part_127.BrickColor = BrickColor.new("Dirt brown")
  2695. part_127.Friction = 0.3
  2696. part_127.BottomSurface = Enum.SurfaceType.Smooth
  2697.  
  2698. part_128 = Instance.new("Part", mcar)
  2699. part_128.FormFactor = Enum.FormFactor.Plate
  2700. part_128.TopSurface = Enum.SurfaceType.Smooth
  2701. part_128.Material = Enum.Material.Concrete
  2702. part_128.Size = Vector3.new(0.914, 1.096, 1.827)
  2703. part_128.CFrame = CFrame.new(54.53, 2.719, -147.121)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2704. part_128.BrickColor = BrickColor.new("Dirt brown")
  2705. part_128.Friction = 0.3
  2706. part_128.BottomSurface = Enum.SurfaceType.Smooth
  2707.  
  2708. mesh_75 = Instance.new("SpecialMesh", part_128)
  2709. mesh_75.MeshType = Enum.MeshType.Wedge
  2710.  
  2711. part_129 = Instance.new("Part", mcar)
  2712. part_129.FormFactor = Enum.FormFactor.Plate
  2713. part_129.TopSurface = Enum.SurfaceType.Smooth
  2714. part_129.Material = Enum.Material.Concrete
  2715. part_129.Size = Vector3.new(3.654, 0.365, 2.741)
  2716. part_129.CFrame = CFrame.new(55.9, 5.003, -146.573)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2717. part_129.BrickColor = BrickColor.new("Dirt brown")
  2718. part_129.Friction = 0.3
  2719. part_129.BottomSurface = Enum.SurfaceType.Smooth
  2720.  
  2721. part_130 = Instance.new("Part", mcar)
  2722. part_130.FormFactor = Enum.FormFactor.Plate
  2723. part_130.TopSurface = Enum.SurfaceType.Smooth
  2724. part_130.Material = Enum.Material.Concrete
  2725. part_130.Size = Vector3.new(1.827, 1.462, 0.914)
  2726. part_130.CFrame = CFrame.new(57.27, 2.901, -148.583)* CFrame.Angles(0, 1.5707963705063, 0)
  2727. part_130.BrickColor = BrickColor.new("Dirt brown")
  2728. part_130.Friction = 0.3
  2729. part_130.BottomSurface = Enum.SurfaceType.Smooth
  2730.  
  2731. part_131 = Instance.new("Part", mcar)
  2732. part_131.FormFactor = Enum.FormFactor.Plate
  2733. part_131.TopSurface = Enum.SurfaceType.Smooth
  2734. part_131.Material = Enum.Material.Concrete
  2735. part_131.Size = Vector3.new(1.827, 2.558, 0.914)
  2736. part_131.CFrame = CFrame.new(55.9, 4.911, -147.212)
  2737. part_131.BrickColor = BrickColor.new("Dirt brown")
  2738. part_131.Friction = 0.3
  2739. part_131.BottomSurface = Enum.SurfaceType.Smooth
  2740.  
  2741. mesh_76 = Instance.new("SpecialMesh", part_131)
  2742. mesh_76.MeshType = Enum.MeshType.Wedge
  2743.  
  2744. part_132 = Instance.new("Part", mcar)
  2745. part_132.FormFactor = Enum.FormFactor.Plate
  2746. part_132.TopSurface = Enum.SurfaceType.Smooth
  2747. part_132.Material = Enum.Material.Concrete
  2748. part_132.Size = Vector3.new(0.914, 1.462, 0.914)
  2749. part_132.CFrame = CFrame.new(57.27, 2.901, -149.953)
  2750. part_132.BrickColor = BrickColor.new("Dirt brown")
  2751. part_132.Friction = 0.3
  2752. part_132.BottomSurface = Enum.SurfaceType.Smooth
  2753.  
  2754. mesh_77 = Instance.new("SpecialMesh", part_132)
  2755. mesh_77.MeshType = Enum.MeshType.Wedge
  2756.  
  2757. part_133 = Instance.new("Part", mcar)
  2758. part_133.FormFactor = Enum.FormFactor.Plate
  2759. part_133.TopSurface = Enum.SurfaceType.Smooth
  2760. part_133.Material = Enum.Material.Concrete
  2761. part_133.Size = Vector3.new(0.914, 2.558, 0.914)
  2762. part_133.CFrame = CFrame.new(54.53, 4.911, -147.212)
  2763. part_133.BrickColor = BrickColor.new("Dirt brown")
  2764. part_133.Friction = 0.3
  2765. part_133.BottomSurface = Enum.SurfaceType.Smooth
  2766.  
  2767. mesh_78 = Instance.new("SpecialMesh", part_133)
  2768. mesh_78.MeshType = Enum.MeshType.Wedge
  2769.  
  2770. part_134 = Instance.new("Part", mcar)
  2771. part_134.FormFactor = Enum.FormFactor.Plate
  2772. part_134.TopSurface = Enum.SurfaceType.Smooth
  2773. part_134.Size = Vector3.new(2.741, 0.365, 3.654)
  2774. part_134.CFrame = CFrame.new(55.9, 1.988, -149.039)* CFrame.Angles(0, 1.5707963705063, 0)
  2775. part_134.BrickColor = BrickColor.new("Dirt brown")
  2776. part_134.Friction = 0.3
  2777. part_134.BottomSurface = Enum.SurfaceType.Smooth
  2778.  
  2779. part_135 = Instance.new("Part", mcar)
  2780. part_135.FormFactor = Enum.FormFactor.Plate
  2781. part_135.TopSurface = Enum.SurfaceType.Smooth
  2782. part_135.Material = Enum.Material.Concrete
  2783. part_135.Size = Vector3.new(1.827, 1.462, 0.914)
  2784. part_135.CFrame = CFrame.new(54.53, 2.901, -148.583)* CFrame.Angles(0, 1.5707963705063, 0)
  2785. part_135.BrickColor = BrickColor.new("Dirt brown")
  2786. part_135.Friction = 0.3
  2787. part_135.BottomSurface = Enum.SurfaceType.Smooth
  2788.  
  2789. part_136 = Instance.new("Part", mcar)
  2790. part_136.FormFactor = Enum.FormFactor.Plate
  2791. part_136.TopSurface = Enum.SurfaceType.Smooth
  2792. part_136.Material = Enum.Material.Concrete
  2793. part_136.Size = Vector3.new(0.914, 1.462, 0.914)
  2794. part_136.CFrame = CFrame.new(54.53, 2.901, -149.953)
  2795. part_136.BrickColor = BrickColor.new("Dirt brown")
  2796. part_136.Friction = 0.3
  2797. part_136.BottomSurface = Enum.SurfaceType.Smooth
  2798.  
  2799. mesh_79 = Instance.new("SpecialMesh", part_136)
  2800. mesh_79.MeshType = Enum.MeshType.Wedge
  2801.  
  2802. seat = Instance.new("Seat", mcar)
  2803. seat.Friction = 0.3
  2804. seat.LeftSurface = Enum.SurfaceType.Weld
  2805. seat.TopSurface = Enum.SurfaceType.Smooth
  2806. seat.FormFactor = Enum.FormFactor.Plate
  2807. seat.BackSurface = Enum.SurfaceType.Weld
  2808. seat.BrickColor = BrickColor.new("Dirt brown")
  2809. seat.Material = Enum.Material.Concrete
  2810. seat.Size = Vector3.new(1.827, 0.365, 1.827)
  2811. seat.RightSurface = Enum.SurfaceType.Weld
  2812. seat.CFrame = CFrame.new(55.9, 2.353, -148.583)
  2813. seat.FrontSurface = Enum.SurfaceType.Weld
  2814.  
  2815. part_137 = Instance.new("Part", mcar)
  2816. part_137.FormFactor = Enum.FormFactor.Plate
  2817. part_137.TopSurface = Enum.SurfaceType.Smooth
  2818. part_137.Material = Enum.Material.Concrete
  2819. part_137.Size = Vector3.new(0.914, 1.462, 0.914)
  2820. part_137.CFrame = CFrame.new(49.83, 2.912, -155.053)
  2821. part_137.BrickColor = BrickColor.new("Dirt brown")
  2822. part_137.Friction = 0.3
  2823. part_137.BottomSurface = Enum.SurfaceType.Smooth
  2824.  
  2825. mesh_80 = Instance.new("SpecialMesh", part_137)
  2826. mesh_80.MeshType = Enum.MeshType.Wedge
  2827.  
  2828. part_138 = Instance.new("Part", mcar)
  2829. part_138.FormFactor = Enum.FormFactor.Plate
  2830. part_138.TopSurface = Enum.SurfaceType.Smooth
  2831. part_138.Material = Enum.Material.Concrete
  2832. part_138.Size = Vector3.new(1.827, 2.558, 0.914)
  2833. part_138.CFrame = CFrame.new(51.2, 4.922, -152.312)
  2834. part_138.BrickColor = BrickColor.new("Dirt brown")
  2835. part_138.Friction = 0.3
  2836. part_138.BottomSurface = Enum.SurfaceType.Smooth
  2837.  
  2838. mesh_81 = Instance.new("SpecialMesh", part_138)
  2839. mesh_81.MeshType = Enum.MeshType.Wedge
  2840.  
  2841. part_139 = Instance.new("Part", mcar)
  2842. part_139.FormFactor = Enum.FormFactor.Plate
  2843. part_139.TopSurface = Enum.SurfaceType.Smooth
  2844. part_139.Material = Enum.Material.Concrete
  2845. part_139.Size = Vector3.new(0.914, 1.096, 1.827)
  2846. part_139.CFrame = CFrame.new(52.57, 2.73, -152.221)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2847. part_139.BrickColor = BrickColor.new("Dirt brown")
  2848. part_139.Friction = 0.3
  2849. part_139.BottomSurface = Enum.SurfaceType.Smooth
  2850.  
  2851. mesh_82 = Instance.new("SpecialMesh", part_139)
  2852. mesh_82.MeshType = Enum.MeshType.Wedge
  2853.  
  2854. part_140 = Instance.new("Part", mcar)
  2855. part_140.FormFactor = Enum.FormFactor.Plate
  2856. part_140.TopSurface = Enum.SurfaceType.Smooth
  2857. part_140.Material = Enum.Material.Concrete
  2858. part_140.Size = Vector3.new(0.914, 2.558, 0.914)
  2859. part_140.CFrame = CFrame.new(52.57, 4.922, -152.312)
  2860. part_140.BrickColor = BrickColor.new("Dirt brown")
  2861. part_140.Friction = 0.3
  2862. part_140.BottomSurface = Enum.SurfaceType.Smooth
  2863.  
  2864. mesh_83 = Instance.new("SpecialMesh", part_140)
  2865. mesh_83.MeshType = Enum.MeshType.Wedge
  2866.  
  2867. mainseat = Instance.new("Seat", mcar)
  2868. mainseat.Friction = 0.3
  2869. mainseat.LeftSurface = Enum.SurfaceType.Weld
  2870. mainseat.TopSurface = Enum.SurfaceType.Smooth
  2871. mainseat.FormFactor = Enum.FormFactor.Plate
  2872. mainseat.BackSurface = Enum.SurfaceType.Weld
  2873. mainseat.BrickColor = BrickColor.new("Dirt brown")
  2874. mainseat.Material = Enum.Material.Concrete
  2875. mainseat.Size = Vector3.new(1.827, 0.365, 1.827)
  2876. mainseat.RightSurface = Enum.SurfaceType.Weld
  2877. mainseat.CFrame = CFrame.new(51.2, 2.364, -153.683)
  2878. mainseat.FrontSurface = Enum.SurfaceType.Weld
  2879. mainseat.Name = "mainseat"
  2880.  
  2881. part_141 = Instance.new("Part", mcar)
  2882. part_141.FormFactor = Enum.FormFactor.Plate
  2883. part_141.TopSurface = Enum.SurfaceType.Smooth
  2884. part_141.Material = Enum.Material.Concrete
  2885. part_141.Size = Vector3.new(0.914, 1.096, 1.827)
  2886. part_141.CFrame = CFrame.new(49.83, 2.73, -152.221)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2887. part_141.BrickColor = BrickColor.new("Dirt brown")
  2888. part_141.Friction = 0.3
  2889. part_141.BottomSurface = Enum.SurfaceType.Smooth
  2890.  
  2891. mesh_84 = Instance.new("SpecialMesh", part_141)
  2892. mesh_84.MeshType = Enum.MeshType.Wedge
  2893.  
  2894. part_142 = Instance.new("Part", mcar)
  2895. part_142.FormFactor = Enum.FormFactor.Plate
  2896. part_142.TopSurface = Enum.SurfaceType.Smooth
  2897. part_142.Material = Enum.Material.Concrete
  2898. part_142.Size = Vector3.new(1.827, 1.096, 1.827)
  2899. part_142.CFrame = CFrame.new(51.2, 2.73, -152.221)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2900. part_142.BrickColor = BrickColor.new("Dirt brown")
  2901. part_142.Friction = 0.3
  2902. part_142.BottomSurface = Enum.SurfaceType.Smooth
  2903.  
  2904. mesh_85 = Instance.new("SpecialMesh", part_142)
  2905. mesh_85.MeshType = Enum.MeshType.Wedge
  2906.  
  2907. part_143 = Instance.new("Part", mcar)
  2908. part_143.FormFactor = Enum.FormFactor.Plate
  2909. part_143.TopSurface = Enum.SurfaceType.Smooth
  2910. part_143.Material = Enum.Material.Concrete
  2911. part_143.Size = Vector3.new(3.654, 0.365, 2.741)
  2912. part_143.CFrame = CFrame.new(51.2, 5.014, -151.673)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  2913. part_143.BrickColor = BrickColor.new("Dirt brown")
  2914. part_143.Friction = 0.3
  2915. part_143.BottomSurface = Enum.SurfaceType.Smooth
  2916.  
  2917. part_144 = Instance.new("Part", mcar)
  2918. part_144.FormFactor = Enum.FormFactor.Plate
  2919. part_144.TopSurface = Enum.SurfaceType.Smooth
  2920. part_144.Material = Enum.Material.Concrete
  2921. part_144.Size = Vector3.new(0.914, 2.558, 0.914)
  2922. part_144.CFrame = CFrame.new(49.83, 4.922, -152.312)
  2923. part_144.BrickColor = BrickColor.new("Dirt brown")
  2924. part_144.Friction = 0.3
  2925. part_144.BottomSurface = Enum.SurfaceType.Smooth
  2926.  
  2927. mesh_86 = Instance.new("SpecialMesh", part_144)
  2928. mesh_86.MeshType = Enum.MeshType.Wedge
  2929.  
  2930. frontwheels = Instance.new("Model", mcar)
  2931. frontwheels.Name = "frontwheels"
  2932.  
  2933. fcollide1 = Instance.new("Part", mcar)
  2934. fcollide1.FormFactor = Enum.FormFactor.Custom
  2935. fcollide1.Elasticity = 0
  2936. fcollide1.TopSurface = Enum.SurfaceType.Smooth
  2937. fcollide1.Size = Vector3.new(3.4, 1.4, 4.4)
  2938. fcollide1.CFrame = CFrame.new(58.6, 1.706, -161.21)* CFrame.Angles(0, 0, 1.5707963705063)
  2939. fcollide1.BrickColor = BrickColor.new("Really black")
  2940. fcollide1.Friction = 0.3
  2941. fcollide1.BottomSurface = Enum.SurfaceType.Smooth
  2942. fcollide1.CanCollide = true
  2943. fcollide1.Transparency = 1
  2944.  
  2945. fcollide2 = Instance.new("Part", mcar)
  2946. fcollide2.FormFactor = Enum.FormFactor.Custom
  2947. fcollide2.Elasticity = 0
  2948. fcollide2.TopSurface = Enum.SurfaceType.Smooth
  2949. fcollide2.Size = Vector3.new(1.8, 11, 0.2)
  2950. fcollide2.Name = "Axle"
  2951. fcollide2.CFrame = CFrame.new(53.8, 1.706, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  2952. fcollide2.Friction = 0.3
  2953. fcollide2.BottomSurface = Enum.SurfaceType.Smooth
  2954. fcollide2.CanCollide = true
  2955. fcollide2.Transparency = 1
  2956.  
  2957. fcollide3 = Instance.new("Part", mcar)
  2958. fcollide3.FormFactor = Enum.FormFactor.Custom
  2959. fcollide3.Elasticity = 0
  2960. fcollide3.TopSurface = Enum.SurfaceType.Smooth
  2961. fcollide3.Size = Vector3.new(1.8, 1.8, 2)
  2962. fcollide3.CFrame = CFrame.new(58.6, 1.706, -161.21)* CFrame.Angles(0, 0, 1.5707963705063)
  2963. fcollide3.Friction = 0.3
  2964. fcollide3.BottomSurface = Enum.SurfaceType.Smooth
  2965. fcollide3.CanCollide = true
  2966. fcollide3.Transparency = 1
  2967.  
  2968. fcollide4 = Instance.new("Part", mcar)
  2969. fcollide4.FormFactor = Enum.FormFactor.Custom
  2970. fcollide4.Elasticity = 0
  2971. fcollide4.TopSurface = Enum.SurfaceType.Smooth
  2972. fcollide4.Size = Vector3.new(1.8, 1.8, 2)
  2973. fcollide4.CFrame = CFrame.new(49.1, 1.706, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  2974. fcollide4.Friction = 0.3
  2975. fcollide4.BottomSurface = Enum.SurfaceType.Smooth
  2976. fcollide4.CanCollide = true
  2977. fcollide4.Transparency = 1
  2978.  
  2979. fcollide5 = Instance.new("Part", mcar)
  2980. fcollide5.FormFactor = Enum.FormFactor.Custom
  2981. fcollide5.Elasticity = 0
  2982. fcollide5.TopSurface = Enum.SurfaceType.Smooth
  2983. fcollide5.Size = Vector3.new(3.4, 1.4, 4.4)
  2984. fcollide5.CFrame = CFrame.new(49.1, 1.706, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  2985. fcollide5.BrickColor = BrickColor.new("Really black")
  2986. fcollide5.Friction = 0.3
  2987. fcollide5.BottomSurface = Enum.SurfaceType.Smooth
  2988. fcollide5.CanCollide = true
  2989. fcollide5.Transparency = 1
  2990.  
  2991. part_145 = Instance.new("Part", frontwheels)
  2992. part_145.FormFactor = Enum.FormFactor.Custom
  2993. part_145.Elasticity = 0
  2994. part_145.TopSurface = Enum.SurfaceType.Smooth
  2995. part_145.Size = Vector3.new(3.4, 1.4, 4.4)
  2996. part_145.CFrame = CFrame.new(58.6, 1.706, -161.21)* CFrame.Angles(0, 0, 1.5707963705063)
  2997. part_145.BrickColor = BrickColor.new("Really black")
  2998. part_145.Friction = 0.3
  2999. part_145.BottomSurface = Enum.SurfaceType.Smooth
  3000. part_145.CanCollide = false
  3001.  
  3002. mesh_87 = Instance.new("CylinderMesh", part_145)
  3003.  
  3004. axle_2 = Instance.new("Part", frontwheels)
  3005. axle_2.FormFactor = Enum.FormFactor.Custom
  3006. axle_2.Elasticity = 0
  3007. axle_2.TopSurface = Enum.SurfaceType.Smooth
  3008. axle_2.Size = Vector3.new(1.8, 11, 0.2)
  3009. axle_2.Name = "Axle"
  3010. axle_2.CFrame = CFrame.new(53.8, 1.706, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  3011. axle_2.Friction = 0.3
  3012. axle_2.BottomSurface = Enum.SurfaceType.Smooth
  3013. axle_2.CanCollide = false
  3014.  
  3015. mesh_88 = Instance.new("CylinderMesh", axle_2)
  3016.  
  3017. part_146 = Instance.new("Part", frontwheels)
  3018. part_146.FormFactor = Enum.FormFactor.Custom
  3019. part_146.Elasticity = 0
  3020. part_146.TopSurface = Enum.SurfaceType.Smooth
  3021. part_146.Size = Vector3.new(1.8, 1.8, 2)
  3022. part_146.CFrame = CFrame.new(58.6, 1.706, -161.21)* CFrame.Angles(0, 0, 1.5707963705063)
  3023. part_146.Friction = 0.3
  3024. part_146.BottomSurface = Enum.SurfaceType.Smooth
  3025. part_146.CanCollide = false
  3026.  
  3027. mesh_89 = Instance.new("CylinderMesh", part_146)
  3028.  
  3029. part_147 = Instance.new("Part", frontwheels)
  3030. part_147.FormFactor = Enum.FormFactor.Custom
  3031. part_147.Elasticity = 0
  3032. part_147.TopSurface = Enum.SurfaceType.Smooth
  3033. part_147.Size = Vector3.new(1.8, 1.8, 2)
  3034. part_147.CFrame = CFrame.new(49.1, 1.706, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  3035. part_147.Friction = 0.3
  3036. part_147.BottomSurface = Enum.SurfaceType.Smooth
  3037. part_147.CanCollide = false
  3038.  
  3039. mesh_90 = Instance.new("CylinderMesh", part_147)
  3040.  
  3041. part_148 = Instance.new("Part", frontwheels)
  3042. part_148.FormFactor = Enum.FormFactor.Custom
  3043. part_148.Elasticity = 0
  3044. part_148.TopSurface = Enum.SurfaceType.Smooth
  3045. part_148.Size = Vector3.new(3.4, 1.4, 4.4)
  3046. part_148.CFrame = CFrame.new(49.1, 1.706, -161.2)* CFrame.Angles(0, 0, 1.5707963705063)
  3047. part_148.BrickColor = BrickColor.new("Really black")
  3048. part_148.Friction = 0.3
  3049. part_148.BottomSurface = Enum.SurfaceType.Smooth
  3050. part_148.CanCollide = false
  3051.  
  3052. mesh_91 = Instance.new("CylinderMesh", part_148)
  3053.  
  3054. part_149 = Instance.new("Part", mcar)
  3055. part_149.FormFactor = Enum.FormFactor.Plate
  3056. part_149.TopSurface = Enum.SurfaceType.Smooth
  3057. part_149.Material = Enum.Material.Concrete
  3058. part_149.Size = Vector3.new(0.914, 1.096, 1.827)
  3059. part_149.CFrame = CFrame.new(49.83, 2.719, -147.121)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3060. part_149.BrickColor = BrickColor.new("Dirt brown")
  3061. part_149.Friction = 0.3
  3062. part_149.BottomSurface = Enum.SurfaceType.Smooth
  3063.  
  3064. mesh_92 = Instance.new("SpecialMesh", part_149)
  3065. mesh_92.MeshType = Enum.MeshType.Wedge
  3066.  
  3067. part_150 = Instance.new("Part", mcar)
  3068. part_150.FormFactor = Enum.FormFactor.Plate
  3069. part_150.TopSurface = Enum.SurfaceType.Smooth
  3070. part_150.Material = Enum.Material.Concrete
  3071. part_150.Size = Vector3.new(1.827, 2.558, 0.914)
  3072. part_150.CFrame = CFrame.new(51.2, 4.911, -147.212)
  3073. part_150.BrickColor = BrickColor.new("Dirt brown")
  3074. part_150.Friction = 0.3
  3075. part_150.BottomSurface = Enum.SurfaceType.Smooth
  3076.  
  3077. mesh_93 = Instance.new("SpecialMesh", part_150)
  3078. mesh_93.MeshType = Enum.MeshType.Wedge
  3079.  
  3080. part_151 = Instance.new("Part", mcar)
  3081. part_151.FormFactor = Enum.FormFactor.Plate
  3082. part_151.TopSurface = Enum.SurfaceType.Smooth
  3083. part_151.Material = Enum.Material.Concrete
  3084. part_151.Size = Vector3.new(1.827, 1.462, 0.914)
  3085. part_151.CFrame = CFrame.new(52.57, 2.902, -148.583)* CFrame.Angles(0, 1.5707963705063, 0)
  3086. part_151.BrickColor = BrickColor.new("Dirt brown")
  3087. part_151.Friction = 0.3
  3088. part_151.BottomSurface = Enum.SurfaceType.Smooth
  3089.  
  3090. part_152 = Instance.new("Part", mcar)
  3091. part_152.FormFactor = Enum.FormFactor.Plate
  3092. part_152.TopSurface = Enum.SurfaceType.Smooth
  3093. part_152.Material = Enum.Material.Concrete
  3094. part_152.Size = Vector3.new(0.914, 1.096, 1.827)
  3095. part_152.CFrame = CFrame.new(52.57, 2.719, -147.121)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3096. part_152.BrickColor = BrickColor.new("Dirt brown")
  3097. part_152.Friction = 0.3
  3098. part_152.BottomSurface = Enum.SurfaceType.Smooth
  3099.  
  3100. mesh_94 = Instance.new("SpecialMesh", part_152)
  3101. mesh_94.MeshType = Enum.MeshType.Wedge
  3102.  
  3103. part_153 = Instance.new("Part", mcar)
  3104. part_153.FormFactor = Enum.FormFactor.Plate
  3105. part_153.TopSurface = Enum.SurfaceType.Smooth
  3106. part_153.Material = Enum.Material.Concrete
  3107. part_153.Size = Vector3.new(1.827, 1.096, 1.827)
  3108. part_153.CFrame = CFrame.new(51.2, 2.719, -147.121)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3109. part_153.BrickColor = BrickColor.new("Dirt brown")
  3110. part_153.Friction = 0.3
  3111. part_153.BottomSurface = Enum.SurfaceType.Smooth
  3112.  
  3113. mesh_95 = Instance.new("SpecialMesh", part_153)
  3114. mesh_95.MeshType = Enum.MeshType.Wedge
  3115.  
  3116. part_154 = Instance.new("Part", mcar)
  3117. part_154.FormFactor = Enum.FormFactor.Plate
  3118. part_154.TopSurface = Enum.SurfaceType.Smooth
  3119. part_154.Material = Enum.Material.Concrete
  3120. part_154.Size = Vector3.new(0.914, 2.558, 0.914)
  3121. part_154.CFrame = CFrame.new(52.57, 4.911, -147.212)
  3122. part_154.BrickColor = BrickColor.new("Dirt brown")
  3123. part_154.Friction = 0.3
  3124. part_154.BottomSurface = Enum.SurfaceType.Smooth
  3125.  
  3126. mesh_96 = Instance.new("SpecialMesh", part_154)
  3127. mesh_96.MeshType = Enum.MeshType.Wedge
  3128.  
  3129. part_155 = Instance.new("Part", mcar)
  3130. part_155.FormFactor = Enum.FormFactor.Plate
  3131. part_155.TopSurface = Enum.SurfaceType.Smooth
  3132. part_155.Material = Enum.Material.Concrete
  3133. part_155.Size = Vector3.new(3.654, 0.365, 2.741)
  3134. part_155.CFrame = CFrame.new(51.2, 5.003, -146.573)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3135. part_155.BrickColor = BrickColor.new("Dirt brown")
  3136. part_155.Friction = 0.3
  3137. part_155.BottomSurface = Enum.SurfaceType.Smooth
  3138.  
  3139. part_156 = Instance.new("Part", mcar)
  3140. part_156.FormFactor = Enum.FormFactor.Plate
  3141. part_156.TopSurface = Enum.SurfaceType.Smooth
  3142. part_156.Material = Enum.Material.Concrete
  3143. part_156.Size = Vector3.new(0.914, 2.558, 0.914)
  3144. part_156.CFrame = CFrame.new(49.83, 4.911, -147.212)
  3145. part_156.BrickColor = BrickColor.new("Dirt brown")
  3146. part_156.Friction = 0.3
  3147. part_156.BottomSurface = Enum.SurfaceType.Smooth
  3148.  
  3149. mesh_97 = Instance.new("SpecialMesh", part_156)
  3150. mesh_97.MeshType = Enum.MeshType.Wedge
  3151.  
  3152. part_157 = Instance.new("Part", mcar)
  3153. part_157.FormFactor = Enum.FormFactor.Plate
  3154. part_157.TopSurface = Enum.SurfaceType.Smooth
  3155. part_157.Material = Enum.Material.Concrete
  3156. part_157.Size = Vector3.new(0.914, 1.462, 0.914)
  3157. part_157.CFrame = CFrame.new(52.57, 2.902, -149.953)
  3158. part_157.BrickColor = BrickColor.new("Dirt brown")
  3159. part_157.Friction = 0.3
  3160. part_157.BottomSurface = Enum.SurfaceType.Smooth
  3161.  
  3162. mesh_98 = Instance.new("SpecialMesh", part_157)
  3163. mesh_98.MeshType = Enum.MeshType.Wedge
  3164.  
  3165. part_158 = Instance.new("Part", mcar)
  3166. part_158.FormFactor = Enum.FormFactor.Plate
  3167. part_158.TopSurface = Enum.SurfaceType.Smooth
  3168. part_158.Size = Vector3.new(2.741, 0.365, 3.654)
  3169. part_158.CFrame = CFrame.new(51.2, 1.988, -149.039)* CFrame.Angles(0, 1.5707963705063, 0)
  3170. part_158.BrickColor = BrickColor.new("Dirt brown")
  3171. part_158.Friction = 0.3
  3172. part_158.BottomSurface = Enum.SurfaceType.Smooth
  3173.  
  3174. part_159 = Instance.new("Part", mcar)
  3175. part_159.FormFactor = Enum.FormFactor.Plate
  3176. part_159.TopSurface = Enum.SurfaceType.Smooth
  3177. part_159.Material = Enum.Material.Concrete
  3178. part_159.Size = Vector3.new(1.827, 0.365, 0.914)
  3179. part_159.CFrame = CFrame.new(51.2, 2.353, -149.953)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3180. part_159.BrickColor = BrickColor.new("Dirt brown")
  3181. part_159.Friction = 0.3
  3182. part_159.BottomSurface = Enum.SurfaceType.Smooth
  3183.  
  3184. part_160 = Instance.new("Part", mcar)
  3185. part_160.FormFactor = Enum.FormFactor.Plate
  3186. part_160.TopSurface = Enum.SurfaceType.Smooth
  3187. part_160.Material = Enum.Material.Concrete
  3188. part_160.Size = Vector3.new(1.827, 1.462, 0.914)
  3189. part_160.CFrame = CFrame.new(49.83, 2.902, -148.583)* CFrame.Angles(0, 1.5707963705063, 0)
  3190. part_160.BrickColor = BrickColor.new("Dirt brown")
  3191. part_160.Friction = 0.3
  3192. part_160.BottomSurface = Enum.SurfaceType.Smooth
  3193.  
  3194. part_161 = Instance.new("Part", mcar)
  3195. part_161.FormFactor = Enum.FormFactor.Plate
  3196. part_161.TopSurface = Enum.SurfaceType.Smooth
  3197. part_161.Material = Enum.Material.Concrete
  3198. part_161.Size = Vector3.new(0.914, 1.462, 0.914)
  3199. part_161.CFrame = CFrame.new(49.83, 2.902, -149.953)
  3200. part_161.BrickColor = BrickColor.new("Dirt brown")
  3201. part_161.Friction = 0.3
  3202. part_161.BottomSurface = Enum.SurfaceType.Smooth
  3203.  
  3204. mesh_99 = Instance.new("SpecialMesh", part_161)
  3205. mesh_99.MeshType = Enum.MeshType.Wedge
  3206.  
  3207. seat_2 = Instance.new("Seat", mcar)
  3208. seat_2.Friction = 0.3
  3209. seat_2.LeftSurface = Enum.SurfaceType.Weld
  3210. seat_2.TopSurface = Enum.SurfaceType.Smooth
  3211. seat_2.FormFactor = Enum.FormFactor.Plate
  3212. seat_2.BackSurface = Enum.SurfaceType.Weld
  3213. seat_2.BrickColor = BrickColor.new("Dirt brown")
  3214. seat_2.Material = Enum.Material.Concrete
  3215. seat_2.Size = Vector3.new(1.827, 0.365, 1.827)
  3216. seat_2.RightSurface = Enum.SurfaceType.Weld
  3217. seat_2.CFrame = CFrame.new(51.2, 2.353, -148.583)
  3218. seat_2.FrontSurface = Enum.SurfaceType.Weld
  3219.  
  3220. part_162 = Instance.new("Part", mcar)
  3221. part_162.FormFactor = Enum.FormFactor.Plate
  3222. part_162.TopSurface = Enum.SurfaceType.Smooth
  3223. part_162.Material = Enum.Material.Concrete
  3224. part_162.Size = Vector3.new(1.827, 2.558, 0.914)
  3225. part_162.CFrame = CFrame.new(55.9, 4.911, -152.512)
  3226. part_162.BrickColor = BrickColor.new("Dirt brown")
  3227. part_162.Friction = 0.3
  3228. part_162.BottomSurface = Enum.SurfaceType.Smooth
  3229.  
  3230. mesh_100 = Instance.new("SpecialMesh", part_162)
  3231. mesh_100.MeshType = Enum.MeshType.Wedge
  3232.  
  3233. part_163 = Instance.new("Part", mcar)
  3234. part_163.FormFactor = Enum.FormFactor.Plate
  3235. part_163.TopSurface = Enum.SurfaceType.Smooth
  3236. part_163.Material = Enum.Material.Concrete
  3237. part_163.Size = Vector3.new(3.654, 0.365, 2.741)
  3238. part_163.CFrame = CFrame.new(55.9, 5.003, -151.873)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3239. part_163.BrickColor = BrickColor.new("Dirt brown")
  3240. part_163.Friction = 0.3
  3241. part_163.BottomSurface = Enum.SurfaceType.Smooth
  3242.  
  3243. seat_3 = Instance.new("Seat", mcar)
  3244. seat_3.Friction = 0.3
  3245. seat_3.LeftSurface = Enum.SurfaceType.Weld
  3246. seat_3.TopSurface = Enum.SurfaceType.Smooth
  3247. seat_3.FormFactor = Enum.FormFactor.Plate
  3248. seat_3.BackSurface = Enum.SurfaceType.Weld
  3249. seat_3.BrickColor = BrickColor.new("Dirt brown")
  3250. seat_3.Material = Enum.Material.Concrete
  3251. seat_3.Size = Vector3.new(1.827, 0.365, 1.827)
  3252. seat_3.RightSurface = Enum.SurfaceType.Weld
  3253. seat_3.CFrame = CFrame.new(55.9, 2.354, -153.883)
  3254. seat_3.FrontSurface = Enum.SurfaceType.Weld
  3255.  
  3256. part_164 = Instance.new("Part", mcar)
  3257. part_164.FormFactor = Enum.FormFactor.Plate
  3258. part_164.TopSurface = Enum.SurfaceType.Smooth
  3259. part_164.Material = Enum.Material.Concrete
  3260. part_164.Size = Vector3.new(0.914, 1.096, 1.827)
  3261. part_164.CFrame = CFrame.new(54.53, 2.719, -152.421)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3262. part_164.BrickColor = BrickColor.new("Dirt brown")
  3263. part_164.Friction = 0.3
  3264. part_164.BottomSurface = Enum.SurfaceType.Smooth
  3265.  
  3266. mesh_101 = Instance.new("SpecialMesh", part_164)
  3267. mesh_101.MeshType = Enum.MeshType.Wedge
  3268.  
  3269. part_165 = Instance.new("Part", mcar)
  3270. part_165.FormFactor = Enum.FormFactor.Plate
  3271. part_165.TopSurface = Enum.SurfaceType.Smooth
  3272. part_165.Material = Enum.Material.Concrete
  3273. part_165.Size = Vector3.new(1.827, 1.096, 1.827)
  3274. part_165.CFrame = CFrame.new(55.9, 2.719, -152.421)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3275. part_165.BrickColor = BrickColor.new("Dirt brown")
  3276. part_165.Friction = 0.3
  3277. part_165.BottomSurface = Enum.SurfaceType.Smooth
  3278.  
  3279. mesh_102 = Instance.new("SpecialMesh", part_165)
  3280. mesh_102.MeshType = Enum.MeshType.Wedge
  3281.  
  3282. part_166 = Instance.new("Part", mcar)
  3283. part_166.FormFactor = Enum.FormFactor.Plate
  3284. part_166.TopSurface = Enum.SurfaceType.Smooth
  3285. part_166.Material = Enum.Material.Concrete
  3286. part_166.Size = Vector3.new(1.827, 1.462, 0.914)
  3287. part_166.CFrame = CFrame.new(54.53, 2.902, -153.883)* CFrame.Angles(0, 1.5707963705063, 0)
  3288. part_166.BrickColor = BrickColor.new("Dirt brown")
  3289. part_166.Friction = 0.3
  3290. part_166.BottomSurface = Enum.SurfaceType.Smooth
  3291.  
  3292. part_167 = Instance.new("Part", mcar)
  3293. part_167.FormFactor = Enum.FormFactor.Plate
  3294. part_167.TopSurface = Enum.SurfaceType.Smooth
  3295. part_167.Material = Enum.Material.Concrete
  3296. part_167.Size = Vector3.new(0.914, 1.096, 1.827)
  3297. part_167.CFrame = CFrame.new(57.27, 2.719, -152.421)* CFrame.Angles(-1.5707963705063, 0, -3.1415927410126)
  3298. part_167.BrickColor = BrickColor.new("Dirt brown")
  3299. part_167.Friction = 0.3
  3300. part_167.BottomSurface = Enum.SurfaceType.Smooth
  3301.  
  3302. mesh_103 = Instance.new("SpecialMesh", part_167)
  3303. mesh_103.MeshType = Enum.MeshType.Wedge
  3304.  
  3305. part_168 = Instance.new("Part", mcar)
  3306. part_168.FormFactor = Enum.FormFactor.Plate
  3307. part_168.TopSurface = Enum.SurfaceType.Smooth
  3308. part_168.Material = Enum.Material.Concrete
  3309. part_168.Size = Vector3.new(0.914, 1.462, 0.914)
  3310. part_168.CFrame = CFrame.new(57.27, 2.902, -155.253)
  3311. part_168.BrickColor = BrickColor.new("Dirt brown")
  3312. part_168.Friction = 0.3
  3313. part_168.BottomSurface = Enum.SurfaceType.Smooth
  3314.  
  3315. mesh_104 = Instance.new("SpecialMesh", part_168)
  3316. mesh_104.MeshType = Enum.MeshType.Wedge
  3317.  
  3318. part_169 = Instance.new("Part", mcar)
  3319. part_169.FormFactor = Enum.FormFactor.Plate
  3320. part_169.TopSurface = Enum.SurfaceType.Smooth
  3321. part_169.Size = Vector3.new(2.741, 0.365, 3.654)
  3322. part_169.CFrame = CFrame.new(55.9, 1.988, -154.339)* CFrame.Angles(0, 1.5707963705063, 0)
  3323. part_169.BrickColor = BrickColor.new("Dirt brown")
  3324. part_169.Friction = 0.3
  3325. part_169.BottomSurface = Enum.SurfaceType.Smooth
  3326.  
  3327. part_170 = Instance.new("Part", mcar)
  3328. part_170.FormFactor = Enum.FormFactor.Plate
  3329. part_170.TopSurface = Enum.SurfaceType.Smooth
  3330. part_170.Material = Enum.Material.Concrete
  3331. part_170.Size = Vector3.new(0.914, 1.462, 0.914)
  3332. part_170.CFrame = CFrame.new(54.53, 2.902, -155.253)
  3333. part_170.BrickColor = BrickColor.new("Dirt brown")
  3334. part_170.Friction = 0.3
  3335. part_170.BottomSurface = Enum.SurfaceType.Smooth
  3336.  
  3337. mesh_105 = Instance.new("SpecialMesh", part_170)
  3338. mesh_105.MeshType = Enum.MeshType.Wedge
  3339.  
  3340. part_171 = Instance.new("Part", mcar)
  3341. part_171.FormFactor = Enum.FormFactor.Plate
  3342. part_171.TopSurface = Enum.SurfaceType.Smooth
  3343. part_171.Material = Enum.Material.Concrete
  3344. part_171.Size = Vector3.new(1.827, 1.462, 0.914)
  3345. part_171.CFrame = CFrame.new(57.27, 2.902, -153.883)* CFrame.Angles(0, 1.5707963705063, 0)
  3346. part_171.BrickColor = BrickColor.new("Dirt brown")
  3347. part_171.Friction = 0.3
  3348. part_171.BottomSurface = Enum.SurfaceType.Smooth
  3349.  
  3350. part_172 = Instance.new("Part", mcar)
  3351. part_172.FormFactor = Enum.FormFactor.Plate
  3352. part_172.TopSurface = Enum.SurfaceType.Smooth
  3353. part_172.Material = Enum.Material.Concrete
  3354. part_172.Size = Vector3.new(0.914, 2.558, 0.914)
  3355. part_172.CFrame = CFrame.new(57.27, 4.911, -152.512)
  3356. part_172.BrickColor = BrickColor.new("Dirt brown")
  3357. part_172.Friction = 0.3
  3358. part_172.BottomSurface = Enum.SurfaceType.Smooth
  3359.  
  3360. mesh_106 = Instance.new("SpecialMesh", part_172)
  3361. mesh_106.MeshType = Enum.MeshType.Wedge
  3362.  
  3363. weight = Instance.new("Part", mcar)
  3364. weight.FormFactor = Enum.FormFactor.Plate
  3365. weight.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3366. weight.Transparency = 1
  3367. weight.TopSurface = Enum.SurfaceType.Smooth
  3368. weight.Material = Enum.Material.Metal
  3369. weight.Size = Vector3.new(11.076, 0.615, 30)
  3370. weight.Name = "weight"
  3371. weight.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3372. weight.CFrame = CFrame.new(53.805, 0.295, -150.45)* CFrame.Angles(-3.1415011882782, 8.0992285802495e-006, -3.1415579319)
  3373. weight.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3374. weight.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3375. weight.BrickColor = BrickColor.new("Institutional white")
  3376. weight.Friction = 0.3
  3377. weight.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3378.  
  3379.  
  3380.  
  3381. part_173 = Instance.new("Part", mcar)
  3382. part_173.FormFactor = Enum.FormFactor.Plate
  3383. part_173.TopSurface = Enum.SurfaceType.Smooth
  3384. part_173.Material = Enum.Material.Concrete
  3385. part_173.Size = Vector3.new(0.914, 2.558, 0.914)
  3386. part_173.CFrame = CFrame.new(54.53, 4.911, -152.512)
  3387. part_173.BrickColor = BrickColor.new("Dirt brown")
  3388. part_173.Friction = 0.3
  3389. part_173.BottomSurface = Enum.SurfaceType.Smooth
  3390.  
  3391. mesh_107 = Instance.new("SpecialMesh", part_173)
  3392. mesh_107.MeshType = Enum.MeshType.Wedge
  3393.  
  3394. part_174 = Instance.new("Part", mcar)
  3395. part_174.FormFactor = Enum.FormFactor.Plate
  3396. part_174.TopSurface = Enum.SurfaceType.Smooth
  3397. part_174.Material = Enum.Material.Concrete
  3398. part_174.Size = Vector3.new(1.827, 0.365, 0.914)
  3399. part_174.CFrame = CFrame.new(55.9, 2.354, -155.253)* CFrame.Angles(-3.1415927410126, 0, -3.1415927410126)
  3400. part_174.BrickColor = BrickColor.new("Dirt brown")
  3401. part_174.Friction = 0.3
  3402. part_174.BottomSurface = Enum.SurfaceType.Smooth
  3403.  
  3404. backaxlepos = Instance.new("Part", mcar)
  3405. backaxlepos.FormFactor = Enum.FormFactor.Custom
  3406. backaxlepos.CanCollide = false
  3407. backaxlepos.Elasticity = 0
  3408. backaxlepos.Transparency = 1
  3409. backaxlepos.TopSurface = Enum.SurfaceType.Smooth
  3410. backaxlepos.Size = Vector3.new(1.8, 11, 0.2)
  3411. backaxlepos.Name = "backaxlepos"
  3412. backaxlepos.CFrame = CFrame.new(53.8, 1.7, -141.2)* CFrame.Angles(0, 0, 1.5707963705063)
  3413. backaxlepos.Friction = 0.3
  3414. backaxlepos.BottomSurface = Enum.SurfaceType.Smooth
  3415.  
  3416. mesh_108 = Instance.new("CylinderMesh", backaxlepos)
  3417.  
  3418. local engine = mcar.engine
  3419. local frontwheels = mcar.frontwheels
  3420. local backwheels = mcar.backwheels
  3421. local Door1 = mcar.Door
  3422. local Door2 = mcar.Door2
  3423.  
  3424. Door1:BreakJoints()
  3425. Door2:BreakJoints()
  3426. backwheels:BreakJoints()
  3427. frontwheels:BreakJoints()
  3428. mcar:BreakJoints()
  3429.  
  3430. local prev
  3431. local parts = mcar:GetChildren()
  3432.  
  3433. for i = 1,#parts do
  3434. 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
  3435. if (prev ~= nil)then
  3436. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3437. local weld = Instance.new("Weld")
  3438. weld.Part0 = prev
  3439. weld.Part1 = parts[i]
  3440. weld.C0 = prev.CFrame:inverse()
  3441. weld.C1 = parts[i].CFrame:inverse()
  3442. weld.Parent = prev
  3443. end
  3444. prev = parts[i]
  3445. end
  3446. end
  3447. mcar:MakeJoints()
  3448. mcar.Parent = char
  3449. mcar.weight.CFrame = char.Torso.CFrame*CFrame.new(10,24,5)
  3450.  
  3451. local prev
  3452. local parts = backwheels:GetChildren()
  3453.  
  3454. for i = 1,#parts do
  3455. 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
  3456. if (prev ~= nil)then
  3457. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3458. local weld = Instance.new("Weld")
  3459. weld.Part0 = prev
  3460. weld.Part1 = parts[i]
  3461. weld.C0 = prev.CFrame:inverse()
  3462. weld.C1 = parts[i].CFrame:inverse()
  3463. weld.Parent = prev
  3464. parts[i].CustomPhysicalProperties = PhysicalProperties.new(400,4,0.1)
  3465. end
  3466. prev = parts[i]
  3467. end
  3468. end
  3469. backwheels:MakeJoints()
  3470.  
  3471. local prev
  3472. local parts = frontwheels:GetChildren()
  3473.  
  3474. for i = 1,#parts do
  3475. 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
  3476. if (prev ~= nil)then
  3477. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3478. local weld = Instance.new("Weld")
  3479. weld.Part0 = prev
  3480. weld.Part1 = parts[i]
  3481. weld.C0 = prev.CFrame:inverse()
  3482. weld.C1 = parts[i].CFrame:inverse()
  3483. weld.Parent = prev
  3484. parts[i].CustomPhysicalProperties = PhysicalProperties.new(400,4,0.1)
  3485. end
  3486. prev = parts[i]
  3487. end
  3488. end
  3489. frontwheels:MakeJoints()
  3490.  
  3491. local prev
  3492. local parts = Door1:GetChildren()
  3493.  
  3494. for i = 1,#parts do
  3495. 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
  3496. if (prev ~= nil)then
  3497. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3498. local weld = Instance.new("Weld")
  3499. weld.Part0 = prev
  3500. weld.Part1 = parts[i]
  3501. weld.C0 = prev.CFrame:inverse()
  3502. weld.C1 = parts[i].CFrame:inverse()
  3503. weld.Parent = prev
  3504. end
  3505. prev = parts[i]
  3506. end
  3507. end
  3508. Door1:MakeJoints()
  3509.  
  3510. local prev
  3511. local parts = Door2:GetChildren()
  3512.  
  3513. for i = 1,#parts do
  3514. 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
  3515. if (prev ~= nil)then
  3516. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  3517. local weld = Instance.new("Weld")
  3518. weld.Part0 = prev
  3519. weld.Part1 = parts[i]
  3520. weld.C0 = prev.CFrame:inverse()
  3521. weld.C1 = parts[i].CFrame:inverse()
  3522. weld.Parent = prev
  3523. end
  3524. prev = parts[i]
  3525. end
  3526. end
  3527. Door2:MakeJoints()
  3528.  
  3529. weld(frontwheels.Axle, mcar.frontaxlepos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3530. frontwheels.Axle.Weld.Name = "Weld2"
  3531.  
  3532. weld(backwheels.Axle, mcar.backaxlepos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3533. backwheels.Axle.Weld.Name = "Weld2"
  3534.  
  3535. weld(Door1.doormain, mcar.doorpos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3536. Door1.doormain.Weld.Name = "Weld2"
  3537. weld(Door2.doormain, mcar.door2pos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  3538. Door2.doormain.Weld.Name = "Weld2"
  3539.  
  3540. local enginestart=Instance.new("Sound")
  3541. enginestart.SoundId="http://www.roblox.com/asset/?id=140685060"
  3542. enginestart.PlayOnRemove=false
  3543. enginestart.Volume=0.75
  3544. enginestart.Looped=false
  3545. enginestart.Pitch = 1
  3546. enginestart.Parent=engine
  3547.  
  3548. local engineidle=Instance.new("Sound")
  3549. engineidle.SoundId="http://www.roblox.com/asset/?id=152247447"
  3550. engineidle.PlayOnRemove=false
  3551. engineidle.Volume=0.75
  3552. engineidle.Looped=false
  3553. engineidle.Pitch = 1
  3554. engineidle.Parent=engine
  3555.  
  3556. local enginestop=Instance.new("Sound")
  3557. enginestop.SoundId="http://www.roblox.com/asset/?id=144126324"
  3558. enginestop.PlayOnRemove=false
  3559. enginestop.Volume=0.75
  3560. enginestop.Looped=false
  3561. enginestop.Pitch = 1
  3562. enginestop.Parent=engine
  3563.  
  3564. local enginemove=Instance.new("Sound")
  3565. enginemove.SoundId="http://www.roblox.com/asset/?id=269596439"
  3566. enginemove.PlayOnRemove=false
  3567. enginemove.Volume=0.75
  3568. enginemove.Looped=true
  3569. enginemove.Pitch = 1
  3570. enginemove.Parent=engine
  3571.  
  3572. local brake=Instance.new("Sound")
  3573. brake.SoundId="http://www.roblox.com/asset/?id=211288608"
  3574. brake.PlayOnRemove=false
  3575. brake.Volume=0.75
  3576. brake.Looped=true
  3577. brake.Pitch = 1
  3578. brake.Parent=engine
  3579.  
  3580. local horn=Instance.new("Sound")
  3581. horn.SoundId="http://www.roblox.com/asset/?id=200530606"
  3582. horn.PlayOnRemove=false
  3583. horn.Volume=0.9
  3584. horn.Looped=true
  3585. horn.Pitch = 1
  3586. horn.Parent=engine
  3587.  
  3588. mouse.KeyDown:connect(function(key)
  3589. if key == "y" and engineon == false then
  3590. enginestart:Play()
  3591. wait(.5)
  3592. engineon = true
  3593. engineidle:Play()
  3594. end
  3595. end)
  3596. mouse.KeyDown:connect(function(key)
  3597. if key == "u" and engineon == true then
  3598. enginestop:Play()
  3599. wait(.5)
  3600. engineon = false
  3601. enginestart:Stop()
  3602. engineidle:Stop()
  3603. end
  3604. end)
  3605.  
  3606. local bav = Instance.new("BodyAngularVelocity",engine)
  3607. bav.MaxTorque = Vector3.new(0,0,0)
  3608. bav.P = 100
  3609. bav.AngularVelocity = Vector3.new(0,0,0)
  3610. local bv = Instance.new("BodyVelocity",engine)
  3611. bv.MaxForce = Vector3.new(0,0,0)
  3612. bv.P = 1250
  3613. bv.Velocity = Vector3.new(0.16,0,0.16)
  3614.  
  3615. mouse.KeyDown:connect(function(key)
  3616. if key == "w" and engineon == true and spressed == false then
  3617. wpressed = true
  3618. enginemove:Play()
  3619. bv.MaxForce = Vector3.new(forcelevel,0,forcelevel)
  3620. while wpressed == true do wait(.08)
  3621. accel = accel + 2
  3622. wheelaccel = wheelaccel + .7
  3623. if accel >=accellimit then accel = accellimit end
  3624. bv.Velocity = (mcar.mainseat.CFrame.lookVector * accel)
  3625. frontwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),-wheelaccel,0)
  3626. backwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),-wheelaccel,0)
  3627. end
  3628. end
  3629. end)
  3630.  
  3631. mouse.KeyUp:connect(function(key)
  3632. if key == "w" and engineon == true then
  3633. wpressed = false
  3634. enginemove:Stop()
  3635. while wpressed == false and accel >0 and bpressed == false do wait()
  3636. accel = accel - 2.4
  3637. if accel <0 then accel = 0 end
  3638. wheelaccel = wheelaccel + .7
  3639. bv.Velocity = (mcar.mainseat.CFrame.lookVector * accel)
  3640. frontwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),-wheelaccel,0)
  3641. backwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),-wheelaccel,0)
  3642. end
  3643. end
  3644. end)
  3645.  
  3646.  
  3647.  
  3648.  
  3649.  
  3650. mouse.KeyDown:connect(function(key)
  3651. if key == "s" and engineon == true and wpressed == false then
  3652. spressed = true
  3653. mcar.backlight1.rearlight.Enabled = true
  3654. mcar.backlight2.rearlight.Enabled = true
  3655. bv.MaxForce = Vector3.new(forcelevel,0,forcelevel)
  3656. while spressed == true do wait(.06)
  3657. accel = accel - 2
  3658. wheelaccel = wheelaccel - .7
  3659. if accel <=-accellimit then accel = -accellimit end
  3660. bv.Velocity = (mcar.mainseat.CFrame.lookVector * accel)
  3661. frontwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  3662. backwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  3663. end
  3664. end
  3665. end)
  3666.  
  3667. mouse.KeyUp:connect(function(key)
  3668. if key == "s" and engineon == true then
  3669. spressed = false
  3670. mcar.backlight1.rearlight.Enabled = false
  3671. mcar.backlight2.rearlight.Enabled = false
  3672. while spressed == false and accel <0 do wait()
  3673. accel = accel + 2.4
  3674. if accel >0 then accel = 0 end
  3675. wheelaccel = wheelaccel - .7
  3676. bv.Velocity = (mcar.mainseat.CFrame.lookVector * accel)
  3677. frontwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  3678. backwheels.Axle.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  3679. end
  3680. end
  3681. end)
  3682.  
  3683.  
  3684.  
  3685. mouse.KeyDown:connect(function(key)
  3686. if key == "a" and engineon == true then
  3687. apressed = true
  3688. angle = .8
  3689. bav.AngularVelocity = Vector3.new(0,angle,0)
  3690. bav.MaxTorque = Vector3.new(0,angletorque,0)
  3691. end
  3692. end)
  3693.  
  3694. mouse.KeyUp:connect(function(key)
  3695. if key == "a" and engineon == true then
  3696. angle = 0
  3697. apressed = false
  3698. apressed2 = false
  3699. bav.MaxTorque = Vector3.new(0,0,0)
  3700. end
  3701. end)
  3702.  
  3703. mouse.KeyDown:connect(function(key)
  3704. if key == "d" and engineon == true then
  3705. dpressed = true
  3706. angle = -.8
  3707. bav.AngularVelocity = Vector3.new(0,angle,0)
  3708. bav.MaxTorque = Vector3.new(0,-angletorque,0)
  3709. end
  3710. end)
  3711.  
  3712. mouse.KeyUp:connect(function(key)
  3713. if key == "d" and engineon == true then
  3714. angle = 0
  3715. dpressed = false
  3716. dpressed2 = false
  3717. bav.MaxTorque = Vector3.new(0,0,0)
  3718. end
  3719. end)
  3720.  
  3721. mouse.KeyDown:connect(function(key)
  3722. if key == "p" then
  3723. ppressed = ppressed + 1
  3724. if ppressed == 1 then
  3725. Door1.doormain.Weld.C0 = CFrame.new(-1.5,0,.6)*CFrame.Angles(math.rad(0),.8,0)
  3726. Door2.doormain.Weld.C0 = CFrame.new(1.5,0,.6)*CFrame.Angles(math.rad(0),-.8,0)
  3727. end
  3728. if ppressed == 2 then
  3729. ppressed = 0
  3730. Door1.doormain.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)
  3731. Door2.doormain.Weld.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0)
  3732. end
  3733. end
  3734. end)
  3735.  
  3736. mouse.KeyDown:connect(function(key)
  3737. if key == "z" then
  3738. print("debug key z pressed, angletorque increased")
  3739. angletorque = 7850000
  3740. end
  3741. end)
  3742.  
  3743. mouse.KeyDown:connect(function(key)
  3744. if key == "h" and engineon == true then
  3745. horn:Play()
  3746. end
  3747. end)
  3748.  
  3749. mouse.KeyUp:connect(function(key)
  3750. if key == "h" and engineon == true then
  3751. horn:Stop()
  3752. end
  3753. end)
  3754.  
  3755.  
  3756.  
  3757. local skidmark = Instance.new("Part")
  3758. skidmark.FormFactor = Enum.FormFactor.Custom
  3759. skidmark.CanCollide = false
  3760. skidmark.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  3761. skidmark.Transparency = 1
  3762. skidmark.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  3763. skidmark.Anchored = true
  3764. skidmark.Size = Vector3.new(3, 0.2, 4)
  3765. skidmark.Name = "skidmark"
  3766. skidmark.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  3767. skidmark.CFrame = CFrame.new(6, 0.1, 1.5)* CFrame.Angles(-0, -1.5707963705063, 0)
  3768. skidmark.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  3769. skidmark.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  3770. skidmark.Friction = 0.3
  3771. skidmark.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  3772.  
  3773. local sg = Instance.new("SurfaceGui", skidmark)
  3774. sg.Face = Enum.NormalId.Top
  3775. sg.CanvasSize = Vector2.new(400, 100)
  3776.  
  3777. local skidimage = Instance.new("ImageLabel", sg)
  3778. skidimage.Image = "http://www.roblox.com/asset/?id=129609485"
  3779. skidimage.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3780. skidimage.Rotation = 0
  3781. skidimage.BackgroundTransparency = 1
  3782. skidimage.Size = UDim2.new(0, 100, 0, 100)
  3783. skidimage.BackgroundColor3 = Color3.new(1, 1, 1)
  3784.  
  3785.  
  3786. mouse.KeyDown:connect(function(key)
  3787. if key == "b" and engineon == true then
  3788. bpressed = true
  3789. brake:Play()
  3790. while bpressed == true and accel >=1 do wait(.04)
  3791. accellimit = accellimit - 5
  3792.  
  3793. if accellimit <=1 then brake:Stop() end
  3794. end
  3795. end
  3796. end)
  3797. mouse.KeyUp:connect(function(key)
  3798. if key == "b" and engineon == true then
  3799. bpressed = false
  3800. brake:Stop()
  3801. accellimit = gearspeed
  3802. end
  3803. end)
  3804.  
  3805. mouse.KeyDown:connect(function(key)
  3806. if key == "l" then
  3807. lpressed = lpressed + 1
  3808. if lpressed == 1 then
  3809. mcar.frontlight3.regularlight.Enabled = true
  3810. mcar.frontlight4.regularlight.Enabled = true
  3811. end
  3812. if lpressed == 2 then
  3813. lpressed = 0
  3814. mcar.frontlight3.regularlight.Enabled = false
  3815. mcar.frontlight4.regularlight.Enabled = false
  3816. end
  3817. end
  3818. end)
  3819. mouse.KeyDown:connect(function(key)
  3820. if key == "k" then
  3821. kpressed = kpressed + 1
  3822. if kpressed == 1 then
  3823. mcar.frontlight1.headlight.Enabled = true
  3824. mcar.frontlight2.headlight.Enabled = true
  3825. end
  3826. if kpressed == 2 then
  3827. kpressed = 0
  3828. mcar.frontlight1.headlight.Enabled = false
  3829. mcar.frontlight2.headlight.Enabled = false
  3830. end
  3831. end
  3832. end)
  3833.  
  3834. mcar.frontbumper.Touched:connect(function(h)
  3835. if Vector3.new(mcar.mainseat.Velocity.x,0,mcar.mainseat.Velocity.z).magnitude > 6 then
  3836. if h.Parent:FindFirstChild("Humanoid") then
  3837. accellimit = 0
  3838. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  3839. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  3840. local dmg = (math.random(15,30))
  3841. h.Parent.Humanoid:TakeDamage(dmg)
  3842. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mcar.mainsear.CFrame.lookVector*15 end
  3843. h.Parent.Humanoid.Sit = true
  3844. accellimit = 100
  3845. end
  3846. end
  3847. end)
  3848. mcar.rearbumper.Touched:connect(function(h)
  3849. if Vector3.new(mcar.mainseat.Velocity.x,0,mcar.mainseat.Velocity.z).magnitude > 6 then
  3850. if h.Parent:FindFirstChild("Humanoid") then
  3851. accellimit = 0
  3852. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  3853. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  3854. local dmg = (math.random(15,30))
  3855. h.Parent.Humanoid:TakeDamage(dmg)
  3856. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mcar.mainsear.CFrame.lookVector*-15 end
  3857. h.Parent.Humanoid.Sit = true
  3858. accellimit = 100
  3859. end
  3860. end
  3861. end)
  3862.  
  3863. --Radio--
  3864. local radiogui = Instance.new("ScreenGui", player.PlayerGui)
  3865. radiogui.Name = "RadioGui"
  3866.  
  3867. local frame = Instance.new("Frame", radiogui)
  3868. frame.Size = UDim2.new(0.3, 0, 0.05, 0)
  3869. frame.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3870. frame.Style = Enum.FrameStyle.RobloxRound
  3871. frame.Position = UDim2.new(0.2, 0, 0.3, 0)
  3872. frame.BorderSizePixel = 0
  3873. frame.BackgroundColor3 = Color3.new(1, 1, 1)
  3874. frame.Visible = true
  3875. local frame2 = Instance.new("Frame", radiogui)
  3876. frame2.Size = UDim2.new(0.3, 0, 0.05, 0)
  3877. frame2.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3878. frame2.Style = Enum.FrameStyle.RobloxRound
  3879. frame2.Position = UDim2.new(0.2, 0, 0.4, 0)
  3880. frame2.BorderSizePixel = 0
  3881. frame2.BackgroundColor3 = Color3.new(1, 1, 1)
  3882. frame2.Visible = true
  3883.  
  3884. local geartext = Instance.new("TextLabel", frame2)
  3885. geartext.TextWrapped = true
  3886. geartext.BorderSizePixel = 0
  3887. geartext.BackgroundColor3 = Color3.new(1, 1, 1)
  3888. geartext.BackgroundTransparency = 1
  3889. geartext.Size = UDim2.new(0, 190, 0, 15)
  3890. geartext.TextScaled = true
  3891. geartext.TextColor3 = Color3.new(0.796079, 0, 0)
  3892. geartext.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3893. geartext.Text = "Gear:"
  3894. geartext.Position = UDim2.new(-0.01, 0, -0.15, 0)
  3895. geartext.Font = Enum.Font.Legacy
  3896. geartext.Name = "geartext"
  3897. geartext.FontSize = Enum.FontSize.Size14
  3898.  
  3899. local songname = Instance.new("TextLabel", frame)
  3900. songname.TextWrapped = true
  3901. songname.BorderSizePixel = 0
  3902. songname.BackgroundColor3 = Color3.new(1, 1, 1)
  3903. songname.BackgroundTransparency = 1
  3904. songname.Size = UDim2.new(0, 190, 0, 15)
  3905. songname.TextScaled = true
  3906. songname.TextColor3 = Color3.new(0.796079, 0, 0)
  3907. songname.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  3908. songname.Text = "Music-"
  3909. songname.Position = UDim2.new(-0.01, 0, -0.15, 0)
  3910. songname.Font = Enum.Font.Legacy
  3911. songname.Name = "SongName"
  3912. songname.FontSize = Enum.FontSize.Size14
  3913.  
  3914. local r1=Instance.new("Sound")
  3915. r1.SoundId="http://www.roblox.com/asset/?id=131128881" --check yo self
  3916. r1.PlayOnRemove=false
  3917. r1.Volume=5.5
  3918. r1.Looped=true
  3919. r1.Pitch = 1
  3920. r1.Parent=mcar.engine
  3921. local r2=Instance.new("Sound")
  3922. r2.SoundId="http://www.roblox.com/asset/?id=263990731" --bout the city
  3923. r2.PlayOnRemove=false
  3924. r2.Volume=5.5
  3925. r2.Looped=true
  3926. r2.Pitch = 1
  3927. r2.Parent=mcar.engine
  3928. local r3=Instance.new("Sound")
  3929. r3.SoundId="http://www.roblox.com/asset/?id=166628530" --California Dreamin
  3930. r3.PlayOnRemove=false
  3931. r3.Volume=0.85
  3932. r3.Looped=true
  3933. r3.Pitch = 1
  3934. r3.Parent=mcar.engine
  3935. local r4=Instance.new("Sound")
  3936. r4.SoundId="http://www.roblox.com/asset/?id=328121442" --Fugees killing me softly
  3937. r4.PlayOnRemove=false
  3938. r4.Volume=5.5
  3939. r4.Looped=true
  3940. r4.Pitch = 1
  3941. r4.Parent=mcar.engine
  3942. local r5=Instance.new("Sound")
  3943. r5.SoundId="http://www.roblox.com/asset/?id=245917262" --Light My Fire
  3944. r5.PlayOnRemove=false
  3945. r5.Volume=0.85
  3946. r5.Looped=true
  3947. r5.Pitch = 1
  3948. r5.Parent=mcar.engine
  3949. local r6=Instance.new("Sound")
  3950. r6.SoundId="http://www.roblox.com/asset/?id=163596874" --Night Fever (YEE!)
  3951. r6.PlayOnRemove=false
  3952. r6.Volume=0.85
  3953. r6.Looped=true
  3954. r6.Pitch = 1
  3955. r6.Parent=mcar.engine
  3956. local static=Instance.new("Sound")
  3957. static.SoundId="http://www.roblox.com/asset/?id=251407575" --static
  3958. static.PlayOnRemove=false
  3959. static.Volume=0.61
  3960. static.Looped=true
  3961. static.Pitch = 1
  3962. static.Parent=mcar.engine
  3963. --Radio End--
  3964.  
  3965. mouse.KeyDown:connect(function(key)
  3966. if key == "g" then
  3967. gpressed = gpressed + 1
  3968. if gpressed == 1 then
  3969. geartext.Text = "Gear: 1"
  3970. accellimit = 20
  3971. gearspeed = 20
  3972. end
  3973. if gpressed == 2 then
  3974. geartext.Text = "Gear: 2"
  3975. accellimit = 40
  3976. gearspeed = 40
  3977. end
  3978. if gpressed == 3 then
  3979. geartext.Text = "Gear: 3"
  3980. accellimit = 60
  3981. gearspeed = 60
  3982. end
  3983. if gpressed == 4 then
  3984. geartext.Text = "Gear: 4"
  3985. accellimit = 200
  3986. gearspeed = 200
  3987. end
  3988. if gpressed == 5 then
  3989. gpressed = 0
  3990. geartext.Text = "Gear: 5"
  3991. accellimit = 300
  3992. gearspeed = 300
  3993. end
  3994. end
  3995. end)
  3996.  
  3997. mouse.KeyDown:connect(function(key)
  3998. if key == "v" then
  3999. vpressed = vpressed + 1
  4000. if vpressed == 1 then
  4001. r6:Stop()
  4002. static:Stop()
  4003. static:Play()
  4004. r1:Play()
  4005. songname.Text = "Kurtis Blow- The Breaks"
  4006. end
  4007. if vpressed == 2 then
  4008. r1:Stop()
  4009. static:Stop()
  4010. static:Play()
  4011. r2:Play()
  4012. songname.Text = "The Zombies- Time of the Season"
  4013. end
  4014. if vpressed == 3 then
  4015. r2:Stop()
  4016. static:Stop()
  4017. static:Play()
  4018. r3:Play()
  4019. songname.Text = "The Mamas and Papas- California Dreamin"
  4020. end
  4021. if vpressed == 4 then
  4022. r3:Stop()
  4023. static:Stop()
  4024. static:Play()
  4025. r4:Play()
  4026. songname.Text = "The Fugees- Killing me softly"
  4027. end
  4028. if vpressed == 5 then
  4029. r4:Stop()
  4030. static:Stop()
  4031. static:Play()
  4032. r5:Play()
  4033. songname.Text = "The Doors- Light My Fire"
  4034. end
  4035. if vpressed == 6 then
  4036. r5:Stop()
  4037. static:Stop()
  4038. static:Play()
  4039. r6:Play()
  4040. songname.Text = "Bee Gees- Night Fever"
  4041. end
  4042. if vpressed == 7 then
  4043. vpressed = 0
  4044. r6:Stop()
  4045. static:Stop()
  4046. songname.Text = "Music-"
  4047. end
  4048. end
  4049. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement