Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- OrionLib:MakeNotification({
- Name = "AutoFarm V2",
- Content = "More Fields Soon! Join Discord For More Info",
- Image = "rbxassetid://4483345998",
- Time = 5
- })
- wait(0.001)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(487.1793518066406, 129.30654907226562, -205.8947296142578)
- wait(35)
- local folderName = "ClientTokens"
- local partName = "Token"
- local function moveToToken()
- local folder = workspace:WaitForChild(folderName)
- local part = nil
- local humanoid = game.Players.LocalPlayer.Character:WaitForChild("Humanoid")
- local excludedColors = { BrickColor.new("Pastel blue-green") }
- -- Find the nearest token that isn't excluded
- local nearestDist = math.huge
- for _, token in ipairs(folder:GetChildren()) do
- local dist = (token.Position - humanoid.RootPart.Position).magnitude
- local color = token.BrickColor
- if dist < nearestDist and not table.find(excludedColors, color) then
- nearestDist = dist
- part = token
- end
- end
- -- Move to the chosen token or execute the end-of-tokens code
- if part then
- humanoid:MoveTo(part.Position)
- else
- -- No suitable token was found, execute end-of-tokens code
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-370.99151611328125, 35.68232727050781, -136.2901153564453)
- wait(1)
- game:GetService("VirtualInputManager"):SendKeyEvent(true,Enum.KeyCode.E,false,game) -- Press E key.
- wait(65)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(487.1793518066406, 129.30654907226562, -205.8947296142578)
- wait(35)
- end
- end
- while true do
- moveToToken()
- wait(0.005)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement