--// Load Xeno UI local Xeno = loadstring(game:HttpGet("https://raw.githubusercontent.com/itay299/RobloxScripts/main/Scripts/!MyLibrary"))() --// UI local UI = Xeno:Create("Auto Farm") --// Services local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = Players.LocalPlayer local Remotes = ReplicatedStorage:WaitForChild("Remotes") local UpgradeBuyTokens = Remotes:WaitForChild("UpgradeBuyTokens") local ConvertRequest = Remotes:WaitForChild("ConvertRequest") local RebirthEvent = Remotes:WaitForChild("RebirthEvent") --// States local AutoGain = false local AutoConvert = false local AutoVIPCoin = false local AutoRebirth = false --// Toggles UI:Toggle("Auto Buy Gain", false, function(v) AutoGain = v end, "AutoGain") UI:Toggle("Auto Convert", false, function(v) AutoConvert = v end, "AutoConvert") UI:Toggle("Auto VIP Coin", false, function(v) AutoVIPCoin = v end, "AutoVIPCoin") UI:Toggle("Auto Rebirth", false, function(v) AutoRebirth = v end, "AutoRebirth") --// Auto Buy Gain (0.25s) task.spawn(function() while true do if AutoGain then pcall(function() UpgradeBuyTokens:FireServer("Gain") end) end task.wait(0.25) end end) --// Auto Convert (5s) task.spawn(function() while true do if AutoConvert then pcall(function() ConvertRequest:FireServer() end) end task.wait(5) end end) --// Auto Rebirth (3s) task.spawn(function() while true do if AutoRebirth then pcall(function() RebirthEvent:FireServer() end) end task.wait(3) end end) --// Auto VIP Coin (0.5s) task.spawn(function() while true do if AutoVIPCoin then pcall(function() local char = player.Character or player.CharacterAdded:Wait() local root = char:WaitForChild("HumanoidRootPart") local folder = workspace:WaitForChild("RedCoins") local targets = {} for _, v in ipairs(folder:GetChildren()) do local union = v:FindFirstChild("Union") if union then table.insert(targets, union) end end if #targets > 0 then root.CFrame = targets[math.random(1, #targets)].CFrame end end) end task.wait(0.5) end end)