Pet Sim 1 Script Work -

-- Services local virtualInput = game:GetService("VirtualInputManager")

rebirthToggle.MouseButton1Click:Connect(function() autoRebirth = not autoRebirth rebirthToggle.Text = autoRebirth and "Auto Rebirth: ON" or "Auto Rebirth: OFF" end) Pet Sim 1 Script WORK

if autoRebirth then -- Check if rebirth available (example condition) local rebirthAvailable = player.leaderstats and player.leaderstats:FindFirstChild("Rebirths") and player.leaderstats.Rebirths.Value < 10 if rebirthAvailable then rebirth() wait(2) end end 0) btn.Size = UDim2.new(0

-- UI Elements local function createButton(name, yPos, text) local btn = Instance.new("TextButton") btn.Parent = mainFrame btn.Text = text btn.Position = UDim2.new(0.1, 0, yPos, 0) btn.Size = UDim2.new(0, 160, 0, 40) btn.BackgroundColor3 = Color3.fromRGB(70, 70, 70) btn.TextColor3 = Color3.fromRGB(255, 255, 255) return btn end 40) btn.BackgroundColor3 = Color3.fromRGB(70