Advertisement
2AreYouMental110

speed simulator (WIP)

Jan 3rd, 2022
1,222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.97 KB | None | 0 0
  1. -- ok not gonna lie i dont think any wip is gonna be finished
  2.  
  3.  
  4.  
  5.  
  6. if game.PlaceId == 7047488135 then
  7.     -- https://www.roblox.com/games/7047488135/Speed-Simulator
  8.  
  9.     getgenv().autoball1 = false
  10.     getgenv().autoball2 = false
  11.     getgenv().autoball3 = false
  12.     getgenv().autohoop = false
  13.     getgenv().autohooptp = false
  14.     getgenv().automove = false
  15.     getgenv().autotwoks = false
  16.  
  17.     local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  18.     local Window = Library.CreateLib("speed simulator", "Sentinel")
  19.     local a = Window:NewTab("farming")
  20.     local b = Window:NewTab("other")
  21.  
  22.     local a1 = a:NewSection("auto collect")
  23.     local b1 = b:NewSection("other")
  24.  
  25.     a1:NewToggle("auto collect zone 1", "yeah", function(bool)
  26.         getgenv().autoball1 = bool
  27.         print(on)
  28.         if bool then
  29.             ball1()
  30.         end
  31.     end)
  32.  
  33.     a1:NewToggle("auto collect zone 2", "yeah2", function(bool)
  34.         getgenv().autoball2 = bool
  35.         print(on)
  36.         if bool then
  37.             ball2()
  38.         end
  39.     end)
  40.  
  41.     a1:NewToggle("auto collect zone 3", "yeah3", function(bool)
  42.         getgenv().autoball3 = bool
  43.         print(on)
  44.         if bool then
  45.             ball3()
  46.         end
  47.     end)
  48.  
  49.     a1:NewToggle("auto collect hoops", "you have to move for it to work", function(bool)
  50.         getgenv().autohoop = bool
  51.         print(on)
  52.         if bool then
  53.             hoop()
  54.         end
  55.     end)
  56.  
  57.     a1:NewToggle("auto collect hoops (tp)", "you dont have to move for it to work", function(bool)
  58.         getgenv().autohooptp = bool
  59.         print(on)
  60.         if bool then
  61.             hooptp()
  62.         end
  63.     end)
  64.  
  65.     b1:NewToggle("auto move (tp)", "reset the velocity", function(bool)
  66.         getgenv().automove = bool
  67.         print(on)
  68.         if bool then
  69.             move()
  70.         end
  71.     end)
  72.  
  73.     b1:NewToggle("auto 2 thousand steps", "e", function(bool)
  74.         getgenv().autotwoks = bool
  75.         print(on)
  76.         if bool then
  77.             twoks()
  78.         end
  79.     end)
  80.  
  81.  
  82.     function ball1()
  83.         spawn(function()
  84.             while getgenv().autoball1 == true do
  85.             local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  86.                     for i, v in pairs(game:GetService("Workspace").ballsFolder.Zone1:GetDescendants()) do
  87.                     if v.Name == "TouchInterest" and v.Parent then
  88.                         firetouchinterest(player, v.Parent, 0)
  89.                         wait()
  90.                         firetouchinterest(player, v.Parent, 1)
  91.                         wait(0.05)
  92.                     end
  93.                 end
  94.             end
  95.         end)
  96.     end
  97.  
  98.     function ball2()
  99.         spawn(function()
  100.             while getgenv().autoball2 == true do
  101.             local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  102.                     for i, v in pairs(game:GetService("Workspace").ballsFolder.Zone2:GetDescendants()) do
  103.                     if v.Name == "TouchInterest" and v.Parent then
  104.                         firetouchinterest(player, v.Parent, 0)
  105.                         wait()
  106.                         firetouchinterest(player, v.Parent, 1)
  107.                         wait(0.05)
  108.                     end
  109.                 end
  110.             end
  111.         end)
  112.     end
  113.  
  114.     function ball3()
  115.         spawn(function()
  116.             while getgenv().autoball3 == true do
  117.             local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  118.                     for i, v in pairs(game:GetService("Workspace").ballsFolder.Zone3:GetDescendants()) do
  119.                     if v.Name == "TouchInterest" and v.Parent then
  120.                         firetouchinterest(player, v.Parent, 0)
  121.                         wait()
  122.                         firetouchinterest(player, v.Parent, 1)
  123.                         wait(0.05)
  124.                     end
  125.                 end
  126.             end
  127.         end)
  128.     end
  129.  
  130.  
  131.  
  132.  
  133.     function hoop()
  134.         spawn(function()
  135.             while getgenv().autohoop == true do
  136.             local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  137.                     for i, v in pairs(game:GetService("Workspace").Rings:GetDescendants()) do
  138.                     if v.Name == "TouchInterest" and v.Parent then
  139.                         firetouchinterest(player, v.Parent, 0)
  140.                         wait()
  141.                         firetouchinterest(player, v.Parent, 1)
  142.                         wait(.2)
  143.                         local playerhum = game.Players.LocalPlayer.Character.HumanoidRootPart
  144.                         playerhum.Position = playerhum.Position
  145.                     end
  146.                 end
  147.             end
  148.         end)
  149.     end
  150.  
  151.     function move()
  152.         spawn(function()
  153.             while getgenv().automove == true do
  154.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1988, 10, -2445)
  155.                 wait(.8)
  156.             end
  157.         end)
  158.     end
  159.  
  160.     function hooptp()
  161.         spawn(function()
  162.             while getgenv().autohooptp == true do
  163.                 -- https://devforum.roblox.com/t/how-to-teleport-all-players-to-a-random-part/570871/5
  164.                 local Parts = game:GetService("Workspace").Rings:GetChildren()
  165.                 local SelectedPart = Parts[math.random(1, #Parts)]
  166.                 game.Players.LocalPlayer.Character:MoveTo(SelectedPart.Position)
  167.                 wait(.1)
  168.                 game.Players.LocalPlayer.Character:MoveTo(SelectedPart.Position)
  169.                 wait(.1)
  170.                 game.Players.LocalPlayer.Character:MoveTo(SelectedPart.Position)
  171.                 wait(.1)
  172.                 game.Players.LocalPlayer.Character:MoveTo(SelectedPart.Position)
  173.                 wait(.1)
  174.             end
  175.         end)
  176.     end
  177.  
  178.     function twoks()
  179.         spawn(function()
  180.             while getgenv().autotwoks == true do
  181.                 local A_1 = "toParkourCourse"
  182.                 local Event = game:GetService("ReplicatedStorage").Networking.warningEvent
  183.                 Event:FireServer(A_1)
  184.                 wait(.1)
  185.                 local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  186.                 for i, v in pairs(game:GetService("Workspace")["teleportations/barrier"]["touch_parts"].toParkourCourse:GetDescendants()) do
  187.                     if v.Name == "TouchInterest" and v.Parent.Name == "circleInner" then
  188.                         firetouchinterest(player, v.Parent, 0)
  189.                         wait()
  190.                         firetouchinterest(player, v.Parent, 1)
  191.                         wait()
  192.                     end
  193.                 end
  194.                 wait()
  195.                 local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  196.                 for i, v in pairs(game:GetService("Workspace").ChestsA:GetDescendants()) do
  197.                     if v.Name == "TouchInterest" and v.Parent.Name == "circleInner" then
  198.                         firetouchinterest(player, v.Parent, 0)
  199.                         wait()
  200.                         firetouchinterest(player, v.Parent, 1)
  201.                         wait()
  202.                     end
  203.                 end
  204.                 wait(.2)
  205.                 local A_1 = "toZone1fromParkour"
  206.                 local Event = game:GetService("ReplicatedStorage").Networking.warningEvent
  207.                 Event:FireServer(A_1)
  208.                 wait()
  209.                 local player = game.Players.LocalPlayer.Character.HumanoidRootPart
  210.                 for i, v in pairs(game:GetService("Workspace")["teleportations/barrier"]["touch_parts"].toParkourCourse:GetDescendants()) do
  211.                     if v.Name == "TouchInterest" and v.Parent.Name == "circleInner" then
  212.                         firetouchinterest(player, v.Parent, 0)
  213.                         wait()
  214.                         firetouchinterest(player, v.Parent, 1)
  215.                         wait()
  216.                     end
  217.                 end
  218.             end
  219.         end)
  220.     end
  221.  
  222.  
  223.  
  224. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement