Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- 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.
- Code:
- _G.Farm = true
- loadstring(game:HttpGet('https://pastebin.com/raw/RkvASKRd', true))()
- This is for Not Crashing when going AFK.
- Code:
- local VirtualUser=game:service'VirtualUser'
- game:service'Players'.LocalPlayer.Idled:connect(function()
- VirtualUser:CaptureController()
- VirtualUser:ClickButton2(Vector2.new())
- end)
- 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).
- Code:
- _G.Farm = false -- set to true to activate
- while _G.Farm and wait(7) do
- local args = {
- [1] = "Emporer" -- Input here: Starter, Noobie, Learning, Business, Legendary, Ludicrous, Famous, Mythic, God, Emperor
- }
- game:GetService("ReplicatedStorage").Events.OpenCase:InvokeServer(unpack(args))
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement