HHLExploits

Vehicle Tycoon

Sep 8th, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/7Z6TzFnv", true))()
  2. local example = library:CreateWindow({
  3. text = "Vehicle Tycoon"
  4. })
  5.  
  6. example:AddButton("Auto Farm", function()
  7. local car = game.workspace.Vehicles[game.Players.LocalPlayer.Name]
  8. local part1 = Instance.new("Part")
  9. part1.Anchored = true
  10. part1.Position = Vector3.new(-4000, 250, -4000)
  11. part1.Size = Vector3.new(50000, 1, 50000)
  12. local part2 = Instance.new("Part")
  13. part2.Anchored = true
  14. part2.Position = Vector3.new(4000, 250, 4000)
  15. part2.Size = Vector3.new(50000, 1, 50000)
  16. part1.Parent = workspace
  17. part2.Parent = workspace
  18. wait(1)
  19. while wait(1.5) do
  20. car:SetPrimaryPartCFrame(CFrame.new(part1.Position + Vector3.new(0, 1, 0)))
  21. wait(1.5)
  22. car:SetPrimaryPartCFrame(CFrame.new(part2.Position + Vector3.new(0, 1, 0)))
  23. end
  24. end)
  25.  
  26. example:AddButton("Hold w (for auto)", function()
  27. while wait(0,1)do
  28. game:GetService'VirtualUser':SetKeyUp("w") --Resets W key
  29. game:GetService'VirtualUser':SetKeyDown("w") --Presses W key to go forward
  30. end
  31. end)
  32.  
  33. example:AddButton("Speed", function()
  34. local name = game.Players.LocalPlayer.Name
  35. game:GetService("Workspace").Vehicles[name].Stats.MaxSpeed.Value = 9999999999
  36. game:GetService("Workspace").Vehicles[name].Stats.AccelerateTorque.Value = 9999999999
  37. end)
  38.  
  39. local credits = library:CreateWindow({
  40. text = "Credits"
  41. })
  42. credits:AddLabel("Puppys: scripts ")
  43. credits:AddLabel("Wally: UI ")
Add Comment
Please, Sign In to add comment