Advertisement
TheFlamingBlaster

car

Aug 14th, 2016
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 85.81 KB | None | 0 0
  1. -- Created with Z_Vs M2S Plugin UnionOperation -- Created with Z_Vs M2S Plugin
  2.  
  3. Create = function(itemClass,tabl)
  4. local item = Instance.new(itemClass)
  5. for i,v in pairs(tabl) do
  6. local a,b = ypcall(function() return item[i] end)
  7. if a then
  8. item[i] = tabl[i]
  9. end
  10. end
  11. return item
  12. end
  13. function runDummyScript(f,scri)
  14. local oldenv = getfenv(f)
  15. local newenv = setmetatable({}, {
  16. __index = function(_, k)
  17. if k:lower() == 'script' then
  18. return scri
  19. else
  20. return oldenv[k]
  21. end
  22. end
  23. })
  24. setfenv(f, newenv)
  25. ypcall(function() f() end)
  26. end
  27. cors = {}
  28. mas = Instance.new("Model",game:GetService("Lighting"))
  29. mas.Name = "CompiledModel"
  30. o1 = Create("Model",{
  31. ["Name"] = "Motorcycle",
  32. ["Parent"] = mas,
  33. ["PrimaryPart"] = o3,
  34. })
  35. o2 = Create("Part",{
  36. ["Name"] = "HOLDER",
  37. ["Parent"] = o1,
  38. ["Transparency"] = 1,
  39. ["Position"] = Vector3.new(17.0000496, 1.21005905, 1.09991467),
  40. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  41. ["Anchored"] = true,
  42. ["CFrame"] = CFrame.new(17.0000496, 1.21005905, 1.09991467, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  43. ["CanCollide"] = false,
  44. ["FormFactor"] = Enum.FormFactor.Custom,
  45. ["Size"] = Vector3.new(1, 0.400000006, 0.399999797),
  46. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  47. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  48. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  49. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  50. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  51. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  52. })
  53. o3 = Create("VehicleSeat",{
  54. ["Name"] = "Drive",
  55. ["Parent"] = o1,
  56. ["Transparency"] = 1,
  57. ["Position"] = Vector3.new(18.4000473, 1.61003709, -0.700134218),
  58. ["Rotation"] = Vector3.new(-2.50447852e-006, -3.87096907e-006, 2.50447783e-006),
  59. ["Anchored"] = true,
  60. ["CFrame"] = CFrame.new(18.4000473, 1.61003709, -0.700134218, 1, -4.37113847e-008, -6.75611531e-008, 4.37113954e-008, 1, 4.37113954e-008, 6.75611531e-008, -4.37113883e-008, 1),
  61. ["CanCollide"] = false,
  62. ["Size"] = Vector3.new(4, 1, 1),
  63. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  64. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  65. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  66. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  67. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  68. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  69. ["HeadsUpDisplay"] = false,
  70. ["MaxSpeed"] = 120,
  71. ["Torque"] = 2,
  72. ["TurnSpeed"] = 0,
  73. })
  74. o4 = Create("Script",{
  75. ["Name"] = "Create Bike Motors",
  76. ["Parent"] = o3,
  77. })
  78. table.insert(cors,coroutine.create(function()
  79. wait()
  80. runDummyScript(function()
  81. --MADE BY SPACEK531
  82. b = script.Parent.Parent.Base
  83. b2 = script.Parent.Parent.Base2
  84. l = script.Parent.Parent.Left
  85. r = script.Parent.Parent.Right
  86.  
  87. for _,i in pairs (script.Parent.Parent:GetChildren()) do
  88. if i:IsA("Motor") then
  89. i:Destroy()
  90. end
  91. end
  92.  
  93. WheelSize = 2.4--diameter of the wheel
  94.  
  95. --When you are editing the car, make sure that the Left, Right, and Base parts are in a
  96. --straight line, or the wheels will be somewhere you do not expect them to be
  97.  
  98. left = Instance.new("Motor", script.Parent.Parent)
  99. right = Instance.new("Motor", script.Parent.Parent)
  100. left.Name = "LeftMotor"
  101. right.Name = "RightMotor"
  102.  
  103. left.Part0 = l
  104. right.Part0 = r
  105. left.Part1 = b2
  106. right.Part1 = b
  107. right.C0 = CFrame.new(-WheelSize/2-r.Size.x/2,0,0)*CFrame.Angles(math.pi/2,0,math.pi/2)
  108. right.C1 = CFrame.new(-b.Size.x/2-r.Size.x-WheelSize/2,0,0)*CFrame.Angles(math.pi/2,0,math.pi/2)
  109. left.C0 = CFrame.new(-1,0,0)*CFrame.Angles(0,0,math.pi/2)
  110. left.C1 = CFrame.new()*CFrame.Angles(0,0,math.pi/2)
  111. right.MaxVelocity = 0.02
  112. left.MaxVelocity = 0.02
  113. end,o4)
  114. end))
  115. o5 = Create("Script",{
  116. ["Name"] = "Bike FE Script",
  117. ["Parent"] = o3,
  118. })
  119. table.insert(cors,coroutine.create(function()
  120. wait()
  121. runDummyScript(function()
  122. --MADE BY NWSPACEK
  123.  
  124. --please note: this script is modified from the originals (the ones in the cars).
  125. --If you are looking for scripting tips and tricks, I suggest looking at one from
  126. --a car instead of this bike!
  127. wait(0.1)
  128. Players = game:GetService("Players")
  129.  
  130. seat = script.Parent-- the driving seat
  131. car = seat.Parent
  132.  
  133. Player = nil
  134.  
  135. forwardsSpeed = 80--if you removed the Configuration folder, it defaults to this speed forwards
  136. reverseSpeed = 10--if you removed the Configuration folder, it defaults to this speed backwards
  137. StartTime = 1--how long (in seconds) the car should wait before starting up. This is dependant on the starting sfx
  138.  
  139. engineBlock = car:FindFirstChild("EngineBlock")--maybe someone doesn't like sound?
  140.  
  141. lightsOn = false-- whether or not the lights turn on
  142. carRunning = false--whether or not the car is running
  143.  
  144. RemoteControlled = car:FindFirstChild("ControlByRemote")--this is so the car turns properly
  145.  
  146. function CalculatePitch()--this returns the pitch that the engine should be at when its travelling
  147. return 1+engineBlock.Velocity.magnitude/100
  148. end
  149.  
  150. Configuration = car:FindFirstChild("Configuration")-- so you can change the stats of the car
  151. if Configuration then-- if we found an object named Configuration in the car then do this stuff:
  152. local ReverseSpeedValue = Configuration:FindFirstChild("Reverse Speed")-- do we have a reverse speed?
  153. if ReverseSpeedValue ~= nil then
  154. if type(ReverseSpeedValue.Value) == "number" then
  155. reverseSpeed = ReverseSpeedValue.Value
  156. end
  157. ReverseSpeedValue.Changed:connect(function()-- level 1 scripting: go
  158. if ReverseSpeedValue.Parent ~= nil then-- this script works, but there are some things
  159. if type(ReverseSpeedValue.Value) == "number" then-- to make it look a little better
  160. reverseSpeed = ReverseSpeedValue.Value
  161. UpdateVehicle()
  162. end
  163. end
  164. end)
  165. end
  166. local ForwardsSpeedValue = Configuration:FindFirstChild("Forwards Speed")
  167. if ForwardsSpeedValue then
  168. if type(ForwardsSpeedValue.Value) == "number" then
  169. forwardsSpeed = ForwardsSpeedValue.Value
  170. end
  171. ForwardsSpeedValue.Changed:connect(function()-- level 2 scripting: go
  172. if ForwardsSpeedValue.Parent then -- asking if something 'is' is the same as
  173. if ForwardsSpeedValue.Value then-- asking if it is "~= nil"
  174. forwardsSpeed = ForwardsSpeedValue.Value
  175. UpdateVehicle()
  176. end
  177. end
  178. end)
  179. end
  180. local TorqueValue = Configuration:FindFirstChild("Torque")
  181. if TorqueValue then
  182. if type(TorqueValue.Value)=="number" and RemoteControlled then
  183. RemoteControlled.Torque = TorqueValue.Value
  184. end
  185. TorqueValue.Changed:connect(function()
  186. if TorqueValue.Parent and type(TorqueValue.Value) == "number" and RemoteControlled then
  187. RemoteControlled.Torque = TorqueValue.Value
  188. end
  189. end)
  190. end
  191. end
  192.  
  193. script.BikeSteering.Seat.Value = seat
  194.  
  195. if RemoteControlled and not RemoteControlled:IsA("VehicleSeat") then-- how dare you try to disturb this ancient harmony
  196. RemoteControlled = nil-- no food 4 u!
  197. end
  198.  
  199. seat.ChildAdded:connect(function(it)-- something was added to our seat!
  200. if it:IsA("Weld") and it.Name == "SeatWeld" then-- is it the kind of thing players use to sit with?
  201. Player = Players:GetPlayerFromCharacter(it.Part1.Parent)-- is there a player attached to it?
  202. if Player then-- hooray! a player WAS attached to the seat weld. It's time to start the car!
  203. script.BikeSteering:Clone().Parent = Player.Backpack-- for better driving
  204. if RemoteControlled then
  205. RemoteControlled.MaxSpeed = 0-- not yet little child
  206. end
  207. if engineBlock and engineBlock:FindFirstChild("Starting") and engineBlock.Starting:IsA("Sound") then
  208. engineBlock.Starting:Play()
  209. end
  210. if engineBlock and engineBlock:FindFirstChild("Stopping") and engineBlock.Stopping:IsA("Sound") then
  211. engineBlock.Stopping:Stop()
  212. end
  213. wait(StartTime)-- just in case you use different starting sound effects
  214. if it.Parent ~= seat then-- DID OUR LOVELY PLAYER LEAVE WHILE WE WEREN'T LOOKING???????
  215. byebye()--maybe they did, so it's time to shut down the car
  216. else-- they didn't leave!
  217. lightsOn = true-- turn on the lights
  218. carRunning = true-- turn on the car
  219. updatelights()-- make sure we turn on the lights
  220. UpdateVehicle()-- maybe they're in a hurry, so we better check if they have their foot on the gas
  221. if engineBlock and engineBlock:FindFirstChild("Running") and engineBlock.Running:IsA("Sound") then
  222. engineBlock.Running:Play()
  223. engineBlock.Running.Pitch = CalculatePitch()
  224. end
  225. end
  226. end
  227. end
  228. end)
  229.  
  230. seat.ChildRemoved:connect(function(it)--did an object get removed?
  231. if it:isA("Weld") and it.Name == "SeatWeld" then-- if it's a weld and named like a seat weld
  232. byebye()-- time to shut down the car
  233. end
  234. end)
  235.  
  236. function byebye()
  237. if engineBlock and carRunning then-- remember scripting level 3? that applies to below:
  238. if engineBlock and engineBlock:FindFirstChild("Stopping") and engineBlock.Stopping:IsA("Sound") then
  239. engineBlock.Stopping:Play()-- where if it didn't do it like that, the above would error!
  240. wait(0.1) -- because engineBlock.Stopping would not exist, so :IsA() is
  241. end -- "not a valid member"
  242. if engineBlock and engineBlock:FindFirstChild("Running") and engineBlock.Running:IsA("Sound") then
  243. engineBlock.Running:Stop()-- WE MUST NOT STOP
  244. end
  245. if engineBlock and engineBlock:FindFirstChild("Starting") and engineBlock.Starting:IsA("Sound") then
  246. engineBlock.Starting:Stop()-- THIS SCRIPT IS BREAK-PROOF >:U
  247. end
  248. end
  249. if RemoteControlled then
  250. RemoteControlled.MaxSpeed = 0--make sure that the car doesn't drive off without us
  251. end
  252. carRunning = false
  253. lightsOn = false
  254. updatelights()--turn the lights off
  255. UpdateVehicle()--make sure the car stops now that it's off
  256. end
  257.  
  258. RearLight = {}--all the brake lights. These contain one SpotLight that gets manipulated
  259. RearBulb = {}--the brake lights that use a Surface GUI to light up
  260. FrontLight = {}--same as the RearLight but for the front
  261. FrontBulb = {}--same as the RearBulb but for the front
  262. ReverseLight = {}--These light up when you reverse
  263. ReverseBulb = {}--these also light up when you reverse: SurfaceGui style
  264.  
  265. for _, i in pairs (car:GetChildren()) do--populate the tables for ease of modularity.
  266. if i.Name == "RearBulb" then-- you can have any number of these items you want
  267. table.insert(RearBulb,i)-- and you don't have to change the script one bit!
  268. elseif i.Name == "RearLight" then
  269. table.insert(RearLight,i.SpotLight)
  270. elseif i.Name == "FrontLight" then
  271. table.insert(FrontLight,i.SpotLight)
  272. elseif i.Name == "ReverseLight" then
  273. table.insert(ReverseLight,i.SpotLight)
  274. elseif i.Name == "FrontBulb" then
  275. table.insert(FrontBulb,i)
  276. elseif i.Name == "ReverseBulb" then
  277. table.insert(ReverseBulb,i)
  278. end
  279. end
  280.  
  281. function updatelights()-- this turns the lights on and off based on the lightsOn value
  282. for _,i in pairs (RearLight) do
  283. i.Enabled = lightsOn
  284. end
  285. for _,i in pairs (FrontLight) do
  286. i.Enabled = lightsOn
  287. end
  288. for _,i in pairs (FrontBulb) do
  289. SurfaceGuiStandard(i,lightsOn)
  290. end
  291. for _,g in pairs (RearBulb) do
  292. SurfaceGuiBrightness(g,lightsOn,seat.Throttle == 0)
  293. end
  294. end
  295.  
  296. function CreateStabilizer()
  297. if car:FindFirstChild("Stabilizer") then
  298. car.Stabilizer:Destroy()
  299. end
  300. if car:FindFirstChild("LeftHelper") then
  301. local stabilizer = Instance.new("Part",car)
  302. stabilizer.CanCollide = false--the bike not working was because I forgot this!
  303. stabilizer.BottomSurface = "Smooth"
  304. stabilizer.TopSurface = "Smooth"
  305. stabilizer.FormFactor = "Custom"
  306. stabilizer.Size = Vector3.new(3,3,1)
  307. stabilizer.Transparency = 1
  308. stabilizer.Name = "Stabilizer"
  309. stabilizer.CFrame = car.LeftHelper.CFrame*CFrame.new(0,0,1)
  310. local Hinge = Instance.new("Rotate",stabilizer)--mega hax!
  311. Hinge.C0 = CFrame.new()
  312. Hinge.C1 = CFrame.new(0,0,-1)
  313. Hinge.Part0 = car.LeftHelper
  314. Hinge.Part1 = stabilizer
  315. local gyro = Instance.new("BodyGyro",stabilizer)
  316. gyro.D = 700
  317. gyro.maxTorque = Vector3.new(600000, 0, 600000)
  318. gyro.P = 30000
  319. gyro.cframe = CFrame.new()*CFrame.Angles(math.pi,math.pi/2,0)
  320. end
  321. end
  322.  
  323. flippingDebounce = false-- a debounce is a simple way of preventing a function from
  324. -- being called multiple times while it's still running
  325. function Flip()
  326. if not flippingDebounce then-- here's how it works: the function checks if the debounce is off
  327. flippingDebounce = true-- if it's on, then the function stops, but if it's off, set it to true
  328. local bodypos = Instance.new("BodyPosition",seat)-- so we get uninterupted function fun
  329. bodypos.maxForce = Vector3.new(100000,10000000,100000)
  330. bodypos.position = seat.Position + Vector3.new(0,2,0)
  331. local bodygyro = Instance.new("BodyGyro",seat)
  332. game:GetService("Debris"):AddItem(bodypos, 3)-- this makes sure that the flippy bit
  333. game:GetService("Debris"):AddItem(bodygyro, 3)-- deletes itself automatically
  334. wait(2)
  335. CreateStabilizer()
  336. wait(1)
  337. flippingDebounce = false-- when we are done with our fun, allow the function to work again
  338. end
  339. end
  340.  
  341. function SurfaceGuiStandard(part,on)-- this makes it so the lights turn on or off
  342. for _,i in pairs (part:GetChildren()) do
  343. if i:IsA("SurfaceGui") then
  344. i.Enabled = on
  345. end
  346. end
  347. end
  348.  
  349. function SurfaceGuiBrightness(part,on,bright)-- this is so the brake lights dim when we drive
  350. for _,i in pairs (part:GetChildren()) do
  351. if i:IsA("SurfaceGui") then
  352. i.Enabled = on
  353. if i:FindFirstChild("Frame") and i.Frame:IsA("Frame") then
  354. i.Frame.Transparency = bright and 0 or 0.5-- scripting level 4: go
  355. end-- for simple statements, you can have a boolean value decide between 2 values
  356. -- which is the same as writing
  357. -- "if bright then
  358. -- i.Frame.Transparency = 0
  359. -- else
  360. -- i.Frame.Transparency = 0.5
  361. -- end"
  362. --but instead of "then" and "else", you use "and" and "or"
  363. end
  364. end
  365. end
  366.  
  367. hornDebounce = false
  368. function Honk()-- if you are reading this then congratulations! you win a prize!
  369. if hornDebounce then return end-- unfortunately, I could not think of a way
  370. if engineBlock and engineBlock:FindFirstChild("Horn") and engineBlock.Horn:IsA("Sound") then
  371. hornDebounce = true-- to allow people to be able to honk the horn for both PC and mobile
  372. engineBlock.horn:Play() -- in an unobtrusive way. Sorry! :(
  373. print("beep beep") -- UristMcSparks, the guy in charge of the toolbox, doesn't want print statements
  374. wait(0.5)-- but since this is a secret, lets keep it between you and me, OK?
  375. engineBlock.horn:Stop()
  376. hornDebounce = false
  377. end
  378. end
  379.  
  380. function UpdateVehicle()-- this is for the brake lights and speed and stuff like that
  381. if seat.Throttle == 1 and carRunning then-- if we're going forwards
  382. seat.MaxSpeed = forwardsSpeed-- give it forwards speed
  383. elseif seat.Throttle == -1 and carRunning then-- if we're going backwards
  384. seat.MaxSpeed = reverseSpeed-- give it backwards speed
  385. else
  386. seat.MaxSpeed = 0 -- otherwise, give it 0 speed
  387. end
  388. if workspace.FilteringEnabled and RemoteControlled then--the idea from scripting level 2 applies to false as well
  389. RemoteControlled.Throttle = seat.Throttle-- that is, it also works for "~= false"
  390. end-- the reason this line exists is to prevent the server from doing something the client
  391. -- is already doing.
  392. for _,h in pairs (ReverseLight) do-- all these loops below are just updating the lights
  393. h.Enabled = lightsOn and seat.Throttle == -1
  394. end
  395. for _,i in pairs (ReverseBulb) do
  396. SurfaceGuiStandard(i,lightsOn and seat.Throttle == -1)
  397. end
  398. for _,j in pairs (RearLight) do
  399. j.Brightness = 4-math.abs(seat.Throttle)*3
  400. end
  401. for _,k in pairs (RearBulb) do
  402. SurfaceGuiBrightness(k,lightsOn,seat.Throttle == 0)
  403. end
  404. end
  405.  
  406. seat.Changed:connect(UpdateVehicle)-- this is so that when someone drives the car
  407. -- the brake and reverse lights change
  408. -- and the speed of the car changes
  409. CreateStabilizer()
  410.  
  411. while true do
  412. for i = 1, 60 do--60/30 == 2, 2 seconds between deciding if it's upside down
  413. wait()-- we want the steering and sfx to update as many times a second as we can
  414. if workspace.FilteringEnabled then
  415. if car:FindFirstChild("LeftMotor") then
  416. car.LeftMotor.DesiredAngle = seat.Steer*math.rad(20-seat.Velocity.magnitude/10)
  417. end
  418. if car:FindFirstChild("RightMotor") then
  419. car.RightMotor.DesiredAngle = seat.Steer*math.rad(20-seat.Velocity.magnitude/10)
  420. end
  421. end
  422. -- below: make sure there's a sound to play
  423. if carRunning and engineBlock and engineBlock:FindFirstChild("Running") and engineBlock.Running:IsA("Sound") then
  424. engineBlock.Running.Pitch = CalculatePitch()-- and make sure that the car is on before trying
  425. -- to make sure the engine sounds good
  426. end
  427. end
  428. if car:FindFirstChild("Stabilizer") and car:FindFirstChild("LeftHelper") then
  429. if car.Stabilizer.CFrame.lookVector:Dot(car.LeftHelper.CFrame.lookVector) < 0.85 then
  430. CreateStabilizer()
  431. end
  432. elseif car:FindFirstChild("LeftHelper") then
  433. CreateStabilizer()
  434. end
  435. if not flippingDebounce and (seat.CFrame*CFrame.Angles(math.pi/2,0,0)).lookVector.Y < 0.2 then--am I upside down?
  436. Spawn(Flip)--flip the bike right side up
  437.  
  438. -- as a fun experiment, see what happens if you replace "Spawn(Flip)" with "Flip()"
  439. -- and see what the difference is when you drive the car off the baseplate
  440. -- if you did it right, you'll notice that the engine sound changes differently!
  441. end
  442. end
  443.  
  444. -- scripting level 1000000: go
  445. -- if you type 2 dashes like this "--" you can create a comment
  446. -- comments aren't executed, so you can type stuff like this!
  447.  
  448. --[==[
  449.  
  450. if you want to make longer comments
  451.  
  452. you can surround them with the double dashes and double square brackets "--[[" and "--]]"
  453.  
  454. and you can surround those by ones with equals signs in them too
  455.  
  456. so you don't have to type the "--" every single line
  457.  
  458. --]==]
  459.  
  460.  
  461. --Thanks for watching!
  462. --NWSpacek
  463. end,o5)
  464. end))
  465. o6 = Create("LocalScript",{
  466. ["Name"] = "BikeSteering",
  467. ["Parent"] = o5,
  468. })
  469. table.insert(cors,coroutine.create(function()
  470. wait()
  471. runDummyScript(function()
  472. --MADE BY NWSPACEK
  473. wait(1)-- give it time to adjust to the scary and new environment of Backpack
  474. SeatValue = script:WaitForChild("Seat")-- orient ourselves to the car we are sitting in
  475. if SeatValue:IsA("ObjectValue") and SeatValue.Value and SeatValue.Value:IsA("VehicleSeat") then
  476. seat = SeatValue.Value
  477. car = seat.Parent
  478. if seat:FindFirstChild("RocketPropulsion") then
  479. seat.RocketPropulsion:Fire()--THIS DOESNT WORK MEGA QQ
  480. end
  481. while seat:FindFirstChild("SeatWeld") do--what this loop does is continue running until the
  482. wait()--statement between the "while" and "do" is not true.
  483. if car:FindFirstChild("LeftMotor") then
  484. car.LeftMotor.DesiredAngle = seat.Steer*math.rad(20-seat.Velocity.magnitude/10)
  485. end
  486. if car:FindFirstChild("RightMotor") then
  487. car.RightMotor.DesiredAngle = seat.Steer*math.rad(20-seat.Velocity.magnitude/10)
  488. end
  489. if car:FindFirstChild("Configuration") then
  490. if seat.Throttle == 1 and car.Configuration:FindFirstChild("Forwards Speed") then
  491. seat.MaxSpeed = car.Configuration["Forwards Speed"].Value
  492. elseif seat.Throttle == 0 then
  493. seat.MaxSpeed = 0
  494. elseif seat.Throttle == -1 and car.Configuration:FindFirstChild("Reverse Speed") then
  495. seat.MaxSpeed = car.Configuration["Reverse Speed"].Value
  496. end
  497. end
  498. end
  499. -- the interesting thing about loops is they stop everything below them from running
  500. -- until the loop stops. When the loop stops because the player is no longer sitting
  501. -- the below code will run:
  502. if seat:FindFirstChild("RocketPropulsion") then
  503. seat.RocketPropulsion:Abort()--I'LL JUST LEAVE IT IN IN CASE IT EVER DOES
  504. end
  505. end
  506. script:Destroy()-- momma always said to clean up after yourself
  507. end,o6)
  508. end))
  509. o7 = Create("ObjectValue",{
  510. ["Name"] = "Seat",
  511. ["Parent"] = o6,
  512. })
  513. o8 = Create("Part",{
  514. ["Name"] = "HolderBase",
  515. ["Parent"] = o1,
  516. ["Material"] = Enum.Material.SmoothPlastic,
  517. ["Position"] = Vector3.new(18.4000473, 1.41003704, -1.40005481),
  518. ["Rotation"] = Vector3.new(-90, 90, 0),
  519. ["Anchored"] = true,
  520. ["CFrame"] = CFrame.new(18.4000473, 1.41003704, -1.40005481, 4.76456033e-022, 6.75611531e-008, 1, -0.99999994, -4.37113883e-008, -2.11758237e-022, 4.37113847e-008, -1, 6.75611602e-008),
  521. ["FormFactor"] = Enum.FormFactor.Custom,
  522. ["Friction"] = 1.2999999523163,
  523. ["Size"] = Vector3.new(0.600000024, 2.19999981, 0.800000072),
  524. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  525. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  526. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  527. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  528. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  529. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  530. })
  531. o9 = Create("CylinderMesh",{
  532. ["Parent"] = o8,
  533. })
  534. o10 = Create("Weld",{
  535. ["Name"] = "EngineBlock",
  536. ["Parent"] = o8,
  537. ["Part0"] = o8,
  538. ["Part1"] = o116,
  539. })
  540. o11 = Create("Weld",{
  541. ["Name"] = "Base",
  542. ["Parent"] = o8,
  543. ["Part0"] = o8,
  544. ["Part1"] = o57,
  545. })
  546. o12 = Create("Weld",{
  547. ["Name"] = "HOLDER",
  548. ["Parent"] = o8,
  549. ["Part0"] = o8,
  550. ["Part1"] = o2,
  551. })
  552. o13 = Create("Weld",{
  553. ["Name"] = "Part",
  554. ["Parent"] = o8,
  555. ["Part0"] = o8,
  556. ["Part1"] = o144,
  557. })
  558. o14 = Create("Weld",{
  559. ["Name"] = "Part",
  560. ["Parent"] = o8,
  561. ["Part0"] = o8,
  562. ["Part1"] = o126,
  563. })
  564. o15 = Create("Weld",{
  565. ["Name"] = "Part",
  566. ["Parent"] = o8,
  567. ["Part0"] = o8,
  568. ["Part1"] = o98,
  569. })
  570. o16 = Create("Weld",{
  571. ["Name"] = "Cylinder",
  572. ["Parent"] = o8,
  573. ["Part0"] = o8,
  574. ["Part1"] = mas,
  575. })
  576. o17 = Create("Weld",{
  577. ["Name"] = "Part",
  578. ["Parent"] = o8,
  579. ["Part0"] = o8,
  580. ["Part1"] = o133,
  581. })
  582. o18 = Create("Weld",{
  583. ["Name"] = "Passenger",
  584. ["Parent"] = o8,
  585. ["Part0"] = o8,
  586. ["Part1"] = o152,
  587. })
  588. o19 = Create("Weld",{
  589. ["Name"] = "Front Fender",
  590. ["Parent"] = o8,
  591. ["Part0"] = o8,
  592. ["Part1"] = mas,
  593. })
  594. o20 = Create("Weld",{
  595. ["Name"] = "Part",
  596. ["Parent"] = o8,
  597. ["Part0"] = o8,
  598. ["Part1"] = o95,
  599. })
  600. o21 = Create("Weld",{
  601. ["Name"] = "Part",
  602. ["Parent"] = o8,
  603. ["Part0"] = o8,
  604. ["Part1"] = o105,
  605. })
  606. o22 = Create("Weld",{
  607. ["Name"] = "Part",
  608. ["Parent"] = o8,
  609. ["Part0"] = o8,
  610. ["Part1"] = o107,
  611. })
  612. o23 = Create("Weld",{
  613. ["Name"] = "Part",
  614. ["Parent"] = o8,
  615. ["Part0"] = o8,
  616. ["Part1"] = o97,
  617. })
  618. o24 = Create("Weld",{
  619. ["Name"] = "Part",
  620. ["Parent"] = o8,
  621. ["Part0"] = o8,
  622. ["Part1"] = o125,
  623. })
  624. o25 = Create("Weld",{
  625. ["Name"] = "Cylinder",
  626. ["Parent"] = o8,
  627. ["Part0"] = o8,
  628. ["Part1"] = mas,
  629. })
  630. o26 = Create("Weld",{
  631. ["Name"] = "Part",
  632. ["Parent"] = o8,
  633. ["Part0"] = o8,
  634. ["Part1"] = o120,
  635. })
  636. o27 = Create("Weld",{
  637. ["Name"] = "Part",
  638. ["Parent"] = o8,
  639. ["Part0"] = o8,
  640. ["Part1"] = o58,
  641. })
  642. o28 = Create("Weld",{
  643. ["Name"] = "Part",
  644. ["Parent"] = o8,
  645. ["Part0"] = o8,
  646. ["Part1"] = o141,
  647. })
  648. o29 = Create("Weld",{
  649. ["Name"] = "Part",
  650. ["Parent"] = o8,
  651. ["Part0"] = o8,
  652. ["Part1"] = o142,
  653. })
  654. o30 = Create("Weld",{
  655. ["Name"] = "Part",
  656. ["Parent"] = o8,
  657. ["Part0"] = o8,
  658. ["Part1"] = o115,
  659. })
  660. o31 = Create("Weld",{
  661. ["Name"] = "Base2",
  662. ["Parent"] = o8,
  663. ["Part0"] = o8,
  664. ["Part1"] = o60,
  665. })
  666. o32 = Create("Weld",{
  667. ["Name"] = "RearBulb",
  668. ["Parent"] = o8,
  669. ["Part0"] = o8,
  670. ["Part1"] = o157,
  671. })
  672. o33 = Create("Weld",{
  673. ["Name"] = "RearLight",
  674. ["Parent"] = o8,
  675. ["Part0"] = o8,
  676. ["Part1"] = o161,
  677. })
  678. o34 = Create("Weld",{
  679. ["Name"] = "Part",
  680. ["Parent"] = o8,
  681. ["Part0"] = o8,
  682. ["Part1"] = o99,
  683. })
  684. o35 = Create("Weld",{
  685. ["Name"] = "Part",
  686. ["Parent"] = o8,
  687. ["Part0"] = o8,
  688. ["Part1"] = o110,
  689. })
  690. o36 = Create("Weld",{
  691. ["Name"] = "Part",
  692. ["Parent"] = o8,
  693. ["Part0"] = o8,
  694. ["Part1"] = o127,
  695. })
  696. o37 = Create("Weld",{
  697. ["Name"] = "Part",
  698. ["Parent"] = o8,
  699. ["Part0"] = o8,
  700. ["Part1"] = o136,
  701. })
  702. o38 = Create("Weld",{
  703. ["Name"] = "Part",
  704. ["Parent"] = o8,
  705. ["Part0"] = o8,
  706. ["Part1"] = o146,
  707. })
  708. o39 = Create("Weld",{
  709. ["Name"] = "Part",
  710. ["Parent"] = o8,
  711. ["Part0"] = o8,
  712. ["Part1"] = o109,
  713. })
  714. o40 = Create("Weld",{
  715. ["Name"] = "Part",
  716. ["Parent"] = o8,
  717. ["Part0"] = o8,
  718. ["Part1"] = o145,
  719. })
  720. o41 = Create("Weld",{
  721. ["Name"] = "Drive",
  722. ["Parent"] = o8,
  723. ["Part0"] = o8,
  724. ["Part1"] = o3,
  725. })
  726. o42 = Create("Weld",{
  727. ["Name"] = "Part",
  728. ["Parent"] = o8,
  729. ["Part0"] = o8,
  730. ["Part1"] = o122,
  731. })
  732. o43 = Create("Weld",{
  733. ["Name"] = "Part",
  734. ["Parent"] = o8,
  735. ["Part0"] = o8,
  736. ["Part1"] = o101,
  737. })
  738. o44 = Create("Weld",{
  739. ["Name"] = "Front Fender",
  740. ["Parent"] = o8,
  741. ["Part0"] = o8,
  742. ["Part1"] = mas,
  743. })
  744. o45 = Create("Weld",{
  745. ["Name"] = "Seat",
  746. ["Parent"] = o8,
  747. ["Part0"] = o8,
  748. ["Part1"] = mas,
  749. })
  750. o46 = Create("Weld",{
  751. ["Name"] = "Part",
  752. ["Parent"] = o8,
  753. ["Part0"] = o8,
  754. ["Part1"] = o90,
  755. })
  756. o47 = Create("Weld",{
  757. ["Name"] = "Gas tank",
  758. ["Parent"] = o8,
  759. ["Part0"] = o8,
  760. ["Part1"] = mas,
  761. })
  762. o48 = Create("Weld",{
  763. ["Name"] = "Part",
  764. ["Parent"] = o8,
  765. ["Part0"] = o8,
  766. ["Part1"] = o94,
  767. })
  768. o49 = Create("Part",{
  769. ["Name"] = "FrontLight",
  770. ["Parent"] = o1,
  771. ["BrickColor"] = BrickColor.new("Black"),
  772. ["Transparency"] = 1,
  773. ["Position"] = Vector3.new(18.4000473, 3.16003609, -4.40002441),
  774. ["Rotation"] = Vector3.new(-2.32210732e-006, -2.26755878e-006, -6.83018925e-006),
  775. ["Anchored"] = true,
  776. ["CFrame"] = CFrame.new(18.4000473, 3.16003609, -4.40002441, 1, 1.1920929e-007, -3.95763671e-008, -1.1920929e-007, 1, 4.05284197e-008, 3.89470181e-008, -4.05285334e-008, 1),
  777. ["CanCollide"] = false,
  778. ["Elasticity"] = 0,
  779. ["FormFactor"] = Enum.FormFactor.Custom,
  780. ["Friction"] = 0.69999998807907,
  781. ["Size"] = Vector3.new(1.00000048, 1.00000024, 0.400001258),
  782. ["BackSurface"] = Enum.SurfaceType.Weld,
  783. ["BottomSurface"] = Enum.SurfaceType.Weld,
  784. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  785. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  786. ["RightSurface"] = Enum.SurfaceType.Weld,
  787. ["TopSurface"] = Enum.SurfaceType.Weld,
  788. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  789. })
  790. o50 = Create("SpotLight",{
  791. ["Parent"] = o49,
  792. ["Enabled"] = false,
  793. ["Range"] = 40,
  794. ["Angle"] = 60,
  795. })
  796. o51 = Create("Part",{
  797. ["Name"] = "Right",
  798. ["Parent"] = o1,
  799. ["Material"] = Enum.Material.SmoothPlastic,
  800. ["BrickColor"] = BrickColor.new("Black"),
  801. ["Transparency"] = 1,
  802. ["Position"] = Vector3.new(17.0000496, 1.21007001, -4.5),
  803. ["Rotation"] = Vector3.new(-155, -2.69114821e-006, -180),
  804. ["Velocity"] = Vector3.new(0.0149893714, -0.0475157201, -0.0262569152),
  805. ["Anchored"] = true,
  806. ["CFrame"] = CFrame.new(17.0000496, 1.21007001, -4.5, -1, 3.95576976e-008, -4.69693973e-008, 1.59975855e-008, 0.906304836, 0.422617018, 5.92851706e-008, 0.422617018, -0.906304836),
  807. ["CanCollide"] = false,
  808. ["Elasticity"] = 0,
  809. ["FormFactor"] = Enum.FormFactor.Custom,
  810. ["Friction"] = 0.69999998807907,
  811. ["Size"] = Vector3.new(0.400000006, 0.800000012, 1.20000005),
  812. ["BackSurface"] = Enum.SurfaceType.Unjoinable,
  813. ["BottomSurface"] = Enum.SurfaceType.Unjoinable,
  814. ["FrontSurface"] = Enum.SurfaceType.Unjoinable,
  815. ["LeftSurface"] = Enum.SurfaceType.Studs,
  816. ["RightSurface"] = Enum.SurfaceType.Unjoinable,
  817. ["TopSurface"] = Enum.SurfaceType.Unjoinable,
  818. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  819. })
  820. o52 = Create("Weld",{
  821. ["Name"] = "FrontForksBrace",
  822. ["Parent"] = o51,
  823. ["Part0"] = o51,
  824. ["Part1"] = o104,
  825. })
  826. o53 = Create("Weld",{
  827. ["Name"] = "FrontForksBrace",
  828. ["Parent"] = o51,
  829. ["Part0"] = o51,
  830. ["Part1"] = o67,
  831. })
  832. o54 = Create("Weld",{
  833. ["Name"] = "RightHelper",
  834. ["Parent"] = o51,
  835. ["Part0"] = o51,
  836. ["Part1"] = o147,
  837. })
  838. o55 = Create("Part",{
  839. ["Name"] = "Wheel",
  840. ["Parent"] = o1,
  841. ["BrickColor"] = BrickColor.new("Black"),
  842. ["Transparency"] = 1,
  843. ["Position"] = Vector3.new(18.4000473, 1.21003604, -4.50006104),
  844. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  845. ["Anchored"] = true,
  846. ["CFrame"] = CFrame.new(18.4000473, 1.21003604, -4.50006104, -4.07396632e-015, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  847. ["FormFactor"] = Enum.FormFactor.Symmetric,
  848. ["Friction"] = 1.2999999523163,
  849. ["Shape"] = Enum.PartType.Ball,
  850. ["Size"] = Vector3.new(2.39999986, 2.39999986, 2.39999986),
  851. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  852. ["BottomSurface"] = Enum.SurfaceType.Hinge,
  853. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  854. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  855. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  856. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  857. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  858. })
  859. o56 = Create("BodyGyro",{
  860. ["Parent"] = o55,
  861. ["maxTorque"] = Vector3.new(0, 0, 100),
  862. ["P"] = 100,
  863. ["D"] = 50,
  864. ["MaxTorque"] = Vector3.new(0, 0, 100),
  865. })
  866. o57 = Create("Part",{
  867. ["Name"] = "Base",
  868. ["Parent"] = o1,
  869. ["Material"] = Enum.Material.SmoothPlastic,
  870. ["BrickColor"] = BrickColor.new("Black"),
  871. ["Transparency"] = 1,
  872. ["Position"] = Vector3.new(16.7000656, 1.21007001, -4.5),
  873. ["Rotation"] = Vector3.new(-155, -2.69114821e-006, -180),
  874. ["Anchored"] = true,
  875. ["CFrame"] = CFrame.new(16.7000656, 1.21007001, -4.5, -1, 3.95576976e-008, -4.69693973e-008, 1.59975855e-008, 0.906304836, 0.422617018, 5.92851706e-008, 0.422617018, -0.906304836),
  876. ["CanCollide"] = false,
  877. ["Elasticity"] = 0,
  878. ["FormFactor"] = Enum.FormFactor.Custom,
  879. ["Friction"] = 0.69999998807907,
  880. ["Size"] = Vector3.new(0.200000003, 0.800000012, 1.00000048),
  881. ["BackSurface"] = Enum.SurfaceType.Weld,
  882. ["BottomSurface"] = Enum.SurfaceType.Weld,
  883. ["FrontSurface"] = Enum.SurfaceType.Weld,
  884. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  885. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  886. ["TopSurface"] = Enum.SurfaceType.Weld,
  887. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  888. })
  889. o58 = Create("Part",{
  890. ["Parent"] = o1,
  891. ["Material"] = Enum.Material.SmoothPlastic,
  892. ["Position"] = Vector3.new(18.1061325, 1.62823701, -2.10006714),
  893. ["Rotation"] = Vector3.new(-2.50447647e-006, -6.3754469e-006, -45),
  894. ["Anchored"] = true,
  895. ["CFrame"] = CFrame.new(18.1061325, 1.62823701, -2.10006714, 0.707106054, 0.707106054, -1.11272541e-007, -0.707106054, 0.707106054, 4.37113599e-008, 1.09590097e-007, 4.7772879e-008, 1),
  896. ["CanCollide"] = false,
  897. ["FormFactor"] = Enum.FormFactor.Custom,
  898. ["Friction"] = 1.2999999523163,
  899. ["Size"] = Vector3.new(0.300000131, 0.599999905, 0.599999845),
  900. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  901. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  902. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  903. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  904. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  905. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  906. })
  907. o60 = Create("Part",{
  908. ["Name"] = "Base2",
  909. ["Parent"] = o1,
  910. ["Transparency"] = 1,
  911. ["Position"] = Vector3.new(18.4000473, 0.610135078, -1.20007312),
  912. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754128e-006, 2.50447806e-006),
  913. ["Anchored"] = true,
  914. ["CFrame"] = CFrame.new(18.4000473, 0.610135078, -1.20007312, 1, -4.37113883e-008, -1.11271945e-007, 4.37113918e-008, 1, 4.37113883e-008, 1.11273138e-007, -4.37113918e-008, 1),
  915. ["CanCollide"] = false,
  916. ["FormFactor"] = Enum.FormFactor.Custom,
  917. ["Size"] = Vector3.new(0.99999994, 1.00000024, 1),
  918. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  919. ["TopSurface"] = Enum.SurfaceType.Smooth,
  920. })
  921. o61 = Create("Script",{
  922. ["Name"] = "Unanchor",
  923. ["Parent"] = o1,
  924. })
  925. table.insert(cors,coroutine.create(function()
  926. wait()
  927. runDummyScript(function()
  928. wait(0.5)
  929. function unanchor (m)
  930. for _,i in pairs (m:GetChildren()) do
  931. if i:IsA("BasePart") then
  932. i:MakeJoints()
  933. i.Anchored = false
  934. else
  935. unanchor(i)
  936. end
  937. end
  938. end
  939. unanchor(script.Parent)
  940. end,o61)
  941. end))
  942. o62 = Create("Configuration",{
  943. ["Parent"] = o1,
  944. })
  945. o63 = Create("NumberValue",{
  946. ["Name"] = "Reverse Speed",
  947. ["Parent"] = o62,
  948. ["Value"] = 10,
  949. })
  950. o64 = Create("NumberValue",{
  951. ["Name"] = "Forwards Speed",
  952. ["Parent"] = o62,
  953. ["Value"] = 80,
  954. })
  955. o65 = Create("Part",{
  956. ["Name"] = "Bowl",
  957. ["Parent"] = o1,
  958. ["BrickColor"] = BrickColor.new("White"),
  959. ["Reflectance"] = 0.20000000298023,
  960. ["Position"] = Vector3.new(18.4000473, 3.16003609, -4.05004883),
  961. ["Rotation"] = Vector3.new(90, 0, -0),
  962. ["Anchored"] = true,
  963. ["CFrame"] = CFrame.new(18.4000473, 3.16003609, -4.05004883, 1, 0, 0, 0, -4.37113883e-008, -1, 0, 1, -4.37113883e-008),
  964. ["CanCollide"] = false,
  965. ["FormFactor"] = Enum.FormFactor.Plate,
  966. ["Size"] = Vector3.new(1, 0.400000006, 1),
  967. ["Color"] = Color3.new(0.94902, 0.952941, 0.952941),
  968. })
  969. o66 = Create("SpecialMesh",{
  970. ["Parent"] = o65,
  971. ["MeshId"] = "http://www.roblox.com/asset/?id=19380188",
  972. ["Scale"] = Vector3.new(0.75, 0.75, 0.75),
  973. ["MeshType"] = Enum.MeshType.FileMesh,
  974. })
  975. o67 = Create("Part",{
  976. ["Name"] = "FrontForksBrace",
  977. ["Parent"] = o1,
  978. ["Material"] = Enum.Material.SmoothPlastic,
  979. ["BrickColor"] = BrickColor.new("Institutional white"),
  980. ["Reflectance"] = 0.20000000298023,
  981. ["Position"] = Vector3.new(18.4000778, 3.27344704, -3.48269653),
  982. ["Rotation"] = Vector3.new(-155, -2.69121097e-006, -180),
  983. ["Anchored"] = true,
  984. ["CFrame"] = CFrame.new(18.4000778, 3.27344704, -3.48269653, -1, 3.95373796e-008, -4.69704915e-008, 1.59824438e-008, 0.906307757, 0.422618359, 5.92789462e-008, 0.422618389, -0.906307757),
  985. ["Elasticity"] = 0,
  986. ["FormFactor"] = Enum.FormFactor.Custom,
  987. ["Friction"] = 0.69999998807907,
  988. ["Size"] = Vector3.new(0.900000095, 0.200000048, 0.300000489),
  989. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  990. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  991. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  992. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  993. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  994. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  995. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  996. })
  997. o68 = Create("Weld",{
  998. ["Name"] = "Part",
  999. ["Parent"] = o67,
  1000. ["Part0"] = o67,
  1001. ["Part1"] = o137,
  1002. })
  1003. o69 = Create("Weld",{
  1004. ["Name"] = "Part",
  1005. ["Parent"] = o67,
  1006. ["Part0"] = o67,
  1007. ["Part1"] = o139,
  1008. })
  1009. o70 = Create("Weld",{
  1010. ["Name"] = "Block",
  1011. ["Parent"] = o67,
  1012. ["Part0"] = o67,
  1013. ["Part1"] = o153,
  1014. })
  1015. o71 = Create("Weld",{
  1016. ["Name"] = "Part",
  1017. ["Parent"] = o67,
  1018. ["Part0"] = o67,
  1019. ["Part1"] = o88,
  1020. })
  1021. o72 = Create("Weld",{
  1022. ["Name"] = "Handle",
  1023. ["Parent"] = o67,
  1024. ["Part0"] = o67,
  1025. ["Part1"] = o103,
  1026. })
  1027. o73 = Create("Weld",{
  1028. ["Name"] = "Block",
  1029. ["Parent"] = o67,
  1030. ["Part0"] = o67,
  1031. ["Part1"] = o154,
  1032. })
  1033. o74 = Create("Weld",{
  1034. ["Name"] = "Part",
  1035. ["Parent"] = o67,
  1036. ["Part0"] = o67,
  1037. ["Part1"] = o91,
  1038. })
  1039. o75 = Create("Weld",{
  1040. ["Name"] = "Handle",
  1041. ["Parent"] = o67,
  1042. ["Part0"] = o67,
  1043. ["Part1"] = o128,
  1044. })
  1045. o76 = Create("Weld",{
  1046. ["Name"] = "Part",
  1047. ["Parent"] = o67,
  1048. ["Part0"] = o67,
  1049. ["Part1"] = o129,
  1050. })
  1051. o77 = Create("Weld",{
  1052. ["Name"] = "FrontForksBrace",
  1053. ["Parent"] = o67,
  1054. ["Part0"] = o67,
  1055. ["Part1"] = o156,
  1056. })
  1057. o78 = Create("Weld",{
  1058. ["Name"] = "FrontForksBrace",
  1059. ["Parent"] = o67,
  1060. ["Part0"] = o67,
  1061. ["Part1"] = o155,
  1062. })
  1063. o79 = Create("Weld",{
  1064. ["Name"] = "Bowl Stalk",
  1065. ["Parent"] = o67,
  1066. ["Part0"] = o67,
  1067. ["Part1"] = o163,
  1068. })
  1069. o80 = Create("Weld",{
  1070. ["Name"] = "Bowl",
  1071. ["Parent"] = o67,
  1072. ["Part0"] = o67,
  1073. ["Part1"] = o65,
  1074. })
  1075. o81 = Create("Weld",{
  1076. ["Name"] = "FrontBulb",
  1077. ["Parent"] = o67,
  1078. ["Part0"] = o67,
  1079. ["Part1"] = o168,
  1080. })
  1081. o82 = Create("Weld",{
  1082. ["Name"] = "FrontLight",
  1083. ["Parent"] = o67,
  1084. ["Part0"] = o67,
  1085. ["Part1"] = o49,
  1086. })
  1087. o85 = Create("Decal",{
  1088. ["Parent"] = mas,
  1089. ["Texture"] = "http://www.roblox.com/asset/?id=184537773",
  1090. ["Face"] = Enum.NormalId.Left,
  1091. })
  1092. o86 = Create("Decal",{
  1093. ["Parent"] = mas,
  1094. ["Texture"] = "http://www.roblox.com/asset/?id=184537773",
  1095. ["Face"] = Enum.NormalId.Right,
  1096. })
  1097. o87 = Create("Weld",{
  1098. ["Name"] = "Wheel",
  1099. ["Parent"] = mas,
  1100. ["Part0"] = mas,
  1101. ["Part1"] = o123,
  1102. })
  1103. o88 = Create("Part",{
  1104. ["Parent"] = o1,
  1105. ["Material"] = Enum.Material.SmoothPlastic,
  1106. ["BrickColor"] = BrickColor.new("Institutional white"),
  1107. ["Reflectance"] = 0.20000000298023,
  1108. ["Position"] = Vector3.new(19.2018814, 3.90728307, -2.76257324),
  1109. ["Rotation"] = Vector3.new(-172.756393, 54.8089638, -106.779251),
  1110. ["Anchored"] = true,
  1111. ["CFrame"] = CFrame.new(19.2018814, 3.90728307, -2.76257324, -0.166370511, 0.551767886, 0.817235053, 0.979530215, 0.187724411, 0.0726652443, -0.113321066, 0.812595308, -0.571705163),
  1112. ["CanCollide"] = false,
  1113. ["Elasticity"] = 0,
  1114. ["FormFactor"] = Enum.FormFactor.Custom,
  1115. ["Friction"] = 0.69999998807907,
  1116. ["Size"] = Vector3.new(0.300000012, 1.30000019, 0.300000489),
  1117. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1118. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1119. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1120. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1121. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1122. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1123. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1124. })
  1125. o89 = Create("CylinderMesh",{
  1126. ["Parent"] = o88,
  1127. ["Scale"] = Vector3.new(1, 0.949999988, 1),
  1128. })
  1129. o90 = Create("Part",{
  1130. ["Parent"] = o1,
  1131. ["Material"] = Enum.Material.SmoothPlastic,
  1132. ["BrickColor"] = BrickColor.new("White"),
  1133. ["Position"] = Vector3.new(18.400053, 2.17189193, -0.0697325915),
  1134. ["Rotation"] = Vector3.new(-34.9999809, -5.22267328e-006, -90),
  1135. ["Anchored"] = true,
  1136. ["CFrame"] = CFrame.new(18.400053, 2.17189193, -0.0697325915, -6.38043716e-008, 1, -9.11528417e-008, -0.819152236, -1.7584309e-011, 0.573576152, 0.573576152, 1.11280364e-007, 0.819152236),
  1137. ["CanCollide"] = false,
  1138. ["FormFactor"] = Enum.FormFactor.Custom,
  1139. ["Size"] = Vector3.new(0.400000006, 0.80000037, 1.36863577),
  1140. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1141. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1142. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1143. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1144. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1145. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1146. ["Color"] = Color3.new(0.94902, 0.952941, 0.952941),
  1147. })
  1148. o91 = Create("Part",{
  1149. ["Parent"] = o1,
  1150. ["Material"] = Enum.Material.SmoothPlastic,
  1151. ["BrickColor"] = BrickColor.new("Institutional white"),
  1152. ["Reflectance"] = 0.20000000298023,
  1153. ["Position"] = Vector3.new(17.5982437, 3.90723395, -2.76266479),
  1154. ["Rotation"] = Vector3.new(-172.756348, -54.809864, 106.779091),
  1155. ["Anchored"] = true,
  1156. ["CFrame"] = CFrame.new(17.5982437, 3.90723395, -2.76266479, -0.166365266, -0.551755965, -0.817244112, -0.979530931, 0.18772009, 0.0726641268, 0.113320798, 0.812604666, -0.57169205),
  1157. ["CanCollide"] = false,
  1158. ["Elasticity"] = 0,
  1159. ["FormFactor"] = Enum.FormFactor.Custom,
  1160. ["Friction"] = 0.69999998807907,
  1161. ["Size"] = Vector3.new(0.300000042, 1.30000007, 0.300000489),
  1162. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1163. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1164. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1165. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1166. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1167. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1168. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1169. })
  1170. o92 = Create("CylinderMesh",{
  1171. ["Parent"] = o91,
  1172. ["Scale"] = Vector3.new(1, 0.949999988, 1),
  1173. })
  1174. o93 = Create("Part",{
  1175. ["Name"] = "BalanceBase",
  1176. ["Parent"] = o1,
  1177. ["Material"] = Enum.Material.SmoothPlastic,
  1178. ["BrickColor"] = BrickColor.new("Black"),
  1179. ["Transparency"] = 1,
  1180. ["Position"] = Vector3.new(20.1000671, 1.21007001, -4.5),
  1181. ["Rotation"] = Vector3.new(-155, -2.69114821e-006, -180),
  1182. ["Anchored"] = true,
  1183. ["CFrame"] = CFrame.new(20.1000671, 1.21007001, -4.5, -1, 3.95576976e-008, -4.69693973e-008, 1.59975855e-008, 0.906304836, 0.422617018, 5.92851706e-008, 0.422617018, -0.906304836),
  1184. ["CanCollide"] = false,
  1185. ["Elasticity"] = 0,
  1186. ["FormFactor"] = Enum.FormFactor.Custom,
  1187. ["Friction"] = 0.69999998807907,
  1188. ["Size"] = Vector3.new(0.200000003, 0.800000012, 1.00000048),
  1189. ["BackSurface"] = Enum.SurfaceType.Unjoinable,
  1190. ["BottomSurface"] = Enum.SurfaceType.Unjoinable,
  1191. ["FrontSurface"] = Enum.SurfaceType.Unjoinable,
  1192. ["LeftSurface"] = Enum.SurfaceType.Unjoinable,
  1193. ["RightSurface"] = Enum.SurfaceType.Unjoinable,
  1194. ["TopSurface"] = Enum.SurfaceType.Unjoinable,
  1195. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  1196. })
  1197. o94 = Create("Part",{
  1198. ["Parent"] = o1,
  1199. ["Material"] = Enum.Material.SmoothPlastic,
  1200. ["BrickColor"] = BrickColor.new("White"),
  1201. ["Position"] = Vector3.new(18.400053, 2.12207294, -1.0300597),
  1202. ["Rotation"] = Vector3.new(20.000021, -5.98998304e-006, -90),
  1203. ["Anchored"] = true,
  1204. ["CFrame"] = CFrame.new(18.400053, 2.12207294, -1.0300597, 3.82092296e-008, 1, -1.04544924e-007, -0.939692557, -1.48402124e-010, -0.342020512, -0.342020512, 1.11236666e-007, 0.939692557),
  1205. ["CanCollide"] = false,
  1206. ["FormFactor"] = Enum.FormFactor.Custom,
  1207. ["Size"] = Vector3.new(0.600000024, 0.80000037, 1.31350493),
  1208. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1209. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1210. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1211. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1212. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1213. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1214. ["Color"] = Color3.new(0.94902, 0.952941, 0.952941),
  1215. })
  1216. o95 = Create("Part",{
  1217. ["Parent"] = o1,
  1218. ["Material"] = Enum.Material.SmoothPlastic,
  1219. ["BrickColor"] = BrickColor.new("Institutional white"),
  1220. ["Reflectance"] = 0.20000000298023,
  1221. ["Position"] = Vector3.new(18.400053, 1.21003604, 1.09994709),
  1222. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1223. ["Anchored"] = true,
  1224. ["CFrame"] = CFrame.new(18.400053, 1.21003604, 1.09994709, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1225. ["CanCollide"] = false,
  1226. ["FormFactor"] = Enum.FormFactor.Custom,
  1227. ["Friction"] = 1.2999999523163,
  1228. ["Size"] = Vector3.new(0.200000003, 1.19999981, 0.200000048),
  1229. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1230. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1231. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1232. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1233. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1234. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1235. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1236. })
  1237. o96 = Create("CylinderMesh",{
  1238. ["Parent"] = o95,
  1239. })
  1240. o97 = Create("Part",{
  1241. ["Parent"] = o1,
  1242. ["Material"] = Enum.Material.SmoothPlastic,
  1243. ["BrickColor"] = BrickColor.new("Institutional white"),
  1244. ["Reflectance"] = 0.20000000298023,
  1245. ["Position"] = Vector3.new(18.9000473, 1.21003604, -0.700042665),
  1246. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1247. ["Anchored"] = true,
  1248. ["CFrame"] = CFrame.new(18.9000473, 1.21003604, -0.700042665, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1249. ["CanCollide"] = false,
  1250. ["FormFactor"] = Enum.FormFactor.Custom,
  1251. ["Friction"] = 1.2999999523163,
  1252. ["Size"] = Vector3.new(0.200000003, 0.200000048, 3.5999999),
  1253. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1254. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1255. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1256. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1257. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1258. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1259. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1260. })
  1261. o98 = Create("Part",{
  1262. ["Parent"] = o1,
  1263. ["Material"] = Enum.Material.SmoothPlastic,
  1264. ["BrickColor"] = BrickColor.new("Institutional white"),
  1265. ["Reflectance"] = 0.20000000298023,
  1266. ["Position"] = Vector3.new(17.9000473, 1.21003604, -0.700042665),
  1267. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1268. ["Anchored"] = true,
  1269. ["CFrame"] = CFrame.new(17.9000473, 1.21003604, -0.700042665, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1270. ["CanCollide"] = false,
  1271. ["FormFactor"] = Enum.FormFactor.Custom,
  1272. ["Friction"] = 1.2999999523163,
  1273. ["Size"] = Vector3.new(0.200000003, 0.200000048, 3.5999999),
  1274. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1275. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1276. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1277. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1278. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1279. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1280. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1281. })
  1282. o99 = Create("Part",{
  1283. ["Parent"] = o1,
  1284. ["Material"] = Enum.Material.SmoothPlastic,
  1285. ["BrickColor"] = BrickColor.new("Institutional white"),
  1286. ["Reflectance"] = 0.20000000298023,
  1287. ["Position"] = Vector3.new(17.9000397, 1.67173207, 0.549713194),
  1288. ["Rotation"] = Vector3.new(-49.9999924, -1.70754754e-006, -2.3793973e-006),
  1289. ["Anchored"] = true,
  1290. ["CFrame"] = CFrame.new(17.9000397, 1.67173207, 0.549713194, 1, 4.15283168e-008, -2.98023259e-008, -2.11758237e-022, 0.642787635, 0.766044319, 5.96046448e-008, -0.766044378, 0.642787695),
  1291. ["CanCollide"] = false,
  1292. ["FormFactor"] = Enum.FormFactor.Custom,
  1293. ["Friction"] = 1.2999999523163,
  1294. ["Size"] = Vector3.new(0.200000048, 1.43655431, 0.200000003),
  1295. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1296. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1297. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1298. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1299. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1300. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1301. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1302. })
  1303. o100 = Create("CylinderMesh",{
  1304. ["Parent"] = o99,
  1305. })
  1306. o101 = Create("Part",{
  1307. ["Parent"] = o1,
  1308. ["Material"] = Enum.Material.SmoothPlastic,
  1309. ["BrickColor"] = BrickColor.new("Institutional white"),
  1310. ["Reflectance"] = 0.20000000298023,
  1311. ["Position"] = Vector3.new(18.9000397, 1.67173207, 0.549713194),
  1312. ["Rotation"] = Vector3.new(-49.9999924, 90, 0),
  1313. ["Anchored"] = true,
  1314. ["CFrame"] = CFrame.new(18.9000397, 1.67173207, 0.549713194, 8.94069743e-008, 4.15282777e-008, 1, -0.766044259, 0.642787635, 0, -0.642787874, -0.766043961, 8.94069672e-008),
  1315. ["CanCollide"] = false,
  1316. ["FormFactor"] = Enum.FormFactor.Custom,
  1317. ["Friction"] = 1.2999999523163,
  1318. ["Size"] = Vector3.new(0.200000003, 1.43655431, 0.200000048),
  1319. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1320. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1321. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1322. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1323. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1324. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1325. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1326. })
  1327. o102 = Create("CylinderMesh",{
  1328. ["Parent"] = o101,
  1329. })
  1330. o103 = Create("Part",{
  1331. ["Name"] = "Handle",
  1332. ["Parent"] = o1,
  1333. ["BrickColor"] = BrickColor.new("Black"),
  1334. ["Position"] = Vector3.new(19.8815155, 4.0437851, -2.2277832),
  1335. ["Rotation"] = Vector3.new(-179.999817, -0.000805961899, -90.0001221),
  1336. ["Anchored"] = true,
  1337. ["CFrame"] = CFrame.new(19.8815155, 4.0437851, -2.2277832, -2.10711596e-006, 1, -1.40666889e-005, 1, 2.10716189e-006, 3.36769313e-006, 3.36773087e-006, -1.40667034e-005, -1),
  1338. ["CanCollide"] = false,
  1339. ["Elasticity"] = 0,
  1340. ["FormFactor"] = Enum.FormFactor.Custom,
  1341. ["Friction"] = 0.69999998807907,
  1342. ["Size"] = Vector3.new(0.300000012, 0.950000048, 0.300000489),
  1343. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1344. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1345. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1346. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1347. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1348. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1349. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  1350. })
  1351. o104 = Create("Part",{
  1352. ["Name"] = "FrontForksBrace",
  1353. ["Parent"] = o1,
  1354. ["Material"] = Enum.Material.SmoothPlastic,
  1355. ["BrickColor"] = BrickColor.new("Institutional white"),
  1356. ["Reflectance"] = 0.20000000298023,
  1357. ["Position"] = Vector3.new(18.4000778, 2.91092396, -3.6517334),
  1358. ["Rotation"] = Vector3.new(-155, -2.69121097e-006, -180),
  1359. ["Anchored"] = true,
  1360. ["CFrame"] = CFrame.new(18.4000778, 2.91092396, -3.6517334, -1, 3.95373796e-008, -4.69704915e-008, 1.59824438e-008, 0.906307757, 0.422618359, 5.92789462e-008, 0.422618389, -0.906307757),
  1361. ["Elasticity"] = 0,
  1362. ["FormFactor"] = Enum.FormFactor.Custom,
  1363. ["Friction"] = 0.69999998807907,
  1364. ["Size"] = Vector3.new(0.900000095, 0.200000048, 0.300000489),
  1365. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1366. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1367. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1368. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1369. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1370. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1371. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1372. })
  1373. o105 = Create("Part",{
  1374. ["Parent"] = o1,
  1375. ["Material"] = Enum.Material.SmoothPlastic,
  1376. ["Position"] = Vector3.new(18.0000534, 1.21003604, 1.09994709),
  1377. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1378. ["Anchored"] = true,
  1379. ["CFrame"] = CFrame.new(18.0000534, 1.21003604, 1.09994709, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1380. ["CanCollide"] = false,
  1381. ["FormFactor"] = Enum.FormFactor.Custom,
  1382. ["Friction"] = 1.2999999523163,
  1383. ["Size"] = Vector3.new(1, 0.200000003, 1),
  1384. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1385. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1386. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1387. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1388. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1389. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1390. })
  1391. o106 = Create("CylinderMesh",{
  1392. ["Parent"] = o105,
  1393. ["Offset"] = Vector3.new(0, 0.100000001, 0),
  1394. ["Scale"] = Vector3.new(1, 0.200000003, 1),
  1395. })
  1396. o107 = Create("Part",{
  1397. ["Parent"] = o1,
  1398. ["Material"] = Enum.Material.SmoothPlastic,
  1399. ["Position"] = Vector3.new(18.8000565, 1.21003604, 1.09994709),
  1400. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1401. ["Anchored"] = true,
  1402. ["CFrame"] = CFrame.new(18.8000565, 1.21003604, 1.09994709, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1403. ["CanCollide"] = false,
  1404. ["FormFactor"] = Enum.FormFactor.Custom,
  1405. ["Friction"] = 1.2999999523163,
  1406. ["Size"] = Vector3.new(1, 0.200000003, 1),
  1407. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1408. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1409. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1410. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1411. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1412. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1413. })
  1414. o108 = Create("CylinderMesh",{
  1415. ["Parent"] = o107,
  1416. ["Offset"] = Vector3.new(0, -0.100000001, 0),
  1417. ["Scale"] = Vector3.new(1, 0.200000003, 1),
  1418. })
  1419. o109 = Create("Part",{
  1420. ["Parent"] = o1,
  1421. ["Material"] = Enum.Material.SmoothPlastic,
  1422. ["BrickColor"] = BrickColor.new("Institutional white"),
  1423. ["Reflectance"] = 0.20000000298023,
  1424. ["Position"] = Vector3.new(18.9000473, 2.11003709, -0.818145692),
  1425. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1426. ["Anchored"] = true,
  1427. ["CFrame"] = CFrame.new(18.9000473, 2.11003709, -0.818145692, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1428. ["CanCollide"] = false,
  1429. ["FormFactor"] = Enum.FormFactor.Custom,
  1430. ["Friction"] = 1.2999999523163,
  1431. ["Size"] = Vector3.new(0.200000003, 0.200000048, 1.76381266),
  1432. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1433. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1434. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1435. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1436. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1437. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1438. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1439. })
  1440. o110 = Create("Part",{
  1441. ["Parent"] = o1,
  1442. ["Material"] = Enum.Material.SmoothPlastic,
  1443. ["BrickColor"] = BrickColor.new("Institutional white"),
  1444. ["Reflectance"] = 0.20000000298023,
  1445. ["Position"] = Vector3.new(17.9000473, 2.11003709, -0.818145692),
  1446. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1447. ["Anchored"] = true,
  1448. ["CFrame"] = CFrame.new(17.9000473, 2.11003709, -0.818145692, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1449. ["CanCollide"] = false,
  1450. ["FormFactor"] = Enum.FormFactor.Custom,
  1451. ["Friction"] = 1.2999999523163,
  1452. ["Size"] = Vector3.new(0.200000003, 0.200000048, 1.76381266),
  1453. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1454. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1455. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1456. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1457. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1458. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1459. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1460. })
  1461. o112 = Create("Decal",{
  1462. ["Parent"] = mas,
  1463. ["Texture"] = "http://www.roblox.com/asset/?id=184537773",
  1464. ["Face"] = Enum.NormalId.Left,
  1465. })
  1466. o113 = Create("Decal",{
  1467. ["Parent"] = mas,
  1468. ["Texture"] = "http://www.roblox.com/asset/?id=184537773",
  1469. ["Face"] = Enum.NormalId.Right,
  1470. })
  1471. o114 = Create("Weld",{
  1472. ["Name"] = "Wheel",
  1473. ["Parent"] = mas,
  1474. ["Part0"] = mas,
  1475. ["Part1"] = o55,
  1476. })
  1477. o115 = Create("WedgePart",{
  1478. ["Name"] = "Part",
  1479. ["Parent"] = o1,
  1480. ["Material"] = Enum.Material.SmoothPlastic,
  1481. ["BrickColor"] = BrickColor.new("White"),
  1482. ["Position"] = Vector3.new(18.400053, 2.33503699, 1.59994709),
  1483. ["Rotation"] = Vector3.new(2.50447806e-006, -1.13844035e-005, -180),
  1484. ["Anchored"] = true,
  1485. ["CFrame"] = CFrame.new(18.400053, 2.33503699, 1.59994709, -1, 4.37113989e-008, -1.98695318e-007, -4.37113918e-008, -1, -4.37113883e-008, -1.98695318e-007, -4.37113847e-008, 1),
  1486. ["CanCollide"] = false,
  1487. ["FormFactor"] = Enum.FormFactor.Custom,
  1488. ["Friction"] = 1.2999999523163,
  1489. ["Size"] = Vector3.new(0.800000012, 0.350000024, 1),
  1490. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1491. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1492. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1493. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1494. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1495. ["Color"] = Color3.new(0.94902, 0.952941, 0.952941),
  1496. })
  1497. o116 = Create("Part",{
  1498. ["Name"] = "EngineBlock",
  1499. ["Parent"] = o1,
  1500. ["Material"] = Enum.Material.SmoothPlastic,
  1501. ["Position"] = Vector3.new(18.400053, 1.36003709, -2.10006714),
  1502. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1503. ["Anchored"] = true,
  1504. ["CFrame"] = CFrame.new(18.400053, 1.36003709, -2.10006714, -5.21253064e-016, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1505. ["CanCollide"] = false,
  1506. ["FormFactor"] = Enum.FormFactor.Custom,
  1507. ["Friction"] = 1.2999999523163,
  1508. ["Size"] = Vector3.new(0.700000048, 0.800000012, 0.599999964),
  1509. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1510. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1511. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1512. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1513. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1514. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1515. })
  1516. o117 = Create("Sound",{
  1517. ["Name"] = "Running",
  1518. ["Parent"] = o116,
  1519. ["SoundId"] = "http://www.roblox.com/asset/?id=184542505",
  1520. ["Volume"] = 1,
  1521. ["Looped"] = true,
  1522. })
  1523. o118 = Create("Sound",{
  1524. ["Name"] = "Starting",
  1525. ["Parent"] = o116,
  1526. ["SoundId"] = "http://www.roblox.com/asset/?id=184542500",
  1527. ["Volume"] = 1,
  1528. })
  1529. o119 = Create("Sound",{
  1530. ["Name"] = "Stopping",
  1531. ["Parent"] = o116,
  1532. ["Pitch"] = 0.89999997615814,
  1533. ["SoundId"] = "http://www.roblox.com/asset/?id=184542511",
  1534. ["Volume"] = 1,
  1535. })
  1536. o120 = Create("Part",{
  1537. ["Parent"] = o1,
  1538. ["Material"] = Enum.Material.SmoothPlastic,
  1539. ["Position"] = Vector3.new(18.6939926, 1.62823308, -2.10006714),
  1540. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.37544736e-006, -135),
  1541. ["Anchored"] = true,
  1542. ["CFrame"] = CFrame.new(18.6939926, 1.62823308, -2.10006714, -0.707106531, 0.707106531, -1.11272549e-007, -0.707106531, -0.707106531, 4.37113883e-008, -4.77729181e-008, 1.09590147e-007, 1),
  1543. ["CanCollide"] = false,
  1544. ["FormFactor"] = Enum.FormFactor.Custom,
  1545. ["Friction"] = 1.2999999523163,
  1546. ["Size"] = Vector3.new(0.300000131, 0.599999905, 0.599999845),
  1547. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1548. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1549. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1550. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1551. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1552. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1553. })
  1554. o122 = Create("Part",{
  1555. ["Parent"] = o1,
  1556. ["Material"] = Enum.Material.SmoothPlastic,
  1557. ["BrickColor"] = BrickColor.new("Institutional white"),
  1558. ["Reflectance"] = 0.20000000298023,
  1559. ["Position"] = Vector3.new(18.900053, 1.63729, -0.484161317),
  1560. ["Rotation"] = Vector3.new(31.7174721, -5.42327916e-006, -90),
  1561. ["Anchored"] = true,
  1562. ["CFrame"] = CFrame.new(18.900053, 1.63729, -0.484161317, 5.84994417e-008, 1, -9.46540766e-008, -0.850650787, 4.34262399e-015, -0.525731087, -0.525731087, 1.11272541e-007, 0.850650787),
  1563. ["CanCollide"] = false,
  1564. ["FormFactor"] = Enum.FormFactor.Custom,
  1565. ["Friction"] = 1.2999999523163,
  1566. ["Size"] = Vector3.new(1, 0.200000048, 0.200000048),
  1567. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1568. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1569. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1570. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1571. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1572. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1573. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1574. })
  1575. o123 = Create("Part",{
  1576. ["Name"] = "Wheel",
  1577. ["Parent"] = o1,
  1578. ["BrickColor"] = BrickColor.new("Black"),
  1579. ["Transparency"] = 1,
  1580. ["Position"] = Vector3.new(18.400053, 1.21003604, 1.09994709),
  1581. ["Rotation"] = Vector3.new(-2.50447806e-006, -6.3754469e-006, -90),
  1582. ["Anchored"] = true,
  1583. ["CFrame"] = CFrame.new(18.400053, 1.21003604, 1.09994709, -4.07396632e-015, 1, -1.11272541e-007, -1, 4.34262399e-015, 4.37113883e-008, 4.37113883e-008, 1.11272541e-007, 1),
  1584. ["FormFactor"] = Enum.FormFactor.Symmetric,
  1585. ["Friction"] = 1.2999999523163,
  1586. ["Shape"] = Enum.PartType.Ball,
  1587. ["Size"] = Vector3.new(2.39999986, 2.39999986, 2.39999986),
  1588. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1589. ["BottomSurface"] = Enum.SurfaceType.Hinge,
  1590. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1591. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1592. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1593. ["TopSurface"] = Enum.SurfaceType.Smooth,
  1594. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  1595. })
  1596. o124 = Create("BodyGyro",{
  1597. ["Parent"] = o123,
  1598. ["maxTorque"] = Vector3.new(0, 0, 100),
  1599. ["P"] = 100,
  1600. ["D"] = 50,
  1601. ["MaxTorque"] = Vector3.new(0, 0, 100),
  1602. })
  1603. o125 = Create("Part",{
  1604. ["Parent"] = o1,
  1605. ["Material"] = Enum.Material.SmoothPlastic,
  1606. ["BrickColor"] = BrickColor.new("Institutional white"),
  1607. ["Reflectance"] = 0.20000000298023,
  1608. ["Position"] = Vector3.new(18.9000473, 2.05860496, -2.83209229),
  1609. ["Rotation"] = Vector3.new(65, -2.69437942e-006, -90),
  1610. ["Anchored"] = true,
  1611. ["CFrame"] = CFrame.new(18.9000473, 2.05860496, -2.83209229, 1.00847174e-007, 1, -4.7025793e-008, -0.42261821, 4.34262399e-015, -0.906307817, -0.906307817, 1.11272541e-007, 0.42261821),
  1612. ["CanCollide"] = false,
  1613. ["FormFactor"] = Enum.FormFactor.Custom,
  1614. ["Friction"] = 1.2999999523163,
  1615. ["Size"] = Vector3.new(0.200000003, 0.200000048, 2),
  1616. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1617. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1618. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1619. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1620. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1621. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1622. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1623. })
  1624. o126 = Create("Part",{
  1625. ["Parent"] = o1,
  1626. ["Material"] = Enum.Material.SmoothPlastic,
  1627. ["BrickColor"] = BrickColor.new("Institutional white"),
  1628. ["Reflectance"] = 0.20000000298023,
  1629. ["Position"] = Vector3.new(17.9000473, 2.05860496, -2.83209229),
  1630. ["Rotation"] = Vector3.new(65, -2.69437942e-006, -90),
  1631. ["Anchored"] = true,
  1632. ["CFrame"] = CFrame.new(17.9000473, 2.05860496, -2.83209229, 1.00847174e-007, 1, -4.7025793e-008, -0.42261821, 4.34262399e-015, -0.906307817, -0.906307817, 1.11272541e-007, 0.42261821),
  1633. ["CanCollide"] = false,
  1634. ["FormFactor"] = Enum.FormFactor.Custom,
  1635. ["Friction"] = 1.2999999523163,
  1636. ["Size"] = Vector3.new(0.200000003, 0.200000048, 2),
  1637. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1638. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1639. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1640. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1641. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1642. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1643. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1644. })
  1645. o127 = Create("Part",{
  1646. ["Parent"] = o1,
  1647. ["Material"] = Enum.Material.SmoothPlastic,
  1648. ["BrickColor"] = BrickColor.new("Institutional white"),
  1649. ["Reflectance"] = 0.20000000298023,
  1650. ["Position"] = Vector3.new(17.900053, 1.63729, -0.484161317),
  1651. ["Rotation"] = Vector3.new(31.7174721, -5.42327916e-006, -90),
  1652. ["Anchored"] = true,
  1653. ["CFrame"] = CFrame.new(17.900053, 1.63729, -0.484161317, 5.84994417e-008, 1, -9.46540766e-008, -0.850650787, 4.34262399e-015, -0.525731087, -0.525731087, 1.11272541e-007, 0.850650787),
  1654. ["CanCollide"] = false,
  1655. ["FormFactor"] = Enum.FormFactor.Custom,
  1656. ["Friction"] = 1.2999999523163,
  1657. ["Size"] = Vector3.new(1, 0.200000048, 0.200000048),
  1658. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1659. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1660. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1661. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1662. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1663. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1664. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1665. })
  1666. o128 = Create("Part",{
  1667. ["Name"] = "Handle",
  1668. ["Parent"] = o1,
  1669. ["BrickColor"] = BrickColor.new("Black"),
  1670. ["Position"] = Vector3.new(16.9185944, 4.04374218, -2.22784424),
  1671. ["Rotation"] = Vector3.new(-179.999634, -0.000191245155, 90),
  1672. ["Anchored"] = true,
  1673. ["CFrame"] = CFrame.new(16.9185944, 4.04374218, -2.22784424, 4.20911306e-009, -0.999996781, -3.33785761e-006, -1, -4.19209023e-009, 6.37782523e-006, -6.37781295e-006, 1.19206334e-007, -1),
  1674. ["CanCollide"] = false,
  1675. ["Elasticity"] = 0,
  1676. ["FormFactor"] = Enum.FormFactor.Custom,
  1677. ["Friction"] = 0.69999998807907,
  1678. ["Size"] = Vector3.new(0.300000042, 0.949999988, 0.300000489),
  1679. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1680. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1681. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1682. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1683. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1684. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1685. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  1686. })
  1687. o129 = Create("Part",{
  1688. ["Parent"] = o1,
  1689. ["Material"] = Enum.Material.SmoothPlastic,
  1690. ["BrickColor"] = BrickColor.new("Institutional white"),
  1691. ["Reflectance"] = 0.20000000298023,
  1692. ["Position"] = Vector3.new(18.4000626, 1.21008205, -4.50003052),
  1693. ["Rotation"] = Vector3.new(-155, -2.69117891e-006, 90),
  1694. ["Anchored"] = true,
  1695. ["CFrame"] = CFrame.new(18.4000626, 1.21008205, -4.50003052, 4.16215018e-009, -1, -4.69699302e-008, -0.906307638, -2.3622551e-008, 0.42261833, -0.422618359, 4.08102068e-008, -0.906307757),
  1696. ["CanCollide"] = false,
  1697. ["Elasticity"] = 0,
  1698. ["FormFactor"] = Enum.FormFactor.Custom,
  1699. ["Friction"] = 0.69999998807907,
  1700. ["Size"] = Vector3.new(0.200000003, 0.600000262, 0.200000003),
  1701. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1702. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1703. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1704. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1705. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1706. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1707. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1708. })
  1709. o130 = Create("CylinderMesh",{
  1710. ["Parent"] = o129,
  1711. })
  1712. o131 = Create("Weld",{
  1713. ["Name"] = "FrontForksBrace",
  1714. ["Parent"] = o129,
  1715. ["Part0"] = o129,
  1716. ["Part1"] = o156,
  1717. })
  1718. o132 = Create("Weld",{
  1719. ["Name"] = "FrontForksBrace",
  1720. ["Parent"] = o129,
  1721. ["Part0"] = o129,
  1722. ["Part1"] = o155,
  1723. })
  1724. o133 = Create("Part",{
  1725. ["Parent"] = o1,
  1726. ["Material"] = Enum.Material.SmoothPlastic,
  1727. ["Position"] = Vector3.new(18.4000473, 1.41003704, -1.3500365),
  1728. ["Rotation"] = Vector3.new(-90, 90, 0),
  1729. ["Anchored"] = true,
  1730. ["CFrame"] = CFrame.new(18.4000473, 1.41003704, -1.3500365, 4.76456033e-022, 6.75611531e-008, 1, -0.99999994, -4.37113883e-008, -2.11758237e-022, 4.37113847e-008, -1, 6.75611602e-008),
  1731. ["CanCollide"] = false,
  1732. ["FormFactor"] = Enum.FormFactor.Custom,
  1733. ["Friction"] = 1.2999999523163,
  1734. ["Size"] = Vector3.new(0.800000012, 0.300000012, 1.00000012),
  1735. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1736. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1737. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1738. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1739. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1740. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1741. })
  1742. o134 = Create("CylinderMesh",{
  1743. ["Parent"] = o133,
  1744. })
  1745. o136 = Create("Part",{
  1746. ["Parent"] = o1,
  1747. ["Material"] = Enum.Material.SmoothPlastic,
  1748. ["BrickColor"] = BrickColor.new("Institutional white"),
  1749. ["Reflectance"] = 0.20000000298023,
  1750. ["Position"] = Vector3.new(17.900053, 1.63729, -1.0521239),
  1751. ["Rotation"] = Vector3.new(-31.7174797, -5.42327916e-006, -90),
  1752. ["Anchored"] = true,
  1753. ["CFrame"] = CFrame.new(17.900053, 1.63729, -1.0521239, -5.84994417e-008, 1, -9.46540766e-008, -0.850650787, 4.34262399e-015, 0.525731206, 0.525731206, 1.11272541e-007, 0.850650787),
  1754. ["CanCollide"] = false,
  1755. ["FormFactor"] = Enum.FormFactor.Custom,
  1756. ["Friction"] = 1.2999999523163,
  1757. ["Size"] = Vector3.new(1, 0.200000048, 0.200000048),
  1758. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1759. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1760. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1761. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1762. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1763. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1764. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1765. })
  1766. o137 = Create("Part",{
  1767. ["Parent"] = o1,
  1768. ["Material"] = Enum.Material.SmoothPlastic,
  1769. ["BrickColor"] = BrickColor.new("Institutional white"),
  1770. ["Reflectance"] = 0.20000000298023,
  1771. ["Position"] = Vector3.new(17.9500732, 2.50308108, -3.84191895),
  1772. ["Rotation"] = Vector3.new(-155, -2.69121142e-006, -180),
  1773. ["Anchored"] = true,
  1774. ["CFrame"] = CFrame.new(17.9500732, 2.50308108, -3.84191895, -1, 3.95373974e-008, -4.69704986e-008, 1.59824491e-008, 0.906307757, 0.422618359, 5.92789569e-008, 0.422618389, -0.906307757),
  1775. ["CanCollide"] = false,
  1776. ["Elasticity"] = 0,
  1777. ["FormFactor"] = Enum.FormFactor.Custom,
  1778. ["Friction"] = 0.69999998807907,
  1779. ["Size"] = Vector3.new(0.300000042, 2.5, 0.300000489),
  1780. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1781. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1782. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1783. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1784. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1785. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1786. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1787. })
  1788. o138 = Create("CylinderMesh",{
  1789. ["Parent"] = o137,
  1790. })
  1791. o139 = Create("Part",{
  1792. ["Parent"] = o1,
  1793. ["Material"] = Enum.Material.SmoothPlastic,
  1794. ["BrickColor"] = BrickColor.new("Institutional white"),
  1795. ["Reflectance"] = 0.20000000298023,
  1796. ["Position"] = Vector3.new(18.8500671, 2.50308108, -3.84191895),
  1797. ["Rotation"] = Vector3.new(-155, -2.69121142e-006, -180),
  1798. ["Anchored"] = true,
  1799. ["CFrame"] = CFrame.new(18.8500671, 2.50308108, -3.84191895, -1, 3.95373974e-008, -4.69704986e-008, 1.59824491e-008, 0.906307757, 0.422618359, 5.92789569e-008, 0.422618389, -0.906307757),
  1800. ["CanCollide"] = false,
  1801. ["Elasticity"] = 0,
  1802. ["FormFactor"] = Enum.FormFactor.Custom,
  1803. ["Friction"] = 0.69999998807907,
  1804. ["Size"] = Vector3.new(0.300000012, 2.5, 0.300000489),
  1805. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1806. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1807. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1808. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1809. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1810. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1811. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1812. })
  1813. o140 = Create("CylinderMesh",{
  1814. ["Parent"] = o139,
  1815. })
  1816. o141 = Create("Part",{
  1817. ["Parent"] = o1,
  1818. ["Material"] = Enum.Material.SmoothPlastic,
  1819. ["BrickColor"] = BrickColor.new("Institutional white"),
  1820. ["Reflectance"] = 0.20000000298023,
  1821. ["Position"] = Vector3.new(18.4000473, 2.87427998, -3.21243286),
  1822. ["Rotation"] = Vector3.new(65, -2.69437783e-006, -90),
  1823. ["Anchored"] = true,
  1824. ["CFrame"] = CFrame.new(18.4000473, 2.87427998, -3.21243286, 1.00847174e-007, 1, -4.70257646e-008, -0.42261821, -2.1416193e-014, -0.906307817, -0.906307817, 1.11272549e-007, 0.42261821),
  1825. ["CanCollide"] = false,
  1826. ["FormFactor"] = Enum.FormFactor.Custom,
  1827. ["Friction"] = 1.2999999523163,
  1828. ["Size"] = Vector3.new(0.200000003, 0.800000072, 0.200000018),
  1829. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1830. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1831. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1832. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1833. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1834. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1835. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1836. })
  1837. o142 = Create("Part",{
  1838. ["Parent"] = o1,
  1839. ["Material"] = Enum.Material.SmoothPlastic,
  1840. ["BrickColor"] = BrickColor.new("Institutional white"),
  1841. ["Reflectance"] = 0.20000000298023,
  1842. ["Position"] = Vector3.new(18.4000702, 3.02878499, -3.43127441),
  1843. ["Rotation"] = Vector3.new(-155.000046, -2.69121256e-006, -180),
  1844. ["Anchored"] = true,
  1845. ["CFrame"] = CFrame.new(18.4000702, 3.02878499, -3.43127441, -1, 3.95374045e-008, -4.69705199e-008, 1.59824776e-008, 0.906307876, 0.422617525, 5.92789462e-008, 0.422619313, -0.906307757),
  1846. ["CanCollide"] = false,
  1847. ["Elasticity"] = 0,
  1848. ["FormFactor"] = Enum.FormFactor.Custom,
  1849. ["Friction"] = 0.69999998807907,
  1850. ["Size"] = Vector3.new(0.600000024, 0.200000048, 0.600000501),
  1851. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1852. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1853. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1854. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1855. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1856. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1857. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1858. })
  1859. o143 = Create("CylinderMesh",{
  1860. ["Parent"] = o142,
  1861. })
  1862. o144 = Create("Part",{
  1863. ["Parent"] = o1,
  1864. ["Material"] = Enum.Material.SmoothPlastic,
  1865. ["BrickColor"] = BrickColor.new("Institutional white"),
  1866. ["Reflectance"] = 0.20000000298023,
  1867. ["Position"] = Vector3.new(17.9000473, 2.51507592, -2.34536743),
  1868. ["Rotation"] = Vector3.new(24.9999962, -5.7781167e-006, -90),
  1869. ["Anchored"] = true,
  1870. ["CFrame"] = CFrame.new(17.9000473, 2.51507592, -2.34536743, 4.70258001e-008, 1, -1.0084716e-007, -0.906307817, 1.33974111e-015, -0.422618181, -0.422618181, 1.11272549e-007, 0.906307817),
  1871. ["CanCollide"] = false,
  1872. ["FormFactor"] = Enum.FormFactor.Custom,
  1873. ["Friction"] = 1.2999999523163,
  1874. ["Size"] = Vector3.new(0.200000003, 0.200000048, 1.89999998),
  1875. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1876. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1877. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1878. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1879. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1880. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1881. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1882. })
  1883. o145 = Create("Part",{
  1884. ["Parent"] = o1,
  1885. ["Material"] = Enum.Material.SmoothPlastic,
  1886. ["BrickColor"] = BrickColor.new("Institutional white"),
  1887. ["Reflectance"] = 0.20000000298023,
  1888. ["Position"] = Vector3.new(18.9000473, 2.51507592, -2.34536743),
  1889. ["Rotation"] = Vector3.new(24.9999962, -5.7781167e-006, -90),
  1890. ["Anchored"] = true,
  1891. ["CFrame"] = CFrame.new(18.9000473, 2.51507592, -2.34536743, 4.70258001e-008, 1, -1.0084716e-007, -0.906307817, 1.33974111e-015, -0.422618181, -0.422618181, 1.11272549e-007, 0.906307817),
  1892. ["CanCollide"] = false,
  1893. ["FormFactor"] = Enum.FormFactor.Custom,
  1894. ["Friction"] = 1.2999999523163,
  1895. ["Size"] = Vector3.new(0.200000003, 0.200000048, 1.89999998),
  1896. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1897. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1898. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1899. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1900. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1901. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1902. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1903. })
  1904. o146 = Create("Part",{
  1905. ["Parent"] = o1,
  1906. ["Material"] = Enum.Material.SmoothPlastic,
  1907. ["BrickColor"] = BrickColor.new("Institutional white"),
  1908. ["Reflectance"] = 0.20000000298023,
  1909. ["Position"] = Vector3.new(18.900053, 1.63729, -1.0521239),
  1910. ["Rotation"] = Vector3.new(-31.7174797, -5.42327916e-006, -90),
  1911. ["Anchored"] = true,
  1912. ["CFrame"] = CFrame.new(18.900053, 1.63729, -1.0521239, -5.84994417e-008, 1, -9.46540766e-008, -0.850650787, 4.34262399e-015, 0.525731206, 0.525731206, 1.11272541e-007, 0.850650787),
  1913. ["CanCollide"] = false,
  1914. ["FormFactor"] = Enum.FormFactor.Custom,
  1915. ["Friction"] = 1.2999999523163,
  1916. ["Size"] = Vector3.new(1, 0.200000048, 0.200000048),
  1917. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1918. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1919. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1920. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1921. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1922. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  1923. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  1924. })
  1925. o147 = Create("Part",{
  1926. ["Name"] = "RightHelper",
  1927. ["Parent"] = o1,
  1928. ["Material"] = Enum.Material.SmoothPlastic,
  1929. ["BrickColor"] = BrickColor.new("Black"),
  1930. ["Transparency"] = 1,
  1931. ["Position"] = Vector3.new(19.8000565, 1.21007001, -4.5),
  1932. ["Rotation"] = Vector3.new(-155, -2.69114821e-006, -180),
  1933. ["Velocity"] = Vector3.new(0.0149893714, -0.0475157201, -0.0262569152),
  1934. ["Anchored"] = true,
  1935. ["CFrame"] = CFrame.new(19.8000565, 1.21007001, -4.5, -1, 3.95576976e-008, -4.69693973e-008, 1.59975855e-008, 0.906304836, 0.422617018, 5.92851706e-008, 0.422617018, -0.906304836),
  1936. ["CanCollide"] = false,
  1937. ["Elasticity"] = 0,
  1938. ["FormFactor"] = Enum.FormFactor.Custom,
  1939. ["Friction"] = 0.69999998807907,
  1940. ["Size"] = Vector3.new(0.400000006, 0.800000012, 1.20000005),
  1941. ["BackSurface"] = Enum.SurfaceType.Unjoinable,
  1942. ["BottomSurface"] = Enum.SurfaceType.Unjoinable,
  1943. ["FrontSurface"] = Enum.SurfaceType.Unjoinable,
  1944. ["LeftSurface"] = Enum.SurfaceType.Unjoinable,
  1945. ["RightSurface"] = Enum.SurfaceType.Unjoinable,
  1946. ["TopSurface"] = Enum.SurfaceType.Unjoinable,
  1947. ["Color"] = Color3.new(0.105882, 0.164706, 0.207843),
  1948. })
  1949. o148 = Create("Part",{
  1950. ["Name"] = "LeftHelper",
  1951. ["Parent"] = o1,
  1952. ["BrickColor"] = BrickColor.new("Bright violet"),
  1953. ["Transparency"] = 1,
  1954. ["Position"] = Vector3.new(17.4000416, 0.610135078, -1.20007312),
  1955. ["Rotation"] = Vector3.new(180, 90, 0),
  1956. ["Anchored"] = true,
  1957. ["CFrame"] = CFrame.new(17.4000416, 0.610135078, -1.20007312, -1.231993e-007, 1.31134158e-007, 1, 4.37113776e-008, -1, 1.31134172e-007, 1, 4.37114132e-008, 1.2319552e-007),
  1958. ["CanCollide"] = false,
  1959. ["FormFactor"] = Enum.FormFactor.Custom,
  1960. ["Size"] = Vector3.new(0.99999994, 0.400000006, 1),
  1961. ["BottomSurface"] = Enum.SurfaceType.Studs,
  1962. ["TopSurface"] = Enum.SurfaceType.Inlet,
  1963. ["Color"] = Color3.new(0.419608, 0.196078, 0.486275),
  1964. })
  1965. o149 = Create("Weld",{
  1966. ["Name"] = "Left",
  1967. ["Parent"] = o148,
  1968. ["Part0"] = o148,
  1969. ["Part1"] = o150,
  1970. })
  1971. o150 = Create("Part",{
  1972. ["Name"] = "Left",
  1973. ["Parent"] = o1,
  1974. ["Transparency"] = 1,
  1975. ["Position"] = Vector3.new(19.4000473, 0.610135078, -1.20007312),
  1976. ["Rotation"] = Vector3.new(-7.51343487e-006, -1.36673304e-006, -2.50447829e-006),
  1977. ["Anchored"] = true,
  1978. ["CFrame"] = CFrame.new(19.4000473, 0.610135078, -1.20007312, 1, 4.37113918e-008, -2.38539908e-008, -4.37113883e-008, 1, 1.31134172e-007, 2.38455389e-008, -1.31134158e-007, 1),
  1979. ["CanCollide"] = false,
  1980. ["FormFactor"] = Enum.FormFactor.Custom,
  1981. ["Size"] = Vector3.new(0.99999994, 0.400000006, 1),
  1982. ["BottomSurface"] = Enum.SurfaceType.Smooth,
  1983. })
  1984. o151 = Create("BodyGyro",{
  1985. ["Parent"] = o150,
  1986. ["maxTorque"] = Vector3.new(0, 0, 10),
  1987. ["P"] = 10,
  1988. ["D"] = 50,
  1989. ["MaxTorque"] = Vector3.new(0, 0, 10),
  1990. })
  1991. o152 = Create("VehicleSeat",{
  1992. ["Name"] = "Passenger",
  1993. ["Parent"] = o1,
  1994. ["Transparency"] = 1,
  1995. ["Position"] = Vector3.new(18.4000473, 1.91003704, 1.29986584),
  1996. ["Rotation"] = Vector3.new(-2.50447852e-006, -3.87096907e-006, 2.50447783e-006),
  1997. ["Anchored"] = true,
  1998. ["CFrame"] = CFrame.new(18.4000473, 1.91003704, 1.29986584, 1, -4.37113847e-008, -6.75611531e-008, 4.37113954e-008, 1, 4.37113954e-008, 6.75611531e-008, -4.37113883e-008, 1),
  1999. ["CanCollide"] = false,
  2000. ["Size"] = Vector3.new(2, 1, 1),
  2001. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2002. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2003. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2004. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2005. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2006. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2007. ["HeadsUpDisplay"] = false,
  2008. ["MaxSpeed"] = 0,
  2009. ["Torque"] = 0,
  2010. ["TurnSpeed"] = 0,
  2011. })
  2012. o153 = Create("Part",{
  2013. ["Name"] = "Block",
  2014. ["Parent"] = o1,
  2015. ["Material"] = Enum.Material.SmoothPlastic,
  2016. ["BrickColor"] = BrickColor.new("Institutional white"),
  2017. ["Reflectance"] = 0.20000000298023,
  2018. ["Position"] = Vector3.new(18.8500824, 3.77189398, -3.25027466),
  2019. ["Rotation"] = Vector3.new(-154.999985, -2.69124394e-006, -180),
  2020. ["Anchored"] = true,
  2021. ["CFrame"] = CFrame.new(18.8500824, 3.77189398, -3.25027466, -1, 3.95251156e-008, -4.6971067e-008, 1.59710982e-008, 0.906307638, 0.422618449, 5.92742637e-008, 0.42261821, -0.906307697),
  2022. ["CanCollide"] = false,
  2023. ["Elasticity"] = 0,
  2024. ["FormFactor"] = Enum.FormFactor.Custom,
  2025. ["Friction"] = 0.69999998807907,
  2026. ["Size"] = Vector3.new(0.300000042, 0.300000042, 0.300000489),
  2027. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2028. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2029. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2030. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2031. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2032. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2033. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  2034. })
  2035. o154 = Create("Part",{
  2036. ["Name"] = "Block",
  2037. ["Parent"] = o1,
  2038. ["Material"] = Enum.Material.SmoothPlastic,
  2039. ["BrickColor"] = BrickColor.new("Institutional white"),
  2040. ["Reflectance"] = 0.20000000298023,
  2041. ["Position"] = Vector3.new(17.9500809, 3.77189398, -3.25027466),
  2042. ["Rotation"] = Vector3.new(-154.999985, -2.69124439e-006, -180),
  2043. ["Anchored"] = true,
  2044. ["CFrame"] = CFrame.new(17.9500809, 3.77189398, -3.25027466, -1, 3.95251227e-008, -4.69710741e-008, 1.59711036e-008, 0.906307697, 0.422618538, 5.92742637e-008, 0.42261824, -0.906307638),
  2045. ["CanCollide"] = false,
  2046. ["Elasticity"] = 0,
  2047. ["FormFactor"] = Enum.FormFactor.Custom,
  2048. ["Friction"] = 0.69999998807907,
  2049. ["Size"] = Vector3.new(0.300000042, 0.300000042, 0.300000489),
  2050. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2051. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2052. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2053. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2054. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2055. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2056. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  2057. })
  2058. o155 = Create("Part",{
  2059. ["Name"] = "FrontForksBrace",
  2060. ["Parent"] = o1,
  2061. ["Material"] = Enum.Material.SmoothPlastic,
  2062. ["BrickColor"] = BrickColor.new("Institutional white"),
  2063. ["Reflectance"] = 0.20000000298023,
  2064. ["Position"] = Vector3.new(17.9500809, 1.21007001, -4.50003052),
  2065. ["Rotation"] = Vector3.new(-155.000015, -2.69121051e-006, -180),
  2066. ["Anchored"] = true,
  2067. ["CFrame"] = CFrame.new(17.9500809, 1.21007001, -4.50003052, -1, 3.95372908e-008, -4.69704844e-008, 1.59825291e-008, 0.906307817, 0.422618091, 5.9279003e-008, 0.422618687, -0.906307757),
  2068. ["CanCollide"] = false,
  2069. ["Elasticity"] = 0,
  2070. ["FormFactor"] = Enum.FormFactor.Custom,
  2071. ["Friction"] = 0.69999998807907,
  2072. ["Size"] = Vector3.new(0.300000042, 0.400000036, 0.400000483),
  2073. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2074. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2075. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2076. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2077. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2078. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2079. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  2080. })
  2081. o156 = Create("Part",{
  2082. ["Name"] = "FrontForksBrace",
  2083. ["Parent"] = o1,
  2084. ["Material"] = Enum.Material.SmoothPlastic,
  2085. ["BrickColor"] = BrickColor.new("Institutional white"),
  2086. ["Reflectance"] = 0.20000000298023,
  2087. ["Position"] = Vector3.new(18.8500824, 1.21007001, -4.50003052),
  2088. ["Rotation"] = Vector3.new(-155.000015, -2.69121028e-006, -180),
  2089. ["Anchored"] = true,
  2090. ["CFrame"] = CFrame.new(18.8500824, 1.21007001, -4.50003052, -1, 3.95373014e-008, -4.69704808e-008, 1.59825237e-008, 0.906307817, 0.422618091, 5.9279003e-008, 0.422618687, -0.906307757),
  2091. ["CanCollide"] = false,
  2092. ["Elasticity"] = 0,
  2093. ["FormFactor"] = Enum.FormFactor.Custom,
  2094. ["Friction"] = 0.69999998807907,
  2095. ["Size"] = Vector3.new(0.300000042, 0.400000036, 0.400000483),
  2096. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2097. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2098. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2099. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2100. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2101. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2102. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  2103. })
  2104. o157 = Create("Part",{
  2105. ["Name"] = "RearBulb",
  2106. ["Parent"] = o1,
  2107. ["Material"] = Enum.Material.SmoothPlastic,
  2108. ["BrickColor"] = BrickColor.new("Bright red"),
  2109. ["Reflectance"] = 0.40000000596046,
  2110. ["Position"] = Vector3.new(18.4000397, 2.33504009, 1.99993908),
  2111. ["Rotation"] = Vector3.new(-2.32210959e-006, -2.25553913e-006, -6.83018925e-006),
  2112. ["Anchored"] = true,
  2113. ["CFrame"] = CFrame.new(18.4000397, 2.33504009, 1.99993908, 1, 1.1920929e-007, -3.93665829e-008, -1.1920929e-007, 1, 4.05284588e-008, 3.91568022e-008, -4.05284943e-008, 1),
  2114. ["CanCollide"] = false,
  2115. ["Elasticity"] = 0,
  2116. ["FormFactor"] = Enum.FormFactor.Custom,
  2117. ["Friction"] = 0.69999998807907,
  2118. ["Size"] = Vector3.new(0.699998915, 0.25, 0.200000003),
  2119. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2120. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2121. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2122. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2123. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2124. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2125. ["Color"] = Color3.new(0.768628, 0.156863, 0.109804),
  2126. })
  2127. o158 = Create("SurfaceGui",{
  2128. ["Parent"] = o157,
  2129. ["Enabled"] = false,
  2130. ["Face"] = Enum.NormalId.Back,
  2131. ["CanvasSize"] = Vector2.new(10, 10),
  2132. })
  2133. o159 = Create("Frame",{
  2134. ["Parent"] = o158,
  2135. ["Size"] = UDim2.new(1,0,1,0),
  2136. ["BackgroundColor3"] = Color3.new(1, 0, 0),
  2137. ["BorderSizePixel"] = 0,
  2138. })
  2139. o160 = Create("BlockMesh",{
  2140. ["Parent"] = o157,
  2141. ["Offset"] = Vector3.new(0, 0, 0.0549999997),
  2142. ["Scale"] = Vector3.new(1, 1, 0.5),
  2143. })
  2144. o161 = Create("Part",{
  2145. ["Name"] = "RearLight",
  2146. ["Parent"] = o1,
  2147. ["Material"] = Enum.Material.SmoothPlastic,
  2148. ["BrickColor"] = BrickColor.new("Dark stone grey"),
  2149. ["Transparency"] = 1,
  2150. ["Position"] = Vector3.new(18.4000702, 2.33506608, 2.19995117),
  2151. ["Rotation"] = Vector3.new(180, -2.75341722e-006, -180),
  2152. ["Anchored"] = true,
  2153. ["CFrame"] = CFrame.new(18.4000702, 2.33506608, 2.19995117, -1, 1.1920929e-007, -4.80561937e-008, 1.1920929e-007, 1, -4.05284872e-008, 4.82659743e-008, -4.05284943e-008, -1),
  2154. ["CanCollide"] = false,
  2155. ["Elasticity"] = 0,
  2156. ["FormFactor"] = Enum.FormFactor.Custom,
  2157. ["Friction"] = 0.69999998807907,
  2158. ["Size"] = Vector3.new(0.700000048, 0.25, 0.200000018),
  2159. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2160. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2161. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2162. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2163. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2164. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2165. ["Color"] = Color3.new(0.388235, 0.372549, 0.384314),
  2166. })
  2167. o162 = Create("SpotLight",{
  2168. ["Parent"] = o161,
  2169. ["Color"] = Color3.new(1, 0, 0),
  2170. ["Enabled"] = false,
  2171. ["Range"] = 15,
  2172. ["Angle"] = 120,
  2173. })
  2174. o163 = Create("Part",{
  2175. ["Name"] = "Bowl Stalk",
  2176. ["Parent"] = o1,
  2177. ["Material"] = Enum.Material.SmoothPlastic,
  2178. ["BrickColor"] = BrickColor.new("Institutional white"),
  2179. ["Reflectance"] = 0.20000000298023,
  2180. ["Position"] = Vector3.new(18.4000473, 3.16003609, -3.65002441),
  2181. ["Rotation"] = Vector3.new(-90, 90, 0),
  2182. ["Anchored"] = true,
  2183. ["CFrame"] = CFrame.new(18.4000473, 3.16003609, -3.65002441, -5.21253064e-016, 6.75611531e-008, 1, -1, -4.37113883e-008, 2.43193853e-015, 4.37113883e-008, -1, 6.75611531e-008),
  2184. ["CanCollide"] = false,
  2185. ["FormFactor"] = Enum.FormFactor.Custom,
  2186. ["Friction"] = 1.2999999523163,
  2187. ["Size"] = Vector3.new(0.400000006, 0.300000042, 0.399999946),
  2188. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2189. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2190. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2191. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2192. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2193. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2194. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  2195. })
  2196. o164 = Create("CylinderMesh",{
  2197. ["Parent"] = o163,
  2198. })
  2199. o168 = Create("Part",{
  2200. ["Name"] = "FrontBulb",
  2201. ["Parent"] = o1,
  2202. ["Material"] = Enum.Material.SmoothPlastic,
  2203. ["BrickColor"] = BrickColor.new("Institutional white"),
  2204. ["Reflectance"] = 0.40000000596046,
  2205. ["Position"] = Vector3.new(18.4000244, 3.16006398, -4.14999008),
  2206. ["Rotation"] = Vector3.new(-90, 3.90935202e-006, -3.70995053e-006),
  2207. ["Anchored"] = true,
  2208. ["CFrame"] = CFrame.new(18.4000244, 3.16006398, -4.14999008, 1, 6.475085e-008, 6.82310599e-008, -1.70187519e-007, -8.42397938e-008, 1, 1.37725342e-008, -1, -8.42399785e-008),
  2209. ["CanCollide"] = false,
  2210. ["Elasticity"] = 0,
  2211. ["FormFactor"] = Enum.FormFactor.Custom,
  2212. ["Friction"] = 0.69999998807907,
  2213. ["Size"] = Vector3.new(1.00000155, 0.200000003, 1),
  2214. ["BackSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2215. ["BottomSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2216. ["FrontSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2217. ["LeftSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2218. ["RightSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2219. ["TopSurface"] = Enum.SurfaceType.SmoothNoOutlines,
  2220. ["Color"] = Color3.new(0.972549, 0.972549, 0.972549),
  2221. })
  2222. o169 = Create("SurfaceGui",{
  2223. ["Parent"] = o168,
  2224. ["Enabled"] = false,
  2225. ["Face"] = Enum.NormalId.Top,
  2226. ["Active"] = false,
  2227. ["CanvasSize"] = Vector2.new(1, 1),
  2228. })
  2229. o170 = Create("ImageLabel",{
  2230. ["Parent"] = o169,
  2231. ["Transparency"] = 1,
  2232. ["Size"] = UDim2.new(0,1,0,1),
  2233. ["BackgroundColor3"] = Color3.new(1, 1, 1),
  2234. ["BackgroundTransparency"] = 1,
  2235. ["BorderSizePixel"] = 0,
  2236. ["Image"] = "http://www.roblox.com/asset/?id=130424513",
  2237. })
  2238. o171 = Create("CylinderMesh",{
  2239. ["Parent"] = o168,
  2240. ["Offset"] = Vector3.new(0, 0.100000001, 0),
  2241. ["Scale"] = Vector3.new(1, 0, 1),
  2242. })
  2243. print(mas)
  2244. mas.Parent = workspace
  2245. mas:MakeJoints()
  2246. local mas1 = mas:GetChildren()
  2247. for i=1,#mas1 do
  2248. mas1[i].Parent = workspace
  2249. ypcall(function() mas1[i]:MakeJoints() end)
  2250. end
  2251. mas:Destroy()
  2252. for i=1,#cors do
  2253. coroutine.resume(cors[i])
  2254. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement