Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.77 KB | None | 0 0
  1. local Neoncore = Instance.new("ScreenGui")
  2. local main = Instance.new("Frame")
  3. local Title = Instance.new("TextLabel")
  4. local afkfarm = Instance.new("TextButton")
  5. local fast_car = Instance.new("TextButton")
  6. local InfiniteNitro = Instance.new("TextButton")
  7. local Perks = Instance.new("TextButton")
  8. local CrateTP = Instance.new("TextButton")
  9. local afkfarm_2 = Instance.new("TextButton")
  10. local Closegame = Instance.new("TextButton")
  11. local CrateESP = Instance.new("TextButton")
  12. local MadeBy = Instance.new("TextLabel")
  13.  
  14. Neoncore.Name = "Neon core"
  15. Neoncore.Parent = game.CoreGui
  16.  
  17. main.Name = "main"
  18. main.Parent = Neoncore
  19. main.BackgroundColor3 = Color3.new(0, 0, 0)
  20. main.BackgroundTransparency = 0.5
  21. main.Position = UDim2.new(0.00648147939, 0, 0.0202952195, 0)
  22. main.Size = UDim2.new(0, 220, 0, 304)
  23. main.Active = true
  24. main.Draggable = true
  25. main.Visible = true
  26.  
  27. Title.Name = "Title"
  28. Title.Parent = main
  29. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  30. Title.BackgroundTransparency = 1
  31. Title.BorderSizePixel = 0
  32. Title.Size = UDim2.new(0, 220, 0, 50)
  33. Title.Font = Enum.Font.Cartoon
  34. Title.Text = "Neon Core"
  35. Title.TextColor3 = Color3.new(1, 1, 1)
  36. Title.TextScaled = true
  37. Title.TextSize = 14
  38. Title.TextWrapped = true
  39.  
  40. afkfarm.Name = "afk farm"
  41. afkfarm.Parent = main
  42. afkfarm.BackgroundColor3 = Color3.new(0, 0, 0)
  43. afkfarm.BackgroundTransparency = 0.40000000596046
  44. afkfarm.BorderSizePixel = 0
  45. afkfarm.Position = UDim2.new(0, 0, 0.161184236, 0)
  46. afkfarm.Size = UDim2.new(0, 107, 0, 45)
  47. afkfarm.Font = Enum.Font.Cartoon
  48. afkfarm.Text = "AFK Farm"
  49. afkfarm.TextColor3 = Color3.new(1, 1, 1)
  50. afkfarm.TextSize = 14
  51. afkfarm.MouseButton1Down:connect(function()
  52. --[[
  53. Fully automatic money/miles farm
  54. TODO:
  55. Add auto respawn vehicle
  56. ]]
  57. local waitTime = 3 --This will be the time it takes (seconds) until your car resets. See line 37
  58. --Do not change anything below :)
  59. local hint = Instance.new('Hint', Workspace) hint.Text = "Vehicle Simulator Autofarm loading..."
  60. local found = false
  61. local go = true
  62.  
  63. function findVehicle() --Finds your vehicle
  64. while not found do --Loops until your vehicle has been found
  65. local vehicles = Workspace.Vehicles:getChildren()
  66. for i=1,#vehicles do
  67. if vehicles[i]:findFirstChild'owner' then
  68. if vehicles[i].owner.Value == game:GetService'Players'.LocalPlayer.Name then -- Found your vehicle
  69. found = true --Setting found to true so loop breaks
  70. vehicle = vehicles[i] -- Declares vehicle variable to your vehicle
  71. vehStats = vehicle.Handling -- Declares vehStats variable to vehicle stats folder
  72. vehStats.MaxSpeed.Value = 800
  73. vehStats.Torque.Value = 100000
  74. vehStats.SteeringRadiusConstant.Value = 120000000
  75. elseif vehicles[i + 1] == nil and not found then
  76. --Autorespawn would go here
  77. hint.Text = "Please spawn and enter your vehicle!" --Your vehicle does not exist in the Workspace
  78. end
  79. end
  80. end
  81. wait(1) --Waiting before checking again so we don't crash
  82. end
  83. wait(2) --We've found the car. Waiting so the car can be properly placed on the highway
  84. vehicle.PrimaryPart = vehicle.Chassis.VehicleSeat
  85. end
  86.  
  87. function farm() --This is where the magic happens :)
  88. hint.Text = "Finished loading! Autofarm initialized."
  89. while wait(waitTime) do --Waits x seconds before resetting car
  90. vehicle:SetPrimaryPartCFrame(CFrame.new(-2470,60,777)) --Teleports vehicle to highway
  91. game:GetService'VirtualUser':SetKeyUp("w") --Resets W key
  92. game:GetService'VirtualUser':SetKeyDown("w") --Presses W key to go forward
  93. end
  94. end
  95. findVehicle() --Calls the findVehicle function
  96. while go do
  97. if not pcall(farm()) then --Calls farm function & checks for errors
  98. found = false --If it errors, it sets found to false and continues looking for your vehicle.
  99. findVehicle()
  100. end
  101. end
  102. end)
  103.  
  104. fast_car.Name = "fast_car"
  105. fast_car.Parent = main
  106. fast_car.BackgroundColor3 = Color3.new(0, 0, 0)
  107. fast_car.BackgroundTransparency = 0.40000000596046
  108. fast_car.BorderSizePixel = 0
  109. fast_car.Position = UDim2.new(0.513636351, 0, 0.161184162, 0)
  110. fast_car.Size = UDim2.new(0, 107, 0, 45)
  111. fast_car.Font = Enum.Font.Cartoon
  112. fast_car.Text = "Fast Car"
  113. fast_car.TextColor3 = Color3.new(1, 1, 1)
  114. fast_car.TextSize = 14
  115. fast_car.MouseButton1Down:connect(function()
  116. veh = nil
  117. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  118. if v:IsA("Model") then
  119. if v.owner.Value == game.Players.LocalPlayer.Name then
  120. veh = v
  121. end
  122. end
  123. end
  124.  
  125. if veh then
  126. han = veh.Handling
  127. han.MaxSpeed.Value = 10000
  128. han.Torque.Value = 20000
  129. han.SteeringRadiusConstant.Value = 12000
  130. han.FrictionOffroad.Value = 200
  131. han.FrictionRoad.Value = 200
  132. else
  133. print("Unable to find your vehicle!")
  134. end
  135. --- You can change both the MaxSpeed value and Torque value for extra speed. Please keep in mind this makes you unable to steer unless you know the physics of the game and you can change the Steering RadiusConstant value in accordance to your modifications. ---
  136. end)
  137.  
  138. InfiniteNitro.Name = "Infinite Nitro"
  139. InfiniteNitro.Parent = main
  140. InfiniteNitro.BackgroundColor3 = Color3.new(0, 0, 0)
  141. InfiniteNitro.BackgroundTransparency = 0.40000000596046
  142. InfiniteNitro.BorderSizePixel = 0
  143. InfiniteNitro.Position = UDim2.new(0, 0, 0.335526347, 0)
  144. InfiniteNitro.Size = UDim2.new(0, 107, 0, 45)
  145. InfiniteNitro.Font = Enum.Font.Cartoon
  146. InfiniteNitro.Text = "Infinite Nitro"
  147. InfiniteNitro.TextColor3 = Color3.new(1, 1, 1)
  148. InfiniteNitro.TextSize = 14
  149. InfiniteNitro.MouseButton1Down:connect(function()
  150. nspeed = 300 --The speed that the nitro will amplify your speed by!
  151. nforce = 8000 --The amount of force the nitro will put on your car.
  152. veh = nil
  153. for i,v in pairs(game.Workspace.Vehicles:GetChildren()) do
  154. if v:IsA("Model") then
  155. if v.owner.Value == game.Players.LocalPlayer.Name then
  156. veh = v
  157. end
  158. end
  159. end
  160.  
  161. if veh then
  162. han.Nitro.NitroSpeed.Value = nspeed
  163. han.Nitro.NitroForce.Value = nforce
  164. else
  165. print("Unable to find your vehicle!")
  166. end
  167. end)
  168.  
  169. Perks.Name = "Perks"
  170. Perks.Parent = main
  171. Perks.BackgroundColor3 = Color3.new(0, 0, 0)
  172. Perks.BackgroundTransparency = 0.40000000596046
  173. Perks.BorderSizePixel = 0
  174. Perks.Position = UDim2.new(0.513636351, 0, 0.335526347, 0)
  175. Perks.Size = UDim2.new(0, 107, 0, 45)
  176. Perks.Font = Enum.Font.Cartoon
  177. Perks.Text = "Perks"
  178. Perks.TextColor3 = Color3.new(1, 1, 1)
  179. Perks.TextSize = 14
  180. Perks.MouseButton1Down:connect(function()
  181. game.Players.LocalPlayer.UserId = 1099580
  182. end)
  183.  
  184. CrateTP.Name = "Crate TP"
  185. CrateTP.Parent = main
  186. CrateTP.BackgroundColor3 = Color3.new(0, 0, 0)
  187. CrateTP.BackgroundTransparency = 0.40000000596046
  188. CrateTP.BorderSizePixel = 0
  189. CrateTP.Position = UDim2.new(0.513636351, 0, 0.513157904, 0)
  190. CrateTP.Size = UDim2.new(0, 107, 0, 45)
  191. CrateTP.Font = Enum.Font.Cartoon
  192. CrateTP.Text = "Crate TP"
  193. CrateTP.TextColor3 = Color3.new(1, 1, 1)
  194. CrateTP.TextSize = 14
  195. CrateTP.MouseButton1Down:connect(function()
  196. local crates = workspace:getChildren()
  197. for i=1,#crates do
  198. if crates[i].ClassName == "Model" then
  199. local crates2 = crates[i]:getChildren()
  200. for i=1,#crates2 do
  201. if crates2[i].ClassName == "Model" then
  202. local crates3 = crates2[i]:getChildren()
  203. for i=1,#crates3 do
  204. if crates3[i].ClassName == "MeshPart" then
  205. if crates3[i]:findFirstChild("Smoke") then
  206. game.Players.LocalPlayer.Character:MoveTo(Vector3.new(crates3[i].Position.X+30,crates3[i].Position.Y+5,crates3[i].Position.Z))
  207. wait()
  208. game.Players.LocalPlayer.Character.Humanoid:MoveTo(Vector3.new(crates3[i].Position.X,crates3[i].Position.Y,crates3[i].Position.Z))
  209. wait(4)
  210. end
  211. end
  212. end
  213. end
  214. end
  215. end
  216. end
  217. end)
  218.  
  219. afkfarm_2.Name = "afk farm"
  220. afkfarm_2.Parent = main
  221. afkfarm_2.BackgroundColor3 = Color3.new(0, 0, 0)
  222. afkfarm_2.BackgroundTransparency = 0.40000000596046
  223. afkfarm_2.BorderSizePixel = 0
  224. afkfarm_2.Position = UDim2.new(0, 0, 0.694078922, 0)
  225. afkfarm_2.Size = UDim2.new(0, 107, 0, 45)
  226. afkfarm_2.Font = Enum.Font.Cartoon
  227. afkfarm_2.Text = "AFK Farm Subway"
  228. afkfarm_2.TextColor3 = Color3.new(1, 1, 1)
  229. afkfarm_2.TextSize = 14
  230. afkfarm_2.MouseButton1Down:connect(function()
  231. --[[
  232. Fully automatic money/miles farm
  233. TODO:
  234. Add auto respawn vehicle
  235. ]]
  236. local waitTime = 1 --This will be the time it takes (seconds) until your car resets. See line 37
  237. --Do not change anything below :)
  238. local hint = Instance.new('Hint', Workspace) hint.Text = "Vehicle Simulator Autofarm Edited By 8lu3C loading..."
  239. local found = false
  240. local go = true
  241.  
  242. function findVehicle() --Finds your vehicle
  243. while not found do --Loops until your vehicle has been found
  244. local vehicles = Workspace.Vehicles:getChildren()
  245. for i=1,#vehicles do
  246. if vehicles[i]:findFirstChild'owner' then
  247. if vehicles[i].owner.Value == game:GetService'Players'.LocalPlayer.Name then -- Found your vehicle
  248. found = true --Setting found to true so loop breaks
  249. vehicle = vehicles[i] -- Declares vehicle variable to your vehicle
  250. vehStats = vehicle.Handling -- Declares vehStats variable to vehicle stats folder
  251. vehStats.MaxSpeed.Value = 800
  252. vehStats.Torque.Value = 17000
  253. vehStats.SteeringRadiusConstant.Value = 120000000
  254. elseif vehicles[i + 1] == nil and not found then
  255. --Autorespawn would go here
  256. hint.Text = "Please spawn and enter your vehicle!" --Your vehicle does not exist in the Workspace
  257. end
  258. end
  259. end
  260. wait(1) --Waiting before checking again so we don't crash
  261. end
  262. wait(2) --We've found the car. Waiting so the car can be properly placed on the highway
  263. vehicle.PrimaryPart = vehicle.Chassis.VehicleSeat
  264. end
  265.  
  266. function farm() --This is where the magic happens :)
  267. hint.Text = "Finished loading! Autofarm initialized."
  268. while wait(waitTime) do --Waits x seconds before resetting car
  269. vehicle:SetPrimaryPartCFrame(CFrame.new(-280,23,-309)) --Teleports vehicle to highway
  270. game:GetService'VirtualUser':SetKeyUp("w") --Resets W key
  271. game:GetService'VirtualUser':SetKeyDown("w") --Presses W key to go forward
  272. end
  273. end
  274. findVehicle() --Calls the findVehicle function
  275. while go do
  276. if not pcall(farm()) then --Calls farm function & checks for errors
  277. found = false --If it errors, it sets found to false and continues looking for your vehicle.
  278. findVehicle()
  279. end
  280. end
  281. end)
  282.  
  283. Closegame.Name = "Close game"
  284. Closegame.Parent = main
  285. Closegame.BackgroundColor3 = Color3.new(0, 0, 0)
  286. Closegame.BackgroundTransparency = 0.40000000596046
  287. Closegame.BorderSizePixel = 0
  288. Closegame.Position = UDim2.new(0.513636351, 0, 0.694078922, 0)
  289. Closegame.Size = UDim2.new(0, 107, 0, 45)
  290. Closegame.Font = Enum.Font.Cartoon
  291. Closegame.Text = "Disconnect From Game"
  292. Closegame.TextColor3 = Color3.new(1, 1, 1)
  293. Closegame.TextSize = 14
  294. Closegame.TextWrapped = true
  295. Closegame.MouseButton1Down:connect(function()
  296. game.Players.LocalPlayer:Kick()
  297. end)
  298.  
  299. CrateESP.Name = "Crate ESP"
  300. CrateESP.Parent = main
  301. CrateESP.BackgroundColor3 = Color3.new(0, 0, 0)
  302. CrateESP.BackgroundTransparency = 0.40000000596046
  303. CrateESP.BorderSizePixel = 0
  304. CrateESP.Position = UDim2.new(0, 0, 0.513157845, 0)
  305. CrateESP.Size = UDim2.new(0, 107, 0, 45)
  306. CrateESP.Font = Enum.Font.Cartoon
  307. CrateESP.Text = "Crate ESP"
  308. CrateESP.TextColor3 = Color3.new(1, 1, 1)
  309. CrateESP.TextSize = 14
  310. CrateESP.MouseButton1Down:connect(function()
  311. local crates = workspace:getChildren()
  312. for i=1,#crates do
  313. if crates[i].ClassName == "Model" then
  314. local crates2 = crates[i]:getChildren()
  315. for i=1,#crates2 do
  316. if crates2[i].ClassName == "Model" then
  317. local crates3 = crates2[i]:getChildren()
  318. for i=1,#crates3 do
  319. if crates3[i].ClassName == "MeshPart" then
  320. if crates3[i]:findFirstChild("Smoke") then
  321. if crates3[i]:findFirstChild("BoxHandleAdornment") then
  322. else
  323. local a = Instance.new("BoxHandleAdornment",crates3[i])
  324. a.Size = Vector3.new(10,500,6)
  325. a.SizeRelativeOffset = Vector3.new(0,135,0)
  326. a.Color3 = Color3.fromRGB(0,255,0)
  327. a.Transparency = 0.5
  328. a.AlwaysOnTop = true
  329. a.Adornee = crates3[i]
  330. a.ZIndex = 1
  331. local b = Instance.new("BoxHandleAdornment",crates3[i])
  332. b.Size = Vector3.new(10,4,6)
  333. b.Color3 = Color3.fromRGB(0,0,255)
  334. b.Transparency = 0.3
  335. b.AlwaysOnTop = true
  336. b.Adornee = crates3[i]
  337. b.ZIndex = 1
  338. end
  339. end
  340. end
  341. end
  342. end
  343. end
  344. end
  345. end
  346. end)
  347.  
  348. MadeBy.Name = "Made By"
  349. MadeBy.Parent = main
  350. MadeBy.BackgroundColor3 = Color3.new(1, 1, 1)
  351. MadeBy.BackgroundTransparency = 1
  352. MadeBy.BorderSizePixel = 0
  353. MadeBy.Position = UDim2.new(0, 0, 0.832236826, 0)
  354. MadeBy.Size = UDim2.new(0, 220, 0, 50)
  355. MadeBy.Font = Enum.Font.Cartoon
  356. MadeBy.Text = "Made By 0lIl3 & 8lu3C"
  357. MadeBy.TextColor3 = Color3.new(1, 1, 1)
  358. MadeBy.TextSize = 14
  359. MadeBy.TextWrapped = true
  360. ------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement