AsasinulUmbrelor

Tapping Simulator Autofarm Script

Oct 7th, 2022 (edited)
1,923
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.78 KB | None | 0 0
  1. -- this sadly only works on a specific game, heres the link https://roblox.com/games/9498006165/ --
  2.  
  3. getgenv().autoTap = true;
  4. getgenv().autoRebirth = true;
  5. getgenv().bugEgg = false;
  6.  
  7. spawn(function()
  8.       while autoTap == true do
  9.       game:GetService("ReplicatedStorage").Events.Tap:FireServer()
  10.       wait()
  11.   end
  12. end)
  13.  
  14.  
  15.  
  16. spawn(function()
  17.     while autoRebirth == true do
  18.       local args = {[1] = 364500}
  19.       game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(unpack(args))
  20.       wait()
  21.     end
  22. end)
  23.  
  24.  
  25. spawn(function()
  26.     while bugEgg == true do
  27.         local args = {
  28.         [1] = {},
  29.         [2] = "Egg Name Here",
  30.         [3] = 1}
  31.     game:GetService("ReplicatedStorage").Events.HatchEgg:InvokeServer(unpack(args))
  32.     wait(32)
  33.   end
  34. end)
  35.  
Advertisement
Add Comment
Please, Sign In to add comment