-- [[ RuBO: Romantic Rayfield Edition ]] -- -- Optimized for Delta Executor local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() -- 1. THE ROMANTIC INTRO (Runs before the Menu) local function playRuBOIntro() local player = game.Players.LocalPlayer local sg = Instance.new("ScreenGui", player.PlayerGui) local txt = Instance.new("TextLabel", sg) txt.Size = UDim2.new(1, 0, 1, 0) txt.BackgroundTransparency = 1 txt.TextColor3 = Color3.fromRGB(255, 105, 180) -- Romantic Pink txt.TextSize = 30 txt.Font = Enum.Font.SpecialElite txt.TextTransparency = 1 local lines = {"In the code of life...", "RuBO finds the beauty.", "Loading your heart's desires..."} for _, line in ipairs(lines) do txt.Text = line game:GetService("TweenService"):Create(txt, TweenInfo.new(1), {TextTransparency = 0}):Play() task.wait(2) game:GetService("TweenService"):Create(txt, TweenInfo.new(1), {TextTransparency = 1}):Play() task.wait(1) end sg:Destroy() end playRuBOIntro() -- 2. CREATE THE WINDOW local Window = Rayfield:CreateWindow({ Name = "RuBO | Romantic Automation", LoadingTitle = "RuBO Project", LoadingSubtitle = "by RuBO", ConfigurationSaving = { Enabled = true, FolderName = "RuBORomance", FileName = "MainConfig" } }) -- 3. THE TABS local MainTab = Window:CreateTab("Automation", 4483362458) -- Home Icon -- 4. AUTO FARM TOGGLE local AutoFarmEnabled = false MainTab:CreateToggle({ Name = "Enable Auto-Farm (Passive)", CurrentValue = false, Flag = "AutoFarm", Callback = function(Value) AutoFarmEnabled = Value if Value then Rayfield:Notify({Title = "RuBO Status", Content = "Auto-Farm is now active, my love.", Duration = 3}) end end, }) -- 5. AUTO KILL TOGGLE local AutoKillEnabled = false MainTab:CreateToggle({ Name = "Enable Auto-Kill (Protection)", CurrentValue = false, Flag = "AutoKill", Callback = function(Value) AutoKillEnabled = Value end, }) -- 6. THE LOGIC LOOP task.spawn(function() while task.wait(0.5) do -- Auto Farm Logic if AutoFarmEnabled then -- Logic: Fire your game's specific collect event here print("RuBO: Harvesting for you...") end -- Auto Kill Logic if AutoKillEnabled then local char = game.Players.LocalPlayer.Character if char then for _, target in pairs(workspace:GetDescendants()) do if target:IsA("Humanoid") and target.Parent ~= char and target.Health > 0 then local root = target.Parent:FindFirstChild("HumanoidRootPart") if root then local dist = (char.HumanoidRootPart.Position - root.Position).Magnitude if dist < 40 then -- 40 Stud Range target:TakeDamage(10) -- Adjust based on your game's damage system end end end end end end end end) Rayfield:Notify({ Title = "RuBO Loaded", Content = "Your romantic journey starts now.", Duration = 5, Image = 4483362458, })