The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Autofarm/Auto Collect Event Tokens script pastebin roblox
By Autofarm/Auto Collect Event Tokens on 2024-09-21 08:00 am | Syntax: LUA | Views: 9



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. _G.on = true -- Set to true/false to turn on/off
  2. local autoclick = false -- Set to true/false to turn on/off autoclick
  3.  
  4. local help = game.Workspace.Scene:GetDescendants()
  5. while _G.on == true do
  6.     wait()
  7.     for i, v in pairs(help) do
  8.         if v:IsA("TouchTransmitter") and v.Parent.Name == "ResourceNode" then
  9.             game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Parent.CFrame
  10.             keypress(0x57)
  11.             wait()
  12.             keypress(0x53)
  13.             if autoclick then
  14.                 mouse1click()
  15.             end
  16.             firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)
  17.             wait(0.05)
  18.             firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
  19.         end
  20.     end
  21. end