Advertisement
Guest User

Untitled

a guest
May 2nd, 2021
10,500
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. this is an Autoclicker for the game Trade Tower it's not complicated. It's just if you want to do something in the background auto-AFK grind all night you have these to grind.
  2. Code:
  3. _G.Farm = true
  4. loadstring(game:HttpGet('https://pastebin.com/raw/RkvASKRd', true))()
  5.  
  6. This is for Not Crashing when going AFK.
  7. Code:
  8. local VirtualUser=game:service'VirtualUser'
  9. game:service'Players'.LocalPlayer.Idled:connect(function()
  10. VirtualUser:CaptureController()
  11. VirtualUser:ClickButton2(Vector2.new())
  12. end)
  13.  
  14. This is for Auto Opening Crates (It has a cooldown for 7 seconds now, so every 7 seconds it will auto open a crate depending on what you input).
  15. Code:
  16. _G.Farm = false -- set to true to activate
  17.  
  18. while _G.Farm and wait(7) do
  19. local args = {
  20. [1] = "Emporer" -- Input here: Starter, Noobie, Learning, Business, Legendary, Ludicrous, Famous, Mythic, God, Emperor
  21. }
  22.  
  23. game:GetService("ReplicatedStorage").Events.OpenCase:InvokeServer(unpack(args))
  24. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement