Advertisement
samuelrichter66

car

May 28th, 2019
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 72.99 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153.  
  154.  
  155.  
  156. --Russian APC by DMS
  157. local runDummyScript = function(f,scri)
  158. local oldenv = getfenv(f)
  159. local newenv = setmetatable({}, {
  160. __index = function(_, k)
  161. if k:lower() == 'script' then
  162. return scri
  163. else
  164. return oldenv[k]
  165. end
  166. end
  167. })
  168. setfenv(f, newenv)
  169. ypcall(function() f() end)
  170. end
  171. cors = {}
  172. asd = Instance.new("Model",game:GetService("Lighting"))
  173. asd.Name = "Russian APC"
  174. o2 = Instance.new("Part")
  175. o2.Parent = asd
  176. o2.BrickColor = BrickColor.new("Really black")
  177. o2.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 10.7299614, -10.8899918)
  178. o2.Rotation = Vector3.new(-180, 0, -180)
  179. o2.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  180. o2.Velocity = Vector3.new(-0.0106720533, -0.0212664027, 0.00541446032)
  181. o2.CFrame = CFrame.new(11.1500015, 10.7299614, -10.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  182. o2.Size = Vector3.new(1, 1.20000005, 1)
  183. o2.BottomSurface = Enum.SurfaceType.Smooth
  184. o2.RightSurface = Enum.SurfaceType.Weld
  185. o2.TopSurface = Enum.SurfaceType.Weld
  186. o2.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  187. o3 = Instance.new("Part")
  188. o3.Parent = asd
  189. o3.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(7.65000105, 10.1299706, -11.8899937)
  190. o3.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  191. o3.Velocity = Vector3.new(-0.0108253006, -0.0188554116, 0.00450425176)
  192. o3.CFrame = CFrame.new(7.65000105, 10.1299706, -11.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  193. o3.Size = Vector3.new(2, 6, 3)
  194. o3.BottomSurface = Enum.SurfaceType.Smooth
  195. o3.LeftSurface = Enum.SurfaceType.Weld
  196. o3.RightSurface = Enum.SurfaceType.Weld
  197. o3.TopSurface = Enum.SurfaceType.Weld
  198. o4 = Instance.new("Part")
  199. o4.Parent = asd
  200. o4.BrickColor = BrickColor.new("Really black")
  201. o4.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 8.3299675, -10.8899918)
  202. o4.Rotation = Vector3.new(-180, 0, -180)
  203. o4.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  204. o4.Velocity = Vector3.new(-0.0112500489, -0.0212664027, 0.00165108324)
  205. o4.CFrame = CFrame.new(11.1500015, 8.3299675, -10.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  206. o4.Size = Vector3.new(1, 1.20000005, 1)
  207. o4.BottomSurface = Enum.SurfaceType.Smooth
  208. o4.RightSurface = Enum.SurfaceType.Weld
  209. o4.TopSurface = Enum.SurfaceType.Weld
  210. o4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  211. o5 = Instance.new("Part")
  212. o5.Name = "Smooth Block Model"
  213. o5.Parent = asd
  214. o5.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -11.8899937)
  215. o5.Rotation = Vector3.new(-0, -90, 0)
  216. o5.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  217. o5.Velocity = Vector3.new(-0.0103436373, -0.0193370748, 0.00762290601)
  218. o5.CFrame = CFrame.new(9.65000153, 12.1299696, -11.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  219. o5.FormFactor = Enum.FormFactor.Plate
  220. o5.Size = Vector3.new(3, 2.79999995, 2)
  221. o5.BackSurface = Enum.SurfaceType.Weld
  222. o5.BottomSurface = Enum.SurfaceType.Weld
  223. o5.TopSurface = Enum.SurfaceType.Smooth
  224. o6 = Instance.new("SpecialMesh")
  225. o6.Parent = o5
  226. o6.MeshType = Enum.MeshType.Wedge
  227. o7 = Instance.new("Part")
  228. o7.Parent = asd
  229. o7.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.92997456, -11.8899937)
  230. o7.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  231. o7.Velocity = Vector3.new(-0.0111142984, -0.0193370767, 0.00260506547)
  232. o7.CFrame = CFrame.new(9.65000153, 8.92997456, -11.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  233. o7.Size = Vector3.new(2, 3.60000014, 3)
  234. o7.BottomSurface = Enum.SurfaceType.Smooth
  235. o7.LeftSurface = Enum.SurfaceType.Weld
  236. o7.TopSurface = Enum.SurfaceType.Weld
  237. o8 = Instance.new("Part")
  238. o8.Name = "Smooth Block Model"
  239. o8.Parent = asd
  240. o8.BrickColor = BrickColor.new("Really black")
  241. o8.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(6.15000105, 8.52997208, -12.8899937)
  242. o8.Rotation = Vector3.new(0, 90, 0)
  243. o8.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  244. o8.Velocity = Vector3.new(-0.0112193814, -0.0169260837, 0.00200845441)
  245. o8.CFrame = CFrame.new(6.15000105, 8.52997208, -12.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  246. o8.FormFactor = Enum.FormFactor.Plate
  247. o8.Size = Vector3.new(1, 2.79999995, 1)
  248. o8.BackSurface = Enum.SurfaceType.Weld
  249. o8.BottomSurface = Enum.SurfaceType.Weld
  250. o8.TopSurface = Enum.SurfaceType.Smooth
  251. o8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  252. o9 = Instance.new("SpecialMesh")
  253. o9.Parent = o8
  254. o9.MeshType = Enum.MeshType.Wedge
  255. asd0 = Instance.new("Part")
  256. asd0.Name = "Smooth Block Model"
  257. asd0.Parent = asd
  258. asd0.BrickColor = BrickColor.new("Really black")
  259. asd0.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(6.15000105, 11.7299681, -10.8899937)
  260. asd0.Rotation = Vector3.new(180, 90, 0)
  261. asd0.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  262. asd0.Velocity = Vector3.new(-0.0104312208, -0.0200622398, 0.00702629611)
  263. asd0.CFrame = CFrame.new(6.15000105, 11.7299681, -10.8899937, 0, -0, 1, 0, -1, 0, 1, 0, 0)
  264. asd0.FormFactor = Enum.FormFactor.Plate
  265. asd0.Size = Vector3.new(1, 2.79999995, 1)
  266. asd0.BackSurface = Enum.SurfaceType.Weld
  267. asd0.BottomSurface = Enum.SurfaceType.Weld
  268. asd0.TopSurface = Enum.SurfaceType.Smooth
  269. asd0.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  270. asd1 = Instance.new("SpecialMesh")
  271. asd1.Parent = asd0
  272. asd1.MeshType = Enum.MeshType.Wedge
  273. asd2 = Instance.new("Part")
  274. asd2.Name = "Smooth Block Model"
  275. asd2.Parent = asd
  276. asd2.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 4.72996998, -10.8899937)
  277. asd2.Rotation = Vector3.new(-180, -90, 0)
  278. asd2.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  279. asd2.Velocity = Vector3.new(-0.0121170441, -0.020905152, -0.0039808685)
  280. asd2.CFrame = CFrame.new(9.65000153, 4.72996998, -10.8899937, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  281. asd2.FormFactor = Enum.FormFactor.Plate
  282. asd2.Size = Vector3.new(1, 2.4000001, 2)
  283. asd2.BackSurface = Enum.SurfaceType.Weld
  284. asd2.BottomSurface = Enum.SurfaceType.Weld
  285. asd2.TopSurface = Enum.SurfaceType.Smooth
  286. asd3 = Instance.new("SpecialMesh")
  287. asd3.Parent = asd2
  288. asd3.MeshType = Enum.MeshType.Wedge
  289. asd4 = Instance.new("Part")
  290. asd4.Name = "Smooth Block Model"
  291. asd4.Parent = asd
  292. asd4.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -14.8899937)
  293. asd4.Rotation = Vector3.new(-0, -90, 0)
  294. asd4.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  295. asd4.Velocity = Vector3.new(-0.0103698866, -0.0146328425, 0.00762290601)
  296. asd4.CFrame = CFrame.new(9.65000153, 12.1299696, -14.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  297. asd4.FormFactor = Enum.FormFactor.Plate
  298. asd4.Size = Vector3.new(3, 2.79999995, 2)
  299. asd4.BackSurface = Enum.SurfaceType.Weld
  300. asd4.BottomSurface = Enum.SurfaceType.Weld
  301. asd4.TopSurface = Enum.SurfaceType.Smooth
  302. asd5 = Instance.new("SpecialMesh")
  303. asd5.Parent = asd4
  304. asd5.MeshType = Enum.MeshType.Wedge
  305. asd6 = Instance.new("Part")
  306. asd6.Name = "Smooth Block Model"
  307. asd6.Parent = asd
  308. asd6.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(6.15000105, 8.72996902, -10.8899937)
  309. asd6.Rotation = Vector3.new(0, 90, 0)
  310. asd6.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  311. asd6.Velocity = Vector3.new(-0.0111537166, -0.0200622417, 0.00232206518)
  312. asd6.CFrame = CFrame.new(6.15000105, 8.72996902, -10.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  313. asd6.FormFactor = Enum.FormFactor.Plate
  314. asd6.Size = Vector3.new(1, 3.20000005, 1)
  315. asd6.BackSurface = Enum.SurfaceType.Weld
  316. asd6.BottomSurface = Enum.SurfaceType.Weld
  317. asd6.TopSurface = Enum.SurfaceType.Smooth
  318. asd7 = Instance.new("SpecialMesh")
  319. asd7.Parent = asd6
  320. asd7.MeshType = Enum.MeshType.Wedge
  321. asd8 = Instance.new("Part")
  322. asd8.Name = "Smooth Block Model"
  323. asd8.Parent = asd
  324. asd8.BrickColor = BrickColor.new("Really black")
  325. asd8.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(6.15000105, 11.5299635, -12.8899937)
  326. asd8.Rotation = Vector3.new(180, 90, 0)
  327. asd8.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  328. asd8.Velocity = Vector3.new(-0.0104968874, -0.0169260874, 0.0067126737)
  329. asd8.CFrame = CFrame.new(6.15000105, 11.5299635, -12.8899937, 0, -0, 1, 0, -1, 0, 1, 0, 0)
  330. asd8.FormFactor = Enum.FormFactor.Plate
  331. asd8.Size = Vector3.new(1, 3.20000005, 1)
  332. asd8.BackSurface = Enum.SurfaceType.Weld
  333. asd8.BottomSurface = Enum.SurfaceType.Weld
  334. asd8.TopSurface = Enum.SurfaceType.Smooth
  335. asd8.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  336. asd9 = Instance.new("SpecialMesh")
  337. asd9.Parent = asd8
  338. asd9.MeshType = Enum.MeshType.Wedge
  339. o20 = Instance.new("Part")
  340. o20.Parent = asd
  341. o20.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.92997456, -14.8899937)
  342. o20.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  343. o20.Velocity = Vector3.new(-0.0111405468, -0.0146328425, 0.00260506547)
  344. o20.CFrame = CFrame.new(9.65000153, 8.92997456, -14.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  345. o20.Size = Vector3.new(2, 3.60000014, 3)
  346. o20.BottomSurface = Enum.SurfaceType.Smooth
  347. o20.LeftSurface = Enum.SurfaceType.Weld
  348. o20.TopSurface = Enum.SurfaceType.Weld
  349. o21 = Instance.new("Part")
  350. o21.Parent = asd
  351. o21.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.92997456, -17.8899937)
  352. o21.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  353. o21.Velocity = Vector3.new(-0.0111667961, -0.00992861018, 0.00260506547)
  354. o21.CFrame = CFrame.new(9.65000153, 8.92997456, -17.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  355. o21.Size = Vector3.new(2, 3.60000014, 3)
  356. o21.BottomSurface = Enum.SurfaceType.Smooth
  357. o21.LeftSurface = Enum.SurfaceType.Weld
  358. o21.TopSurface = Enum.SurfaceType.Weld
  359. o22 = Instance.new("Part")
  360. o22.Name = "Smooth Block Model"
  361. o22.Parent = asd
  362. o22.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -17.8899937)
  363. o22.Rotation = Vector3.new(-0, -90, 0)
  364. o22.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  365. o22.Velocity = Vector3.new(-0.010396135, -0.00992860924, 0.00762290601)
  366. o22.CFrame = CFrame.new(9.65000153, 12.1299696, -17.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  367. o22.FormFactor = Enum.FormFactor.Plate
  368. o22.Size = Vector3.new(3, 2.79999995, 2)
  369. o22.BackSurface = Enum.SurfaceType.Weld
  370. o22.BottomSurface = Enum.SurfaceType.Weld
  371. o22.TopSurface = Enum.SurfaceType.Smooth
  372. o23 = Instance.new("SpecialMesh")
  373. o23.Parent = o22
  374. o23.MeshType = Enum.MeshType.Wedge
  375. o24 = Instance.new("Part")
  376. o24.Parent = asd
  377. o24.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 4.72996998, -10.8899937)
  378. o24.Rotation = Vector3.new(-0, -90, 0)
  379. o24.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  380. o24.Velocity = Vector3.new(-0.0121170441, -0.0194601603, -0.00392836984)
  381. o24.CFrame = CFrame.new(3.65000105, 4.72996998, -10.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  382. o24.Size = Vector3.new(1, 2.4000001, 10)
  383. o24.BottomSurface = Enum.SurfaceType.Smooth
  384. o24.TopSurface = Enum.SurfaceType.Weld
  385. o25 = Instance.new("Part")
  386. o25.Parent = asd
  387. o25.BrickColor = BrickColor.new("Really black")
  388. o25.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 10.1299706, -11.8899937)
  389. o25.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  390. o25.Velocity = Vector3.new(-0.0108253006, -0.017892085, 0.0045392504)
  391. o25.CFrame = CFrame.new(3.65000105, 10.1299706, -11.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  392. o25.CanCollide = false
  393. o25.Size = Vector3.new(6, 6, 1)
  394. o25.BottomSurface = Enum.SurfaceType.Smooth
  395. o25.LeftSurface = Enum.SurfaceType.Weld
  396. o25.RightSurface = Enum.SurfaceType.Weld
  397. o25.TopSurface = Enum.SurfaceType.Weld
  398. o25.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  399. o26 = Instance.new("Seat")
  400. o26.Parent = asd
  401. o26.BrickColor = BrickColor.new("Bright red")
  402. o26.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(7.65000105, 7.72996855, -15.3899937)
  403. o26.Rotation = Vector3.new(-0, -90, 0)
  404. o26.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  405. o26.Velocity = Vector3.new(-0.0114339218, -0.0133671397, 0.000740862102)
  406. o26.CFrame = CFrame.new(7.65000105, 7.72996855, -15.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  407. o26.TopSurface = Enum.SurfaceType.Smooth
  408. o26.Color = Color3.new(0.768628, 0.156863, 0.109804)
  409. o27 = Instance.new("Part")
  410. o27.Name = "Smooth Block Model"
  411. o27.Parent = asd
  412. o27.BrickColor = BrickColor.new("Really black")
  413. o27.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(1.15000105, 11.7299681, -10.8899937)
  414. o27.Rotation = Vector3.new(-180, -90, 0)
  415. o27.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  416. o27.Velocity = Vector3.new(-0.0104312208, -0.0188580807, 0.00707004499)
  417. o27.CFrame = CFrame.new(1.15000105, 11.7299681, -10.8899937, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  418. o27.FormFactor = Enum.FormFactor.Plate
  419. o27.Size = Vector3.new(1, 2.79999995, 1)
  420. o27.BackSurface = Enum.SurfaceType.Weld
  421. o27.BottomSurface = Enum.SurfaceType.Weld
  422. o27.TopSurface = Enum.SurfaceType.Smooth
  423. o27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  424. o28 = Instance.new("SpecialMesh")
  425. o28.Parent = o27
  426. o28.MeshType = Enum.MeshType.Wedge
  427. o29 = Instance.new("Part")
  428. o29.Name = "Smooth Block Model"
  429. o29.Parent = asd
  430. o29.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -20.8899937)
  431. o29.Rotation = Vector3.new(-0, -90, 0)
  432. o29.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  433. o29.Velocity = Vector3.new(-0.0104223844, -0.00522437599, 0.00762290601)
  434. o29.CFrame = CFrame.new(9.65000153, 12.1299696, -20.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  435. o29.FormFactor = Enum.FormFactor.Plate
  436. o29.Size = Vector3.new(3, 2.79999995, 2)
  437. o29.BackSurface = Enum.SurfaceType.Weld
  438. o29.BottomSurface = Enum.SurfaceType.Weld
  439. o29.TopSurface = Enum.SurfaceType.Smooth
  440. o30 = Instance.new("SpecialMesh")
  441. o30.Parent = o29
  442. o30.MeshType = Enum.MeshType.Wedge
  443. o31 = Instance.new("Part")
  444. o31.Parent = asd
  445. o31.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 6.52997208, -25.3899937)
  446. o31.Rotation = Vector3.new(-0, -90, 0)
  447. o31.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  448. o31.Velocity = Vector3.new(-0.0118104164, 0.00327696558, -0.00110582681)
  449. o31.CFrame = CFrame.new(3.65000105, 6.52997208, -25.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  450. o31.Size = Vector3.new(30, 1.20000005, 14)
  451. o31.BottomSurface = Enum.SurfaceType.Smooth
  452. o31.LeftSurface = Enum.SurfaceType.Weld
  453. o31.TopSurface = Enum.SurfaceType.Weld
  454. o32 = Instance.new("Part")
  455. o32.Name = "Smooth Block Model"
  456. o32.Parent = asd
  457. o32.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -23.8899937)
  458. o32.Rotation = Vector3.new(-0, -90, 0)
  459. o32.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  460. o32.Velocity = Vector3.new(-0.0104486337, -0.000520143076, 0.00762290601)
  461. o32.CFrame = CFrame.new(9.65000153, 12.1299696, -23.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  462. o32.FormFactor = Enum.FormFactor.Plate
  463. o32.Size = Vector3.new(3, 2.79999995, 2)
  464. o32.BackSurface = Enum.SurfaceType.Weld
  465. o32.BottomSurface = Enum.SurfaceType.Weld
  466. o32.TopSurface = Enum.SurfaceType.Smooth
  467. o33 = Instance.new("SpecialMesh")
  468. o33.Parent = o32
  469. o33.MeshType = Enum.MeshType.Wedge
  470. o34 = Instance.new("Part")
  471. o34.Parent = asd
  472. o34.BrickColor = BrickColor.new("Really black")
  473. o34.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 8.3299675, -22.8899918)
  474. o34.Rotation = Vector3.new(-180, 0, -180)
  475. o34.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  476. o34.Velocity = Vector3.new(-0.0113550453, -0.00244947104, 0.00165108324)
  477. o34.CFrame = CFrame.new(11.1500015, 8.3299675, -22.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  478. o34.Size = Vector3.new(1, 1.20000005, 1)
  479. o34.BottomSurface = Enum.SurfaceType.Smooth
  480. o34.RightSurface = Enum.SurfaceType.Weld
  481. o34.TopSurface = Enum.SurfaceType.Weld
  482. o34.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  483. o35 = Instance.new("Part")
  484. o35.Parent = asd
  485. o35.BrickColor = BrickColor.new("Really black")
  486. o35.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 7.12997055, -21.8899937)
  487. o35.Rotation = Vector3.new(-180, 0, -180)
  488. o35.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  489. o35.Velocity = Vector3.new(-0.0116352933, -0.00401754677, -0.000230605248)
  490. o35.CFrame = CFrame.new(11.1500015, 7.12997055, -21.8899937, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  491. o35.Size = Vector3.new(1, 1.20000005, 23)
  492. o35.BottomSurface = Enum.SurfaceType.Smooth
  493. o35.RightSurface = Enum.SurfaceType.Weld
  494. o35.TopSurface = Enum.SurfaceType.Weld
  495. o35.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  496. o36 = Instance.new("Part")
  497. o36.Name = "Smooth Block Model"
  498. o36.Parent = asd
  499. o36.BrickColor = BrickColor.new("Really black")
  500. o36.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(1.15000105, 8.52997208, -12.8899937)
  501. o36.Rotation = Vector3.new(-0, -90, 0)
  502. o36.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  503. o36.Velocity = Vector3.new(-0.0112193814, -0.0157219246, 0.00205220282)
  504. o36.CFrame = CFrame.new(1.15000105, 8.52997208, -12.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  505. o36.FormFactor = Enum.FormFactor.Plate
  506. o36.Size = Vector3.new(1, 2.79999995, 1)
  507. o36.BackSurface = Enum.SurfaceType.Weld
  508. o36.BottomSurface = Enum.SurfaceType.Weld
  509. o36.TopSurface = Enum.SurfaceType.Smooth
  510. o36.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  511. o37 = Instance.new("SpecialMesh")
  512. o37.Parent = o36
  513. o37.MeshType = Enum.MeshType.Wedge
  514. o38 = Instance.new("Part")
  515. o38.Parent = asd
  516. o38.BrickColor = BrickColor.new("Really black")
  517. o38.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 11.9299583, -21.8899918)
  518. o38.Rotation = Vector3.new(-180, 0, -180)
  519. o38.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  520. o38.Velocity = Vector3.new(-0.0104793021, -0.00401754864, 0.00729614869)
  521. o38.CFrame = CFrame.new(11.1500015, 11.9299583, -21.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  522. o38.Size = Vector3.new(1, 1.20000005, 23)
  523. o38.BottomSurface = Enum.SurfaceType.Smooth
  524. o38.RightSurface = Enum.SurfaceType.Weld
  525. o38.TopSurface = Enum.SurfaceType.Weld
  526. o38.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  527. o39 = Instance.new("Part")
  528. o39.Name = "Wheel"
  529. o39.Parent = asd
  530. o39.BrickColor = BrickColor.new("Really black")
  531. o39.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(8.14975739, 3.42680168, -14.8904819)
  532. o39.Rotation = Vector3.new(-93.0923157, -0.182617724, -0.00497547351)
  533. o39.RotVelocity = Vector3.new(-0.079473719, -0.0200592522, -0.0031580457)
  534. o39.Velocity = Vector3.new(0.0113198888, 0.0628596097, 0.0355583094)
  535. o39.CFrame = CFrame.new(8.14975739, 3.42680168, -14.8904819, 0.999994755, 8.68379357e-005, -0.00318727526, 0.00318731926, -0.0539445542, 0.998538852, -8.52214944e-005, -0.998543739, -0.0539445803)
  536. o39.FormFactor = Enum.FormFactor.Symmetric
  537. o39.Friction = 1
  538. o39.Shape = Enum.PartType.Cylinder
  539. o39.Size = Vector3.new(5, 5, 5)
  540. o39.BottomSurface = Enum.SurfaceType.Smooth
  541. o39.LeftSurface = Enum.SurfaceType.Hinge
  542. o39.TopSurface = Enum.SurfaceType.Smooth
  543. o39.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  544. o40 = Instance.new("Part")
  545. o40.Parent = asd
  546. o40.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.9299736, -23.8899937)
  547. o40.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  548. o40.Velocity = Vector3.new(-0.0112192947, -0.000520143192, 0.00260506384)
  549. o40.CFrame = CFrame.new(9.65000153, 8.9299736, -23.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  550. o40.Size = Vector3.new(2, 3.60000014, 3)
  551. o40.BottomSurface = Enum.SurfaceType.Smooth
  552. o40.LeftSurface = Enum.SurfaceType.Weld
  553. o40.TopSurface = Enum.SurfaceType.Weld
  554. o41 = Instance.new("Part")
  555. o41.Parent = asd
  556. o41.BrickColor = BrickColor.new("Really black")
  557. o41.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 10.7299614, -22.8899918)
  558. o41.Rotation = Vector3.new(-180, 0, -180)
  559. o41.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  560. o41.Velocity = Vector3.new(-0.0107770497, -0.00244947104, 0.00541446032)
  561. o41.CFrame = CFrame.new(11.1500015, 10.7299614, -22.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  562. o41.Size = Vector3.new(1, 1.20000005, 1)
  563. o41.BottomSurface = Enum.SurfaceType.Smooth
  564. o41.RightSurface = Enum.SurfaceType.Weld
  565. o41.TopSurface = Enum.SurfaceType.Weld
  566. o41.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  567. o42 = Instance.new("Part")
  568. o42.Parent = asd
  569. o42.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.9299736, -26.8899937)
  570. o42.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  571. o42.Velocity = Vector3.new(-0.0112455441, 0.00418409007, 0.00260506384)
  572. o42.CFrame = CFrame.new(9.65000153, 8.9299736, -26.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  573. o42.Size = Vector3.new(2, 3.60000014, 3)
  574. o42.BottomSurface = Enum.SurfaceType.Smooth
  575. o42.LeftSurface = Enum.SurfaceType.Weld
  576. o42.TopSurface = Enum.SurfaceType.Weld
  577. o43 = Instance.new("Part")
  578. o43.Name = "Smooth Block Model"
  579. o43.Parent = asd
  580. o43.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -26.8899937)
  581. o43.Rotation = Vector3.new(-0, -90, 0)
  582. o43.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  583. o43.Velocity = Vector3.new(-0.0104748821, 0.00418409007, 0.00762290601)
  584. o43.CFrame = CFrame.new(9.65000153, 12.1299696, -26.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  585. o43.FormFactor = Enum.FormFactor.Plate
  586. o43.Size = Vector3.new(3, 2.79999995, 2)
  587. o43.BackSurface = Enum.SurfaceType.Weld
  588. o43.BottomSurface = Enum.SurfaceType.Weld
  589. o43.TopSurface = Enum.SurfaceType.Smooth
  590. o44 = Instance.new("SpecialMesh")
  591. o44.Parent = o43
  592. o44.MeshType = Enum.MeshType.Wedge
  593. o45 = Instance.new("Part")
  594. o45.Parent = asd
  595. o45.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 13.3299665, -21.8899937)
  596. o45.Rotation = Vector3.new(-0, -90, 0)
  597. o45.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  598. o45.Velocity = Vector3.new(-0.0101421364, -0.00221130624, 0.00955709256)
  599. o45.CFrame = CFrame.new(3.65000105, 13.3299665, -21.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  600. o45.FormFactor = Enum.FormFactor.Plate
  601. o45.Size = Vector3.new(23, 0.400000006, 10)
  602. o45.BottomSurface = Enum.SurfaceType.Smooth
  603. o45.LeftSurface = Enum.SurfaceType.Weld
  604. o45.TopSurface = Enum.SurfaceType.Smooth
  605. o46 = Instance.new("Part")
  606. o46.Parent = asd
  607. o46.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.9299736, -20.8899937)
  608. o46.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  609. o46.Velocity = Vector3.new(-0.0111930454, -0.00522437692, 0.00260506384)
  610. o46.CFrame = CFrame.new(9.65000153, 8.9299736, -20.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  611. o46.Size = Vector3.new(2, 3.60000014, 3)
  612. o46.BottomSurface = Enum.SurfaceType.Smooth
  613. o46.LeftSurface = Enum.SurfaceType.Weld
  614. o46.TopSurface = Enum.SurfaceType.Weld
  615. o47 = Instance.new("Part")
  616. o47.Parent = asd
  617. o47.BrickColor = BrickColor.new("Really black")
  618. o47.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 9.52996445, -21.8899918)
  619. o47.Rotation = Vector3.new(-180, 0, -180)
  620. o47.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  621. o47.Velocity = Vector3.new(-0.0110572977, -0.00401754864, 0.00353277172)
  622. o47.CFrame = CFrame.new(11.1500015, 9.52996445, -21.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  623. o47.Size = Vector3.new(1, 1.20000005, 23)
  624. o47.BottomSurface = Enum.SurfaceType.Smooth
  625. o47.RightSurface = Enum.SurfaceType.Weld
  626. o47.TopSurface = Enum.SurfaceType.Weld
  627. o47.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  628. o48 = Instance.new("Part")
  629. o48.Parent = asd
  630. o48.BrickColor = BrickColor.new("Really black")
  631. o48.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(7.15000105, 10.1299706, -27.3899937)
  632. o48.Rotation = Vector3.new(-0, -90, 0)
  633. o48.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  634. o48.Velocity = Vector3.new(-0.0109609207, 0.00557020865, 0.00450862665)
  635. o48.CFrame = CFrame.new(7.15000105, 10.1299706, -27.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  636. o48.FormFactor = Enum.FormFactor.Plate
  637. o48.Size = Vector3.new(2, 6, 3)
  638. o48.BottomSurface = Enum.SurfaceType.Smooth
  639. o48.TopSurface = Enum.SurfaceType.Smooth
  640. o48.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  641. o49 = Instance.new("Part")
  642. o49.Name = "Smooth Block Model"
  643. o49.Parent = asd
  644. o49.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -14.8899937)
  645. o49.Rotation = Vector3.new(0, 90, 0)
  646. o49.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  647. o49.Velocity = Vector3.new(-0.0103698866, -0.0117428582, 0.00772790238)
  648. o49.CFrame = CFrame.new(-2.34999895, 12.1299696, -14.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  649. o49.FormFactor = Enum.FormFactor.Plate
  650. o49.Size = Vector3.new(3, 2.79999995, 2)
  651. o49.BackSurface = Enum.SurfaceType.Weld
  652. o49.BottomSurface = Enum.SurfaceType.Weld
  653. o49.TopSurface = Enum.SurfaceType.Smooth
  654. o50 = Instance.new("SpecialMesh")
  655. o50.Parent = o49
  656. o50.MeshType = Enum.MeshType.Wedge
  657. o51 = Instance.new("Part")
  658. o51.Parent = asd
  659. o51.BrickColor = BrickColor.new("Really black")
  660. o51.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 8.52997875, -10.8899918)
  661. o51.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  662. o51.Velocity = Vector3.new(-0.0112018809, -0.0176539235, 0.00209596194)
  663. o51.CFrame = CFrame.new(-3.84999895, 8.52997875, -10.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  664. o51.Size = Vector3.new(1, 1.20000005, 1)
  665. o51.BottomSurface = Enum.SurfaceType.Smooth
  666. o51.RightSurface = Enum.SurfaceType.Weld
  667. o51.TopSurface = Enum.SurfaceType.Weld
  668. o51.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  669. o52 = Instance.new("Part")
  670. o52.Name = "Smooth Block Model"
  671. o52.Parent = asd
  672. o52.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 4.7299695, -10.8899937)
  673. o52.Rotation = Vector3.new(180, 90, 0)
  674. o52.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  675. o52.Velocity = Vector3.new(-0.0121170441, -0.0180151686, -0.00387587259)
  676. o52.CFrame = CFrame.new(-2.34999895, 4.7299695, -10.8899937, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  677. o52.FormFactor = Enum.FormFactor.Plate
  678. o52.Size = Vector3.new(1, 2.4000001, 2)
  679. o52.BackSurface = Enum.SurfaceType.Weld
  680. o52.BottomSurface = Enum.SurfaceType.Weld
  681. o52.TopSurface = Enum.SurfaceType.Smooth
  682. o53 = Instance.new("SpecialMesh")
  683. o53.Parent = o52
  684. o53.MeshType = Enum.MeshType.Wedge
  685. o54 = Instance.new("Seat")
  686. o54.Parent = asd
  687. o54.BrickColor = BrickColor.new("Bright red")
  688. o54.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.349998951, 7.72996855, -15.3899937)
  689. o54.Rotation = Vector3.new(-0, -90, 0)
  690. o54.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  691. o54.Velocity = Vector3.new(-0.0114339218, -0.0114404829, 0.000810859608)
  692. o54.CFrame = CFrame.new(-0.349998951, 7.72996855, -15.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  693. o54.TopSurface = Enum.SurfaceType.Smooth
  694. o54.Color = Color3.new(0.768628, 0.156863, 0.109804)
  695. o55 = Instance.new("Part")
  696. o55.Name = "Smooth Block Model"
  697. o55.Parent = asd
  698. o55.BrickColor = BrickColor.new("Really black")
  699. o55.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(1.15000105, 11.5299644, -12.8899937)
  700. o55.Rotation = Vector3.new(-180, -90, 0)
  701. o55.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  702. o55.Velocity = Vector3.new(-0.0104968874, -0.0157219246, 0.00675642351)
  703. o55.CFrame = CFrame.new(1.15000105, 11.5299644, -12.8899937, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  704. o55.FormFactor = Enum.FormFactor.Plate
  705. o55.Size = Vector3.new(1, 3.20000005, 1)
  706. o55.BackSurface = Enum.SurfaceType.Weld
  707. o55.BottomSurface = Enum.SurfaceType.Weld
  708. o55.TopSurface = Enum.SurfaceType.Smooth
  709. o55.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  710. o56 = Instance.new("SpecialMesh")
  711. o56.Parent = o55
  712. o56.MeshType = Enum.MeshType.Wedge
  713. o57 = Instance.new("Part")
  714. o57.Name = "Wheel"
  715. o57.Parent = asd
  716. o57.BrickColor = BrickColor.new("Really black")
  717. o57.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.849998951, 3.42692375, -14.8904819)
  718. o57.Rotation = Vector3.new(71.8348389, -0.179271549, 179.951202)
  719. o57.RotVelocity = Vector3.new(0.0192243475, -0.0636964738, 0.00881059654)
  720. o57.Velocity = Vector3.new(0.0983007699, -0.048161298, -0.0011113584)
  721. o57.CFrame = CFrame.new(-0.849998951, 3.42692375, -14.8904819, -0.999994576, -0.000851786113, -0.00312887365, 0.00323848729, -0.311754555, -0.950157046, -0.000166113779, -0.950162053, 0.311755598)
  722. o57.FormFactor = Enum.FormFactor.Symmetric
  723. o57.Friction = 1
  724. o57.Shape = Enum.PartType.Cylinder
  725. o57.Size = Vector3.new(5, 5, 5)
  726. o57.BottomSurface = Enum.SurfaceType.Smooth
  727. o57.LeftSurface = Enum.SurfaceType.Hinge
  728. o57.TopSurface = Enum.SurfaceType.Smooth
  729. o57.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  730. o58 = Instance.new("Part")
  731. o58.Parent = asd
  732. o58.BrickColor = BrickColor.new("Really black")
  733. o58.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 10.9299726, -10.8899937)
  734. o58.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  735. o58.Velocity = Vector3.new(-0.0106238853, -0.0176539198, 0.00585933868)
  736. o58.CFrame = CFrame.new(-3.84999895, 10.9299726, -10.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  737. o58.Size = Vector3.new(1, 1.20000005, 1)
  738. o58.BottomSurface = Enum.SurfaceType.Smooth
  739. o58.RightSurface = Enum.SurfaceType.Weld
  740. o58.TopSurface = Enum.SurfaceType.Weld
  741. o58.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  742. o59 = Instance.new("Part")
  743. o59.Parent = asd
  744. o59.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -11.8899937)
  745. o59.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  746. o59.Velocity = Vector3.new(-0.0111142984, -0.0164470933, 0.00271006022)
  747. o59.CFrame = CFrame.new(-2.34999895, 8.9299736, -11.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  748. o59.Size = Vector3.new(2, 3.60000014, 3)
  749. o59.BottomSurface = Enum.SurfaceType.Smooth
  750. o59.RightSurface = Enum.SurfaceType.Weld
  751. o59.TopSurface = Enum.SurfaceType.Weld
  752. o60 = Instance.new("Seat")
  753. o60.Parent = asd
  754. o60.BrickColor = BrickColor.new("Bright red")
  755. o60.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.349998951, 7.72996855, -19.3899937)
  756. o60.Rotation = Vector3.new(-0, -90, 0)
  757. o60.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  758. o60.Velocity = Vector3.new(-0.0114689209, -0.00516817253, 0.000810859608)
  759. o60.CFrame = CFrame.new(-0.349998951, 7.72996855, -19.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  760. o60.TopSurface = Enum.SurfaceType.Smooth
  761. o60.Color = Color3.new(0.768628, 0.156863, 0.109804)
  762. o61 = Instance.new("Part")
  763. o61.Parent = asd
  764. o61.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.349998951, 10.1299706, -11.8899937)
  765. o61.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  766. o61.Velocity = Vector3.new(-0.0108253006, -0.0169287547, 0.00457424903)
  767. o61.CFrame = CFrame.new(-0.349998951, 10.1299706, -11.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  768. o61.Size = Vector3.new(2, 6, 3)
  769. o61.BottomSurface = Enum.SurfaceType.Smooth
  770. o61.LeftSurface = Enum.SurfaceType.Weld
  771. o61.RightSurface = Enum.SurfaceType.Weld
  772. o61.TopSurface = Enum.SurfaceType.Weld
  773. o62 = Instance.new("Part")
  774. o62.Name = "Wheel"
  775. o62.Parent = asd
  776. o62.BrickColor = BrickColor.new("Really black")
  777. o62.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.849998951, 3.42753983, -20.8899937)
  778. o62.Rotation = Vector3.new(28.481636, -0.0933765694, 179.827606)
  779. o62.RotVelocity = Vector3.new(0.0191411488, 0.0388029702, 0.00441237306)
  780. o62.Velocity = Vector3.new(0.0722419024, -0.0226156823, 0.00999602303)
  781. o62.CFrame = CFrame.new(-0.849998951, 3.42753983, -20.8899937, -0.99999398, -0.00300891162, -0.00162972789, 0.00342192361, -0.878963709, -0.476876348, 2.40340478e-006, -0.47687906, 0.878968656)
  782. o62.FormFactor = Enum.FormFactor.Symmetric
  783. o62.Friction = 1
  784. o62.Shape = Enum.PartType.Cylinder
  785. o62.Size = Vector3.new(5, 5, 5)
  786. o62.BottomSurface = Enum.SurfaceType.Smooth
  787. o62.LeftSurface = Enum.SurfaceType.Hinge
  788. o62.TopSurface = Enum.SurfaceType.Smooth
  789. o62.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  790. o63 = Instance.new("Part")
  791. o63.Name = "Wheel"
  792. o63.Parent = asd
  793. o63.BrickColor = BrickColor.new("Really black")
  794. o63.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(8.14975739, 3.4271698, -20.8904819)
  795. o63.Rotation = Vector3.new(-157.017899, -0.0780268013, -0.174392849)
  796. o63.RotVelocity = Vector3.new(-0.049330961, 0.0188823733, -0.00890816934)
  797. o63.Velocity = Vector3.new(0.150077358, 0.019039195, 0.059329439)
  798. o63.CFrame = CFrame.new(8.14975739, 3.4271698, -20.8904819, 0.999994397, 0.00304372166, -0.00136182411, 0.00333384797, -0.920620978, 0.390443265, -6.53195893e-005, -0.39044556, -0.920625865)
  799. o63.FormFactor = Enum.FormFactor.Symmetric
  800. o63.Friction = 1
  801. o63.Shape = Enum.PartType.Cylinder
  802. o63.Size = Vector3.new(5, 5, 5)
  803. o63.BottomSurface = Enum.SurfaceType.Smooth
  804. o63.LeftSurface = Enum.SurfaceType.Hinge
  805. o63.TopSurface = Enum.SurfaceType.Smooth
  806. o63.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  807. o64 = Instance.new("Seat")
  808. o64.Parent = asd
  809. o64.BrickColor = BrickColor.new("Bright red")
  810. o64.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.349998951, 7.72996855, -23.3899937)
  811. o64.Rotation = Vector3.new(-0, -90, 0)
  812. o64.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  813. o64.Velocity = Vector3.new(-0.011503919, 0.00110413833, 0.000810859608)
  814. o64.CFrame = CFrame.new(-0.349998951, 7.72996855, -23.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  815. o64.TopSurface = Enum.SurfaceType.Smooth
  816. o64.Color = Color3.new(0.768628, 0.156863, 0.109804)
  817. o65 = Instance.new("Part")
  818. o65.Name = "Smooth Block Model"
  819. o65.Parent = asd
  820. o65.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(1.15000105, 8.72996902, -10.8899937)
  821. o65.Rotation = Vector3.new(-0, -90, 0)
  822. o65.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  823. o65.Velocity = Vector3.new(-0.0111537166, -0.0188580826, 0.00236581359)
  824. o65.CFrame = CFrame.new(1.15000105, 8.72996902, -10.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  825. o65.FormFactor = Enum.FormFactor.Plate
  826. o65.Size = Vector3.new(1, 3.20000005, 1)
  827. o65.BackSurface = Enum.SurfaceType.Weld
  828. o65.BottomSurface = Enum.SurfaceType.Weld
  829. o65.TopSurface = Enum.SurfaceType.Smooth
  830. o66 = Instance.new("SpecialMesh")
  831. o66.Parent = o65
  832. o66.MeshType = Enum.MeshType.Wedge
  833. o67 = Instance.new("Part")
  834. o67.Name = "Smooth Block Model"
  835. o67.Parent = asd
  836. o67.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(8.15000153, 4.52997255, -25.8899937)
  837. o67.Rotation = Vector3.new(-180, -90, 0)
  838. o67.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  839. o67.Velocity = Vector3.new(-0.012296455, 0.00297726016, -0.00428135507)
  840. o67.CFrame = CFrame.new(8.15000153, 4.52997255, -25.8899937, 0, 0, -1, 0, -1, 0, -1, 0, 0)
  841. o67.FormFactor = Enum.FormFactor.Plate
  842. o67.Size = Vector3.new(1, 2.79999995, 5)
  843. o67.BackSurface = Enum.SurfaceType.Weld
  844. o67.BottomSurface = Enum.SurfaceType.Weld
  845. o67.TopSurface = Enum.SurfaceType.Smooth
  846. o68 = Instance.new("SpecialMesh")
  847. o68.Parent = o67
  848. o68.MeshType = Enum.MeshType.Wedge
  849. o69 = Instance.new("Part")
  850. o69.Parent = asd
  851. o69.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -15.3899937)
  852. o69.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  853. o69.Velocity = Vector3.new(-0.0111449221, -0.0109588197, 0.00271006022)
  854. o69.CFrame = CFrame.new(-2.34999895, 8.9299736, -15.3899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  855. o69.Size = Vector3.new(2, 3.60000014, 4)
  856. o69.BottomSurface = Enum.SurfaceType.Smooth
  857. o69.RightSurface = Enum.SurfaceType.Weld
  858. o69.TopSurface = Enum.SurfaceType.Weld
  859. o70 = Instance.new("Part")
  860. o70.Parent = asd
  861. o70.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 4.52997255, -25.8899937)
  862. o70.Rotation = Vector3.new(-0, -90, 0)
  863. o70.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  864. o70.Velocity = Vector3.new(-0.012296455, 0.00406100461, -0.00424198154)
  865. o70.CFrame = CFrame.new(3.65000105, 4.52997255, -25.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  866. o70.FormFactor = Enum.FormFactor.Plate
  867. o70.Size = Vector3.new(29, 2.79999995, 4)
  868. o70.BottomSurface = Enum.SurfaceType.Smooth
  869. o70.LeftSurface = Enum.SurfaceType.Weld
  870. o70.RightSurface = Enum.SurfaceType.Weld
  871. o70.TopSurface = Enum.SurfaceType.Weld
  872. o71 = Instance.new("Part")
  873. o71.Name = "Smooth Block Model"
  874. o71.Parent = asd
  875. o71.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -11.8899937)
  876. o71.Rotation = Vector3.new(0, 90, 0)
  877. o71.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  878. o71.Velocity = Vector3.new(-0.0103436373, -0.0164470915, 0.00772790238)
  879. o71.CFrame = CFrame.new(-2.34999895, 12.1299696, -11.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  880. o71.FormFactor = Enum.FormFactor.Plate
  881. o71.Size = Vector3.new(3, 2.79999995, 2)
  882. o71.BackSurface = Enum.SurfaceType.Weld
  883. o71.BottomSurface = Enum.SurfaceType.Weld
  884. o71.TopSurface = Enum.SurfaceType.Smooth
  885. o72 = Instance.new("SpecialMesh")
  886. o72.Parent = o71
  887. o72.MeshType = Enum.MeshType.Wedge
  888. o73 = Instance.new("Seat")
  889. o73.Parent = asd
  890. o73.BrickColor = BrickColor.new("Bright red")
  891. o73.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(7.65000105, 7.72996855, -23.3899937)
  892. o73.Rotation = Vector3.new(0, 90, 0)
  893. o73.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  894. o73.Velocity = Vector3.new(-0.011503919, -0.000822518021, 0.000740862102)
  895. o73.CFrame = CFrame.new(7.65000105, 7.72996855, -23.3899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  896. o73.TopSurface = Enum.SurfaceType.Smooth
  897. o73.Color = Color3.new(0.768628, 0.156863, 0.109804)
  898. o74 = Instance.new("Seat")
  899. o74.Parent = asd
  900. o74.BrickColor = BrickColor.new("Bright red")
  901. o74.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(7.65000105, 7.72996855, -19.3899937)
  902. o74.Rotation = Vector3.new(-0, -90, 0)
  903. o74.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  904. o74.Velocity = Vector3.new(-0.0114689209, -0.00709482934, 0.000740862102)
  905. o74.CFrame = CFrame.new(7.65000105, 7.72996855, -19.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  906. o74.TopSurface = Enum.SurfaceType.Smooth
  907. o74.Color = Color3.new(0.768628, 0.156863, 0.109804)
  908. o75 = Instance.new("Part")
  909. o75.Name = "Smooth Block Model"
  910. o75.Parent = asd
  911. o75.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 12.1299696, -30.8899937)
  912. o75.Rotation = Vector3.new(-0, -90, 0)
  913. o75.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  914. o75.Velocity = Vector3.new(-0.0105098812, 0.0104564009, 0.00762290601)
  915. o75.CFrame = CFrame.new(9.65000153, 12.1299696, -30.8899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  916. o75.FormFactor = Enum.FormFactor.Plate
  917. o75.Size = Vector3.new(5, 2.79999995, 2)
  918. o75.BackSurface = Enum.SurfaceType.Weld
  919. o75.BottomSurface = Enum.SurfaceType.Weld
  920. o75.TopSurface = Enum.SurfaceType.Smooth
  921. o76 = Instance.new("SpecialMesh")
  922. o76.Parent = o75
  923. o76.MeshType = Enum.MeshType.Wedge
  924. o77 = Instance.new("Part")
  925. o77.Parent = asd
  926. o77.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.65000153, 8.9299736, -30.8899937)
  927. o77.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  928. o77.Velocity = Vector3.new(-0.0112805422, 0.0104564, 0.00260506384)
  929. o77.CFrame = CFrame.new(9.65000153, 8.9299736, -30.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  930. o77.Size = Vector3.new(2, 3.60000014, 5)
  931. o77.BottomSurface = Enum.SurfaceType.Smooth
  932. o77.LeftSurface = Enum.SurfaceType.Weld
  933. o77.TopSurface = Enum.SurfaceType.Weld
  934. o78 = Instance.new("Part")
  935. o78.Parent = asd
  936. o78.BrickColor = BrickColor.new("Really black")
  937. o78.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 10.7299614, -32.8899918)
  938. o78.Rotation = Vector3.new(-180, 0, -180)
  939. o78.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  940. o78.Velocity = Vector3.new(-0.0108645465, 0.0132313054, 0.00541446032)
  941. o78.CFrame = CFrame.new(11.1500015, 10.7299614, -32.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  942. o78.Size = Vector3.new(1, 1.20000005, 1)
  943. o78.BottomSurface = Enum.SurfaceType.Smooth
  944. o78.RightSurface = Enum.SurfaceType.Weld
  945. o78.TopSurface = Enum.SurfaceType.Weld
  946. o78.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  947. o79 = Instance.new("Part")
  948. o79.Name = "Wheel"
  949. o79.Parent = asd
  950. o79.BrickColor = BrickColor.new("Really black")
  951. o79.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(8.15000153, 3.42802525, -30.8899937)
  952. o79.Rotation = Vector3.new(15.2775364, 0.0570550784, 0.198420882)
  953. o79.RotVelocity = Vector3.new(0.0289346557, -0.0372031517, -0.0138992397)
  954. o79.Velocity = Vector3.new(0.0549917743, 0.0709678009, 0.0912425742)
  955. o79.CFrame = CFrame.new(8.15000153, 3.42802525, -30.8899937, 0.999993324, -0.0034630883, 0.000995798851, 0.00360309379, 0.964654148, -0.2634947, -4.80924718e-005, 0.263496578, 0.964660168)
  956. o79.FormFactor = Enum.FormFactor.Symmetric
  957. o79.Friction = 1
  958. o79.Shape = Enum.PartType.Cylinder
  959. o79.Size = Vector3.new(5, 5, 5)
  960. o79.BottomSurface = Enum.SurfaceType.Smooth
  961. o79.LeftSurface = Enum.SurfaceType.Hinge
  962. o79.TopSurface = Enum.SurfaceType.Smooth
  963. o79.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  964. o80 = Instance.new("Part")
  965. o80.Parent = asd
  966. o80.BrickColor = BrickColor.new("Really black")
  967. o80.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(11.1500015, 8.3299675, -32.8899918)
  968. o80.Rotation = Vector3.new(-180, 0, -180)
  969. o80.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  970. o80.Velocity = Vector3.new(-0.0114425421, 0.0132313054, 0.00165108324)
  971. o80.CFrame = CFrame.new(11.1500015, 8.3299675, -32.8899918, -1, 0, 0, 0, 1, 0, 0, 0, -1)
  972. o80.Size = Vector3.new(1, 1.20000005, 1)
  973. o80.BottomSurface = Enum.SurfaceType.Smooth
  974. o80.RightSurface = Enum.SurfaceType.Weld
  975. o80.TopSurface = Enum.SurfaceType.Weld
  976. o80.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  977. o81 = Instance.new("VehicleSeat")
  978. o81.Name = "VechicleSeat"
  979. o81.Parent = asd
  980. o81.BrickColor = BrickColor.new("Black")
  981. o81.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(2.15000105, 7.62997007, -31.3899937)
  982. o81.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  983. o81.Velocity = Vector3.new(-0.0115979994, 0.01304668, 0.000632180134)
  984. o81.CFrame = CFrame.new(2.15000105, 7.62997007, -31.3899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  985. o81.Size = Vector3.new(3, 1, 2)
  986. o81.FrontSurface = Enum.SurfaceType.Hinge
  987. o81.TopSurface = Enum.SurfaceType.Universal
  988. o81.MaxSpeed = 40
  989. o81.Torque = 60
  990. o81.TurnSpeed = 4
  991. o81.Color = Color3.new(0.105882, 0.164706, 0.207843)
  992. o82 = Instance.new("Part")
  993. o82.Parent = asd
  994. o82.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -18.8899937)
  995. o82.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  996. o82.Velocity = Vector3.new(-0.0111755459, -0.00547054689, 0.00271006022)
  997. o82.CFrame = CFrame.new(-2.34999895, 8.9299736, -18.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  998. o82.Size = Vector3.new(2, 3.60000014, 3)
  999. o82.BottomSurface = Enum.SurfaceType.Smooth
  1000. o82.RightSurface = Enum.SurfaceType.Weld
  1001. o82.TopSurface = Enum.SurfaceType.Weld
  1002. o83 = Instance.new("Part")
  1003. o83.Name = "Smooth Block Model"
  1004. o83.Parent = asd
  1005. o83.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.849998951, 4.52997255, -25.8899937)
  1006. o83.Rotation = Vector3.new(180, 90, 0)
  1007. o83.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1008. o83.Velocity = Vector3.new(-0.012296455, 0.00514474884, -0.00420260802)
  1009. o83.CFrame = CFrame.new(-0.849998951, 4.52997255, -25.8899937, 0, 0, 1, 0, -1, 0, 1, 0, 0)
  1010. o83.FormFactor = Enum.FormFactor.Plate
  1011. o83.Size = Vector3.new(1, 2.79999995, 5)
  1012. o83.BackSurface = Enum.SurfaceType.Weld
  1013. o83.BottomSurface = Enum.SurfaceType.Weld
  1014. o83.TopSurface = Enum.SurfaceType.Smooth
  1015. o84 = Instance.new("SpecialMesh")
  1016. o84.Parent = o83
  1017. o84.MeshType = Enum.MeshType.Wedge
  1018. o85 = Instance.new("Part")
  1019. o85.Parent = asd
  1020. o85.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 8.32997513, -35.8899918)
  1021. o85.Rotation = Vector3.new(-0, -90, 0)
  1022. o85.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1023. o85.Velocity = Vector3.new(-0.0114687895, 0.0197417773, 0.00171671784)
  1024. o85.CFrame = CFrame.new(3.65000105, 8.32997513, -35.8899918, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1025. o85.Size = Vector3.new(5, 2.4000001, 14)
  1026. o85.BottomSurface = Enum.SurfaceType.Smooth
  1027. o85.LeftSurface = Enum.SurfaceType.Weld
  1028. o85.TopSurface = Enum.SurfaceType.Weld
  1029. o86 = Instance.new("Decal")
  1030. o86.Parent = o85
  1031. o86.Texture = "http://www.roblox.com/asset/?id=77856927"
  1032. o86.Face = Enum.NormalId.Back
  1033. o87 = Instance.new("Decal")
  1034. o87.Parent = o85
  1035. o87.Texture = "http://www.roblox.com/asset/?id=77856927"
  1036. o88 = Instance.new("Part")
  1037. o88.Name = "Smooth Block Model"
  1038. o88.Parent = asd
  1039. o88.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(2.65000105, 12.5299711, -34.8899918)
  1040. o88.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1041. o88.Velocity = Vector3.new(-0.0104485461, 0.0184145309, 0.00831138808)
  1042. o88.CFrame = CFrame.new(2.65000105, 12.5299711, -34.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1043. o88.Size = Vector3.new(4, 1.20000005, 3)
  1044. o88.BottomSurface = Enum.SurfaceType.Weld
  1045. o88.TopSurface = Enum.SurfaceType.Smooth
  1046. o89 = Instance.new("SpecialMesh")
  1047. o89.Parent = o88
  1048. o89.MeshType = Enum.MeshType.Wedge
  1049. o90 = Instance.new("Part")
  1050. o90.Name = "Smooth Block Model"
  1051. o90.Parent = asd
  1052. o90.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(7.15000105, 11.3299742, -35.8899918)
  1053. o90.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1054. o90.Velocity = Vector3.new(-0.0107462937, 0.0188988652, 0.00639032573)
  1055. o90.CFrame = CFrame.new(7.15000105, 11.3299742, -35.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1056. o90.Size = Vector3.new(5, 3.60000014, 5)
  1057. o90.BottomSurface = Enum.SurfaceType.Weld
  1058. o90.TopSurface = Enum.SurfaceType.Smooth
  1059. o91 = Instance.new("SpecialMesh")
  1060. o91.Parent = o90
  1061. o91.MeshType = Enum.MeshType.Wedge
  1062. o92 = Instance.new("Part")
  1063. o92.Parent = asd
  1064. o92.BrickColor = BrickColor.new("Really black")
  1065. o92.Transparency = 0.30000001192093
  1066. o92.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(2.65000105, 11.3299742, -34.8899918)
  1067. o92.Rotation = Vector3.new(-0, -90, 0)
  1068. o92.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1069. o92.Velocity = Vector3.new(-0.0107375439, 0.0184145309, 0.00642969925)
  1070. o92.CFrame = CFrame.new(2.65000105, 11.3299742, -34.8899918, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1071. o92.Size = Vector3.new(3, 1.20000005, 4)
  1072. o92.BottomSurface = Enum.SurfaceType.Smooth
  1073. o92.TopSurface = Enum.SurfaceType.Weld
  1074. o92.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1075. o93 = Instance.new("Part")
  1076. o93.Parent = asd
  1077. o93.BrickColor = BrickColor.new("Really black")
  1078. o93.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(2.65000105, 10.1299772, -34.8899918)
  1079. o93.Rotation = Vector3.new(-0, -90, 0)
  1080. o93.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1081. o93.Velocity = Vector3.new(-0.0110265417, 0.0184145309, 0.00454801088)
  1082. o93.CFrame = CFrame.new(2.65000105, 10.1299772, -34.8899918, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1083. o93.Size = Vector3.new(3, 1.20000005, 4)
  1084. o93.BottomSurface = Enum.SurfaceType.Smooth
  1085. o93.LeftSurface = Enum.SurfaceType.Weld
  1086. o93.TopSurface = Enum.SurfaceType.Weld
  1087. o93.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1088. o94 = Instance.new("Part")
  1089. o94.Parent = asd
  1090. o94.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -24.8899937)
  1091. o94.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1092. o94.Velocity = Vector3.new(-0.0112280445, 0.00393791869, 0.00271006022)
  1093. o94.CFrame = CFrame.new(-2.34999895, 8.9299736, -24.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1094. o94.Size = Vector3.new(2, 3.60000014, 3)
  1095. o94.BottomSurface = Enum.SurfaceType.Smooth
  1096. o94.RightSurface = Enum.SurfaceType.Weld
  1097. o94.TopSurface = Enum.SurfaceType.Weld
  1098. o95 = Instance.new("Part")
  1099. o95.Name = "Smooth Block Model"
  1100. o95.Parent = asd
  1101. o95.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -17.8899937)
  1102. o95.Rotation = Vector3.new(0, 90, 0)
  1103. o95.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1104. o95.Velocity = Vector3.new(-0.010396135, -0.00703862496, 0.00772790238)
  1105. o95.CFrame = CFrame.new(-2.34999895, 12.1299696, -17.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1106. o95.FormFactor = Enum.FormFactor.Plate
  1107. o95.Size = Vector3.new(3, 2.79999995, 2)
  1108. o95.BackSurface = Enum.SurfaceType.Weld
  1109. o95.BottomSurface = Enum.SurfaceType.Weld
  1110. o95.TopSurface = Enum.SurfaceType.Smooth
  1111. o96 = Instance.new("SpecialMesh")
  1112. o96.Parent = o95
  1113. o96.MeshType = Enum.MeshType.Wedge
  1114. o97 = Instance.new("Part")
  1115. o97.Name = "Wheel"
  1116. o97.Parent = asd
  1117. o97.BrickColor = BrickColor.new("Really black")
  1118. o97.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.84975481, 3.42802525, -30.8899937)
  1119. o97.Rotation = Vector3.new(-91.0437546, 0.208824798, -179.996002)
  1120. o97.RotVelocity = Vector3.new(0.0319535285, 0.0784833133, 0.0154630821)
  1121. o97.Velocity = Vector3.new(0.00365212397, 0.0158221275, 0.100309223)
  1122. o97.CFrame = CFrame.new(-0.84975481, 3.42802525, -30.8899937, -0.999993205, 6.97369978e-005, 0.00364467222, 0.00364533835, 0.0182155799, 0.999827325, 3.33198318e-006, 0.999833822, -0.0182157177)
  1123. o97.FormFactor = Enum.FormFactor.Symmetric
  1124. o97.Friction = 1
  1125. o97.Shape = Enum.PartType.Cylinder
  1126. o97.Size = Vector3.new(5, 5, 5)
  1127. o97.BottomSurface = Enum.SurfaceType.Smooth
  1128. o97.LeftSurface = Enum.SurfaceType.Hinge
  1129. o97.TopSurface = Enum.SurfaceType.Smooth
  1130. o97.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1131. o98 = Instance.new("Part")
  1132. o98.Parent = asd
  1133. o98.BrickColor = BrickColor.new("Really black")
  1134. o98.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 7.32997513, -21.8899937)
  1135. o98.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1136. o98.Velocity = Vector3.new(-0.0115871262, -0.000405066181, 0.000214262865)
  1137. o98.CFrame = CFrame.new(-3.84999895, 7.32997513, -21.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1138. o98.Size = Vector3.new(1, 1.20000005, 23)
  1139. o98.BottomSurface = Enum.SurfaceType.Smooth
  1140. o98.RightSurface = Enum.SurfaceType.Weld
  1141. o98.TopSurface = Enum.SurfaceType.Weld
  1142. o98.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1143. o99 = Instance.new("Part")
  1144. o99.Name = "Smooth Block Model"
  1145. o99.Parent = asd
  1146. o99.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -20.8899937)
  1147. o99.Rotation = Vector3.new(0, 90, 0)
  1148. o99.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1149. o99.Velocity = Vector3.new(-0.0104223844, -0.0023343917, 0.00772790238)
  1150. o99.CFrame = CFrame.new(-2.34999895, 12.1299696, -20.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1151. o99.FormFactor = Enum.FormFactor.Plate
  1152. o99.Size = Vector3.new(3, 2.79999995, 2)
  1153. o99.BackSurface = Enum.SurfaceType.Weld
  1154. o99.BottomSurface = Enum.SurfaceType.Weld
  1155. o99.TopSurface = Enum.SurfaceType.Smooth
  1156. asd00 = Instance.new("SpecialMesh")
  1157. asd00.Parent = o99
  1158. asd00.MeshType = Enum.MeshType.Wedge
  1159. asd01 = Instance.new("Part")
  1160. asd01.Parent = asd
  1161. asd01.BrickColor = BrickColor.new("Really black")
  1162. asd01.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(0.150001049, 10.1299706, -27.3899937)
  1163. asd01.Rotation = Vector3.new(-0, -90, 0)
  1164. asd01.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1165. asd01.Velocity = Vector3.new(-0.0109609207, 0.0072560329, 0.00456987415)
  1166. asd01.CFrame = CFrame.new(0.150001049, 10.1299706, -27.3899937, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1167. asd01.FormFactor = Enum.FormFactor.Plate
  1168. asd01.Size = Vector3.new(2, 6, 3)
  1169. asd01.BottomSurface = Enum.SurfaceType.Smooth
  1170. asd01.TopSurface = Enum.SurfaceType.Smooth
  1171. asd01.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1172. asd02 = Instance.new("Part")
  1173. asd02.Parent = asd
  1174. asd02.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -21.8899937)
  1175. asd02.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1176. asd02.Velocity = Vector3.new(-0.0112017952, -0.0007663141, 0.00271006022)
  1177. asd02.CFrame = CFrame.new(-2.34999895, 8.9299736, -21.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1178. asd02.Size = Vector3.new(2, 3.60000014, 3)
  1179. asd02.BottomSurface = Enum.SurfaceType.Smooth
  1180. asd02.RightSurface = Enum.SurfaceType.Weld
  1181. asd02.TopSurface = Enum.SurfaceType.Weld
  1182. asd03 = Instance.new("Part")
  1183. asd03.Name = "Smooth Block Model"
  1184. asd03.Parent = asd
  1185. asd03.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(2.65000105, 10.1299772, -37.3899918)
  1186. asd03.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1187. asd03.Velocity = Vector3.new(-0.0110484157, 0.0223347265, 0.00454801088)
  1188. asd03.CFrame = CFrame.new(2.65000105, 10.1299772, -37.3899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1189. asd03.BottomSurface = Enum.SurfaceType.Weld
  1190. asd03.TopSurface = Enum.SurfaceType.Smooth
  1191. asd04 = Instance.new("SpecialMesh")
  1192. asd04.Parent = asd03
  1193. asd04.MeshType = Enum.MeshType.Wedge
  1194. asd05 = Instance.new("Part")
  1195. asd05.Name = "Smooth Block Model"
  1196. asd05.Parent = asd
  1197. asd05.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -23.8899937)
  1198. asd05.Rotation = Vector3.new(0, 90, 0)
  1199. asd05.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1200. asd05.Velocity = Vector3.new(-0.0104486337, 0.00236984156, 0.00772790238)
  1201. asd05.CFrame = CFrame.new(-2.34999895, 12.1299696, -23.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1202. asd05.FormFactor = Enum.FormFactor.Plate
  1203. asd05.Size = Vector3.new(3, 2.79999995, 2)
  1204. asd05.BackSurface = Enum.SurfaceType.Weld
  1205. asd05.BottomSurface = Enum.SurfaceType.Weld
  1206. asd05.TopSurface = Enum.SurfaceType.Smooth
  1207. asd06 = Instance.new("SpecialMesh")
  1208. asd06.Parent = asd05
  1209. asd06.MeshType = Enum.MeshType.Wedge
  1210. asd07 = Instance.new("Part")
  1211. asd07.Parent = asd
  1212. asd07.BrickColor = BrickColor.new("Really black")
  1213. asd07.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 9.7299757, -21.8899918)
  1214. asd07.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1215. asd07.Velocity = Vector3.new(-0.0110091297, -0.000405069441, 0.00397765031)
  1216. asd07.CFrame = CFrame.new(-3.84999895, 9.7299757, -21.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1217. asd07.Size = Vector3.new(1, 1.20000005, 23)
  1218. asd07.BottomSurface = Enum.SurfaceType.Smooth
  1219. asd07.RightSurface = Enum.SurfaceType.Weld
  1220. asd07.TopSurface = Enum.SurfaceType.Weld
  1221. asd07.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1222. asd08 = Instance.new("Part")
  1223. asd08.Parent = asd
  1224. asd08.BrickColor = BrickColor.new("Really black")
  1225. asd08.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 8.52997875, -22.8899918)
  1226. asd08.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1227. asd08.Velocity = Vector3.new(-0.0113068772, 0.00116300827, 0.00209596194)
  1228. asd08.CFrame = CFrame.new(-3.84999895, 8.52997875, -22.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1229. asd08.Size = Vector3.new(1, 1.20000005, 1)
  1230. asd08.BottomSurface = Enum.SurfaceType.Smooth
  1231. asd08.RightSurface = Enum.SurfaceType.Weld
  1232. asd08.TopSurface = Enum.SurfaceType.Weld
  1233. asd08.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1234. asd09 = Instance.new("Part")
  1235. asd09.Name = "Wheel"
  1236. asd09.Parent = asd
  1237. asd09.BrickColor = BrickColor.new("Really black")
  1238. asd09.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.849998951, 3.4283886, -36.89048)
  1239. asd09.Rotation = Vector3.new(-160.409576, 0.0803624168, -179.802063)
  1240. asd09.RotVelocity = Vector3.new(0.0806952044, -0.0687758699, 0.00102742936)
  1241. asd09.Velocity = Vector3.new(-0.0940583274, -0.0516466722, 0.108693101)
  1242. asd09.CFrame = CFrame.new(-0.849998951, 3.4283886, -36.89048, -0.999992907, 0.00345451501, 0.00140258833, 0.0037248258, 0.942106247, 0.335293829, -0.000163113233, 0.33529669, -0.942112505)
  1243. asd09.FormFactor = Enum.FormFactor.Symmetric
  1244. asd09.Friction = 1
  1245. asd09.Shape = Enum.PartType.Cylinder
  1246. asd09.Size = Vector3.new(5, 5, 5)
  1247. asd09.BottomSurface = Enum.SurfaceType.Smooth
  1248. asd09.LeftSurface = Enum.SurfaceType.Hinge
  1249. asd09.TopSurface = Enum.SurfaceType.Smooth
  1250. asd09.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1251. asd10 = Instance.new("Part")
  1252. asd10.Name = "Smooth Block Model"
  1253. asd10.Parent = asd
  1254. asd10.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.32997513, -40.8899918)
  1255. asd10.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1256. asd10.Velocity = Vector3.new(-0.0115125384, 0.0290271603, 0.00176921603)
  1257. asd10.CFrame = CFrame.new(-2.34999895, 8.32997513, -40.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1258. asd10.Size = Vector3.new(2, 2.4000001, 5)
  1259. asd10.BottomSurface = Enum.SurfaceType.Weld
  1260. asd10.TopSurface = Enum.SurfaceType.Smooth
  1261. asd11 = Instance.new("SpecialMesh")
  1262. asd11.Parent = asd10
  1263. asd11.MeshType = Enum.MeshType.Wedge
  1264. asd12 = Instance.new("Part")
  1265. asd12.Name = "Smooth Block Model"
  1266. asd12.Parent = asd
  1267. asd12.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-0.849998951, 11.3299742, -35.8899918)
  1268. asd12.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1269. asd12.Velocity = Vector3.new(-0.0107462937, 0.020825522, 0.006460323)
  1270. asd12.CFrame = CFrame.new(-0.849998951, 11.3299742, -35.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1271. asd12.Size = Vector3.new(3, 3.60000014, 5)
  1272. asd12.BottomSurface = Enum.SurfaceType.Weld
  1273. asd12.TopSurface = Enum.SurfaceType.Smooth
  1274. asd13 = Instance.new("SpecialMesh")
  1275. asd13.Parent = asd12
  1276. asd13.MeshType = Enum.MeshType.Wedge
  1277. asd14 = Instance.new("Part")
  1278. asd14.Parent = asd
  1279. asd14.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -31.3899937)
  1280. asd14.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1281. asd14.Velocity = Vector3.new(-0.0112849176, 0.0141304238, 0.00271006022)
  1282. asd14.CFrame = CFrame.new(-2.34999895, 8.9299736, -31.3899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1283. asd14.Size = Vector3.new(2, 3.60000014, 4)
  1284. asd14.BottomSurface = Enum.SurfaceType.Smooth
  1285. asd14.RightSurface = Enum.SurfaceType.Weld
  1286. asd14.TopSurface = Enum.SurfaceType.Weld
  1287. asd15 = Instance.new("Part")
  1288. asd15.Parent = asd
  1289. asd15.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 8.9299736, -27.8899937)
  1290. asd15.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1291. asd15.Velocity = Vector3.new(-0.0112542929, 0.00864215195, 0.00271006022)
  1292. asd15.CFrame = CFrame.new(-2.34999895, 8.9299736, -27.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1293. asd15.Size = Vector3.new(2, 3.60000014, 3)
  1294. asd15.BottomSurface = Enum.SurfaceType.Smooth
  1295. asd15.RightSurface = Enum.SurfaceType.Weld
  1296. asd15.TopSurface = Enum.SurfaceType.Weld
  1297. asd16 = Instance.new("Part")
  1298. asd16.Name = "Wheel"
  1299. asd16.Parent = asd
  1300. asd16.BrickColor = BrickColor.new("Really black")
  1301. asd16.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(8.15000153, 3.42827034, -36.89048)
  1302. asd16.Rotation = Vector3.new(-29.6307774, -0.0967216641, 0.186886176)
  1303. asd16.RotVelocity = Vector3.new(-0.0278085768, -0.00186990818, -0.0134417443)
  1304. asd16.Velocity = Vector3.new(0.192035556, 0.051612027, 0.103377208)
  1305. asd16.CFrame = CFrame.new(8.15000153, 3.42827034, -36.89048, 0.999993205, -0.00326176826, -0.00168811064, 0.00366984191, 0.869222105, 0.49440816, -0.000145298414, -0.494410932, 0.869228184)
  1306. asd16.FormFactor = Enum.FormFactor.Symmetric
  1307. asd16.Friction = 1
  1308. asd16.Shape = Enum.PartType.Cylinder
  1309. asd16.Size = Vector3.new(5, 5, 5)
  1310. asd16.BottomSurface = Enum.SurfaceType.Smooth
  1311. asd16.LeftSurface = Enum.SurfaceType.Hinge
  1312. asd16.TopSurface = Enum.SurfaceType.Smooth
  1313. asd16.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1314. asd17 = Instance.new("Part")
  1315. asd17.Name = "Smooth Block Model"
  1316. asd17.Parent = asd
  1317. asd17.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(0.150001049, 8.32997513, -40.8899918)
  1318. asd17.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1319. asd17.Velocity = Vector3.new(-0.0115125384, 0.0284250788, 0.00174734183)
  1320. asd17.CFrame = CFrame.new(0.150001049, 8.32997513, -40.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1321. asd17.Size = Vector3.new(3, 2.4000001, 5)
  1322. asd17.BottomSurface = Enum.SurfaceType.Weld
  1323. asd17.TopSurface = Enum.SurfaceType.Smooth
  1324. asd18 = Instance.new("SpecialMesh")
  1325. asd18.Parent = asd17
  1326. asd18.MeshType = Enum.MeshType.Wedge
  1327. asd19 = Instance.new("Part")
  1328. asd19.Parent = asd
  1329. asd19.BrickColor = BrickColor.new("Really black")
  1330. asd19.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 10.9299726, -22.8899937)
  1331. asd19.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1332. asd19.Velocity = Vector3.new(-0.0107288817, 0.00116301107, 0.00585933868)
  1333. asd19.CFrame = CFrame.new(-3.84999895, 10.9299726, -22.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1334. asd19.Size = Vector3.new(1, 1.20000005, 1)
  1335. asd19.BottomSurface = Enum.SurfaceType.Smooth
  1336. asd19.RightSurface = Enum.SurfaceType.Weld
  1337. asd19.TopSurface = Enum.SurfaceType.Weld
  1338. asd19.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1339. asd20 = Instance.new("Part")
  1340. asd20.Parent = asd
  1341. asd20.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 8.52997875, -32.8899918)
  1342. asd20.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1343. asd20.Velocity = Vector3.new(-0.0113943741, 0.0168437846, 0.00209596194)
  1344. asd20.CFrame = CFrame.new(-3.84999895, 8.52997875, -32.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1345. asd20.Size = Vector3.new(1, 1.20000005, 1)
  1346. asd20.BottomSurface = Enum.SurfaceType.Smooth
  1347. asd20.RightSurface = Enum.SurfaceType.Weld
  1348. asd20.TopSurface = Enum.SurfaceType.Weld
  1349. asd21 = Instance.new("Part")
  1350. asd21.Name = "Smooth Block Model"
  1351. asd21.Parent = asd
  1352. asd21.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -26.8899937)
  1353. asd21.Rotation = Vector3.new(0, 90, 0)
  1354. asd21.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1355. asd21.Velocity = Vector3.new(-0.0104748821, 0.00707407482, 0.00772790238)
  1356. asd21.CFrame = CFrame.new(-2.34999895, 12.1299696, -26.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1357. asd21.FormFactor = Enum.FormFactor.Plate
  1358. asd21.Size = Vector3.new(3, 2.79999995, 2)
  1359. asd21.BackSurface = Enum.SurfaceType.Weld
  1360. asd21.BottomSurface = Enum.SurfaceType.Weld
  1361. asd21.TopSurface = Enum.SurfaceType.Smooth
  1362. asd22 = Instance.new("SpecialMesh")
  1363. asd22.Parent = asd21
  1364. asd22.MeshType = Enum.MeshType.Wedge
  1365. asd23 = Instance.new("Part")
  1366. asd23.Name = "Smooth Block Model"
  1367. asd23.Parent = asd
  1368. asd23.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-2.34999895, 12.1299696, -30.8899937)
  1369. asd23.Rotation = Vector3.new(0, 90, 0)
  1370. asd23.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1371. asd23.Velocity = Vector3.new(-0.0105098812, 0.0133463852, 0.00772790238)
  1372. asd23.CFrame = CFrame.new(-2.34999895, 12.1299696, -30.8899937, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1373. asd23.FormFactor = Enum.FormFactor.Plate
  1374. asd23.Size = Vector3.new(5, 2.79999995, 2)
  1375. asd23.BackSurface = Enum.SurfaceType.Weld
  1376. asd23.BottomSurface = Enum.SurfaceType.Weld
  1377. asd23.TopSurface = Enum.SurfaceType.Smooth
  1378. asd24 = Instance.new("SpecialMesh")
  1379. asd24.Parent = asd23
  1380. asd24.MeshType = Enum.MeshType.Wedge
  1381. asd25 = Instance.new("Part")
  1382. asd25.Name = "Smooth Block Model"
  1383. asd25.Parent = asd
  1384. asd25.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(6.15000105, 8.32997513, -40.8899918)
  1385. asd25.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1386. asd25.Velocity = Vector3.new(-0.0115125384, 0.0269800872, 0.00169484364)
  1387. asd25.CFrame = CFrame.new(6.15000105, 8.32997513, -40.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1388. asd25.Size = Vector3.new(3, 2.4000001, 5)
  1389. asd25.BottomSurface = Enum.SurfaceType.Weld
  1390. asd25.TopSurface = Enum.SurfaceType.Smooth
  1391. asd26 = Instance.new("SpecialMesh")
  1392. asd26.Parent = asd25
  1393. asd26.MeshType = Enum.MeshType.Wedge
  1394. asd27 = Instance.new("Part")
  1395. asd27.Parent = asd
  1396. asd27.BrickColor = BrickColor.new("Really black")
  1397. asd27.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 10.9299726, -32.8899918)
  1398. asd27.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1399. asd27.Velocity = Vector3.new(-0.0108163785, 0.0168437846, 0.00585933868)
  1400. asd27.CFrame = CFrame.new(-3.84999895, 10.9299726, -32.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1401. asd27.Size = Vector3.new(1, 1.20000005, 1)
  1402. asd27.BottomSurface = Enum.SurfaceType.Smooth
  1403. asd27.RightSurface = Enum.SurfaceType.Weld
  1404. asd27.TopSurface = Enum.SurfaceType.Weld
  1405. asd27.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1406. asd28 = Instance.new("Part")
  1407. asd28.Name = "Smooth Block Model"
  1408. asd28.Parent = asd
  1409. asd28.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.15000105, 8.32997513, -40.8899918)
  1410. asd28.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1411. asd28.Velocity = Vector3.new(-0.0115125384, 0.0277025849, 0.00172109273)
  1412. asd28.CFrame = CFrame.new(3.15000105, 8.32997513, -40.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1413. asd28.Size = Vector3.new(3, 2.4000001, 5)
  1414. asd28.BottomSurface = Enum.SurfaceType.Weld
  1415. asd28.TopSurface = Enum.SurfaceType.Smooth
  1416. asd29 = Instance.new("SpecialMesh")
  1417. asd29.Parent = asd28
  1418. asd29.MeshType = Enum.MeshType.Wedge
  1419. asd30 = Instance.new("Part")
  1420. asd30.Parent = asd
  1421. asd30.BrickColor = BrickColor.new("Really black")
  1422. asd30.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(-3.84999895, 12.1299696, -21.8899937)
  1423. asd30.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1424. asd30.Velocity = Vector3.new(-0.0104311341, -0.000405066647, 0.00774102705)
  1425. asd30.CFrame = CFrame.new(-3.84999895, 12.1299696, -21.8899937, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1426. asd30.Size = Vector3.new(1, 1.20000005, 23)
  1427. asd30.BottomSurface = Enum.SurfaceType.Smooth
  1428. asd30.RightSurface = Enum.SurfaceType.Weld
  1429. asd30.TopSurface = Enum.SurfaceType.Weld
  1430. asd30.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
  1431. asd31 = Instance.new("Part")
  1432. asd31.Name = "Smooth Block Model"
  1433. asd31.Parent = asd
  1434. asd31.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(9.15000153, 8.32997513, -40.8899918)
  1435. asd31.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1436. asd31.Velocity = Vector3.new(-0.0115125384, 0.0262575932, 0.00166859454)
  1437. asd31.CFrame = CFrame.new(9.15000153, 8.32997513, -40.8899918, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  1438. asd31.Size = Vector3.new(3, 2.4000001, 5)
  1439. asd31.BottomSurface = Enum.SurfaceType.Weld
  1440. asd31.TopSurface = Enum.SurfaceType.Smooth
  1441. asd32 = Instance.new("SpecialMesh")
  1442. asd32.Parent = asd31
  1443. asd32.MeshType = Enum.MeshType.Wedge
  1444. asd33 = Instance.new("Part")
  1445. asd33.Name = "Smooth Block Model"
  1446. asd33.Parent = asd
  1447. asd33.Position = game.Players.LocalPlayer.Character.Torso.Position Vector3.new(3.65000105, 5.32997513, -41.8899918)
  1448. asd33.Rotation = Vector3.new(-0, 0, -180)
  1449. asd33.RotVelocity = Vector3.new(0.00156807771, 8.74969101e-006, -0.000240832029)
  1450. asd33.Velocity = Vector3.new(-0.012243784, 0.0291502438, -0.00298751518)
  1451. asd33.CFrame = CFrame.new(3.65000105, 5.32997513, -41.8899918, -1, 0, 0, 0, -1, 0, 0, 0, 1)
  1452. asd33.FormFactor = Enum.FormFactor.Plate
  1453. asd33.Size = Vector3.new(14, 3.60000014, 3)
  1454. asd33.BottomSurface = Enum.SurfaceType.Weld
  1455. asd33.TopSurface = Enum.SurfaceType.Smooth
  1456. asd34 = Instance.new("SpecialMesh")
  1457. asd34.Parent = asd33
  1458. asd34.MeshType = Enum.MeshType.Wedge
  1459. asd.Parent = workspace
  1460. asd:MakeJoints()
  1461. local asd1 = asd:GetChildren()
  1462. for i=1,#asd1 do
  1463. asd1[i].Parent = workspace
  1464. ypcall(function() asd1[i]:MakeJoints() end)
  1465. end
  1466. asd:Destroy()
  1467. for i=1,#cors do
  1468. coroutine.resume(cors[i])
  1469. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement