Keimu

Legends Of Speed ⚡ AutoOrbs, AutoHoops, AutoGems

Apr 2nd, 2023
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. getgenv().AutoFarm = true
  2.  
  3. local LocalPlayer = game:GetService("Players").LocalPlayer
  4. while getgenv().AutoFarm do
  5. pcall(function()
  6. for _, v in pairs(workspace.Hoops:GetDescendants()) do -- > Hoops folder
  7. if v:IsA("TouchTransmitter") then
  8. firetouchinterest(LocalPlayer.Character.HumanoidRootPart, v.Parent, 0) -- > Makes the LocalPlayer's HumanoidRootPart fire the TouchTransmitter's Parent with the "0" argument.
  9. wait()
  10. firetouchinterest(LocalPlayer.Character.HumanoidRootPart, v.Parent, 1) -- > Makes the LocalPlayer's HumanoidRootPart un-fire the TouchTransmitter's Parent with the "1" argument.
  11. end
  12. end
  13. for _, v in pairs(workspace.orbFolder:GetDescendants()) do -- > Orbs + Gems folder
  14. if (v.Name == "outerOrb" or v.Name == "outerGem") then
  15. firetouchinterest(LocalPlayer.Character.HumanoidRootPart, v, 0) -- > Makes the LocalPlayer's HumanoidRootPart fire the 's Orb/Gem with the "0" argument.
  16. wait()
  17. firetouchinterest(LocalPlayer.Character.HumanoidRootPart, v, 1) -- > Makes the LocalPlayer's HumanoidRootPart un-fire the 's Orb/Gem with the "1" argument.
  18. end
  19. end
  20. wait()
  21. end)
  22. end
Advertisement
Add Comment
Please, Sign In to add comment