Advertisement
waconline

car

Oct 27th, 2019
165
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 spressed = false
  158. local fpressed = 0
  159. local forcelevel = 400000
  160. local accel = 0
  161. local accellimit = 90
  162. local angle = 0
  163. local wheelaccel = 0
  164. local angletorque = 555000
  165. local ppressed = 0
  166. local bpressed = false
  167. local carhealth = 100
  168. local exploding = false
  169.  
  170. function weld(p0,p1,c0)
  171. local w=Instance.new("Weld",p0)
  172. w.Part0=p0
  173. w.Part1=p1
  174. w.C0=c0
  175. return w
  176. end
  177.  
  178. local mjeep = Instance.new("Model", workspace)
  179. mjeep.Name = "MJeep"
  180.  
  181. part = Instance.new("Part", mjeep)
  182. part.FormFactor = Enum.FormFactor.Custom
  183. part.CanCollide = false
  184. part.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  185. part.Elasticity = 0
  186. part.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  187. part.Material = Enum.Material.SmoothPlastic
  188. part.Size = Vector3.new(1.58, 1.5, 0.54)
  189. part.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  190. part.CFrame = CFrame.new(108.069, 3.297, 27.567)* CFrame.Angles(1.474493265152, 1.371192574501, -1.472554564476)
  191. part.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  192. part.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  193. part.BrickColor = BrickColor.new("Slime green")
  194. part.Friction = 0
  195. part.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  196.  
  197. mesh = Instance.new("SpecialMesh", part)
  198. mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
  199. mesh.MeshId = "http://www.roblox.com/asset/?id=129344524"
  200. mesh.TextureId = "http://www.roblox.com/asset/?id=129344702"
  201. mesh.MeshType = Enum.MeshType.FileMesh
  202.  
  203. wedge_25 = Instance.new("WedgePart", mjeep)
  204. wedge_25.Velocity = Vector3.new(-1.516, 0.012, -0.793)
  205. wedge_25.FormFactor = Enum.FormFactor.Plate
  206. wedge_25.CanCollide = false
  207. wedge_25.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  208. wedge_25.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  209. wedge_25.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  210. wedge_25.Friction = 0.3
  211. wedge_25.RotVelocity = Vector3.new(0, 0.203, 0.003)
  212. wedge_25.Material = Enum.Material.Metal
  213. wedge_25.Size = Vector3.new(1, 0.4, 1)
  214. wedge_25.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  215. wedge_25.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  216. wedge_25.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  217. wedge_25.CFrame = CFrame.new(114.687, 3.002, 22.677)* CFrame.Angles(0.065234929323196, 1.5512616634369, -0.065222352743149)
  218. wedge_25.BrickColor = BrickColor.new("Slime green")
  219.  
  220. mesh_65 = Instance.new("SpecialMesh", wedge_25)
  221. mesh_65.MeshType = Enum.MeshType.Wedge
  222.  
  223. wedge_27 = Instance.new("WedgePart", mjeep)
  224. wedge_27.Velocity = Vector3.new(-3.57, -0.004, 0.586)
  225. wedge_27.FormFactor = Enum.FormFactor.Plate
  226. wedge_27.CanCollide = false
  227. wedge_27.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  228. wedge_27.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  229. wedge_27.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  230. wedge_27.Friction = 0.3
  231. wedge_27.RotVelocity = Vector3.new(0, 0.203, 0.003)
  232. wedge_27.Material = Enum.Material.Metal
  233. wedge_27.Size = Vector3.new(1, 0.4, 1)
  234. wedge_27.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  235. wedge_27.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  236. wedge_27.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  237. wedge_27.CFrame = CFrame.new(104.553, 3.015, 29.482)* CFrame.Angles(0.065231457352638, 1.5512647628784, -0.065218843519688)
  238. wedge_27.BrickColor = BrickColor.new("Slime green")
  239.  
  240. mesh_67 = Instance.new("SpecialMesh", wedge_27)
  241. mesh_67.MeshType = Enum.MeshType.Wedge
  242.  
  243. wedge_26 = Instance.new("WedgePart", mjeep)
  244. wedge_26.Velocity = Vector3.new(-3.164, -0.005, 0.594)
  245. wedge_26.FormFactor = Enum.FormFactor.Plate
  246. wedge_26.CanCollide = false
  247. wedge_26.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  248. wedge_26.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  249. wedge_26.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  250. wedge_26.Friction = 0.3
  251. wedge_26.RotVelocity = Vector3.new(0, 0.203, 0.003)
  252. wedge_26.Material = Enum.Material.Metal
  253. wedge_26.Size = Vector3.new(1, 0.4, 1)
  254. wedge_26.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  255. wedge_26.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  256. wedge_26.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  257. wedge_26.CFrame = CFrame.new(106.55, 2.612, 29.521)* CFrame.Angles(0.065231457352638, 1.5512647628784, 3.0763738155365)
  258. wedge_26.BrickColor = BrickColor.new("Slime green")
  259.  
  260. mesh_66 = Instance.new("SpecialMesh", wedge_26)
  261. mesh_66.MeshType = Enum.MeshType.Wedge
  262.  
  263. wedge = Instance.new("WedgePart", mjeep)
  264. wedge.Velocity = Vector3.new(-3.136, 0.015, -0.824)
  265. wedge.FormFactor = Enum.FormFactor.Plate
  266. wedge.CanCollide = false
  267. wedge.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  268. wedge.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  269. wedge.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  270. wedge.Friction = 0.3
  271. wedge.RotVelocity = Vector3.new(0, 0.203, 0.003)
  272. wedge.Material = Enum.Material.Metal
  273. wedge.Size = Vector3.new(1, 0.4, 1)
  274. wedge.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  275. wedge.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  276. wedge.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  277. wedge.CFrame = CFrame.new(106.687, 2.612, 22.521)* CFrame.Angles(0.065233565866947, 1.5512647628784, 3.0763716697693)
  278. wedge.BrickColor = BrickColor.new("Slime green")
  279.  
  280. mesh_5 = Instance.new("SpecialMesh", wedge)
  281. mesh_5.MeshType = Enum.MeshType.Wedge
  282.  
  283. backwheels = Instance.new("Model", mjeep)
  284. backwheels.Name = "backwheels"
  285.  
  286. bwr = Instance.new("Part", backwheels)
  287. bwr.FormFactor = Enum.FormFactor.Custom
  288. bwr.TopSurface = Enum.SurfaceType.Smooth
  289. bwr.Material = Enum.Material.Concrete
  290. bwr.Size = Vector3.new(0.65, 2.7, 2.7)
  291. bwr.Name = "bwr"
  292. bwr.CFrame = CFrame.new(115.534, 1.613, 22.736)* CFrame.Angles(0.064853571355343, 1.5512800216675, -0.065219387412071)
  293. bwr.Friction = 0.3
  294. bwr.BottomSurface = Enum.SurfaceType.Smooth
  295.  
  296. mesh_6 = Instance.new("SpecialMesh", bwr)
  297. mesh_6.Scale = Vector3.new(4, 3.5, 3.5)
  298. mesh_6.MeshId = "http://www.roblox.com/asset/?id=122202439"
  299. mesh_6.TextureId = "http://www.roblox.com/asset/?id=122185866"
  300. mesh_6.MeshType = Enum.MeshType.FileMesh
  301.  
  302. bwl = Instance.new("Part", backwheels)
  303. bwl.FormFactor = Enum.FormFactor.Custom
  304. bwl.TopSurface = Enum.SurfaceType.Smooth
  305. bwl.Material = Enum.Material.Concrete
  306. bwl.Size = Vector3.new(0.65, 2.7, 2.7)
  307. bwl.Name = "bwl"
  308. bwl.CFrame = CFrame.new(115.534, 1.613, 29.736)* CFrame.Angles(0.064853571355343, 1.5512800216675, -0.065219387412071)
  309. bwl.Friction = 0.3
  310. bwl.BottomSurface = Enum.SurfaceType.Smooth
  311.  
  312. mesh_7 = Instance.new("SpecialMesh", bwl)
  313. mesh_7.Scale = Vector3.new(4, 3.5, 3.5)
  314. mesh_7.MeshId = "http://www.roblox.com/asset/?id=122202439"
  315. mesh_7.TextureId = "http://www.roblox.com/asset/?id=122185866"
  316. mesh_7.MeshType = Enum.MeshType.FileMesh
  317.  
  318. baxle = Instance.new("Part", backwheels)
  319. baxle.FormFactor = Enum.FormFactor.Symmetric
  320. baxle.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  321. baxle.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  322. baxle.Material = Enum.Material.Metal
  323. baxle.Size = Vector3.new(0.5, 7.275, 0.5)
  324. baxle.Name = "baxle"
  325. baxle.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  326. baxle.CFrame = CFrame.new(115.628, 1.826, 26.242)* CFrame.Angles(0.065231040120125, 1.5512616634369, -1.6360148191452)
  327. baxle.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  328. baxle.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  329. baxle.BrickColor = BrickColor.new("Black")
  330. baxle.Friction = 0.3
  331. baxle.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  332.  
  333. p = Instance.new("Part", mjeep)
  334. p.FormFactor = Enum.FormFactor.Plate
  335. p.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  336. p.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  337. p.Material = Enum.Material.Metal
  338. p.Size = Vector3.new(3, 0.4, 3)
  339. p.Name = "Part"
  340. p.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  341. p.CFrame = CFrame.new(105.017, 2.982, 25.99)* CFrame.Angles(1.2109484259781e-007, -0.019452195614576, 0.23427346348763)
  342. p.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  343. p.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  344. p.BrickColor = BrickColor.new("Slime green")
  345. p.Friction = 0.3
  346. p.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  347. p.Name = "Hood"
  348.  
  349. decal = Instance.new("Decal", p)
  350. decal.Face = Enum.NormalId.Top
  351. decal.Texture = "http://www.roblox.com/asset/?id=199636419"
  352.  
  353. door1 = Instance.new("Part", mjeep)
  354. door1.Velocity = Vector3.new(-2.349, -0.004, 0.407)
  355. door1.FormFactor = Enum.FormFactor.Plate
  356. door1.CanCollide = false
  357. door1.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  358. door1.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  359. door1.RotVelocity = Vector3.new(0, 0.203, 0.003)
  360. door1.Material = Enum.Material.Metal
  361. door1.Size = Vector3.new(1, 2.8, 6)
  362. door1.Name = "door1"
  363. door1.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  364. door1.CFrame = CFrame.new(110.569, 2.407, 28.598)* CFrame.Angles(0.065234929323196, 1.5512616634369, 3.0763702392578)
  365. door1.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  366. door1.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  367. door1.BrickColor = BrickColor.new("Slime green")
  368. door1.Friction = 0.3
  369. door1.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  370.  
  371. mesh_8 = Instance.new("BlockMesh", door1)
  372. mesh_8.Offset = Vector3.new(0.35, 0, 0)
  373. mesh_8.Scale = Vector3.new(0.3, 1, 1)
  374.  
  375. part_4 = Instance.new("Part", mjeep)
  376. part_4.Velocity = Vector3.new(-2.447, -0.001, 0.203)
  377. part_4.FormFactor = Enum.FormFactor.Plate
  378. part_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  379. part_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  380. part_4.RotVelocity = Vector3.new(0, 0.203, 0.003)
  381. part_4.Material = Enum.Material.SmoothPlastic
  382. part_4.Size = Vector3.new(1, 1.6, 1)
  383. part_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  384. part_4.CFrame = CFrame.new(110.089, 2.808, 27.589)* CFrame.Angles(2.5282522742032e-008, -0.01945129968226, -0.001270598731935)
  385. part_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  386. part_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  387. part_4.BrickColor = BrickColor.new("Brown")
  388. part_4.Friction = 0.3
  389. part_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  390.  
  391. mesh_9 = Instance.new("BlockMesh", part_4)
  392. mesh_9.Offset = Vector3.new(0.35, 0, 0)
  393. mesh_9.Scale = Vector3.new(0.3, 1, 2)
  394.  
  395. part_5 = Instance.new("Part", mjeep)
  396. part_5.Velocity = Vector3.new(-2.436, 0.008, -0.405)
  397. part_5.FormFactor = Enum.FormFactor.Plate
  398. part_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  399. part_5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  400. part_5.RotVelocity = Vector3.new(0, 0.203, 0.003)
  401. part_5.Material = Enum.Material.SmoothPlastic
  402. part_5.Size = Vector3.new(1, 1.6, 1)
  403. part_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  404. part_5.CFrame = CFrame.new(110.148, 2.808, 24.589)* CFrame.Angles(1.9141680240864e-008, -0.019451182335615, -0.0012705988483503)
  405. part_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  406. part_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  407. part_5.BrickColor = BrickColor.new("Brown")
  408. part_5.Friction = 0.3
  409. part_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  410.  
  411. mesh_10 = Instance.new("BlockMesh", part_5)
  412. mesh_10.Offset = Vector3.new(0.35, 0, 0)
  413. mesh_10.Scale = Vector3.new(0.3, 1, 2)
  414.  
  415. part_6 = Instance.new("Part", mjeep)
  416. part_6.Velocity = Vector3.new(-2.846, 0.005, -0.109)
  417. part_6.FormFactor = Enum.FormFactor.Plate
  418. part_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  419. part_6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  420. part_6.RotVelocity = Vector3.new(0, 0.203, 0.003)
  421. part_6.Material = Enum.Material.Metal
  422. part_6.Size = Vector3.new(1, 2.8, 4)
  423. part_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  424. part_6.CFrame = CFrame.new(108.118, 2.411, 26.05)* CFrame.Angles(2.2187778725424e-008, -0.019451355561614, 3.140321969986)
  425. part_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  426. part_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  427. part_6.BrickColor = BrickColor.new("Slime green")
  428. part_6.Friction = 0.3
  429. part_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  430.  
  431. mesh_11 = Instance.new("BlockMesh", part_6)
  432. mesh_11.Offset = Vector3.new(0.35, 0, 0)
  433. mesh_11.Scale = Vector3.new(0.3, 1, 1.5)
  434.  
  435. part_7 = Instance.new("Part", mjeep)
  436. part_7.Velocity = Vector3.new(-1.834, 0.002, -0.089)
  437. part_7.FormFactor = Enum.FormFactor.Plate
  438. part_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  439. part_7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  440. part_7.RotVelocity = Vector3.new(0, 0.203, 0.003)
  441. part_7.Material = Enum.Material.SmoothPlastic
  442. part_7.Size = Vector3.new(1, 1.6, 2)
  443. part_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  444. part_7.CFrame = CFrame.new(113.137, 2.804, 24.848)* CFrame.Angles(2.2097484730921e-008, -0.019451240077615, -0.001270598731935)
  445. part_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  446. part_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  447. part_7.BrickColor = BrickColor.new("Brown")
  448. part_7.Friction = 0.3
  449. part_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  450.  
  451. mesh_12 = Instance.new("BlockMesh", part_7)
  452. mesh_12.Offset = Vector3.new(0.35, 0, 0)
  453. mesh_12.Scale = Vector3.new(0.3, 1, 1.4)
  454.  
  455. part_8 = Instance.new("Part", mjeep)
  456. part_8.Velocity = Vector3.new(-1.428, 0.001, -0.082)
  457. part_8.FormFactor = Enum.FormFactor.Plate
  458. part_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  459. part_8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  460. part_8.RotVelocity = Vector3.new(0, 0.203, 0.003)
  461. part_8.Material = Enum.Material.Metal
  462. part_8.Size = Vector3.new(6, 2, 3)
  463. part_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  464. part_8.CFrame = CFrame.new(115.117, 2.802, 26.186)* CFrame.Angles(-3.0763583183289, -1.5512616634369, 0.065221779048443)
  465. part_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  466. part_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  467. part_8.BrickColor = BrickColor.new("Slime green")
  468. part_8.Friction = 0.3
  469. part_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  470.  
  471. mesh_13 = Instance.new("BlockMesh", part_8)
  472.  
  473. part_9 = Instance.new("Part", mjeep)
  474. part_9.Velocity = Vector3.new(-1.82, 0.012, -0.799)
  475. part_9.FormFactor = Enum.FormFactor.Plate
  476. part_9.CanCollide = false
  477. part_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  478. part_9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  479. part_9.RotVelocity = Vector3.new(0, 0.203, 0.003)
  480. part_9.Material = Enum.Material.Metal
  481. part_9.Size = Vector3.new(1, 0.4, 1)
  482. part_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  483. part_9.CFrame = CFrame.new(113.186, 3.004, 22.648)* CFrame.Angles(0.065235488116741, 1.5512616634369, 3.0763697624207)
  484. part_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  485. part_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  486. part_9.BrickColor = BrickColor.new("Black")
  487. part_9.Friction = 0.3
  488. part_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  489.  
  490. mesh_14 = Instance.new("BlockMesh", part_9)
  491. mesh_14.Offset = Vector3.new(0.5, 0, 0)
  492. mesh_14.Scale = Vector3.new(0.1, 1, 0.8)
  493.  
  494. part_10 = Instance.new("Part", mjeep)
  495. part_10.Velocity = Vector3.new(-1.323, 0.001, -0.08)
  496. part_10.FormFactor = Enum.FormFactor.Plate
  497. part_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  498. part_10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  499. part_10.RotVelocity = Vector3.new(0, 0.203, 0.003)
  500. part_10.Material = Enum.Material.Metal
  501. part_10.Size = Vector3.new(6, 0.8, 4)
  502. part_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  503. part_10.CFrame = CFrame.new(115.616, 1.401, 26.196)* CFrame.Angles(-3.0763578414917, -1.5512616634369, 0.065222360193729)
  504. part_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  505. part_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  506. part_10.BrickColor = BrickColor.new("Slime green")
  507. part_10.Friction = 0.3
  508. part_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  509.  
  510. mesh_15 = Instance.new("BlockMesh", part_10)
  511.  
  512. part_11 = Instance.new("Part", mjeep)
  513. part_11.Velocity = Vector3.new(-1.341, -0.009, 0.63)
  514. part_11.FormFactor = Enum.FormFactor.Plate
  515. part_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  516. part_11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  517. part_11.RotVelocity = Vector3.new(0, 0.203, 0.003)
  518. part_11.Material = Enum.Material.Metal
  519. part_11.Size = Vector3.new(1, 0.4, 1)
  520. part_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  521. part_11.CFrame = CFrame.new(115.55, 3.001, 29.696)* CFrame.Angles(-3.0763573646545, -1.5512616634369, 0.06522274017334)
  522. part_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  523. part_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  524. part_11.BrickColor = BrickColor.new("Slime green")
  525. part_11.Friction = 0.3
  526. part_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  527.  
  528. mesh_16 = Instance.new("BlockMesh", part_11)
  529.  
  530. part_12 = Instance.new("Part", mjeep)
  531. part_12.Velocity = Vector3.new(-1.848, -0.008, 0.62)
  532. part_12.FormFactor = Enum.FormFactor.Plate
  533. part_12.CanCollide = false
  534. part_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  535. part_12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  536. part_12.RotVelocity = Vector3.new(0, 0.203, 0.003)
  537. part_12.Material = Enum.Material.Metal
  538. part_12.Size = Vector3.new(1, 0.4, 1)
  539. part_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  540. part_12.CFrame = CFrame.new(113.05, 3.004, 29.647)* CFrame.Angles(-3.0763578414917, -1.5512616634369, 0.065222360193729)
  541. part_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  542. part_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  543. part_12.BrickColor = BrickColor.new("Black")
  544. part_12.Friction = 0.3
  545. part_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  546.  
  547. mesh_17 = Instance.new("BlockMesh", part_12)
  548. mesh_17.Offset = Vector3.new(0.5, 0, 0)
  549. mesh_17.Scale = Vector3.new(0.1, 1, 0.8)
  550.  
  551. part_13 = Instance.new("Part", mjeep)
  552. part_13.Velocity = Vector3.new(-1.314, 0.011, -0.789)
  553. part_13.FormFactor = Enum.FormFactor.Plate
  554. part_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  555. part_13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  556. part_13.RotVelocity = Vector3.new(0, 0.203, 0.003)
  557. part_13.Material = Enum.Material.Metal
  558. part_13.Size = Vector3.new(1, 0.4, 1)
  559. part_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  560. part_13.CFrame = CFrame.new(115.686, 3.001, 22.697)* CFrame.Angles(-3.0763578414917, -1.5512616634369, 0.065222360193729)
  561. part_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  562. part_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  563. part_13.BrickColor = BrickColor.new("Slime green")
  564. part_13.Friction = 0.3
  565. part_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  566.  
  567. mesh_18 = Instance.new("BlockMesh", part_13)
  568.  
  569. part_14 = Instance.new("Part", mjeep)
  570. part_14.Velocity = Vector3.new(-2.234, 0.003, -0.098)
  571. part_14.FormFactor = Enum.FormFactor.Plate
  572. part_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  573. part_14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  574. part_14.RotVelocity = Vector3.new(0, 0.203, 0.003)
  575. part_14.Material = Enum.Material.Metal
  576. part_14.Size = Vector3.new(6, 0.4, 13)
  577. part_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  578. part_14.CFrame = CFrame.new(111.116, 0.807, 26.108)* CFrame.Angles(-3.0763566493988, -1.5512616634369, 0.065223500132561)
  579. part_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  580. part_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  581. part_14.BrickColor = BrickColor.new("Slime green")
  582. part_14.Friction = 0.3
  583. part_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  584.  
  585. mesh_19 = Instance.new("BlockMesh", part_14)
  586.  
  587. w3 = Instance.new("Part", mjeep)
  588. w3.Velocity = Vector3.new(-2.822, 0.004, -0.108)
  589. w3.FormFactor = Enum.FormFactor.Plate
  590. w3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  591. w3.Transparency = 0.8
  592. w3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  593. w3.RotVelocity = Vector3.new(0, 0.203, 0.003)
  594. w3.Material = Enum.Material.Metal
  595. w3.Size = Vector3.new(1, 1.2, 4)
  596. w3.Name = "W3"
  597. w3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  598. w3.CFrame = CFrame.new(108.268, 4.692, 26.053)* CFrame.Angles(2.7371692340239e-005, -0.019484659656882, 2.9429566860199)
  599. w3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  600. w3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  601. w3.BrickColor = BrickColor.new("Light blue")
  602. w3.Friction = 0.3
  603. w3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  604.  
  605. mesh_20 = Instance.new("BlockMesh", w3)
  606. mesh_20.Offset = Vector3.new(0.35, 0, 0)
  607. mesh_20.Scale = Vector3.new(0.1, 1.6, 1.4)
  608.  
  609. w1_2 = Instance.new("Part", mjeep)
  610. w1_2.Velocity = Vector3.new(-2.777, 0.004, -0.107)
  611. w1_2.FormFactor = Enum.FormFactor.Plate
  612. w1_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  613. w1_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  614. w1_2.RotVelocity = Vector3.new(0, 0.203, 0.003)
  615. w1_2.Material = Enum.Material.Metal
  616. w1_2.Size = Vector3.new(1, 0.4, 6)
  617. w1_2.Name = "W1"
  618. w1_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  619. w1_2.CFrame = CFrame.new(108.505, 5.868, 26.058)* CFrame.Angles(2.7371692340239e-005, -0.019484659656882, 2.9429566860199)
  620. w1_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  621. w1_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  622. w1_2.BrickColor = BrickColor.new("Slime green")
  623. w1_2.Friction = 0.3
  624. w1_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  625.  
  626. mesh_21 = Instance.new("BlockMesh", w1_2)
  627. mesh_21.Offset = Vector3.new(0.35, 0, 0)
  628. mesh_21.Scale = Vector3.new(0.3, 1, 1)
  629.  
  630. door2 = Instance.new("Part", mjeep)
  631. door2.Velocity = Vector3.new(-2.329, 0.01, -0.606)
  632. door2.FormFactor = Enum.FormFactor.Plate
  633. door2.CanCollide = false
  634. door2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  635. door2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  636. door2.RotVelocity = Vector3.new(0, 0.203, 0.003)
  637. door2.Material = Enum.Material.Metal
  638. door2.Size = Vector3.new(1, 2.8, 6)
  639. door2.Name = "door2"
  640. door2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  641. door2.CFrame = CFrame.new(110.667, 2.407, 23.599)* CFrame.Angles(-3.0763564109802, -1.5512616634369, 0.065223693847656)
  642. door2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  643. door2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  644. door2.BrickColor = BrickColor.new("Slime green")
  645. door2.Friction = 0.3
  646. door2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  647.  
  648. mesh_22 = Instance.new("BlockMesh", door2)
  649. mesh_22.Offset = Vector3.new(0.35, 0, 0)
  650. mesh_22.Scale = Vector3.new(0.3, 1, 1)
  651.  
  652. part_15 = Instance.new("Part", mjeep)
  653. part_15.Velocity = Vector3.new(-3.24, 0.012, -0.624)
  654. part_15.FormFactor = Enum.FormFactor.Plate
  655. part_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  656. part_15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  657. part_15.RotVelocity = Vector3.new(0, 0.203, 0.003)
  658. part_15.Material = Enum.Material.Metal
  659. part_15.Size = Vector3.new(1, 1.6, 3)
  660. part_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  661. part_15.CFrame = CFrame.new(106.167, 1.813, 23.512)* CFrame.Angles(-3.0763564109802, -1.5512616634369, 0.065223693847656)
  662. part_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  663. part_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  664. part_15.BrickColor = BrickColor.new("Slime green")
  665. part_15.Friction = 0.3
  666. part_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  667.  
  668. mesh_23 = Instance.new("BlockMesh", part_15)
  669.  
  670. frontwheels = Instance.new("Model", mjeep)
  671. frontwheels.Name = "frontwheels"
  672.  
  673. fwl = Instance.new("Part", frontwheels)
  674. fwl.FormFactor = Enum.FormFactor.Custom
  675. fwl.TopSurface = Enum.SurfaceType.Smooth
  676. fwl.Material = Enum.Material.Concrete
  677. fwl.Size = Vector3.new(0.65, 2.7, 2.7)
  678. fwl.Name = "fwl"
  679. fwl.CFrame = CFrame.new(105.634, 1.613, 29.536)* CFrame.Angles(0.064853571355343, 1.5512800216675, -0.065219387412071)
  680. fwl.Friction = 0.3
  681. fwl.BottomSurface = Enum.SurfaceType.Smooth
  682.  
  683. mesh_24 = Instance.new("SpecialMesh", fwl)
  684. mesh_24.Scale = Vector3.new(4, 3.5, 3.5)
  685. mesh_24.MeshId = "http://www.roblox.com/asset/?id=122202439"
  686. mesh_24.TextureId = "http://www.roblox.com/asset/?id=122185866"
  687. mesh_24.MeshType = Enum.MeshType.FileMesh
  688.  
  689. fwr = Instance.new("Part", frontwheels)
  690. fwr.FormFactor = Enum.FormFactor.Custom
  691. fwr.TopSurface = Enum.SurfaceType.Smooth
  692. fwr.Material = Enum.Material.Concrete
  693. fwr.Size = Vector3.new(0.65, 2.7, 2.7)
  694. fwr.Name = "fwr"
  695. fwr.CFrame = CFrame.new(105.634, 1.613, 22.536)* CFrame.Angles(0.064853571355343, 1.5512800216675, -0.065219387412071)
  696. fwr.Friction = 0.3
  697. fwr.BottomSurface = Enum.SurfaceType.Smooth
  698.  
  699. mesh_25 = Instance.new("SpecialMesh", fwr)
  700. mesh_25.Scale = Vector3.new(4, 3.5, 3.5)
  701. mesh_25.MeshId = "http://www.roblox.com/asset/?id=122202439"
  702. mesh_25.TextureId = "http://www.roblox.com/asset/?id=122185866"
  703. mesh_25.MeshType = Enum.MeshType.FileMesh
  704.  
  705. faxle = Instance.new("Part", frontwheels)
  706. faxle.FormFactor = Enum.FormFactor.Symmetric
  707. faxle.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  708. faxle.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  709. faxle.Material = Enum.Material.Metal
  710. faxle.Size = Vector3.new(0.5, 7.275, 0.5)
  711. faxle.Name = "faxle"
  712. faxle.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  713. faxle.CFrame = CFrame.new(105.618, 1.826, 26.032)* CFrame.Angles(0.065231040120125, 1.5512616634369, -1.6360148191452)
  714. faxle.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  715. faxle.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  716. faxle.BrickColor = BrickColor.new("Black")
  717. faxle.Friction = 0.3
  718. faxle.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  719.  
  720. part_16 = Instance.new("Part", mjeep)
  721. part_16.Velocity = Vector3.new(-3.259, -0.002, 0.389)
  722. part_16.FormFactor = Enum.FormFactor.Plate
  723. part_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  724. part_16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  725. part_16.RotVelocity = Vector3.new(0, 0.203, 0.003)
  726. part_16.Material = Enum.Material.Metal
  727. part_16.Size = Vector3.new(1, 1.6, 3)
  728. part_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  729. part_16.CFrame = CFrame.new(106.069, 1.813, 28.511)* CFrame.Angles(-3.0763564109802, -1.5512616634369, 0.065223693847656)
  730. part_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  731. part_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  732. part_16.BrickColor = BrickColor.new("Slime green")
  733. part_16.Friction = 0.3
  734. part_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  735.  
  736. mesh_26 = Instance.new("BlockMesh", part_16)
  737.  
  738. w5 = Instance.new("Part", mjeep)
  739. w5.FormFactor = Enum.FormFactor.Plate
  740. w5.CanCollide = false
  741. w5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  742. w5.Transparency = 1
  743. w5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  744. w5.Material = Enum.Material.Metal
  745. w5.Size = Vector3.new(1, 0.4, 6)
  746. w5.Name = "W5"
  747. w5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  748. w5.CFrame = CFrame.new(106.012, 5.278, 26.057)* CFrame.Angles(0.018201598897576, -0.0069662402383983, -2.1358544826508)
  749. w5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  750. w5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  751. w5.BrickColor = BrickColor.new("Slime green")
  752. w5.Friction = 0.3
  753. w5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  754.  
  755. mesh_27 = Instance.new("BlockMesh", w5)
  756. mesh_27.Offset = Vector3.new(0.35, 0, 0)
  757. mesh_27.Scale = Vector3.new(0.3, 1, 1)
  758.  
  759. part_17 = Instance.new("Part", mjeep)
  760. part_17.Velocity = Vector3.new(-3.367, -0.004, 0.59)
  761. part_17.FormFactor = Enum.FormFactor.Plate
  762. part_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  763. part_17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  764. part_17.RotVelocity = Vector3.new(0, 0.203, 0.003)
  765. part_17.Material = Enum.Material.Metal
  766. part_17.Size = Vector3.new(1, 0.4, 1)
  767. part_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  768. part_17.CFrame = CFrame.new(105.553, 3.013, 29.501)* CFrame.Angles(-3.0763614177704, -1.5512647628784, 0.065218664705753)
  769. part_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  770. part_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  771. part_17.BrickColor = BrickColor.new("Slime green")
  772. part_17.Friction = 0.3
  773. part_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  774.  
  775. mesh_28 = Instance.new("BlockMesh", part_17)
  776.  
  777. w4 = Instance.new("Part", mjeep)
  778. w4.Velocity = Vector3.new(-2.824, -0.003, 0.399)
  779. w4.FormFactor = Enum.FormFactor.Plate
  780. w4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  781. w4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  782. w4.RotVelocity = Vector3.new(0, 0.203, 0.003)
  783. w4.Material = Enum.Material.Metal
  784. w4.Size = Vector3.new(1, 1.6, 1)
  785. w4.Name = "W4"
  786. w4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  787. w4.CFrame = CFrame.new(108.259, 4.888, 28.553)* CFrame.Angles(2.7346923161531e-005, -0.019484709948301, 2.9429571628571)
  788. w4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  789. w4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  790. w4.BrickColor = BrickColor.new("Slime green")
  791. w4.Friction = 0.3
  792. w4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  793.  
  794. mesh_29 = Instance.new("BlockMesh", w4)
  795. mesh_29.Offset = Vector3.new(0.35, 0, 0.35)
  796. mesh_29.Scale = Vector3.new(0.3, 1.5, 0.3)
  797.  
  798. w6 = Instance.new("Part", mjeep)
  799. w6.Velocity = Vector3.new(-2.804, 0.011, -0.614)
  800. w6.FormFactor = Enum.FormFactor.Plate
  801. w6.CanCollide = false
  802. w6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  803. w6.Transparency = 1
  804. w6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  805. w6.RotVelocity = Vector3.new(0, 0.203, 0.003)
  806. w6.Material = Enum.Material.Metal
  807. w6.Size = Vector3.new(1, 1.6, 1)
  808. w6.Name = "W6"
  809. w6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  810. w6.CFrame = CFrame.new(106.874, 4.788, 23.554)* CFrame.Angles(1.5934143066406, -0.56504017114639, -1.5625476837158)
  811. w6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  812. w6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  813. w6.BrickColor = BrickColor.new("Slime green")
  814. w6.Friction = 0.3
  815. w6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  816.  
  817. mesh_30 = Instance.new("BlockMesh", w6)
  818. mesh_30.Offset = Vector3.new(0.35, 0, 0.35)
  819. mesh_30.Scale = Vector3.new(0.3, 1.5, 0.3)
  820.  
  821. w7 = Instance.new("Part", mjeep)
  822. w7.FormFactor = Enum.FormFactor.Plate
  823. w7.CanCollide = false
  824. w7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  825. w7.Transparency = 1
  826. w7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  827. w7.Material = Enum.Material.Metal
  828. w7.Size = Vector3.new(1, 1.2, 4)
  829. w7.Name = "W7"
  830. w7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  831. w7.CFrame = CFrame.new(107.025, 4.635, 26.053)* CFrame.Angles(0.018201598897576, -0.0069662402383983, -2.1358544826508)
  832. w7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  833. w7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  834. w7.BrickColor = BrickColor.new("Light blue")
  835. w7.Friction = 0.3
  836. w7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  837.  
  838. mesh_31 = Instance.new("BlockMesh", w7)
  839. mesh_31.Offset = Vector3.new(0.35, 0, 0)
  840. mesh_31.Scale = Vector3.new(0.1, 1.6, 1.4)
  841.  
  842. w8 = Instance.new("Part", mjeep)
  843. w8.Velocity = Vector3.new(-2.824, -0.003, 0.399)
  844. w8.FormFactor = Enum.FormFactor.Plate
  845. w8.CanCollide = false
  846. w8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  847. w8.Transparency = 1
  848. w8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  849. w8.RotVelocity = Vector3.new(0, 0.203, 0.003)
  850. w8.Material = Enum.Material.Metal
  851. w8.Size = Vector3.new(1, 1.6, 1)
  852. w8.Name = "W8"
  853. w8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  854. w8.CFrame = CFrame.new(106.839, 4.697, 28.553)* CFrame.Angles(0.018201638013124, -0.0069662784226239, -2.1358540058136)
  855. w8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  856. w8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  857. w8.BrickColor = BrickColor.new("Slime green")
  858. w8.Friction = 0.3
  859. w8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  860.  
  861. mesh_32 = Instance.new("BlockMesh", w8)
  862. mesh_32.Offset = Vector3.new(0.35, 0, 0.35)
  863. mesh_32.Scale = Vector3.new(0.3, 1.5, 0.3)
  864.  
  865. wedge_2 = Instance.new("WedgePart", mjeep)
  866. wedge_2.Velocity = Vector3.new(-3.137, 0.015, -0.824)
  867. wedge_2.FormFactor = Enum.FormFactor.Plate
  868. wedge_2.CanCollide = false
  869. wedge_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  870. wedge_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  871. wedge_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  872. wedge_2.Friction = 0.3
  873. wedge_2.RotVelocity = Vector3.new(0, 0.203, 0.003)
  874. wedge_2.Material = Enum.Material.Metal
  875. wedge_2.Size = Vector3.new(1, 0.4, 1)
  876. wedge_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  877. wedge_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  878. wedge_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  879. wedge_2.CFrame = CFrame.new(106.687, 3.012, 22.521)* CFrame.Angles(-3.0763599872589, -1.5512647628784, -3.0763726234436)
  880. wedge_2.BrickColor = BrickColor.new("Slime green")
  881.  
  882. mesh_33 = Instance.new("SpecialMesh", wedge_2)
  883. mesh_33.MeshType = Enum.MeshType.Wedge
  884.  
  885. part_18 = Instance.new("Part", mjeep)
  886. part_18.Velocity = Vector3.new(-3.047, 0.005, -0.113)
  887. part_18.FormFactor = Enum.FormFactor.Plate
  888. part_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  889. part_18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  890. part_18.RotVelocity = Vector3.new(0, 0.203, 0.003)
  891. part_18.Material = Enum.Material.Metal
  892. part_18.Size = Vector3.new(4, 1.6, 1)
  893. part_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  894. part_18.CFrame = CFrame.new(107.118, 1.812, 26.031)* CFrame.Angles(-3.0763564109802, -1.5512616634369, 0.065223693847656)
  895. part_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  896. part_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  897. part_18.BrickColor = BrickColor.new("Slime green")
  898. part_18.Friction = 0.3
  899. part_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  900.  
  901. mesh_34 = Instance.new("BlockMesh", part_18)
  902.  
  903. part_19 = Instance.new("Part", mjeep)
  904. part_19.Velocity = Vector3.new(-2.833, 0.014, -0.818)
  905. part_19.FormFactor = Enum.FormFactor.Plate
  906. part_19.CanCollide = false
  907. part_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  908. part_19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  909. part_19.RotVelocity = Vector3.new(0, 0.203, 0.003)
  910. part_19.Material = Enum.Material.Metal
  911. part_19.Size = Vector3.new(1, 0.4, 1)
  912. part_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  913. part_19.CFrame = CFrame.new(108.187, 3.011, 22.551)* CFrame.Angles(0.065235875546932, 1.5512616634369, 3.0763692855835)
  914. part_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  915. part_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  916. part_19.BrickColor = BrickColor.new("Black")
  917. part_19.Friction = 0.3
  918. part_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  919.  
  920. mesh_35 = Instance.new("BlockMesh", part_19)
  921. mesh_35.Offset = Vector3.new(0.5, 0, 0)
  922. mesh_35.Scale = Vector3.new(0.1, 1, 0.8)
  923.  
  924. part_20 = Instance.new("Part", mjeep)
  925. part_20.Velocity = Vector3.new(-2.861, -0.005, 0.6)
  926. part_20.FormFactor = Enum.FormFactor.Plate
  927. part_20.CanCollide = false
  928. part_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  929. part_20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  930. part_20.RotVelocity = Vector3.new(0, 0.203, 0.003)
  931. part_20.Material = Enum.Material.Metal
  932. part_20.Size = Vector3.new(1, 0.4, 1)
  933. part_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  934. part_20.CFrame = CFrame.new(108.051, 3.011, 29.55)* CFrame.Angles(-3.0763578414917, -1.5512616634369, 0.065222360193729)
  935. part_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  936. part_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  937. part_20.BrickColor = BrickColor.new("Black")
  938. part_20.Friction = 0.3
  939. part_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  940.  
  941. mesh_36 = Instance.new("BlockMesh", part_20)
  942. mesh_36.Offset = Vector3.new(0.5, 0, 0)
  943. mesh_36.Scale = Vector3.new(0.1, 1, 0.8)
  944.  
  945. part_21 = Instance.new("Part", mjeep)
  946. part_21.Velocity = Vector3.new(-3.758, 0.007, -0.127)
  947. part_21.FormFactor = Enum.FormFactor.Plate
  948. part_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  949. part_21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  950. part_21.RotVelocity = Vector3.new(0, 0.203, 0.003)
  951. part_21.Material = Enum.Material.Metal
  952. part_21.Size = Vector3.new(6, 0.4, 2)
  953. part_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  954. part_21.CFrame = CFrame.new(103.619, 2.416, 25.963)* CFrame.Angles(-3.076357126236, -1.5512616634369, 0.065222926437855)
  955. part_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  956. part_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  957. part_21.BrickColor = BrickColor.new("Slime green")
  958. part_21.Friction = 0.3
  959. part_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  960.  
  961. mesh_37 = Instance.new("BlockMesh", part_21)
  962.  
  963. w2 = Instance.new("Part", mjeep)
  964. w2.Velocity = Vector3.new(-2.804, 0.011, -0.614)
  965. w2.FormFactor = Enum.FormFactor.Plate
  966. w2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  967. w2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  968. w2.RotVelocity = Vector3.new(0, 0.203, 0.003)
  969. w2.Material = Enum.Material.Metal
  970. w2.Size = Vector3.new(1, 1.6, 1)
  971. w2.Name = "W2"
  972. w2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  973. w2.CFrame = CFrame.new(108.357, 4.888, 23.554)* CFrame.Angles(-1.6672585010529, -1.3712096214294, 1.4723644256592)
  974. w2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  975. w2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  976. w2.BrickColor = BrickColor.new("Slime green")
  977. w2.Friction = 0.3
  978. w2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  979.  
  980. mesh_38 = Instance.new("BlockMesh", w2)
  981. mesh_38.Offset = Vector3.new(0.35, 0, 0.35)
  982. mesh_38.Scale = Vector3.new(0.3, 1.5, 0.3)
  983.  
  984. part_22 = Instance.new("Part", mjeep)
  985. part_22.Velocity = Vector3.new(-3.34, 0.015, -0.828)
  986. part_22.FormFactor = Enum.FormFactor.Plate
  987. part_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  988. part_22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  989. part_22.RotVelocity = Vector3.new(0, 0.203, 0.003)
  990. part_22.Material = Enum.Material.Metal
  991. part_22.Size = Vector3.new(1, 0.4, 1)
  992. part_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  993. part_22.CFrame = CFrame.new(105.688, 3.013, 22.502)* CFrame.Angles(-3.076358795166, -1.5512647628784, 0.06522136926651)
  994. part_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  995. part_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  996. part_22.BrickColor = BrickColor.new("Slime green")
  997. part_22.Friction = 0.3
  998. part_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  999.  
  1000. mesh_39 = Instance.new("BlockMesh", part_22)
  1001.  
  1002. wedge_3 = Instance.new("WedgePart", mjeep)
  1003. wedge_3.Velocity = Vector3.new(-1.543, -0.008, 0.626)
  1004. wedge_3.FormFactor = Enum.FormFactor.Plate
  1005. wedge_3.CanCollide = false
  1006. wedge_3.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1007. wedge_3.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1008. wedge_3.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1009. wedge_3.Friction = 0.3
  1010. wedge_3.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1011. wedge_3.Material = Enum.Material.Metal
  1012. wedge_3.Size = Vector3.new(1, 0.4, 1)
  1013. wedge_3.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1014. wedge_3.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1015. wedge_3.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1016. wedge_3.CFrame = CFrame.new(114.55, 2.602, 29.677)* CFrame.Angles(-3.0763578414917, -1.5512616634369, 0.065222159028053)
  1017. wedge_3.BrickColor = BrickColor.new("Slime green")
  1018.  
  1019. mesh_40 = Instance.new("SpecialMesh", wedge_3)
  1020. mesh_40.MeshType = Enum.MeshType.Wedge
  1021.  
  1022. wedge_4 = Instance.new("WedgePart", mjeep)
  1023. wedge_4.Velocity = Vector3.new(-1.11, 0.011, -0.785)
  1024. wedge_4.FormFactor = Enum.FormFactor.Plate
  1025. wedge_4.CanCollide = false
  1026. wedge_4.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1027. wedge_4.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1028. wedge_4.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1029. wedge_4.Friction = 0.3
  1030. wedge_4.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1031. wedge_4.Material = Enum.Material.Metal
  1032. wedge_4.Size = Vector3.new(1, 0.4, 1)
  1033. wedge_4.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1034. wedge_4.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1035. wedge_4.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1036. wedge_4.CFrame = CFrame.new(116.686, 2.599, 22.716)* CFrame.Angles(0.065235115587711, 1.5512616634369, 3.0763700008392)
  1037. wedge_4.BrickColor = BrickColor.new("Slime green")
  1038.  
  1039. mesh_41 = Instance.new("SpecialMesh", wedge_4)
  1040. mesh_41.MeshType = Enum.MeshType.Wedge
  1041.  
  1042. wedge_5 = Instance.new("WedgePart", mjeep)
  1043. wedge_5.Velocity = Vector3.new(-1.111, 0.011, -0.785)
  1044. wedge_5.FormFactor = Enum.FormFactor.Plate
  1045. wedge_5.CanCollide = false
  1046. wedge_5.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1047. wedge_5.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1048. wedge_5.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1049. wedge_5.Friction = 0.3
  1050. wedge_5.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1051. wedge_5.Material = Enum.Material.Metal
  1052. wedge_5.Size = Vector3.new(1, 0.4, 1)
  1053. wedge_5.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1054. wedge_5.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1055. wedge_5.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1056. wedge_5.CFrame = CFrame.new(116.686, 2.999, 22.716)* CFrame.Angles(-3.0763576030731, -1.5512616634369, -3.0763702392578)
  1057. wedge_5.BrickColor = BrickColor.new("Slime green")
  1058.  
  1059. mesh_42 = Instance.new("SpecialMesh", wedge_5)
  1060. mesh_42.MeshType = Enum.MeshType.Wedge
  1061.  
  1062. vehicleseat = Instance.new("Seat", mjeep)
  1063. vehicleseat.Velocity = Vector3.new(-2.534, 0.008, -0.408)
  1064. vehicleseat.Friction = 0.3
  1065. vehicleseat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1066. vehicleseat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1067. vehicleseat.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1068. vehicleseat.BrickColor = BrickColor.new("Brown")
  1069. vehicleseat.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1070. vehicleseat.CFrame = CFrame.new(109.646, 1.509, 24.58)* CFrame.Angles(0.065236255526543, 1.5512616634369, -0.065223693847656)
  1071. vehicleseat.Material = Enum.Material.SmoothPlastic
  1072. vehicleseat.Size = Vector3.new(1, 1, 2)
  1073. vehicleseat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1074. vehicleseat.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1075. vehicleseat.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1076.  
  1077. mesh_43 = Instance.new("BlockMesh", vehicleseat)
  1078. mesh_43.Scale = Vector3.new(2, 1, 1)
  1079.  
  1080. wedge_6 = Instance.new("WedgePart", mjeep)
  1081. wedge_6.Velocity = Vector3.new(-1.023, 0.001, -0.074)
  1082. wedge_6.FormFactor = Enum.FormFactor.Plate
  1083. wedge_6.CanCollide = false
  1084. wedge_6.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1085. wedge_6.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1086. wedge_6.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1087. wedge_6.Friction = 0.3
  1088. wedge_6.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1089. wedge_6.Material = Enum.Material.Metal
  1090. wedge_6.Size = Vector3.new(6, 2, 1)
  1091. wedge_6.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1092. wedge_6.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1093. wedge_6.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1094. wedge_6.CFrame = CFrame.new(117.117, 2.799, 26.225)* CFrame.Angles(-3.0763580799103, -1.5512647628784, -3.076370716095)
  1095. wedge_6.BrickColor = BrickColor.new("Slime green")
  1096.  
  1097. mesh_44 = Instance.new("SpecialMesh", wedge_6)
  1098. mesh_44.MeshType = Enum.MeshType.Wedge
  1099.  
  1100. wedge_7 = Instance.new("WedgePart", mjeep)
  1101. wedge_7.Velocity = Vector3.new(-1.684, -0.008, 0.623)
  1102. wedge_7.FormFactor = Enum.FormFactor.Plate
  1103. wedge_7.CanCollide = false
  1104. wedge_7.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1105. wedge_7.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1106. wedge_7.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1107. wedge_7.Friction = 0.3
  1108. wedge_7.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1109. wedge_7.Material = Enum.Material.Metal
  1110. wedge_7.Size = Vector3.new(1, 0.4, 1)
  1111. wedge_7.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1112. wedge_7.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1113. wedge_7.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1114. wedge_7.CFrame = CFrame.new(113.85, 2.303, 29.663)* CFrame.Angles(1.5708210468292, -0.0012703418033198, 1.5902481079102)
  1115. wedge_7.BrickColor = BrickColor.new("Slime green")
  1116.  
  1117. mesh_45 = Instance.new("SpecialMesh", wedge_7)
  1118. mesh_45.MeshType = Enum.MeshType.Wedge
  1119.  
  1120. wedge_8 = Instance.new("WedgePart", mjeep)
  1121. wedge_8.Velocity = Vector3.new(-1.139, -0.009, 0.634)
  1122. wedge_8.FormFactor = Enum.FormFactor.Plate
  1123. wedge_8.CanCollide = false
  1124. wedge_8.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1125. wedge_8.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1126. wedge_8.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1127. wedge_8.Friction = 0.3
  1128. wedge_8.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1129. wedge_8.Material = Enum.Material.Metal
  1130. wedge_8.Size = Vector3.new(1, 0.4, 1)
  1131. wedge_8.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1132. wedge_8.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1133. wedge_8.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1134. wedge_8.CFrame = CFrame.new(116.549, 2.999, 29.715)* CFrame.Angles(-3.0763578414917, -1.5512616634369, -3.0763704776764)
  1135. wedge_8.BrickColor = BrickColor.new("Slime green")
  1136.  
  1137. mesh_46 = Instance.new("SpecialMesh", wedge_8)
  1138. mesh_46.MeshType = Enum.MeshType.Wedge
  1139.  
  1140. driverseat = Instance.new("VehicleSeat", mjeep)
  1141. driverseat.Velocity = Vector3.new(-2.545, 0, 0.2)
  1142. driverseat.Friction = 0.3
  1143. driverseat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1144. driverseat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1145. driverseat.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1146. driverseat.MaxSpeed = 20
  1147. driverseat.BrickColor = BrickColor.new("Brown")
  1148. driverseat.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1149. driverseat.CFrame = CFrame.new(109.588, 1.509, 27.579)* CFrame.Angles(0.065236061811447, 1.5512616634369, -0.065223500132561)
  1150. driverseat.Material = Enum.Material.SmoothPlastic
  1151. driverseat.Size = Vector3.new(1, 1, 2)
  1152. driverseat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1153. driverseat.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1154. driverseat.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1155. driverseat.Torque = 1
  1156. driverseat.Name = "driverseat"
  1157. driverseat.HeadsUpDisplay = false
  1158.  
  1159. mesh_47 = Instance.new("BlockMesh", driverseat)
  1160. mesh_47.Scale = Vector3.new(2, 1, 1)
  1161.  
  1162. wedge_9 = Instance.new("WedgePart", mjeep)
  1163. wedge_9.Velocity = Vector3.new(-0.995, -0.009, 0.636)
  1164. wedge_9.FormFactor = Enum.FormFactor.Plate
  1165. wedge_9.CanCollide = false
  1166. wedge_9.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1167. wedge_9.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1168. wedge_9.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1169. wedge_9.Friction = 0.3
  1170. wedge_9.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1171. wedge_9.Material = Enum.Material.Metal
  1172. wedge_9.Size = Vector3.new(1, 0.4, 1)
  1173. wedge_9.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1174. wedge_9.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1175. wedge_9.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1176. wedge_9.CFrame = CFrame.new(117.249, 2.298, 29.729)* CFrame.Angles(1.5708210468292, -0.0012703415704891, -1.5513443946838)
  1177. wedge_9.BrickColor = BrickColor.new("Slime green")
  1178.  
  1179. mesh_48 = Instance.new("SpecialMesh", wedge_9)
  1180. mesh_48.MeshType = Enum.MeshType.Wedge
  1181.  
  1182. wedge_10 = Instance.new("WedgePart", mjeep)
  1183. wedge_10.Velocity = Vector3.new(-1.138, -0.009, 0.633)
  1184. wedge_10.FormFactor = Enum.FormFactor.Plate
  1185. wedge_10.CanCollide = false
  1186. wedge_10.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1187. wedge_10.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1188. wedge_10.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1189. wedge_10.Friction = 0.3
  1190. wedge_10.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1191. wedge_10.Material = Enum.Material.Metal
  1192. wedge_10.Size = Vector3.new(1, 0.4, 1)
  1193. wedge_10.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1194. wedge_10.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1195. wedge_10.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1196. wedge_10.CFrame = CFrame.new(116.55, 2.599, 29.715)* CFrame.Angles(0.065234735608101, 1.5512616634369, 3.0763704776764)
  1197. wedge_10.BrickColor = BrickColor.new("Slime green")
  1198.  
  1199. mesh_49 = Instance.new("SpecialMesh", wedge_10)
  1200. mesh_49.MeshType = Enum.MeshType.Wedge
  1201.  
  1202. wedge_11 = Instance.new("WedgePart", mjeep)
  1203. wedge_11.Velocity = Vector3.new(-1.544, -0.008, 0.626)
  1204. wedge_11.FormFactor = Enum.FormFactor.Plate
  1205. wedge_11.CanCollide = false
  1206. wedge_11.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1207. wedge_11.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1208. wedge_11.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1209. wedge_11.Friction = 0.3
  1210. wedge_11.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1211. wedge_11.Material = Enum.Material.Metal
  1212. wedge_11.Size = Vector3.new(1, 0.4, 1)
  1213. wedge_11.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1214. wedge_11.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1215. wedge_11.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1216. wedge_11.CFrame = CFrame.new(114.551, 3.002, 29.677)* CFrame.Angles(0.065234735608101, 1.5512616634369, -0.065222159028053)
  1217. wedge_11.BrickColor = BrickColor.new("Slime green")
  1218.  
  1219. mesh_50 = Instance.new("SpecialMesh", wedge_11)
  1220. mesh_50.MeshType = Enum.MeshType.Wedge
  1221.  
  1222. wedge_12 = Instance.new("WedgePart", mjeep)
  1223. wedge_12.Velocity = Vector3.new(-0.967, 0.01, -0.782)
  1224. wedge_12.FormFactor = Enum.FormFactor.Plate
  1225. wedge_12.CanCollide = false
  1226. wedge_12.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1227. wedge_12.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1228. wedge_12.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1229. wedge_12.Friction = 0.3
  1230. wedge_12.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1231. wedge_12.Material = Enum.Material.Metal
  1232. wedge_12.Size = Vector3.new(1, 0.4, 1)
  1233. wedge_12.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1234. wedge_12.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1235. wedge_12.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1236. wedge_12.CFrame = CFrame.new(117.385, 2.298, 22.729)* CFrame.Angles(1.5708210468292, -0.0012703415704891, -1.5513443946838)
  1237. wedge_12.BrickColor = BrickColor.new("Slime green")
  1238.  
  1239. mesh_51 = Instance.new("SpecialMesh", wedge_12)
  1240. mesh_51.MeshType = Enum.MeshType.Wedge
  1241.  
  1242. vehicleseat_2 = Instance.new("Seat", mjeep)
  1243. vehicleseat_2.Velocity = Vector3.new(-1.926, 0.007, -0.396)
  1244. vehicleseat_2.Friction = 0.3
  1245. vehicleseat_2.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1246. vehicleseat_2.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1247. vehicleseat_2.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1248. vehicleseat_2.BrickColor = BrickColor.new("Brown")
  1249. vehicleseat_2.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1250. vehicleseat_2.CFrame = CFrame.new(112.646, 1.505, 24.638)* CFrame.Angles(0.065235294401646, 1.5512616634369, -0.06522274017334)
  1251. vehicleseat_2.Material = Enum.Material.SmoothPlastic
  1252. vehicleseat_2.Size = Vector3.new(1, 1, 2)
  1253. vehicleseat_2.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1254. vehicleseat_2.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1255. vehicleseat_2.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1256.  
  1257. mesh_52 = Instance.new("BlockMesh", vehicleseat_2)
  1258. mesh_52.Offset = Vector3.new(-0.1, 0, 0)
  1259. mesh_52.Scale = Vector3.new(3, 1, 1)
  1260.  
  1261. wedge_13 = Instance.new("WedgePart", mjeep)
  1262. wedge_13.Velocity = Vector3.new(-3.542, 0.016, -0.832)
  1263. wedge_13.FormFactor = Enum.FormFactor.Plate
  1264. wedge_13.CanCollide = false
  1265. wedge_13.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1266. wedge_13.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1267. wedge_13.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1268. wedge_13.Friction = 0.3
  1269. wedge_13.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1270. wedge_13.Material = Enum.Material.Metal
  1271. wedge_13.Size = Vector3.new(1, 0.4, 1)
  1272. wedge_13.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1273. wedge_13.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1274. wedge_13.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1275. wedge_13.CFrame = CFrame.new(104.688, 2.615, 22.482)* CFrame.Angles(-3.076358795166, -1.5512647628784, 0.065221190452576)
  1276. wedge_13.BrickColor = BrickColor.new("Slime green")
  1277.  
  1278. mesh_53 = Instance.new("SpecialMesh", wedge_13)
  1279. mesh_53.MeshType = Enum.MeshType.Wedge
  1280.  
  1281. wedge_14 = Instance.new("WedgePart", mjeep)
  1282. wedge_14.Velocity = Vector3.new(-2.994, 0.015, -0.822)
  1283. wedge_14.FormFactor = Enum.FormFactor.Plate
  1284. wedge_14.CanCollide = false
  1285. wedge_14.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1286. wedge_14.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1287. wedge_14.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1288. wedge_14.Friction = 0.3
  1289. wedge_14.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1290. wedge_14.Material = Enum.Material.Metal
  1291. wedge_14.Size = Vector3.new(1, 0.4, 1)
  1292. wedge_14.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1293. wedge_14.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1294. wedge_14.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1295. wedge_14.CFrame = CFrame.new(107.386, 2.311, 22.535)* CFrame.Angles(1.5708210468292, -0.0012703271349892, -1.5513446331024)
  1296. wedge_14.BrickColor = BrickColor.new("Slime green")
  1297.  
  1298. mesh_54 = Instance.new("SpecialMesh", wedge_14)
  1299. mesh_54.MeshType = Enum.MeshType.Wedge
  1300.  
  1301. wedge_15 = Instance.new("WedgePart", mjeep)
  1302. wedge_15.Velocity = Vector3.new(-3.455, 0.006, -0.121)
  1303. wedge_15.FormFactor = Enum.FormFactor.Plate
  1304. wedge_15.CanCollide = false
  1305. wedge_15.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1306. wedge_15.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1307. wedge_15.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1308. wedge_15.Friction = 0.3
  1309. wedge_15.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1310. wedge_15.Material = Enum.Material.Metal
  1311. wedge_15.Size = Vector3.new(6, 1.2, 5)
  1312. wedge_15.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1313. wedge_15.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1314. wedge_15.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1315. wedge_15.CFrame = CFrame.new(105.122, 3.214, 25.992)* CFrame.Angles(0.065233588218689, 1.5512647628784, -0.06522099673748)
  1316. wedge_15.BrickColor = BrickColor.new("Slime green")
  1317.  
  1318. mesh_55 = Instance.new("SpecialMesh", wedge_15)
  1319. mesh_55.MeshType = Enum.MeshType.Wedge
  1320.  
  1321. wedge_16 = Instance.new("WedgePart", mjeep)
  1322. wedge_16.Velocity = Vector3.new(-3.543, 0.016, -0.832)
  1323. wedge_16.FormFactor = Enum.FormFactor.Plate
  1324. wedge_16.CanCollide = false
  1325. wedge_16.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1326. wedge_16.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1327. wedge_16.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1328. wedge_16.Friction = 0.3
  1329. wedge_16.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1330. wedge_16.Material = Enum.Material.Metal
  1331. wedge_16.Size = Vector3.new(1, 0.4, 1)
  1332. wedge_16.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1333. wedge_16.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1334. wedge_16.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1335. wedge_16.CFrame = CFrame.new(104.688, 3.015, 22.482)* CFrame.Angles(0.065234139561653, 1.5512647628784, -0.065221562981606)
  1336. wedge_16.BrickColor = BrickColor.new("Slime green")
  1337.  
  1338. mesh_56 = Instance.new("SpecialMesh", wedge_16)
  1339. mesh_56.MeshType = Enum.MeshType.Wedge
  1340.  
  1341. wedge_17 = Instance.new("WedgePart", mjeep)
  1342. wedge_17.Velocity = Vector3.new(-3.021, -0.005, 0.597)
  1343. wedge_17.FormFactor = Enum.FormFactor.Plate
  1344. wedge_17.CanCollide = false
  1345. wedge_17.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1346. wedge_17.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1347. wedge_17.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1348. wedge_17.Friction = 0.3
  1349. wedge_17.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1350. wedge_17.Material = Enum.Material.Metal
  1351. wedge_17.Size = Vector3.new(1, 0.4, 1)
  1352. wedge_17.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1353. wedge_17.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1354. wedge_17.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1355. wedge_17.CFrame = CFrame.new(107.25, 2.311, 29.535)* CFrame.Angles(1.5708210468292, -0.0012703569373116, -1.5513446331024)
  1356. wedge_17.BrickColor = BrickColor.new("Slime green")
  1357.  
  1358. mesh_57 = Instance.new("SpecialMesh", wedge_17)
  1359. mesh_57.MeshType = Enum.MeshType.Wedge
  1360.  
  1361. wedge_18 = Instance.new("WedgePart", mjeep)
  1362. wedge_18.Velocity = Vector3.new(-3.165, -0.005, 0.594)
  1363. wedge_18.FormFactor = Enum.FormFactor.Plate
  1364. wedge_18.CanCollide = false
  1365. wedge_18.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1366. wedge_18.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1367. wedge_18.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1368. wedge_18.Friction = 0.3
  1369. wedge_18.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1370. wedge_18.Material = Enum.Material.Metal
  1371. wedge_18.Size = Vector3.new(1, 0.4, 1)
  1372. wedge_18.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1373. wedge_18.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1374. wedge_18.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1375. wedge_18.CFrame = CFrame.new(106.55, 3.012, 29.521)* CFrame.Angles(-3.076363325119, -1.5512616634369, -3.0763759613037)
  1376. wedge_18.BrickColor = BrickColor.new("Slime green")
  1377.  
  1378. mesh_58 = Instance.new("SpecialMesh", wedge_18)
  1379. mesh_58.MeshType = Enum.MeshType.Wedge
  1380.  
  1381. wedge_19 = Instance.new("WedgePart", mjeep)
  1382. wedge_19.Velocity = Vector3.new(-2.739, 0.011, -0.613)
  1383. wedge_19.FormFactor = Enum.FormFactor.Plate
  1384. wedge_19.CanCollide = false
  1385. wedge_19.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1386. wedge_19.Transparency = 1
  1387. wedge_19.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1388. wedge_19.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1389. wedge_19.Friction = 0.3
  1390. wedge_19.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1391. wedge_19.Material = Enum.Material.Metal
  1392. wedge_19.Size = Vector3.new(1, 0.4, 2)
  1393. wedge_19.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1394. wedge_19.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1395. wedge_19.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1396. wedge_19.CFrame = CFrame.new(108.669, 4.009, 23.56)* CFrame.Angles(-3.0763568878174, -1.5512616634369, -3.0763695240021)
  1397. wedge_19.BrickColor = BrickColor.new("Slime green")
  1398.  
  1399. mesh_59 = Instance.new("SpecialMesh", wedge_19)
  1400. mesh_59.MeshType = Enum.MeshType.Wedge
  1401.  
  1402. wedge_20 = Instance.new("WedgePart", mjeep)
  1403. wedge_20.Velocity = Vector3.new(-1.515, 0.012, -0.793)
  1404. wedge_20.FormFactor = Enum.FormFactor.Plate
  1405. wedge_20.CanCollide = false
  1406. wedge_20.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1407. wedge_20.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1408. wedge_20.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1409. wedge_20.Friction = 0.3
  1410. wedge_20.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1411. wedge_20.Material = Enum.Material.Metal
  1412. wedge_20.Size = Vector3.new(1, 0.4, 1)
  1413. wedge_20.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1414. wedge_20.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1415. wedge_20.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1416. wedge_20.CFrame = CFrame.new(114.686, 2.602, 22.677)* CFrame.Angles(-3.0763576030731, -1.5512616634369, 0.065222546458244)
  1417. wedge_20.BrickColor = BrickColor.new("Slime green")
  1418.  
  1419. mesh_60 = Instance.new("SpecialMesh", wedge_20)
  1420. mesh_60.MeshType = Enum.MeshType.Wedge
  1421.  
  1422. wedge_21 = Instance.new("WedgePart", mjeep)
  1423. wedge_21.FormFactor = Enum.FormFactor.Plate
  1424. wedge_21.CanCollide = false
  1425. wedge_21.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1426. wedge_21.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1427. wedge_21.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1428. wedge_21.Friction = 0.3
  1429. wedge_21.Material = Enum.Material.Metal
  1430. wedge_21.Size = Vector3.new(1, 0.4, 1)
  1431. wedge_21.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1432. wedge_21.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1433. wedge_21.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1434. wedge_21.CFrame = CFrame.new(104.552, 2.615, 29.482)* CFrame.Angles(-3.0763599872589, -1.5512647628784, 0.065220035612583)
  1435. wedge_21.BrickColor = BrickColor.new("Slime green")
  1436.  
  1437. mesh_61 = Instance.new("SpecialMesh", wedge_21)
  1438. mesh_61.MeshType = Enum.MeshType.Wedge
  1439.  
  1440. wedge_22 = Instance.new("WedgePart", mjeep)
  1441. wedge_22.Velocity = Vector3.new(-3.755, 0.007, -0.127)
  1442. wedge_22.FormFactor = Enum.FormFactor.Plate
  1443. wedge_22.CanCollide = false
  1444. wedge_22.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1445. wedge_22.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1446. wedge_22.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1447. wedge_22.Friction = 0.3
  1448. wedge_22.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1449. wedge_22.Material = Enum.Material.Metal
  1450. wedge_22.Name = "bumper"
  1451. wedge_22.Size = Vector3.new(6, 1.6, 2)
  1452. wedge_22.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1453. wedge_22.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1454. wedge_22.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1455. wedge_22.CFrame = CFrame.new(103.619, 1.416, 25.962)* CFrame.Angles(0.065235689282417, 1.5512616634369, 3.0763695240021)
  1456. wedge_22.BrickColor = BrickColor.new("Slime green")
  1457.  
  1458. mesh_62 = Instance.new("SpecialMesh", wedge_22)
  1459. mesh_62.MeshType = Enum.MeshType.Wedge
  1460.  
  1461. wedge_23 = Instance.new("WedgePart", mjeep)
  1462. wedge_23.Velocity = Vector3.new(-1.656, 0.012, -0.796)
  1463. wedge_23.FormFactor = Enum.FormFactor.Plate
  1464. wedge_23.CanCollide = false
  1465. wedge_23.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1466. wedge_23.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1467. wedge_23.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1468. wedge_23.Friction = 0.3
  1469. wedge_23.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1470. wedge_23.Material = Enum.Material.Metal
  1471. wedge_23.Size = Vector3.new(1, 0.4, 1)
  1472. wedge_23.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1473. wedge_23.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1474. wedge_23.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1475. wedge_23.CFrame = CFrame.new(113.986, 2.303, 22.663)* CFrame.Angles(1.5708210468292, -0.0012703418033198, 1.5902481079102)
  1476. wedge_23.BrickColor = BrickColor.new("Slime green")
  1477.  
  1478. mesh_63 = Instance.new("SpecialMesh", wedge_23)
  1479. mesh_63.MeshType = Enum.MeshType.Wedge
  1480.  
  1481. wedge_24 = Instance.new("WedgePart", mjeep)
  1482. wedge_24.Velocity = Vector3.new(-2.758, -0.003, 0.4)
  1483. wedge_24.FormFactor = Enum.FormFactor.Plate
  1484. wedge_24.CanCollide = false
  1485. wedge_24.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1486. wedge_24.Transparency = 1
  1487. wedge_24.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1488. wedge_24.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1489. wedge_24.Friction = 0.3
  1490. wedge_24.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1491. wedge_24.Material = Enum.Material.Metal
  1492. wedge_24.Size = Vector3.new(1, 0.4, 2)
  1493. wedge_24.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1494. wedge_24.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1495. wedge_24.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1496. wedge_24.CFrame = CFrame.new(108.572, 4.009, 28.56)* CFrame.Angles(-3.076357126236, -1.5512616634369, -3.0763697624207)
  1497. wedge_24.BrickColor = BrickColor.new("Slime green")
  1498.  
  1499. mesh_64 = Instance.new("SpecialMesh", wedge_24)
  1500. mesh_64.MeshType = Enum.MeshType.Wedge
  1501.  
  1502. gunnerseat = Instance.new("Seat", mjeep)
  1503. gunnerseat.Friction = 0.3
  1504. gunnerseat.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1505. gunnerseat.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1506. gunnerseat.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1507. gunnerseat.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1508. gunnerseat.BrickColor = BrickColor.new("Slime green")
  1509. gunnerseat.Material = Enum.Material.Metal
  1510. gunnerseat.Size = Vector3.new(2, 2.2, 2)
  1511. gunnerseat.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1512. gunnerseat.CFrame = CFrame.new(112.582, 2.105, 27.537)* CFrame.Angles(0.065243504941463, 1.5513044595718, -0.065230898559093)
  1513. gunnerseat.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1514. gunnerseat.Name = "gunnerseat"
  1515.  
  1516. faxlepos = Instance.new("Part", mjeep)
  1517. faxlepos.Velocity = Vector3.new(-3.452, 0.006, -0.121)
  1518. faxlepos.FormFactor = Enum.FormFactor.Symmetric
  1519. faxlepos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1520. faxlepos.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1521. faxlepos.RotVelocity = Vector3.new(0, 0.203, 0.003)
  1522. faxlepos.Material = Enum.Material.Metal
  1523. faxlepos.Size = Vector3.new(0.5, 7.275, 0.5)
  1524. faxlepos.Name = "faxlepos"
  1525. faxlepos.CanCollide = false
  1526. faxlepos.Transparency = 1
  1527. faxlepos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1528. faxlepos.CFrame = CFrame.new(105.618, 1, 26.032)* CFrame.Angles(0.065231040120125, 1.5512616634369, -1.6360148191452)
  1529. faxlepos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1530. faxlepos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1531. faxlepos.BrickColor = BrickColor.new("Black")
  1532. faxlepos.Friction = 0.3
  1533. faxlepos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1534.  
  1535. baxlepos = Instance.new("Part", mjeep)
  1536. baxlepos.FormFactor = Enum.FormFactor.Symmetric
  1537. baxlepos.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1538. baxlepos.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1539. baxlepos.Material = Enum.Material.Metal
  1540. baxlepos.Size = Vector3.new(0.5, 7.275, 0.5)
  1541. baxlepos.Name = "baxlepos"
  1542. baxlepos.CanCollide = false
  1543. baxlepos.Transparency = 1
  1544. baxlepos.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1545. baxlepos.CFrame = CFrame.new(115.628, 1, 26.242)* CFrame.Angles(0.065231040120125, 1.5512616634369, -1.6360148191452)
  1546. baxlepos.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1547. baxlepos.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1548. baxlepos.BrickColor = BrickColor.new("Black")
  1549. baxlepos.Friction = 0.3
  1550. baxlepos.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1551.  
  1552. parte = Instance.new("Part", mjeep)
  1553. parte.FormFactor = Enum.FormFactor.Symmetric
  1554. parte.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1555. parte.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1556. parte.Material = Enum.Material.Metal
  1557. parte.Size = Vector3.new(1, 1, 1)
  1558. parte.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1559. parte.CFrame = CFrame.new(117.85, 1.2, 28.45)* CFrame.Angles(3.1415772438049, -9.9065480753779e-005, -1.5707960128784)
  1560. parte.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1561. parte.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1562. parte.Friction = 0.3
  1563. parte.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1564.  
  1565. mesh = Instance.new("CylinderMesh", parte)
  1566. mesh.Scale = Vector3.new(0.7, 1.1, 0.7)
  1567.  
  1568. muffler = Instance.new("Part", mjeep)
  1569. muffler.FormFactor = Enum.FormFactor.Symmetric
  1570. muffler.LeftSurface = Enum.SurfaceType.SmoothNoOutlines
  1571. muffler.TopSurface = Enum.SurfaceType.SmoothNoOutlines
  1572. muffler.Material = Enum.Material.SmoothPlastic
  1573. muffler.Size = Vector3.new(1, 0.2, 1)
  1574. muffler.Name = "Muffler"
  1575. muffler.FrontSurface = Enum.SurfaceType.SmoothNoOutlines
  1576. muffler.CFrame = CFrame.new(118.35, 1.2, 28.45)* CFrame.Angles(3.1415772438049, -9.0658781118691e-005, -1.5707960128784)
  1577. muffler.RightSurface = Enum.SurfaceType.SmoothNoOutlines
  1578. muffler.BackSurface = Enum.SurfaceType.SmoothNoOutlines
  1579. muffler.BrickColor = BrickColor.new("Really black")
  1580. muffler.Friction = 0.3
  1581. muffler.BottomSurface = Enum.SurfaceType.SmoothNoOutlines
  1582.  
  1583. mesh_2 = Instance.new("CylinderMesh", muffler)
  1584. mesh_2.Scale = Vector3.new(0.5, 0.7, 0.5)
  1585.  
  1586. local musmoke = Instance.new("Smoke", mjeep.Muffler)
  1587. musmoke.Color = Color3.new(0.184314, 0.184314, 0.184314)
  1588. musmoke.Opacity = 0.2
  1589. musmoke.RiseVelocity = 0.1
  1590. musmoke.Size = 0.1
  1591. musmoke.Enabled = false
  1592.  
  1593. headlight = Instance.new("Part", mjeep)
  1594. headlight.FormFactor = Enum.FormFactor.Plate
  1595. headlight.TopSurface = Enum.SurfaceType.Weld
  1596. headlight.Reflectance = 0.3
  1597. headlight.Size = Vector3.new(1, 0.4, 1)
  1598. headlight.Name = "Headlight"
  1599. headlight.CFrame = CFrame.new(102.669, 2.418, 23.64)* CFrame.Angles(3.1415803432465, 0.019450379535556, -1.5695254802704)
  1600. headlight.BrickColor = BrickColor.new("Cool yellow")
  1601. headlight.Friction = 0.3
  1602. headlight.BottomSurface = Enum.SurfaceType.Weld
  1603.  
  1604. mesh = Instance.new("SpecialMesh", headlight)
  1605.  
  1606. headlight_2 = Instance.new("Part", mjeep)
  1607. headlight_2.FormFactor = Enum.FormFactor.Plate
  1608. headlight_2.TopSurface = Enum.SurfaceType.Weld
  1609. headlight_2.Reflectance = 0.3
  1610. headlight_2.Size = Vector3.new(1, 0.4, 1)
  1611. headlight_2.Name = "Headlight2"
  1612. headlight_2.CFrame = CFrame.new(102.669, 2.418, 28.34)* CFrame.Angles(3.1415803432465, 0.019450379535556, -1.5695254802704)
  1613. headlight_2.BrickColor = BrickColor.new("Cool yellow")
  1614. headlight_2.Friction = 0.3
  1615. headlight_2.BottomSurface = Enum.SurfaceType.Weld
  1616.  
  1617. mesh_2 = Instance.new("SpecialMesh", headlight_2)
  1618.  
  1619.  
  1620. mjeep:BreakJoints()
  1621. frontwheels:BreakJoints()
  1622. backwheels:BreakJoints()
  1623.  
  1624. local prev
  1625. local parts = mjeep:GetChildren()
  1626.  
  1627. for i = 1,#parts do
  1628. 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
  1629. if (prev ~= nil)then
  1630. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  1631. local weld = Instance.new("Weld")
  1632. weld.Part0 = prev
  1633. weld.Part1 = parts[i]
  1634. weld.C0 = prev.CFrame:inverse()
  1635. weld.C1 = parts[i].CFrame:inverse()
  1636. weld.Parent = prev
  1637. end
  1638. prev = parts[i]
  1639. end
  1640. end
  1641. mjeep:MakeJoints()
  1642.  
  1643. local prev
  1644. local parts = backwheels:GetChildren()
  1645.  
  1646. for i = 1,#parts do
  1647. 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
  1648. if (prev ~= nil)then
  1649. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  1650. local weld = Instance.new("Weld")
  1651. weld.Part0 = prev
  1652. weld.Part1 = parts[i]
  1653. weld.C0 = prev.CFrame:inverse()
  1654. weld.C1 = parts[i].CFrame:inverse()
  1655. weld.Parent = prev
  1656. end
  1657. prev = parts[i]
  1658. end
  1659. end
  1660. backwheels:MakeJoints()
  1661.  
  1662. local prev
  1663. local parts = frontwheels:GetChildren()
  1664.  
  1665. for i = 1,#parts do
  1666. 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
  1667. if (prev ~= nil)then
  1668. if parts[i]:FindFirstChild("Weld") then parts[i]:FindFirstChild("Weld"):Destroy() end
  1669. local weld = Instance.new("Weld")
  1670. weld.Part0 = prev
  1671. weld.Part1 = parts[i]
  1672. weld.C0 = prev.CFrame:inverse()
  1673. weld.C1 = parts[i].CFrame:inverse()
  1674. weld.Parent = prev
  1675. end
  1676. prev = parts[i]
  1677. end
  1678. end
  1679. frontwheels:MakeJoints()
  1680.  
  1681. weld(frontwheels.faxle, mjeep.faxlepos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  1682. frontwheels.faxle.Weld.Name = "Weld2"
  1683.  
  1684. weld(backwheels.baxle, mjeep.baxlepos, CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),0,0))
  1685. backwheels.baxle.Weld.Name = "Weld2"
  1686.  
  1687. local engine = mjeep.driverseat
  1688. local frontwheels = mjeep.frontwheels
  1689. local backwheels = mjeep.backwheels
  1690. mjeep.Parent = char
  1691. engine.CFrame = char.Torso.CFrame*CFrame.new(0,0,2)
  1692.  
  1693. local bav = Instance.new("BodyAngularVelocity",engine)
  1694. bav.MaxTorque = Vector3.new(0,0,0)
  1695. bav.P = 100
  1696. bav.AngularVelocity = Vector3.new(0,0,0)
  1697. local bv = Instance.new("BodyVelocity",engine)
  1698. bv.MaxForce = Vector3.new(0,0,0)
  1699. bv.P = 100
  1700. bv.Velocity = Vector3.new(0.16,0,0.16)
  1701. local enginesound = Instance.new("Sound")
  1702. enginesound.SoundId="rbxassetid://532147820"
  1703. enginesound.PlayOnRemove=false
  1704. enginesound.Volume=0.8
  1705. enginesound.Looped=true
  1706. enginesound.Pitch = 1
  1707. enginesound.Parent=engine
  1708. local squealsound = Instance.new("Sound")
  1709. squealsound.SoundId="http://www.roblox.com/asset/?id=31245495"
  1710. squealsound.PlayOnRemove=false
  1711. squealsound.Volume=0.8
  1712. squealsound.Looped=false
  1713. squealsound.Pitch = 1
  1714. squealsound.Parent=engine
  1715. local firesound = Instance.new("Sound")
  1716. firesound.SoundId="rbxassetid://192104941"
  1717. firesound.PlayOnRemove=false
  1718. firesound.Volume=0.8
  1719. firesound.Looped=true
  1720. firesound.Pitch = 1
  1721. firesound.Parent=engine
  1722. local explosionsound = Instance.new("Sound")
  1723. explosionsound.SoundId="rbxassetid://262562442"
  1724. explosionsound.PlayOnRemove=false
  1725. explosionsound.Volume=0.8
  1726. explosionsound.Looped=false
  1727. explosionsound.Pitch = 1
  1728. explosionsound.Parent=engine
  1729.  
  1730. local brake=Instance.new("Sound")
  1731. brake.SoundId="http://www.roblox.com/asset/?id=211288608"
  1732. brake.PlayOnRemove=false
  1733. brake.Volume=0.75
  1734. brake.Looped=true
  1735. brake.Pitch = 1
  1736. brake.Parent=engine
  1737. local horn=Instance.new("Sound")
  1738. horn.SoundId="http://www.roblox.com/asset/?id=200530606"
  1739. horn.PlayOnRemove=false
  1740. horn.Volume=0.9
  1741. horn.Looped=true
  1742. horn.Pitch = 1
  1743. horn.Parent=engine
  1744. local crash=Instance.new("Sound")
  1745. crash.SoundId="http://www.roblox.com/asset/?id=305526724"
  1746. crash.PlayOnRemove=false
  1747. crash.Volume=0.9
  1748. crash.Looped=false
  1749. crash.Pitch = 1
  1750. crash.Parent=engine
  1751.  
  1752. function muffleranim()
  1753. while engineon == true do wait()
  1754. muffler.Mesh.Offset = Vector3.new(-0.05,0,0)
  1755. parte.Mesh.Offset = Vector3.new(-0.05,0,0)
  1756. wait()
  1757. muffler.Mesh.Offset = Vector3.new(0,0,0)
  1758. parte.Mesh.Offset = Vector3.new(0,0,0)
  1759. end
  1760. end
  1761.  
  1762. mouse.KeyDown:connect(function(key)
  1763. if key == "y" and engineon == false then
  1764. engineon = true
  1765. enginesound:Play()
  1766. mjeep.door1.CanCollide = true
  1767. mjeep.door2.CanCollide = true
  1768. musmoke.Enabled = true
  1769. muffleranim()
  1770. end
  1771. end)
  1772. mouse.KeyDown:connect(function(key)
  1773. if key == "u" and engineon == true then
  1774. engineon = false
  1775. enginesound:Stop()
  1776. mjeep.door1.CanCollide = false
  1777. mjeep.door2.CanCollide = false
  1778. musmoke.Enabled = false
  1779. end
  1780. end)
  1781.  
  1782. mouse.KeyDown:connect(function(key)
  1783. if key == "w" and engineon == true and spressed == false then
  1784. wpressed = true
  1785. bv.MaxForce = Vector3.new(forcelevel,0,forcelevel)
  1786. while wpressed == true do wait(.08)
  1787. accel = accel + 2
  1788. if accel >=1 then enginesound.PlaybackSpeed = 1.5 end
  1789. if accel >=35 then enginesound.PlaybackSpeed = 2 end
  1790. if accel >=90 then enginesound.PlaybackSpeed = 2.5 end
  1791. wheelaccel = wheelaccel + .5
  1792. if accel >=accellimit then accel = accellimit end
  1793. bv.Velocity = (engine.CFrame.lookVector * accel)
  1794. frontwheels.faxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1795. backwheels.baxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1796. end
  1797. end
  1798. end)
  1799. mouse.KeyUp:connect(function(key)
  1800. if key == "w" and engineon == true then
  1801. wpressed = false
  1802. while wpressed == false and accel >0 do wait()
  1803. accel = accel - 2.4
  1804. if accel >=1 then enginesound.PlaybackSpeed = 1 end
  1805. if accel >=35 then enginesound.PlaybackSpeed = 2 end
  1806. if accel >=90 then enginesound.PlaybackSpeed = 2.5 end
  1807. wheelaccel = wheelaccel + .5
  1808. if accel <0 then accel = 0 end
  1809. bv.Velocity = (engine.CFrame.lookVector * accel)
  1810. frontwheels.faxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1811. backwheels.baxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1812. end
  1813. end
  1814. end)
  1815.  
  1816. mouse.KeyDown:connect(function(key)
  1817. if key == "s" and engineon == true and wpressed == false then
  1818. spressed = true
  1819. bv.MaxForce = Vector3.new(forcelevel,0,forcelevel)
  1820. while spressed == true do wait(.06)
  1821. accel = accel - 2
  1822. wheelaccel = wheelaccel - .5
  1823. if accel <=-accellimit then accel = -accellimit end
  1824. bv.Velocity = (engine.CFrame.lookVector * accel)
  1825. frontwheels.faxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1826. backwheels.baxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1827. end
  1828. end
  1829. end)
  1830. mouse.KeyUp:connect(function(key)
  1831. if key == "s" and engineon == true then
  1832. spressed = false
  1833. while spressed == false and accel <0 do wait()
  1834. accel = accel + 2.4
  1835. wheelaccel = wheelaccel - .5
  1836. if accel >0 then accel = 0 end
  1837. bv.Velocity = (engine.CFrame.lookVector * accel)
  1838. frontwheels.faxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1839. backwheels.baxle.Weld2.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),wheelaccel,0)
  1840. end
  1841. end
  1842. end)
  1843.  
  1844. mouse.KeyDown:connect(function(key)
  1845. if key == "a" and engineon == true then
  1846. apressed = true
  1847. angle = .8
  1848. bav.AngularVelocity = Vector3.new(0,angle,0)
  1849. bav.MaxTorque = Vector3.new(0,angletorque,0)
  1850. squealsound:Play()
  1851. end
  1852. end)
  1853.  
  1854. mouse.KeyUp:connect(function(key)
  1855. if key == "a" and engineon == true then
  1856. angle = 0
  1857. apressed = false
  1858. bav.MaxTorque = Vector3.new(0,0,0)
  1859. end
  1860. end)
  1861.  
  1862. mouse.KeyDown:connect(function(key)
  1863. if key == "d" and engineon == true then
  1864. dpressed = true
  1865. angle = .8
  1866. bav.AngularVelocity = Vector3.new(0,-angle,0)
  1867. bav.MaxTorque = Vector3.new(0,-angletorque,0)
  1868. squealsound:Play()
  1869. end
  1870. end)
  1871.  
  1872. mouse.KeyUp:connect(function(key)
  1873. if key == "d" and engineon == true then
  1874. angle = 0
  1875. dpressed = false
  1876. bav.MaxTorque = Vector3.new(0,0,0)
  1877. end
  1878. end)
  1879.  
  1880. mouse.KeyDown:connect(function(key)
  1881. if key == "p" then
  1882. ppressed = ppressed + 1
  1883. if ppressed == 1 then
  1884. mjeep.W5.CanCollide = true
  1885. mjeep.W1.CanCollide = false
  1886. mjeep.W6.CanCollide = true
  1887. mjeep.W2.CanCollide = false
  1888. mjeep.W7.CanCollide = true
  1889. mjeep.W3.CanCollide = false
  1890. mjeep.W8.CanCollide = true
  1891. mjeep.W4.CanCollide = false
  1892.  
  1893. mjeep.W5.Transparency = 0
  1894. mjeep.W1.Transparency = 1
  1895. mjeep.W6.Transparency = 0
  1896. mjeep.W2.Transparency = 1
  1897. mjeep.W7.Transparency = 0.8
  1898. mjeep.W3.Transparency = 1
  1899. mjeep.W8.Transparency = 0
  1900. mjeep.W4.Transparency = 1
  1901. end
  1902. if ppressed == 2 then
  1903. ppressed = 0
  1904. mjeep.W5.CanCollide = false
  1905. mjeep.W1.CanCollide = true
  1906. mjeep.W6.CanCollide = false
  1907. mjeep.W2.CanCollide = true
  1908. mjeep.W7.CanCollide = false
  1909. mjeep.W3.CanCollide = true
  1910. mjeep.W8.CanCollide = false
  1911. mjeep.W4.CanCollide = true
  1912.  
  1913. mjeep.W5.Transparency = 1
  1914. mjeep.W1.Transparency = 0
  1915. mjeep.W6.Transparency = 1
  1916. mjeep.W2.Transparency = 0
  1917. mjeep.W7.Transparency = 1
  1918. mjeep.W3.Transparency = 0.8
  1919. mjeep.W8.Transparency = 1
  1920. mjeep.W4.Transparency = 0
  1921. end
  1922. end
  1923. end)
  1924.  
  1925. mjeep.bumper.Touched:connect(function(h)
  1926. if h.Parent:FindFirstChild("Humanoid")==nil then
  1927. if Vector3.new(mjeep.driverseat.Velocity.x,0,mjeep.driverseat.Velocity.z).magnitude > 6 then
  1928. carhealth = carhealth - 5
  1929. crash:Play()
  1930. print("Car Health:"..carhealth)
  1931. if carhealth <=0 and exploding == false then
  1932. exploding = true
  1933. local fire = Instance.new("Fire",mjeep.Hood)
  1934. engineon = false
  1935. enginesound:Stop()
  1936. mjeep.door1.CanCollide = false
  1937. mjeep.door2.CanCollide = false
  1938. musmoke.Enabled = false
  1939. firesound:Play()
  1940. wait(4)
  1941. firesound:Stop()
  1942. local explosion = Instance.new("Explosion",mjeep.Hood)
  1943. explosionsound:Play()
  1944. explosion.Position = mjeep.Hood.Position
  1945. mjeep.Parent = workspace
  1946. script:Destroy()
  1947. end
  1948. end
  1949. end
  1950. end)
  1951.  
  1952. mjeep.bumper.Touched:connect(function(h)
  1953. if Vector3.new(mjeep.driverseat.Velocity.x,0,mjeep.driverseat.Velocity.z).magnitude > 6 then
  1954. if h.Parent:FindFirstChild("Humanoid") then
  1955. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  1956. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  1957. local dmg = (math.random(1,10))
  1958. h.Parent.Humanoid:TakeDamage(dmg)
  1959. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mjeep.driverseat.CFrame.lookVector*35 end
  1960. h.Parent.Humanoid.Sit = true
  1961. end
  1962. end
  1963. end)
  1964. frontwheels.fwl.Touched:connect(function(h)
  1965. if Vector3.new(mjeep.driverseat.Velocity.x,0,mjeep.driverseat.Velocity.z).magnitude > 6 then
  1966. if h.Parent:FindFirstChild("Humanoid") then
  1967. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  1968. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  1969. local dmg = (math.random(1,5))
  1970. h.Parent.Humanoid:TakeDamage(dmg)
  1971. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mjeep.driverseat.CFrame.lookVector*35 end
  1972. h.Parent.Humanoid.Sit = true
  1973. end
  1974. end
  1975. end)
  1976. frontwheels.fwr.Touched:connect(function(h)
  1977. if Vector3.new(mjeep.driverseat.Velocity.x,0,mjeep.driverseat.Velocity.z).magnitude > 6 then
  1978. if h.Parent:FindFirstChild("Humanoid") then
  1979. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  1980. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  1981. local dmg = (math.random(1,5))
  1982. h.Parent.Humanoid:TakeDamage(dmg)
  1983. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mjeep.driverseat.CFrame.lookVector*35 end
  1984. h.Parent.Humanoid.Sit = true
  1985. end
  1986. end
  1987. end)
  1988. backwheels.bwr.Touched:connect(function(h)
  1989. if Vector3.new(mjeep.driverseat.Velocity.x,0,mjeep.driverseat.Velocity.z).magnitude > 6 then
  1990. if h.Parent:FindFirstChild("Humanoid") then
  1991. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  1992. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  1993. local dmg = (math.random(1,5))
  1994. h.Parent.Humanoid:TakeDamage(dmg)
  1995. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mjeep.driverseat.CFrame.lookVector*35 end
  1996. h.Parent.Humanoid.Sit = true
  1997. end
  1998. end
  1999. end)
  2000. backwheels.bwl.Touched:connect(function(h)
  2001. if Vector3.new(mjeep.driverseat.Velocity.x,0,mjeep.driverseat.Velocity.z).magnitude > 6 then
  2002. if h.Parent:FindFirstChild("Humanoid") then
  2003. if h.Parent.Humanoid.Parent:FindFirstChild("ForceField") then h.Parent.ForceField:Destroy() end
  2004. if h.Parent.Humanoid.Health >1000 then h.Parent.Humanoid.MaxHealth = 1000 h.Parent.Humanoid.Health = 1000 end
  2005. local dmg = (math.random(5,10))
  2006. h.Parent.Humanoid:TakeDamage(dmg)
  2007. if h:FindFirstChild("Torso") then h:FindFirstChild("Torso").Velocity = mjeep.driverseat.CFrame.lookVector*35 end
  2008. h.Parent.Humanoid.Sit = true
  2009. end
  2010. end
  2011. end)
  2012.  
  2013. mouse.KeyDown:connect(function(key)
  2014. if key == "h" and engineon == true then
  2015. horn:Play()
  2016. end
  2017. end)
  2018.  
  2019. mouse.KeyUp:connect(function(key)
  2020. if key == "h" and engineon == true then
  2021. horn:Stop()
  2022. end
  2023. end)
  2024.  
  2025. mouse.KeyUp:connect(function(key)
  2026. if key == "f" then
  2027. fpressed = fpressed + 1
  2028. print(fpressed)
  2029. print("flip correction")
  2030. if fpressed == 1 then
  2031. engine.CFrame = CFrame.new(engine.CFrame.x,engine.CFrame.y,engine.CFrame.z)*CFrame.Angles(math.rad(180),0,0)
  2032. end
  2033. if fpressed == 2 then
  2034. fpressed = 0
  2035. engine.CFrame = CFrame.new(engine.CFrame.x,engine.CFrame.y,engine.CFrame.z)*CFrame.Angles(math.rad(-80),0,0)
  2036. end
  2037. end
  2038. end)
  2039.  
  2040. mouse.KeyDown:connect(function(key)
  2041. if key == "b" and engineon == true then
  2042. bpressed = true
  2043. brake:Play()
  2044. while bpressed == true and accel >=1 do wait(.04)
  2045. accellimit = accellimit - 5
  2046.  
  2047. if accellimit <=1 then brake:Stop() end
  2048. end
  2049. end
  2050. end)
  2051. mouse.KeyUp:connect(function(key)
  2052. if key == "b" and engineon == true then
  2053. bpressed = false
  2054. brake:Stop()
  2055. accellimit = 90
  2056. end
  2057. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement