Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
- local w = library:CreateWindow("Driving Simulator")
- local AF = w:CreateFolder("Auto Farm")
- AF:Toggle("Auto ATW",function(bool)
- shared.toggleAH = bool
- end)
- spawn(function()
- while wait() do
- if shared.toggleAH then
- local args = {
- [1] = "AroundTheWorld",
- }
- game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
- end
- end
- end)
- AF:Toggle("Auto Downtown",function(bool)
- shared.toggleADW = bool
- end)
- spawn(function()
- while wait() do
- if shared.toggleADW then
- local args = {
- [1] = "Downtown Race",
- }
- game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
- end
- end
- end)
- AF:Toggle("Auto Area 51",function(bool)
- shared.toggleA51 = bool
- end)
- spawn(function()
- while wait() do
- if shared.toggleA51 then
- local args = {
- [1] = "Area51QuarterMile",
- }
- game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
- end
- end
- end)
- AF:Toggle("Auto Dock",function(bool)
- shared.toggleAD = bool
- end)
- spawn(function()
- while wait() do
- if shared.toggleAD then
- local args = {
- [1] = "DockQuarterMile",
- }
- game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
- end
- end
- end)
- AF:Toggle("Auto City",function(bool)
- shared.toggleAC = bool
- end)
- spawn(function()
- while wait() do
- if shared.toggleAC then
- local args = {
- [1] = "City Roundabout",
- }
- game:GetService("ReplicatedStorage").remotes.races.SignalInterest:FireServer(unpack(args))
- end
- end
- end)
- AF:Toggle("Auto Forfeit",function(bool)
- shared.toggleACFG = bool
- end)
- spawn(function()
- while wait() do
- if shared.toggleACFG then
- game:GetService("ReplicatedStorage").remotes.races.Forfeit:FireServer()
- end
- end
- end)
- local vu = game:GetService("VirtualUser")
- game:GetService("Players").LocalPlayer.Idled:connect(function()
- vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- wait(1)
- vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
- end)
- local CS = w:CreateFolder("Credit")
- CS:Label("Script: IReallyDontKnow",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
- CS:Label("GUI: Altix & Wally",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
- CS:DestroyGUI()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement