Well, if I'm not wrong according to the new guidelines we can keep sharing prompts but avoid using real people if you share video with your prompts, this also applies with reference pictures.
Site link (RSW AI STUDIO): https://www.removesorawatermark.online/grok-imagine-video-1-5-video-generator
Similar sites (free Grok I2V with daily credits):
https://www.easemate.ai/es/grok-imagine-ai-video-generator
https://socialsight.ai/apps/video-generator
https://www.oiioii.ai/login
you can bypass moderation in some words by adding a symbol like _ between each letter, I use this tool for that https://www.i2text.com/es/insert-symbol-between-letters
Creepslend Auto retry script (for RSW AI STUDIO)
Before generate your video please remember to leave this unchecked or your video will be posted on INSPIRATIONS for everyone to see on the site

Site link (RSW AI STUDIO): https://www.removesorawatermark.online/grok-imagine-video-1-5-video-generator
Similar sites (free Grok I2V with daily credits):
https://www.easemate.ai/es/grok-imagine-ai-video-generator
https://socialsight.ai/apps/video-generator
https://www.oiioii.ai/login
you can bypass moderation in some words by adding a symbol like _ between each letter, I use this tool for that https://www.i2text.com/es/insert-symbol-between-letters
Creepslend Auto retry script (for RSW AI STUDIO)
Code:
// ==UserScript==
// @name Auto Retry Generation
// @namespace http://tampermonkey.net/
// @version 1.5
// @description Automatically clicks the generate button and displays a temporary notification when the latest generation fails.
// @author You
// @match https://*.removesorawatermark.online/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
const FAILURE_MESSAGE = "Generation failed due to high service load. Please retry later.";
let isRetrying = false;
function showRetryingBanner(cardElement) {
const banner = document.createElement('div');
banner.style.position = 'fixed';
banner.style.top = '20px';
banner.style.left = '50%';
banner.style.transform = 'translateX(-50%)';
banner.style.backgroundColor = '#ef4444';
banner.style.color = '#ffffff';
banner.style.padding = '16px 24px';
banner.style.borderRadius = '8px';
banner.style.zIndex = '999999';
banner.style.fontWeight = 'bold';
banner.style.fontFamily = 'sans-serif';
banner.style.boxShadow = '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)';
banner.style.display = 'flex';
banner.style.alignItems = 'center';
banner.style.justifyContent = 'center';
const textNode = document.createElement('span');
textNode.textContent = 'Retrying...';
banner.appendChild(textNode);
document.body.appendChild(banner);
setTimeout(() => {
if (document.body.contains(banner)) {
banner.remove();
}
}, 3000);
cardElement.setAttribute('data-retried', 'true');
}
function clickGenerateButton() {
const buttons = document.querySelectorAll('button');
for (let i = 0; i < buttons.length; i++) {
if (buttons[i].textContent.includes('Generate') && buttons[i].classList.contains('bg-emerald-500')) {
buttons[i].click();
return true;
}
}
return false;
}
function checkDOMForFailure() {
if (isRetrying) return;
const spans = document.querySelectorAll('span');
for (let i = 0; i < spans.length; i++) {
if (spans[i].textContent.trim() === FAILURE_MESSAGE) {
let currentElement = spans[i];
let isFirstItem = false;
while (currentElement && currentElement !== document.body) {
let parent = currentElement.parentElement;
if (parent && parent.classList.contains('space-y-4')) {
if (parent.firstElementChild === currentElement) {
isFirstItem = true;
}
break;
}
currentElement = parent;
}
if (isFirstItem && !currentElement.hasAttribute('data-retried')) {
isRetrying = true;
if (clickGenerateButton()) {
showRetryingBanner(currentElement);
}
setTimeout(() => {
isRetrying = false;
}, 5000);
break;
}
}
}
}
setInterval(checkDOMForFailure, 2000);
})();

