Sykotic_Cataclysm

VehicleSimScript

Feb 4th, 2019
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 40.47 KB | None | 0 0
  1. -- Instances
  2.  
  3. local VehicleSimulator = Instance.new("ScreenGui")
  4. local OpenFrame = Instance.new("Frame")
  5. local OpenButton = Instance.new("TextButton")
  6. local MainFrame = Instance.new("Frame")
  7. local CarButton = Instance.new("TextButton")
  8. local TPsButton = Instance.new("TextButton")
  9. local FunctionsButton = Instance.new("TextButton")
  10. local Separator = Instance.new("TextLabel")
  11. local CarFrame = Instance.new("Frame")
  12. local InfNitro = Instance.new("TextButton")
  13. local Speed = Instance.new("TextButton")
  14. local Torque = Instance.new("TextButton")
  15. local NitroSpeed = Instance.new("TextButton")
  16. local NitroForce = Instance.new("TextButton")
  17. local SteerForce = Instance.new("TextButton")
  18. local JumpHeight = Instance.new("TextButton")
  19. local SpeedNum = Instance.new("TextBox")
  20. local TorqueNum = Instance.new("TextBox")
  21. local NitroSpeedNum = Instance.new("TextBox")
  22. local NitroForceNum = Instance.new("TextBox")
  23. local SteerForceNum = Instance.new("TextBox")
  24. local JumpHeightNum = Instance.new("TextBox")
  25. local FunctionsFrame = Instance.new("Frame")
  26. local CrateESP = Instance.new("TextButton")
  27. local CrateTP = Instance.new("TextButton")
  28. local AllPerks = Instance.new("TextButton")
  29. local SuperCar = Instance.new("TextButton")
  30. local AutoFarm = Instance.new("TextButton")
  31. local FarmLabel = Instance.new("TextLabel")
  32. local CarTP = Instance.new("TextButton")
  33. local TeleportsFrame = Instance.new("Frame")
  34. local SpawnShop = Instance.new("TextButton")
  35. local Shops = Instance.new("TextLabel")
  36. local Races = Instance.new("TextLabel")
  37. local SupercarShop = Instance.new("TextButton")
  38. local TeslaShop = Instance.new("TextButton")
  39. local BoatShop = Instance.new("TextButton")
  40. local AirShop = Instance.new("TextButton")
  41. local BikeShop = Instance.new("TextButton")
  42. local AroundTheWorld = Instance.new("TextButton")
  43. local DriftKing = Instance.new("TextButton")
  44. local QuarterMile = Instance.new("TextButton")
  45. local DragStrip = Instance.new("TextButton")
  46. local RaceTrack = Instance.new("TextButton")
  47. local DuneRally = Instance.new("TextButton")
  48. local Soccer = Instance.new("TextButton")
  49. local HotPursuit = Instance.new("TextButton")
  50. local SeaDash = Instance.new("TextButton")
  51. local HighwayRace = Instance.new("TextButton")
  52. local DonutShop = Instance.new("TextButton")
  53. local Garage = Instance.new("TextButton")
  54. local TPNote = Instance.new("TextLabel")
  55. local Credits = Instance.new("TextLabel")
  56.  
  57. --Properties
  58.  
  59. VehicleSimulator.Name = "VehicleSimulator"
  60. VehicleSimulator.Parent = game.CoreGui
  61.  
  62. OpenFrame.Name = "OpenFrame"
  63. OpenFrame.Parent = VehicleSimulator
  64. OpenFrame.AnchorPoint = Vector2.new(0.5, 0)
  65. OpenFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  66. OpenFrame.BackgroundTransparency = 0.5
  67. OpenFrame.BorderColor3 = Color3.new(1, 0, 0)
  68. OpenFrame.BorderSizePixel = 0
  69. OpenFrame.Position = UDim2.new(0.5, 0, -0.0399999991, 0)
  70. OpenFrame.Size = UDim2.new(0, 200, 0, 22)
  71.  
  72. OpenButton.Name = "OpenButton"
  73. OpenButton.Parent = OpenFrame
  74. OpenButton.BackgroundColor3 = Color3.new(0, 0, 0)
  75. OpenButton.BackgroundTransparency = 0.5
  76. OpenButton.BorderColor3 = Color3.new(0.333333, 1, 1)
  77. OpenButton.Size = UDim2.new(0, 200, 0, 22)
  78. OpenButton.ZIndex = 10
  79. OpenButton.Font = Enum.Font.Fantasy
  80. OpenButton.Text = "Open Vehicle Sim GUI"
  81. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  82. OpenButton.TextSize = 14
  83.  
  84. MainFrame.Name = "MainFrame"
  85. MainFrame.Parent = VehicleSimulator
  86. MainFrame.Active = true
  87. MainFrame.AnchorPoint = Vector2.new(0.5, 0.5)
  88. MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
  89. MainFrame.BackgroundTransparency = 0.5
  90. MainFrame.BorderColor3 = Color3.new(0.333333, 1, 1)
  91. MainFrame.BorderSizePixel = 4
  92. MainFrame.Draggable = true
  93. MainFrame.Position = UDim2.new(0.5, 0, 0.5, 0)
  94. MainFrame.Selectable = true
  95. MainFrame.Size = UDim2.new(0, 300, 0, 400)
  96. MainFrame.Visible = false
  97.  
  98. CarButton.Name = "CarButton"
  99. CarButton.Parent = MainFrame
  100. CarButton.BackgroundColor3 = Color3.new(1, 1, 1)
  101. CarButton.BackgroundTransparency = 1
  102. CarButton.Size = UDim2.new(0, 100, 0, 50)
  103. CarButton.Font = Enum.Font.Fantasy
  104. CarButton.Text = "Modify Car"
  105. CarButton.TextColor3 = Color3.new(1, 1, 1)
  106. CarButton.TextSize = 20
  107.  
  108. TPsButton.Name = "TPsButton"
  109. TPsButton.Parent = MainFrame
  110. TPsButton.AnchorPoint = Vector2.new(0.5, 0)
  111. TPsButton.BackgroundColor3 = Color3.new(1, 1, 1)
  112. TPsButton.BackgroundTransparency = 1
  113. TPsButton.Position = UDim2.new(0.5, 0, 0, 0)
  114. TPsButton.Size = UDim2.new(0, 100, 0, 50)
  115. TPsButton.Font = Enum.Font.Fantasy
  116. TPsButton.Text = "Teleports"
  117. TPsButton.TextColor3 = Color3.new(1, 1, 1)
  118. TPsButton.TextSize = 20
  119.  
  120. FunctionsButton.Name = "FunctionsButton"
  121. FunctionsButton.Parent = MainFrame
  122. FunctionsButton.AnchorPoint = Vector2.new(1, 0)
  123. FunctionsButton.BackgroundColor3 = Color3.new(1, 1, 1)
  124. FunctionsButton.BackgroundTransparency = 1
  125. FunctionsButton.Position = UDim2.new(1, 0, 0, 0)
  126. FunctionsButton.Size = UDim2.new(0, 100, 0, 50)
  127. FunctionsButton.Font = Enum.Font.Fantasy
  128. FunctionsButton.Text = "Functions"
  129. FunctionsButton.TextColor3 = Color3.new(1, 1, 1)
  130. FunctionsButton.TextSize = 20
  131.  
  132. Separator.Name = "Separator"
  133. Separator.Parent = MainFrame
  134. Separator.AnchorPoint = Vector2.new(0.5, 0)
  135. Separator.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  136. Separator.BackgroundTransparency = 0.5
  137. Separator.BorderSizePixel = 0
  138. Separator.Position = UDim2.new(0.5, 0, 0.119999997, 0)
  139. Separator.Size = UDim2.new(0, 290, 0, 4)
  140. Separator.Font = Enum.Font.SourceSans
  141. Separator.Text = ""
  142. Separator.TextColor3 = Color3.new(0, 0, 0)
  143. Separator.TextSize = 14
  144.  
  145. CarFrame.Name = "CarFrame"
  146. CarFrame.Parent = MainFrame
  147. CarFrame.AnchorPoint = Vector2.new(0, 1)
  148. CarFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  149. CarFrame.BackgroundTransparency = 1
  150. CarFrame.Position = UDim2.new(0, 0, 1, 0)
  151. CarFrame.Size = UDim2.new(0, 300, 0, 350)
  152.  
  153. InfNitro.Name = "InfNitro"
  154. InfNitro.Parent = CarFrame
  155. InfNitro.AnchorPoint = Vector2.new(0.5, 1)
  156. InfNitro.BackgroundColor3 = Color3.new(0, 0, 0)
  157. InfNitro.BackgroundTransparency = 0.5
  158. InfNitro.BorderColor3 = Color3.new(0.333333, 1, 1)
  159. InfNitro.BorderSizePixel = 4
  160. InfNitro.Position = UDim2.new(0.5, 0, 0.949999988, 0)
  161. InfNitro.Size = UDim2.new(0, 260, 0, 40)
  162. InfNitro.Font = Enum.Font.Fantasy
  163. InfNitro.Text = "Infinite Nitro"
  164. InfNitro.TextColor3 = Color3.new(1, 1, 1)
  165. InfNitro.TextSize = 25
  166.  
  167. Speed.Name = "Speed"
  168. Speed.Parent = CarFrame
  169. Speed.BackgroundColor3 = Color3.new(0, 0, 0)
  170. Speed.BackgroundTransparency = 0.5
  171. Speed.BorderColor3 = Color3.new(0.333333, 1, 1)
  172. Speed.BorderSizePixel = 2
  173. Speed.Position = UDim2.new(0.0199999996, 0, 0.0500000007, 0)
  174. Speed.Size = UDim2.new(0, 140, 0, 30)
  175. Speed.Font = Enum.Font.Fantasy
  176. Speed.Text = "Speed"
  177. Speed.TextColor3 = Color3.new(1, 1, 1)
  178. Speed.TextSize = 22
  179.  
  180. Torque.Name = "Torque"
  181. Torque.Parent = CarFrame
  182. Torque.BackgroundColor3 = Color3.new(0, 0, 0)
  183. Torque.BackgroundTransparency = 0.5
  184. Torque.BorderColor3 = Color3.new(0.333333, 1, 1)
  185. Torque.BorderSizePixel = 2
  186. Torque.Position = UDim2.new(0.0199999996, 0, 0.180000007, 0)
  187. Torque.Size = UDim2.new(0, 140, 0, 30)
  188. Torque.Font = Enum.Font.Fantasy
  189. Torque.Text = "Torque"
  190. Torque.TextColor3 = Color3.new(1, 1, 1)
  191. Torque.TextSize = 22
  192.  
  193. NitroSpeed.Name = "NitroSpeed"
  194. NitroSpeed.Parent = CarFrame
  195. NitroSpeed.BackgroundColor3 = Color3.new(0, 0, 0)
  196. NitroSpeed.BackgroundTransparency = 0.5
  197. NitroSpeed.BorderColor3 = Color3.new(0.333333, 1, 1)
  198. NitroSpeed.BorderSizePixel = 2
  199. NitroSpeed.Position = UDim2.new(0.0199999996, 0, 0.310000002, 0)
  200. NitroSpeed.Size = UDim2.new(0, 140, 0, 30)
  201. NitroSpeed.Font = Enum.Font.Fantasy
  202. NitroSpeed.Text = "Nitro Speed"
  203. NitroSpeed.TextColor3 = Color3.new(1, 1, 1)
  204. NitroSpeed.TextSize = 22
  205.  
  206. NitroForce.Name = "NitroForce"
  207. NitroForce.Parent = CarFrame
  208. NitroForce.BackgroundColor3 = Color3.new(0, 0, 0)
  209. NitroForce.BackgroundTransparency = 0.5
  210. NitroForce.BorderColor3 = Color3.new(0.333333, 1, 1)
  211. NitroForce.BorderSizePixel = 2
  212. NitroForce.Position = UDim2.new(0.0199999996, 0, 0.439999998, 0)
  213. NitroForce.Size = UDim2.new(0, 140, 0, 30)
  214. NitroForce.Font = Enum.Font.Fantasy
  215. NitroForce.Text = "Nitro Force"
  216. NitroForce.TextColor3 = Color3.new(1, 1, 1)
  217. NitroForce.TextSize = 22
  218.  
  219. SteerForce.Name = "SteerForce"
  220. SteerForce.Parent = CarFrame
  221. SteerForce.BackgroundColor3 = Color3.new(0, 0, 0)
  222. SteerForce.BackgroundTransparency = 0.5
  223. SteerForce.BorderColor3 = Color3.new(0.333333, 1, 1)
  224. SteerForce.BorderSizePixel = 2
  225. SteerForce.Position = UDim2.new(0.0199999996, 0, 0.569999993, 0)
  226. SteerForce.Size = UDim2.new(0, 140, 0, 30)
  227. SteerForce.Font = Enum.Font.Fantasy
  228. SteerForce.Text = "Steering Force"
  229. SteerForce.TextColor3 = Color3.new(1, 1, 1)
  230. SteerForce.TextSize = 22
  231.  
  232. JumpHeight.Name = "JumpHeight"
  233. JumpHeight.Parent = CarFrame
  234. JumpHeight.BackgroundColor3 = Color3.new(0, 0, 0)
  235. JumpHeight.BackgroundTransparency = 0.5
  236. JumpHeight.BorderColor3 = Color3.new(0.333333, 1, 1)
  237. JumpHeight.BorderSizePixel = 2
  238. JumpHeight.Position = UDim2.new(0.0199999996, 0, 0.699999988, 0)
  239. JumpHeight.Size = UDim2.new(0, 140, 0, 30)
  240. JumpHeight.Font = Enum.Font.Fantasy
  241. JumpHeight.Text = "Jump Height"
  242. JumpHeight.TextColor3 = Color3.new(1, 1, 1)
  243. JumpHeight.TextSize = 22
  244.  
  245. SpeedNum.Name = "SpeedNum"
  246. SpeedNum.Parent = CarFrame
  247. SpeedNum.AnchorPoint = Vector2.new(1, 0)
  248. SpeedNum.BackgroundColor3 = Color3.new(0, 0, 0)
  249. SpeedNum.BackgroundTransparency = 0.5
  250. SpeedNum.BorderColor3 = Color3.new(0.333333, 1, 1)
  251. SpeedNum.BorderSizePixel = 2
  252. SpeedNum.Position = UDim2.new(0.980000019, 0, 0.0500000007, 0)
  253. SpeedNum.Size = UDim2.new(0, 140, 0, 30)
  254. SpeedNum.Font = Enum.Font.Fantasy
  255. SpeedNum.Text = "-- Amount --"
  256. SpeedNum.TextColor3 = Color3.new(1, 1, 1)
  257. SpeedNum.TextSize = 22
  258.  
  259. TorqueNum.Name = "TorqueNum"
  260. TorqueNum.Parent = CarFrame
  261. TorqueNum.AnchorPoint = Vector2.new(1, 0)
  262. TorqueNum.BackgroundColor3 = Color3.new(0, 0, 0)
  263. TorqueNum.BackgroundTransparency = 0.5
  264. TorqueNum.BorderColor3 = Color3.new(0.333333, 1, 1)
  265. TorqueNum.BorderSizePixel = 2
  266. TorqueNum.Position = UDim2.new(0.980000019, 0, 0.180000007, 0)
  267. TorqueNum.Size = UDim2.new(0, 140, 0, 30)
  268. TorqueNum.Font = Enum.Font.Fantasy
  269. TorqueNum.Text = "-- Amount --"
  270. TorqueNum.TextColor3 = Color3.new(1, 1, 1)
  271. TorqueNum.TextSize = 22
  272.  
  273. NitroSpeedNum.Name = "NitroSpeedNum"
  274. NitroSpeedNum.Parent = CarFrame
  275. NitroSpeedNum.AnchorPoint = Vector2.new(1, 0)
  276. NitroSpeedNum.BackgroundColor3 = Color3.new(0, 0, 0)
  277. NitroSpeedNum.BackgroundTransparency = 0.5
  278. NitroSpeedNum.BorderColor3 = Color3.new(0.333333, 1, 1)
  279. NitroSpeedNum.BorderSizePixel = 2
  280. NitroSpeedNum.Position = UDim2.new(0.980000019, 0, 0.310000002, 0)
  281. NitroSpeedNum.Size = UDim2.new(0, 140, 0, 30)
  282. NitroSpeedNum.Font = Enum.Font.Fantasy
  283. NitroSpeedNum.Text = "-- Amount --"
  284. NitroSpeedNum.TextColor3 = Color3.new(1, 1, 1)
  285. NitroSpeedNum.TextSize = 22
  286.  
  287. NitroForceNum.Name = "NitroForceNum"
  288. NitroForceNum.Parent = CarFrame
  289. NitroForceNum.AnchorPoint = Vector2.new(1, 0)
  290. NitroForceNum.BackgroundColor3 = Color3.new(0, 0, 0)
  291. NitroForceNum.BackgroundTransparency = 0.5
  292. NitroForceNum.BorderColor3 = Color3.new(0.333333, 1, 1)
  293. NitroForceNum.BorderSizePixel = 2
  294. NitroForceNum.Position = UDim2.new(0.980000019, 0, 0.439999998, 0)
  295. NitroForceNum.Size = UDim2.new(0, 140, 0, 30)
  296. NitroForceNum.Font = Enum.Font.Fantasy
  297. NitroForceNum.Text = "-- Amount --"
  298. NitroForceNum.TextColor3 = Color3.new(1, 1, 1)
  299. NitroForceNum.TextSize = 22
  300.  
  301. SteerForceNum.Name = "SteerForceNum"
  302. SteerForceNum.Parent = CarFrame
  303. SteerForceNum.AnchorPoint = Vector2.new(1, 0)
  304. SteerForceNum.BackgroundColor3 = Color3.new(0, 0, 0)
  305. SteerForceNum.BackgroundTransparency = 0.5
  306. SteerForceNum.BorderColor3 = Color3.new(0.333333, 1, 1)
  307. SteerForceNum.BorderSizePixel = 2
  308. SteerForceNum.Position = UDim2.new(0.980000019, 0, 0.569999993, 0)
  309. SteerForceNum.Size = UDim2.new(0, 140, 0, 30)
  310. SteerForceNum.Font = Enum.Font.Fantasy
  311. SteerForceNum.Text = "-- Amount --"
  312. SteerForceNum.TextColor3 = Color3.new(1, 1, 1)
  313. SteerForceNum.TextSize = 22
  314.  
  315. JumpHeightNum.Name = "JumpHeightNum"
  316. JumpHeightNum.Parent = CarFrame
  317. JumpHeightNum.AnchorPoint = Vector2.new(1, 0)
  318. JumpHeightNum.BackgroundColor3 = Color3.new(0, 0, 0)
  319. JumpHeightNum.BackgroundTransparency = 0.5
  320. JumpHeightNum.BorderColor3 = Color3.new(0.333333, 1, 1)
  321. JumpHeightNum.BorderSizePixel = 2
  322. JumpHeightNum.Position = UDim2.new(0.980000019, 0, 0.699999988, 0)
  323. JumpHeightNum.Size = UDim2.new(0, 140, 0, 30)
  324. JumpHeightNum.Font = Enum.Font.Fantasy
  325. JumpHeightNum.Text = "-- Amount --"
  326. JumpHeightNum.TextColor3 = Color3.new(1, 1, 1)
  327. JumpHeightNum.TextSize = 22
  328.  
  329. FunctionsFrame.Name = "FunctionsFrame"
  330. FunctionsFrame.Parent = MainFrame
  331. FunctionsFrame.AnchorPoint = Vector2.new(0, 1)
  332. FunctionsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  333. FunctionsFrame.BackgroundTransparency = 1
  334. FunctionsFrame.Position = UDim2.new(0, 0, 1, 0)
  335. FunctionsFrame.Size = UDim2.new(0, 300, 0, 350)
  336. FunctionsFrame.Visible = false
  337.  
  338. CrateESP.Name = "CrateESP"
  339. CrateESP.Parent = FunctionsFrame
  340. CrateESP.AnchorPoint = Vector2.new(0.5, 0)
  341. CrateESP.BackgroundColor3 = Color3.new(0, 0, 0)
  342. CrateESP.BackgroundTransparency = 0.5
  343. CrateESP.BorderColor3 = Color3.new(0.333333, 1, 1)
  344. CrateESP.BorderSizePixel = 2
  345. CrateESP.Position = UDim2.new(0.5, 0, 0.0500000007, 0)
  346. CrateESP.Size = UDim2.new(0, 280, 0, 30)
  347. CrateESP.Font = Enum.Font.Fantasy
  348. CrateESP.Text = "Crate Drop ESP"
  349. CrateESP.TextColor3 = Color3.new(1, 1, 1)
  350. CrateESP.TextSize = 22
  351.  
  352. CrateTP.Name = "CrateTP"
  353. CrateTP.Parent = FunctionsFrame
  354. CrateTP.AnchorPoint = Vector2.new(0.5, 0)
  355. CrateTP.BackgroundColor3 = Color3.new(0, 0, 0)
  356. CrateTP.BackgroundTransparency = 0.5
  357. CrateTP.BorderColor3 = Color3.new(0.333333, 1, 1)
  358. CrateTP.BorderSizePixel = 2
  359. CrateTP.Position = UDim2.new(0.5, 0, 0.180000007, 0)
  360. CrateTP.Size = UDim2.new(0, 280, 0, 30)
  361. CrateTP.Font = Enum.Font.Fantasy
  362. CrateTP.Text = "Teleport To Crates"
  363. CrateTP.TextColor3 = Color3.new(1, 1, 1)
  364. CrateTP.TextSize = 22
  365.  
  366. AllPerks.Name = "AllPerks"
  367. AllPerks.Parent = FunctionsFrame
  368. AllPerks.AnchorPoint = Vector2.new(0.5, 0)
  369. AllPerks.BackgroundColor3 = Color3.new(0, 0, 0)
  370. AllPerks.BackgroundTransparency = 0.5
  371. AllPerks.BorderColor3 = Color3.new(0.333333, 1, 1)
  372. AllPerks.BorderSizePixel = 2
  373. AllPerks.Position = UDim2.new(0.5, 0, 0.310000002, 0)
  374. AllPerks.Size = UDim2.new(0, 280, 0, 30)
  375. AllPerks.Font = Enum.Font.Fantasy
  376. AllPerks.Text = "Get All Gamepass Perks"
  377. AllPerks.TextColor3 = Color3.new(1, 1, 1)
  378. AllPerks.TextSize = 22
  379.  
  380. SuperCar.Name = "SuperCar"
  381. SuperCar.Parent = FunctionsFrame
  382. SuperCar.AnchorPoint = Vector2.new(0.5, 0)
  383. SuperCar.BackgroundColor3 = Color3.new(0, 0, 0)
  384. SuperCar.BackgroundTransparency = 0.5
  385. SuperCar.BorderColor3 = Color3.new(0.333333, 1, 1)
  386. SuperCar.BorderSizePixel = 2
  387. SuperCar.Position = UDim2.new(0.5, 0, 0.439999998, 0)
  388. SuperCar.Size = UDim2.new(0, 280, 0, 30)
  389. SuperCar.Font = Enum.Font.Fantasy
  390. SuperCar.Text = "Turn Car Into Supercar"
  391. SuperCar.TextColor3 = Color3.new(1, 1, 1)
  392. SuperCar.TextSize = 22
  393.  
  394. AutoFarm.Name = "AutoFarm"
  395. AutoFarm.Parent = FunctionsFrame
  396. AutoFarm.AnchorPoint = Vector2.new(0.5, 0)
  397. AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0)
  398. AutoFarm.BackgroundTransparency = 0.5
  399. AutoFarm.BorderColor3 = Color3.new(0.333333, 1, 1)
  400. AutoFarm.BorderSizePixel = 2
  401. AutoFarm.Position = UDim2.new(0.5, 0, 0.699999988, 0)
  402. AutoFarm.Size = UDim2.new(0, 280, 0, 30)
  403. AutoFarm.Font = Enum.Font.Fantasy
  404. AutoFarm.Text = "Auto Money Farm "
  405. AutoFarm.TextColor3 = Color3.new(1, 1, 1)
  406. AutoFarm.TextSize = 22
  407.  
  408. FarmLabel.Name = "FarmLabel"
  409. FarmLabel.Parent = FunctionsFrame
  410. FarmLabel.AnchorPoint = Vector2.new(0.5, 0)
  411. FarmLabel.BackgroundColor3 = Color3.new(0, 0, 0)
  412. FarmLabel.BackgroundTransparency = 0.5
  413. FarmLabel.BorderSizePixel = 0
  414. FarmLabel.Position = UDim2.new(0.5, 0, 0.829999983, 0)
  415. FarmLabel.Size = UDim2.new(0, 280, 0, 50)
  416. FarmLabel.Font = Enum.Font.Fantasy
  417. FarmLabel.Text = "Note: Auto Farm Is Likely To Get Patched Quite Quickly, They Usually Are. If It Stops Working, Let Me Know And I Will Try And Find A New Method"
  418. FarmLabel.TextColor3 = Color3.new(1, 1, 1)
  419. FarmLabel.TextSize = 13
  420. FarmLabel.TextWrapped = true
  421.  
  422. CarTP.Name = "CarTP"
  423. CarTP.Parent = FunctionsFrame
  424. CarTP.AnchorPoint = Vector2.new(0.5, 0)
  425. CarTP.BackgroundColor3 = Color3.new(0, 0, 0)
  426. CarTP.BackgroundTransparency = 0.5
  427. CarTP.BorderColor3 = Color3.new(0.333333, 1, 1)
  428. CarTP.BorderSizePixel = 2
  429. CarTP.Position = UDim2.new(0.5, 0, 0.569999993, 0)
  430. CarTP.Size = UDim2.new(0, 280, 0, 30)
  431. CarTP.Font = Enum.Font.Fantasy
  432. CarTP.Text = "Teleport To Your Car"
  433. CarTP.TextColor3 = Color3.new(1, 1, 1)
  434. CarTP.TextSize = 22
  435.  
  436. TeleportsFrame.Name = "TeleportsFrame"
  437. TeleportsFrame.Parent = MainFrame
  438. TeleportsFrame.AnchorPoint = Vector2.new(0, 1)
  439. TeleportsFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  440. TeleportsFrame.BackgroundTransparency = 1
  441. TeleportsFrame.Position = UDim2.new(0, 0, 1, 0)
  442. TeleportsFrame.Size = UDim2.new(0, 300, 0, 350)
  443. TeleportsFrame.Visible = false
  444.  
  445. SpawnShop.Name = "SpawnShop"
  446. SpawnShop.Parent = TeleportsFrame
  447. SpawnShop.BackgroundColor3 = Color3.new(0, 0, 0)
  448. SpawnShop.BackgroundTransparency = 0.5
  449. SpawnShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  450. SpawnShop.BorderSizePixel = 2
  451. SpawnShop.Position = UDim2.new(0.0199999996, 0, 0.150000006, 0)
  452. SpawnShop.Size = UDim2.new(0, 140, 0, 26)
  453. SpawnShop.Font = Enum.Font.Fantasy
  454. SpawnShop.Text = "Spawn Car Shop"
  455. SpawnShop.TextColor3 = Color3.new(1, 1, 1)
  456. SpawnShop.TextSize = 18
  457.  
  458. Shops.Name = "Shops"
  459. Shops.Parent = TeleportsFrame
  460. Shops.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  461. Shops.BackgroundTransparency = 1
  462. Shops.BorderSizePixel = 0
  463. Shops.Position = UDim2.new(0.0199999996, 0, 0.0199999996, 0)
  464. Shops.Size = UDim2.new(0, 140, 0, 40)
  465. Shops.Font = Enum.Font.Fantasy
  466. Shops.Text = "Shop Teleports"
  467. Shops.TextColor3 = Color3.new(1, 1, 1)
  468. Shops.TextSize = 18
  469.  
  470. Races.Name = "Races"
  471. Races.Parent = TeleportsFrame
  472. Races.AnchorPoint = Vector2.new(1, 0)
  473. Races.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  474. Races.BackgroundTransparency = 1
  475. Races.BorderSizePixel = 0
  476. Races.Position = UDim2.new(0.980000019, 0, 0.0199999996, 0)
  477. Races.Size = UDim2.new(0, 140, 0, 40)
  478. Races.Font = Enum.Font.Fantasy
  479. Races.Text = "Race Teleports"
  480. Races.TextColor3 = Color3.new(1, 1, 1)
  481. Races.TextSize = 18
  482.  
  483. SupercarShop.Name = "SupercarShop"
  484. SupercarShop.Parent = TeleportsFrame
  485. SupercarShop.BackgroundColor3 = Color3.new(0, 0, 0)
  486. SupercarShop.BackgroundTransparency = 0.5
  487. SupercarShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  488. SupercarShop.BorderSizePixel = 2
  489. SupercarShop.Position = UDim2.new(0.0199999996, 0, 0.245000005, 0)
  490. SupercarShop.Size = UDim2.new(0, 140, 0, 26)
  491. SupercarShop.Font = Enum.Font.Fantasy
  492. SupercarShop.Text = "Supercar Shop"
  493. SupercarShop.TextColor3 = Color3.new(1, 1, 1)
  494. SupercarShop.TextSize = 18
  495.  
  496. TeslaShop.Name = "TeslaShop"
  497. TeslaShop.Parent = TeleportsFrame
  498. TeslaShop.BackgroundColor3 = Color3.new(0, 0, 0)
  499. TeslaShop.BackgroundTransparency = 0.5
  500. TeslaShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  501. TeslaShop.BorderSizePixel = 2
  502. TeslaShop.Position = UDim2.new(0.0199999996, 0, 0.340000004, 0)
  503. TeslaShop.Size = UDim2.new(0, 140, 0, 26)
  504. TeslaShop.Font = Enum.Font.Fantasy
  505. TeslaShop.Text = "Tesla Dealership"
  506. TeslaShop.TextColor3 = Color3.new(1, 1, 1)
  507. TeslaShop.TextSize = 18
  508.  
  509. BoatShop.Name = "BoatShop"
  510. BoatShop.Parent = TeleportsFrame
  511. BoatShop.BackgroundColor3 = Color3.new(0, 0, 0)
  512. BoatShop.BackgroundTransparency = 0.5
  513. BoatShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  514. BoatShop.BorderSizePixel = 2
  515. BoatShop.Position = UDim2.new(0.0199999996, 0, 0.435000002, 0)
  516. BoatShop.Size = UDim2.new(0, 140, 0, 26)
  517. BoatShop.Font = Enum.Font.Fantasy
  518. BoatShop.Text = "Boat Dealership"
  519. BoatShop.TextColor3 = Color3.new(1, 1, 1)
  520. BoatShop.TextSize = 18
  521.  
  522. AirShop.Name = "AirShop"
  523. AirShop.Parent = TeleportsFrame
  524. AirShop.BackgroundColor3 = Color3.new(0, 0, 0)
  525. AirShop.BackgroundTransparency = 0.5
  526. AirShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  527. AirShop.BorderSizePixel = 2
  528. AirShop.Position = UDim2.new(0.0199999996, 0, 0.529999971, 0)
  529. AirShop.Size = UDim2.new(0, 140, 0, 26)
  530. AirShop.Font = Enum.Font.Fantasy
  531. AirShop.Text = "Aero Shop"
  532. AirShop.TextColor3 = Color3.new(1, 1, 1)
  533. AirShop.TextSize = 18
  534.  
  535. BikeShop.Name = "BikeShop"
  536. BikeShop.Parent = TeleportsFrame
  537. BikeShop.BackgroundColor3 = Color3.new(0, 0, 0)
  538. BikeShop.BackgroundTransparency = 0.5
  539. BikeShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  540. BikeShop.BorderSizePixel = 2
  541. BikeShop.Position = UDim2.new(0.0199999996, 0, 0.625, 0)
  542. BikeShop.Size = UDim2.new(0, 140, 0, 26)
  543. BikeShop.Font = Enum.Font.Fantasy
  544. BikeShop.Text = "Motorbike Shop"
  545. BikeShop.TextColor3 = Color3.new(1, 1, 1)
  546. BikeShop.TextSize = 18
  547.  
  548. AroundTheWorld.Name = "AroundTheWorld"
  549. AroundTheWorld.Parent = TeleportsFrame
  550. AroundTheWorld.AnchorPoint = Vector2.new(1, 0)
  551. AroundTheWorld.BackgroundColor3 = Color3.new(0, 0, 0)
  552. AroundTheWorld.BackgroundTransparency = 0.5
  553. AroundTheWorld.BorderColor3 = Color3.new(0.333333, 1, 1)
  554. AroundTheWorld.BorderSizePixel = 2
  555. AroundTheWorld.Position = UDim2.new(0.980000019, 0, 0.574999988, 0)
  556. AroundTheWorld.Size = UDim2.new(0, 140, 0, 22)
  557. AroundTheWorld.Font = Enum.Font.Fantasy
  558. AroundTheWorld.Text = "Around The World"
  559. AroundTheWorld.TextColor3 = Color3.new(1, 1, 1)
  560. AroundTheWorld.TextSize = 16
  561.  
  562. DriftKing.Name = "DriftKing"
  563. DriftKing.Parent = TeleportsFrame
  564. DriftKing.AnchorPoint = Vector2.new(1, 0)
  565. DriftKing.BackgroundColor3 = Color3.new(0, 0, 0)
  566. DriftKing.BackgroundTransparency = 0.5
  567. DriftKing.BorderColor3 = Color3.new(0.333333, 1, 1)
  568. DriftKing.BorderSizePixel = 2
  569. DriftKing.Position = UDim2.new(0.980000019, 0, 0.49000001, 0)
  570. DriftKing.Size = UDim2.new(0, 140, 0, 22)
  571. DriftKing.Font = Enum.Font.Fantasy
  572. DriftKing.Text = "Drift King"
  573. DriftKing.TextColor3 = Color3.new(1, 1, 1)
  574. DriftKing.TextSize = 16
  575.  
  576. QuarterMile.Name = "QuarterMile"
  577. QuarterMile.Parent = TeleportsFrame
  578. QuarterMile.AnchorPoint = Vector2.new(1, 0)
  579. QuarterMile.BackgroundColor3 = Color3.new(0, 0, 0)
  580. QuarterMile.BackgroundTransparency = 0.5
  581. QuarterMile.BorderColor3 = Color3.new(0.333333, 1, 1)
  582. QuarterMile.BorderSizePixel = 2
  583. QuarterMile.Position = UDim2.new(0.980000019, 0, 0.150000006, 0)
  584. QuarterMile.Size = UDim2.new(0, 140, 0, 22)
  585. QuarterMile.Font = Enum.Font.Fantasy
  586. QuarterMile.Text = "Airport 1/4 Mile"
  587. QuarterMile.TextColor3 = Color3.new(1, 1, 1)
  588. QuarterMile.TextSize = 16
  589.  
  590. DragStrip.Name = "DragStrip"
  591. DragStrip.Parent = TeleportsFrame
  592. DragStrip.AnchorPoint = Vector2.new(1, 0)
  593. DragStrip.BackgroundColor3 = Color3.new(0, 0, 0)
  594. DragStrip.BackgroundTransparency = 0.5
  595. DragStrip.BorderColor3 = Color3.new(0.333333, 1, 1)
  596. DragStrip.BorderSizePixel = 2
  597. DragStrip.Position = UDim2.new(0.980000019, 0, 0.234999999, 0)
  598. DragStrip.Size = UDim2.new(0, 140, 0, 22)
  599. DragStrip.Font = Enum.Font.Fantasy
  600. DragStrip.Text = "Drag Strip"
  601. DragStrip.TextColor3 = Color3.new(1, 1, 1)
  602. DragStrip.TextSize = 16
  603.  
  604. RaceTrack.Name = "RaceTrack"
  605. RaceTrack.Parent = TeleportsFrame
  606. RaceTrack.AnchorPoint = Vector2.new(1, 0)
  607. RaceTrack.BackgroundColor3 = Color3.new(0, 0, 0)
  608. RaceTrack.BackgroundTransparency = 0.5
  609. RaceTrack.BorderColor3 = Color3.new(0.333333, 1, 1)
  610. RaceTrack.BorderSizePixel = 2
  611. RaceTrack.Position = UDim2.new(0.980000019, 0, 0.319999993, 0)
  612. RaceTrack.Size = UDim2.new(0, 140, 0, 22)
  613. RaceTrack.Font = Enum.Font.Fantasy
  614. RaceTrack.Text = "Race Track"
  615. RaceTrack.TextColor3 = Color3.new(1, 1, 1)
  616. RaceTrack.TextSize = 16
  617.  
  618. DuneRally.Name = "DuneRally"
  619. DuneRally.Parent = TeleportsFrame
  620. DuneRally.AnchorPoint = Vector2.new(1, 0)
  621. DuneRally.BackgroundColor3 = Color3.new(0, 0, 0)
  622. DuneRally.BackgroundTransparency = 0.5
  623. DuneRally.BorderColor3 = Color3.new(0.333333, 1, 1)
  624. DuneRally.BorderSizePixel = 2
  625. DuneRally.Position = UDim2.new(0.980000019, 0, 0.405000001, 0)
  626. DuneRally.Size = UDim2.new(0, 140, 0, 22)
  627. DuneRally.Font = Enum.Font.Fantasy
  628. DuneRally.Text = "Dune Rally"
  629. DuneRally.TextColor3 = Color3.new(1, 1, 1)
  630. DuneRally.TextSize = 16
  631.  
  632. Soccer.Name = "Soccer"
  633. Soccer.Parent = TeleportsFrame
  634. Soccer.AnchorPoint = Vector2.new(1, 0)
  635. Soccer.BackgroundColor3 = Color3.new(0, 0, 0)
  636. Soccer.BackgroundTransparency = 0.5
  637. Soccer.BorderColor3 = Color3.new(0.333333, 1, 1)
  638. Soccer.BorderSizePixel = 2
  639. Soccer.Position = UDim2.new(0.980000019, 0, 0.745000005, 0)
  640. Soccer.Size = UDim2.new(0, 140, 0, 22)
  641. Soccer.Font = Enum.Font.Fantasy
  642. Soccer.Text = "Soccer"
  643. Soccer.TextColor3 = Color3.new(1, 1, 1)
  644. Soccer.TextSize = 16
  645.  
  646. HotPursuit.Name = "HotPursuit"
  647. HotPursuit.Parent = TeleportsFrame
  648. HotPursuit.AnchorPoint = Vector2.new(1, 0)
  649. HotPursuit.BackgroundColor3 = Color3.new(0, 0, 0)
  650. HotPursuit.BackgroundTransparency = 0.5
  651. HotPursuit.BorderColor3 = Color3.new(0.333333, 1, 1)
  652. HotPursuit.BorderSizePixel = 2
  653. HotPursuit.Position = UDim2.new(0.980000019, 0, 0.829999983, 0)
  654. HotPursuit.Size = UDim2.new(0, 140, 0, 22)
  655. HotPursuit.Font = Enum.Font.Fantasy
  656. HotPursuit.Text = "Hot Pursuit"
  657. HotPursuit.TextColor3 = Color3.new(1, 1, 1)
  658. HotPursuit.TextSize = 16
  659.  
  660. SeaDash.Name = "SeaDash"
  661. SeaDash.Parent = TeleportsFrame
  662. SeaDash.AnchorPoint = Vector2.new(1, 0)
  663. SeaDash.BackgroundColor3 = Color3.new(0, 0, 0)
  664. SeaDash.BackgroundTransparency = 0.5
  665. SeaDash.BorderColor3 = Color3.new(0.333333, 1, 1)
  666. SeaDash.BorderSizePixel = 2
  667. SeaDash.Position = UDim2.new(0.980000019, 0, 0.915000021, 0)
  668. SeaDash.Size = UDim2.new(0, 140, 0, 22)
  669. SeaDash.Font = Enum.Font.Fantasy
  670. SeaDash.Text = "Sea Dash"
  671. SeaDash.TextColor3 = Color3.new(1, 1, 1)
  672. SeaDash.TextSize = 16
  673.  
  674. HighwayRace.Name = "HighwayRace"
  675. HighwayRace.Parent = TeleportsFrame
  676. HighwayRace.AnchorPoint = Vector2.new(1, 0)
  677. HighwayRace.BackgroundColor3 = Color3.new(0, 0, 0)
  678. HighwayRace.BackgroundTransparency = 0.5
  679. HighwayRace.BorderColor3 = Color3.new(0.333333, 1, 1)
  680. HighwayRace.BorderSizePixel = 2
  681. HighwayRace.Position = UDim2.new(0.980000019, 0, 0.660000026, 0)
  682. HighwayRace.Size = UDim2.new(0, 140, 0, 22)
  683. HighwayRace.Font = Enum.Font.Fantasy
  684. HighwayRace.Text = "Highway Race"
  685. HighwayRace.TextColor3 = Color3.new(1, 1, 1)
  686. HighwayRace.TextSize = 16
  687.  
  688. DonutShop.Name = "DonutShop"
  689. DonutShop.Parent = TeleportsFrame
  690. DonutShop.BackgroundColor3 = Color3.new(0, 0, 0)
  691. DonutShop.BackgroundTransparency = 0.5
  692. DonutShop.BorderColor3 = Color3.new(0.333333, 1, 1)
  693. DonutShop.BorderSizePixel = 2
  694. DonutShop.Position = UDim2.new(0.0199999996, 0, 0.720000029, 0)
  695. DonutShop.Size = UDim2.new(0, 140, 0, 26)
  696. DonutShop.Font = Enum.Font.Fantasy
  697. DonutShop.Text = "Donut Shop"
  698. DonutShop.TextColor3 = Color3.new(1, 1, 1)
  699. DonutShop.TextSize = 18
  700.  
  701. Garage.Name = "Garage"
  702. Garage.Parent = TeleportsFrame
  703. Garage.BackgroundColor3 = Color3.new(0, 0, 0)
  704. Garage.BackgroundTransparency = 0.5
  705. Garage.BorderColor3 = Color3.new(0.333333, 1, 1)
  706. Garage.BorderSizePixel = 2
  707. Garage.Position = UDim2.new(0.0199999996, 0, 0.814999998, 0)
  708. Garage.Size = UDim2.new(0, 140, 0, 26)
  709. Garage.Font = Enum.Font.Fantasy
  710. Garage.Text = "Garage"
  711. Garage.TextColor3 = Color3.new(1, 1, 1)
  712. Garage.TextSize = 18
  713.  
  714. TPNote.Name = "TPNote"
  715. TPNote.Parent = TeleportsFrame
  716. TPNote.AnchorPoint = Vector2.new(0, 1)
  717. TPNote.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  718. TPNote.BackgroundTransparency = 1
  719. TPNote.BorderSizePixel = 0
  720. TPNote.Position = UDim2.new(0.0199999996, 0, 0.99000001, 0)
  721. TPNote.Size = UDim2.new(0, 140, 0, 30)
  722. TPNote.Font = Enum.Font.Fantasy
  723. TPNote.Text = "Note: Make Sure Your Car Is Spawned First"
  724. TPNote.TextColor3 = Color3.new(1, 1, 1)
  725. TPNote.TextSize = 12
  726. TPNote.TextWrapped = true
  727.  
  728. Credits.Name = "Credits"
  729. Credits.Parent = MainFrame
  730. Credits.AnchorPoint = Vector2.new(0.5, 0)
  731. Credits.BackgroundColor3 = Color3.new(0.333333, 1, 1)
  732. Credits.BackgroundTransparency = 1
  733. Credits.BorderSizePixel = 0
  734. Credits.Position = UDim2.new(0.5, 0, -0.100000001, 0)
  735. Credits.Size = UDim2.new(0, 300, 0, 40)
  736. Credits.Font = Enum.Font.Fantasy
  737. Credits.Text = "Vehicle Sim Gui - Made By Syko#2239"
  738. Credits.TextColor3 = Color3.new(0, 0, 0)
  739. Credits.TextSize = 18
  740.  
  741. -- Scripts
  742.  
  743. OpenButton.MouseButton1Click:Connect(function()
  744. if MainFrame.Visible == true then
  745. MainFrame.Visible = false
  746. OpenButton.Text = "Open Vehicle Sim GUI"
  747. else
  748. MainFrame.Visible = true
  749. OpenButton.Text = "Close Vehicle Sim GUI"
  750. end
  751. end)
  752.  
  753.  
  754. local InstructionBoxes = {
  755. [CarButton] = CarFrame;
  756. [TPsButton] = TeleportsFrame;
  757. [FunctionsButton] = FunctionsFrame;
  758. }
  759. for button,frame in pairs(InstructionBoxes) do
  760. button.MouseButton1Click:connect(function()
  761. if frame.Visible then
  762. frame.Visible = false
  763. return
  764. end
  765. for k,v in pairs(InstructionBoxes) do
  766. v.Visible = v == frame
  767. end
  768. end)
  769. end
  770.  
  771. -- Car Modification
  772.  
  773. function findVehicle()
  774. local vehicle = workspace.Vehicles:getChildren()
  775. for i=1,#vehicle do
  776. if vehicle[i]:findFirstChild("owner") then
  777. if vehicle[i].owner.Value == game.Players.LocalPlayer.Name then
  778. myVehicle = vehicle[i]
  779. end
  780. end
  781. end
  782. end
  783.  
  784. Speed.MouseButton1Down:connect(function()
  785. findVehicle()
  786. myVehicle.Handling.MaxSpeed.Value = SpeedNum.Text
  787. myVehicle.Handling.SteeringRadiusConstant.Value = 1500000
  788. end)
  789.  
  790. Torque.MouseButton1Down:connect(function()
  791. findVehicle()
  792. myVehicle.Handling.Torque.Value = TorqueNum.Text
  793. end)
  794.  
  795. NitroSpeed.MouseButton1Down:connect(function()
  796. findVehicle()
  797. myVehicle.Handling.Nitro.NitroSpeed.Value = NitroSpeedNum.Text
  798. end)
  799.  
  800. NitroForce.MouseButton1Down:connect(function()
  801. findVehicle()
  802. myVehicle.Handling.Nitro.NitroForce.Value = NitroForceNum.Text
  803. end)
  804.  
  805. SteerForce.MouseButton1Click:connect(function()
  806. findVehicle()
  807. myVehicle.Handling.SteeringRadiusConstant.Value = SteerForceNum.Text
  808. end)
  809.  
  810. JumpHeight.MouseButton1Down:connect(function()
  811. findVehicle()
  812. myVehicle.Handling.TurboJump.TurboJumpHeight.Value = JumpHeightNum.Text
  813. end)
  814.  
  815. -- Infinite Nitro
  816.  
  817. InfNitro.MouseButton1Down:connect(function()
  818. veh = nil
  819. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  820. if v:IsA("Model") then
  821. if v.owner.Value == game.Players.LocalPlayer.Name then
  822. veh = v
  823. end
  824. end
  825. end
  826. han = veh.Handling
  827.  
  828. while han ~= nil do
  829. wait(0.5)
  830. han.Nitro.NitroAmount.Value = 250
  831. end
  832. end)
  833.  
  834. -- Functions
  835.  
  836. -- Crate ESP
  837.  
  838. CrateESP.MouseButton1Down:connect(function()
  839. local crates = workspace:getChildren()
  840. for i=1,#crates do
  841. if crates[i].ClassName == "Model" then
  842. local crates2 = crates[i]:getChildren()
  843. for i=1,#crates2 do
  844. if crates2[i].ClassName == "Model" then
  845. local crates3 = crates2[i]:getChildren()
  846. for i=1,#crates3 do
  847. if crates3[i].ClassName == "MeshPart" then
  848. if crates3[i]:findFirstChild("Smoke") then
  849. if crates3[i]:findFirstChild("BoxHandleAdornment") then
  850. crates3[i]:findFirstChild("BoxHandleAdornment"):Remove()
  851. else
  852. local a = Instance.new("BoxHandleAdornment",crates3[i])
  853. a.Size = Vector3.new(10,500,6)
  854. a.SizeRelativeOffset = Vector3.new(0,135,0)
  855. a.Color3 = Color3.fromRGB(0,255,0)
  856. a.Transparency = 0.5
  857. a.AlwaysOnTop = true
  858. a.Adornee = crates3[i]
  859. a.ZIndex = 1
  860.  
  861. local b = Instance.new("BoxHandleAdornment",crates3[i])
  862. b.Size = Vector3.new(10,4,6)
  863. b.Color3 = Color3.fromRGB(0,0,255)
  864. b.Transparency = 0.3
  865. b.AlwaysOnTop = true
  866. b.Adornee = crates3[i]
  867. b.ZIndex = 1
  868. end
  869. end
  870. end
  871. end
  872. end
  873. end
  874. end
  875. end
  876. end)
  877.  
  878. -- Teleport To Crates
  879.  
  880. CrateTP.MouseButton1Down:connect(function()
  881. local crates = workspace:getChildren()
  882. for i=1,#crates do
  883. if crates[i].ClassName == "Model" then
  884. local crates2 = crates[i]:getChildren()
  885. for i=1,#crates2 do
  886. if crates2[i].ClassName == "Model" then
  887. local crates3 = crates2[i]:getChildren()
  888. for i=1,#crates3 do
  889. if crates3[i].ClassName == "MeshPart" then
  890. if crates3[i]:findFirstChild("Smoke") then
  891. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(crates3[i].Position.X+30,crates3[i].Position.Y+5,crates3[i].Position.Z))
  892. wait()
  893. game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(crates3[i].Position.X,crates3[i].Position.Y,crates3[i].Position.Z))
  894. wait(4)
  895. end
  896. end
  897. end
  898. end
  899. end
  900. end
  901. end
  902. end)
  903.  
  904. -- Give All Gamepasses
  905.  
  906. AllPerks.MouseButton1Down:connect(function()
  907. game:GetService("Players").LocalPlayer.UserId = 1099580
  908. end)
  909.  
  910. -- Supercar
  911.  
  912. SuperCar.MouseButton1Down:connect(function()
  913. findVehicle()
  914. myVehicle.Handling.MaxSpeed.Value = 10000
  915. myVehicle.Handling.Torque.Value = 40000
  916. myVehicle.Handling.SteeringRadiusConstant.Value = 15000
  917. myVehicle.Handling.FrictionRoad.Value = 250
  918. myVehicle.Handling.Nitro.NitroSpeed.Value = 500
  919. myVehicle.Handling.Nitro.NitroForce.Value = 5000
  920. myVehicle.Handling.TurboJump.TurboJumpHeight.Value = 250
  921. end)
  922.  
  923. -- TP To Car
  924.  
  925. CarTP.MouseButton1Down:connect(function()
  926. findVehicle()
  927. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  928. end)
  929.  
  930. -- Auto Farm
  931.  
  932. local waitTime = 1
  933.  
  934. local found = false
  935. local go = false
  936.  
  937. function findCar()
  938. while not found do
  939. local vehicles = game.Workspace.Vehicles:getChildren()
  940. for i = 1,#vehicles do
  941. if vehicles[i]:findFirstChild'owner' then
  942. if vehicles[i].owner.Value == game:GetService'Players'.LocalPlayer.Name then
  943. found = true
  944. vehicle = vehicles[i]
  945. vehStats = vehicle.Handling
  946. vehStats.MaxSpeed.Value = 700
  947. vehStats.Torque.Value = 20000
  948. vehStats.SteeringRadiusConstant.Value = 120000000
  949. elseif vehicles[i + 1] == nil and not found then
  950. AutoFarm.Text = "Get Into A Car"
  951. end
  952. end
  953. end
  954. wait(1)
  955. end
  956. wait(2)
  957. vehicle.PrimaryPart = vehicle.Chassis.VehicleSeat
  958. end
  959.  
  960. function farm()
  961. AutoFarm.Text = "Loaded. Farm Begun."
  962. while wait(waitTime) do
  963. if go == true then
  964. vehicle:SetPrimaryPartCFrame(CFrame.new(-2470,60,777))
  965. game:GetService'VirtualUser':SetKeyUp("w")
  966. game:GetService'VirtualUser':SetKeyDown("w")
  967. end
  968. end
  969. end
  970.  
  971. AutoFarm.MouseButton1Down:connect(function()
  972. findCar()
  973. go = not go
  974. while go do
  975. AutoFarm.Text = "Loading Auto Farm"
  976. if not pcall(farm()) then
  977. found = false
  978. findCar()
  979. end
  980. end
  981. if go == false then
  982. AutoFarm.Text = "Auto Farm Stopped"
  983. end
  984. end)
  985.  
  986. -- Teleports
  987.  
  988. SpawnShop.MouseButton1Down:connect(function()
  989. findVehicle()
  990. myVehicle:MoveTo(Vector3.new(-1931, 40, -393))
  991. wait(0.5)
  992. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  993. end)
  994.  
  995. SupercarShop.MouseButton1Down:connect(function()
  996. findVehicle()
  997. myVehicle:MoveTo(Vector3.new(-394, 40, -1145))
  998. wait(0.5)
  999. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1000. end)
  1001.  
  1002. TeslaShop.MouseButton1Down:connect(function()
  1003. findVehicle()
  1004. myVehicle:MoveTo(Vector3.new(-2764, 40, -485))
  1005. wait(0.5)
  1006. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1007. end)
  1008.  
  1009. BoatShop.MouseButton1Down:connect(function()
  1010. findVehicle()
  1011. myVehicle:MoveTo(Vector3.new(-2958, 36, 137))
  1012. wait(0.5)
  1013. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1014. end)
  1015.  
  1016. AirShop.MouseButton1Down:connect(function()
  1017. findVehicle()
  1018. myVehicle:MoveTo(Vector3.new(-2122, 40, 1650))
  1019. wait(0.5)
  1020. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1021. end)
  1022.  
  1023. BikeShop.MouseButton1Down:connect(function()
  1024. findVehicle()
  1025. myVehicle:MoveTo(Vector3.new(-927, 40, 1655))
  1026. wait(0.5)
  1027. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1028. end)
  1029.  
  1030. DonutShop.MouseButton1Down:connect(function()
  1031. findVehicle()
  1032. myVehicle:MoveTo(Vector3.new(-1825, 40, -1688))
  1033. wait(0.5)
  1034. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1035. end)
  1036.  
  1037. Garage.MouseButton1Down:connect(function()
  1038. findVehicle()
  1039. myVehicle:MoveTo(Vector3.new(-1912, 40, -1237))
  1040. wait(0.5)
  1041. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1042. end)
  1043.  
  1044. AroundTheWorld.MouseButton1Down:connect(function()
  1045. findVehicle()
  1046. myVehicle:MoveTo(Vector3.new(-2873, 40, -2335))
  1047. wait(0.5)
  1048. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1049. end)
  1050.  
  1051. DriftKing.MouseButton1Down:connect(function()
  1052. findVehicle()
  1053. myVehicle:MoveTo(Vector3.new(-2943, 38, 914))
  1054. wait(0.5)
  1055. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1056. end)
  1057.  
  1058. QuarterMile.MouseButton1Down:connect(function()
  1059. findVehicle()
  1060. myVehicle:MoveTo(Vector3.new(-2067, 40, 1533))
  1061. wait(0.5)
  1062. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1063. end)
  1064.  
  1065. DragStrip.MouseButton1Down:connect(function()
  1066. findVehicle()
  1067. myVehicle:MoveTo(Vector3.new(-421, 40, -3531))
  1068. wait(0.5)
  1069. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1070. end)
  1071.  
  1072. RaceTrack.MouseButton1Down:connect(function()
  1073. findVehicle()
  1074. myVehicle:MoveTo(Vector3.new(330, 40, 458))
  1075. wait(0.5)
  1076. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1077. end)
  1078.  
  1079. DuneRally.MouseButton1Down:connect(function()
  1080. findVehicle()
  1081. myVehicle:MoveTo(Vector3.new(2667, 40, -2863))
  1082. wait(0.5)
  1083. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1084. end)
  1085.  
  1086. Soccer.MouseButton1Down:connect(function()
  1087. findVehicle()
  1088. myVehicle:MoveTo(Vector3.new(959, 40, 2949))
  1089. wait(0.5)
  1090. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1091. end)
  1092.  
  1093. HotPursuit.MouseButton1Down:connect(function()
  1094. findVehicle()
  1095. myVehicle:MoveTo(Vector3.new(-1871, 40, -624))
  1096. wait(0.5)
  1097. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1098. end)
  1099.  
  1100. SeaDash.MouseButton1Down:connect(function()
  1101. findVehicle()
  1102. myVehicle:MoveTo(Vector3.new(-3332, 27, 688))
  1103. wait(0.5)
  1104. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1105. end)
  1106.  
  1107. HighwayRace.MouseButton1Down:connect(function()
  1108. findVehicle()
  1109. myVehicle:MoveTo(Vector3.new(-1192, 40, -2747))
  1110. wait(0.5)
  1111. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(myVehicle.Chassis.VehicleSeat.Position + myVehicle.Chassis.VehicleSeat.SeatOffset.Value)
  1112. end)
Advertisement
Add Comment
Please, Sign In to add comment