Advertisement
OceanTheShark

Driving sim Script

May 28th, 2020
27,843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.06 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  2.  
  3. local w = library:CreateWindow("Driving Simulator")
  4.  
  5. local AF = w:CreateFolder("Auto Farm")
  6.  
  7. AF:Toggle("Auto ATW",function(bool)
  8. shared.toggleAH = bool
  9. end)
  10.  
  11.  
  12. spawn(function()
  13. while wait() do
  14. if shared.toggleAH then
  15.  
  16.  
  17.  
  18. local args = {
  19. [1] = "AroundTheWorld",
  20. }
  21.  
  22. game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
  23.  
  24. end
  25. end
  26. end)
  27.  
  28.  
  29. AF:Toggle("Auto Downtown",function(bool)
  30. shared.toggleADW = bool
  31. end)
  32.  
  33.  
  34. spawn(function()
  35. while wait() do
  36. if shared.toggleADW then
  37.  
  38.  
  39. local args = {
  40. [1] = "Downtown Race",
  41. }
  42.  
  43. game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
  44.  
  45.  
  46. end
  47. end
  48. end)
  49.  
  50.  
  51.  
  52.  
  53. AF:Toggle("Auto Area 51",function(bool)
  54. shared.toggleA51 = bool
  55. end)
  56.  
  57.  
  58. spawn(function()
  59. while wait() do
  60. if shared.toggleA51 then
  61.  
  62.  
  63. local args = {
  64. [1] = "Area51QuarterMile",
  65. }
  66.  
  67. game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
  68.  
  69. end
  70. end
  71. end)
  72.  
  73.  
  74.  
  75. AF:Toggle("Auto Dock",function(bool)
  76. shared.toggleAD = bool
  77. end)
  78.  
  79.  
  80. spawn(function()
  81. while wait() do
  82. if shared.toggleAD then
  83.  
  84.  
  85.  
  86. local args = {
  87. [1] = "DockQuarterMile",
  88. }
  89.  
  90. game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
  91.  
  92. end
  93. end
  94. end)
  95.  
  96.  
  97. AF:Toggle("Auto City",function(bool)
  98. shared.toggleAC = bool
  99. end)
  100.  
  101.  
  102. spawn(function()
  103. while wait() do
  104. if shared.toggleAC then
  105.  
  106.  
  107.  
  108. local args = {
  109. [1] = "City Roundabout",
  110. }
  111.  
  112. game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
  113.  
  114. end
  115. end
  116. end)
  117.  
  118.  
  119. AF:Toggle("Auto Forfeit",function(bool)
  120. shared.toggleACFG = bool
  121. end)
  122.  
  123.  
  124. spawn(function()
  125. while wait() do
  126. if shared.toggleACFG then
  127.  
  128. game:GetService("ReplicatedStorage").remotes.races.Forfeit:FireServer()
  129.  
  130.  
  131.  
  132. end
  133. end
  134. end)
  135.  
  136. local vu = game:GetService("VirtualUser")
  137. game:GetService("Players").LocalPlayer.Idled:connect(function()
  138. vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  139. wait(1)
  140. vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
  141. end)
  142.  
  143.  
  144. local CS = w:CreateFolder("Credit")
  145.  
  146. CS:Label("Script: IReallyDontKnow",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  147. CS:Label("GUI: Altix & Wally",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  148. CS:DestroyGUI()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement