24/7 Automated Livestream Sales System

Set up your faceless automated sales machine in under 2 hours

Step 1: Softr Setup

Create your product catalog using our Softr template

Get Template

Step 2: Make.com

Import our pre-built automation scenarios

Download Blueprints

Step 3: HeyGen

Create your AI presenter videos

Tutorial

Complete System Blueprint

Make.com Automation Scenarios

Pre-built JSON blueprints for your automations:

{
  "scenario": "livestream_automation",
  "steps": [
    {
      "module": "restream",
      "action": "schedule_stream",
      "params": {
        "title": "{{product.name}} - Limited Offer!",
        "description": "Watch our AI presenter explain {{product.name}}",
        "start_time": "auto_rotate"
      }
    },
    {
      "module": "lemon_squeezy",
      "action": "create_webhook",
      "params": {
        "url": "https://yourdomain.com/webhook",
        "events": ["order_created"]
      }
    }
  ]
}

Scarcity Counter Formula

JavaScript code for dynamic countdowns:

function startCountdown(endTime) {
  const timer = setInterval(() => {
    const now = new Date().getTime();
    const distance = endTime - now;
    
    const hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
    const minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
    const seconds = Math.floor((distance % (1000 * 60)) / 1000);
    
    document.getElementById("countdown").innerHTML = 
      `${hours}h ${minutes}m ${seconds}s`;
      
    if (distance < 0) {
      clearInterval(timer);
      document.getElementById("countdown").innerHTML = "OFFER EXPIRED";
    }
  }, 1000);
}

Quick Start Resources