Advertisement
trixade

Rebirth Champion Halloween Auto Farm 2022

Oct 23rd, 2022 (edited)
1,030
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.75 KB | None | 1 0
  1. -- Pumpkins Autofarms For The 'Rebirth Champions X Halloween Event'
  2.  
  3. _G.Script_Enabled = false -- Here you can enable / disable the script by writing 'True / False'
  4.  
  5. local config = {
  6.     autofarms = {
  7.         TeleportMethod = {
  8.             Tp = false, -- Enable / Disable the Teleport Auto Farm [True/False]
  9.             TpDelay = 5, -- Here you can Edit the Speed of the Teleport Farm
  10.         },
  11.         FireTouchMethod = {
  12.             FiretouchInterest = false, -- Enable / Disable the FireTouchInterest Auto Farm [True/False]
  13.             FireTouchDelay = 5, -- Here you can Edit the Speed of the FireTouchInterest Farm
  14.         },
  15.     },
  16. }
  17.  
  18. local remote = game:GetService("ReplicatedStorage").Events
  19. local path = game:GetService("Workspace").Scripts.PumpkinsCollect.Storage
  20. local lplr = game.Players.LocalPlayer
  21. local body = lplr.Character.HumanoidRootPart
  22.  
  23. warn("Developed by Trix#2794")
  24.  
  25. remote.WorldBoost:FireServer("Halloween")
  26.  
  27. while config.autofarms.TeleportMethod.Tp do
  28.         for i, v in pairs(path:GetDescendants()) do
  29.             if v.Name == "main" and v:IsA("MeshPart") then
  30.                 if _G.Script_Enabled ~= true then break end
  31.                     body.CFrame = v.CFrame
  32.                 task.wait(config.autofarms.TeleportMethod.TpDelay)
  33.             end
  34.         end
  35.     wait()
  36. end
  37. while config.autofarms.FireTouchMethod.FiretouchInterest do
  38.         for i, v in pairs(path:GetDescendants()) do
  39.             if v:IsA("TouchTransmitter") then
  40.                 if _G.Script_Enabled ~= true then break end
  41.                     firetouchinterest(v.Parent,body,1)
  42.                     firetouchinterest(v.Parent,body,0)
  43.                 task.wait(config.autofarms.FireTouchMethod.FireTouchDelay)
  44.             end
  45.         end
  46.     wait()
  47. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement