Rebirth Champions X Script | AUTO FARM – OPEN SOURCE

Created by 0xMystic

Features:

  • Auto Farm presents
  • Change the topmost true to false if you wish to disable the auto farm
presents = game:GetService("Workspace").Scripts.PresentsCollect.Storage
basepart = Game.Players.LocalPlayer.Character.HumanoidRootPart
getgenv().Presents = true --Change to false if you want to stop the auto farm
while getgenv().Presents == true do task.wait()
   pcall(function()
       firetouchinterest(presents.Present.primary,basepart,0) --This collects the presents
       task.wait(.1)
       firetouchinterest(presents.Present.primary,basepart,1)
   end)
end
  • Auto Farm clicks, rebirths, craft all
getgenv().AutoFarm = true --Change to false if you want to stop the auto farm
while getgenv().AutoFarm == true do task.wait()
   game:GetService("ReplicatedStorage").Events.Click3:FireServer()
   game:GetService("ReplicatedStorage").Events.Rebirth:FireServer(3) --REBIRTH, 1 = 1 rebirth, 2 = 5 rebirths, 3 = 10 rebirths
   game:GetService("ReplicatedStorage").Functions.Request:InvokeServer("CraftAll",{}) --Crafts All
end