Advertisement
gerisx

auto farm token ant simulator

Mar 16th, 2023 (edited)
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. OrionLib:MakeNotification({
  2. Name = "AutoFarm V2",
  3. Content = "More Fields Soon! Join Discord For More Info",
  4. Image = "rbxassetid://4483345998",
  5. Time = 5
  6. })
  7.  
  8. wait(0.001)
  9.  
  10. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(487.1793518066406, 129.30654907226562, -205.8947296142578)
  11. wait(35)
  12.  
  13. local folderName = "ClientTokens"
  14. local partName = "Token"
  15.  
  16. local function moveToToken()
  17. local folder = workspace:WaitForChild(folderName)
  18. local part = nil
  19. local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
  20. local excludedColors = { BrickColor.new("Pastel blue-green") }
  21.  
  22. -- Find the nearest token that isn't excluded
  23. local nearestDist = math.huge
  24. for _, token in ipairs(folder:GetChildren()) do
  25. local dist = (token.Position - humanoid.RootPart.Position).magnitude
  26. local color = token.BrickColor
  27. if dist < nearestDist and not table.find(excludedColors, color) then
  28. nearestDist = dist
  29. part = token
  30. end
  31. end
  32.  
  33. -- Move to the chosen token or execute the end-of-tokens code
  34. if part then
  35. humanoid:MoveTo(part.Position)
  36. else
  37. -- No suitable token was found, execute end-of-tokens code
  38. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-370.99151611328125, 35.68232727050781, -136.2901153564453)
  39. wait(1)
  40. game:GetService("VirtualInputManager"):SendKeyEvent(true,Enum.KeyCode.E,false,game) -- Press E key.
  41. wait(65)
  42. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(487.1793518066406, 129.30654907226562, -205.8947296142578)
  43. wait(35)
  44. end
  45. end
  46.  
  47. while true do
  48. moveToToken()
  49. wait(0.005)
  50. end
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement