Advertisement
Honansik

Blox Hunt Auto Tokens Farm Script

Jan 25th, 2022
1,113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.13 KB | None | 0 0
  1. -- ____  _           _   _             _
  2. --| __ )| | _____  _| | | |_   _ _ __ | |_
  3. --|  _ \| |/ _ \ \/ | |_| | | | | '_ \| __|
  4. --| |_) | | (_) >  <|  _  | |_| | | | | |_
  5. --|____/|_|\___/_/\_|_| |_|\__,_|_| |_|\__|
  6. -- developed by supra1234
  7.  
  8. _G.Autofarm = true; -- Change to false to end farming
  9. _G.Antiafk = false;  -- Change to true to not get kicked
  10. _G.Antiteleport = false;  -- Change to true to block teleports
  11.  
  12.  
  13. spawn(function()
  14.      while _G.Autofarm == true do
  15.          local args = {[1] = 1}
  16. game:GetService('Players').LocalPlayer.Character:FindFirstChild('HumanoidRootPart').CFrame = CFrame.new(-92.9, 61.9, 143.5)
  17.          wait()
  18.      end
  19. end)
  20.  
  21. spawn(function()
  22.      while _G.Antiteleport == true do
  23.          local args = {[1] = 1}
  24. local A_1 = "AFK"
  25. local Event = game:GetService("ReplicatedStorage").GameFunctions.ChangeSettings
  26. Event:FireServer(A_1)
  27.          wait(9999)
  28.      end
  29.  end)
  30.  
  31. spawn(function()
  32.      while _G.Antiafk == true do
  33.          local args = {[1] = 1}
  34. loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Anti-Kick/main/Anti%20Kick.lua"))()
  35.          wait(9999)
  36.      end
  37.  end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement