Slides keeps a version history in the same way Docs does, and a paste arrives there as a single instant edit. If you want text to appear the way typing appears, it has to arrive as keystrokes. Here are the two practical ways to do that.
Google Slides has version history under File, and a paste shows up as one large change at one timestamp. To make text arrive gradually, send it as keystrokes: AutoHotkey is free on Windows, copypaster works on Windows, macOS and Linux with human-like timing. Neither changes what a similarity or AI checker says about the words.
Click into the text box you want to fill, start your auto typer, and let it send the text as keystrokes. Slides records the result the same way it records real typing, because as far as the editor is concerned it is real typing.
The reason to bother is version history. Slides stores named and automatic revisions under File, then Version history, and a pasted block appears as one large insertion at a single moment. Text typed in appears as a sequence of smaller edits over time.
AutoHotkey v2 can send the contents of your clipboard as keystrokes. Save this as type.ahk, run it, click into a Slides text box, and press F9.
#Requires AutoHotkey v2.0F9:: { for ch in StrSplit(A_Clipboard) { SendText ch, Sleep 60 }}
It works and it costs nothing. The catch is that a fixed 60 ms gap between every character is not what human typing looks like: real typing varies, pauses at punctuation, and slows at the start of words. A perfectly even rhythm is its own kind of signature.
Copy your text, open copypaster, paste it into the pill, and press play. After a three second countdown it types into whatever window is in front, so click into your Slides text box during the countdown.
The difference from the script is the timing model: intervals are drawn from a distribution rather than fixed, pauses land at sentence and paragraph boundaries, and speed drifts slightly over a long run the way a person tires. There is a typo setting too, which inserts and corrects occasional mistakes.
A 400 word speaker note at 65 WPM takes roughly six minutes. That is the real cost of this approach and it is worth knowing before you start.
Each text box on a slide is its own element, so an auto typer fills the one your cursor is in and nothing else. There is no way to have it tab between placeholders reliably, because Slides handles focus differently depending on whether you are editing text or have the box selected as an object.
Speaker notes work the same way: click into the notes pane first, then run the typer. If you are filling several boxes, do them one at a time and click into each one during the countdown.
The thing to watch is that Slides autosaves constantly, so interrupting a run mid-way leaves partial text in the deck exactly as stopping mid-sentence would. Both AutoHotkey and copypaster can be stopped, and in both cases what has already been typed stays typed.
We say this on every page for a reason: an auto typer shapes how text arrives, and nothing else. If what you need is different writing, this is the wrong tool.
Yes. File, then Version history, then See version history shows automatic and named revisions with timestamps and the person who made each change, the same as Google Docs.
Click into the text box, then run an auto typer that sends your clipboard as keystrokes. AutoHotkey does this free on Windows; copypaster does it on Windows, macOS and Linux with human-like timing rather than a fixed interval.
Yes. A paste appears as a single large change at one timestamp, because that is what it is. Typing the same text produces a series of smaller edits spread over time.
Between 50 and 75 WPM reads as ordinary typing for most people. Above roughly 120 WPM the pacing stops being plausible, and perfectly even intervals look mechanical whatever the speed.
Yes. Click into the speaker notes pane first so the cursor is there, then start the typer. It types wherever the cursor is, and notes are just another text field.
No. AI detectors and similarity checkers analyse the words themselves, not how they arrived. Typing the same text produces the same result as pasting it.
copypaster types your clipboard as real keystrokes, with varied intervals and pauses rather than a fixed rhythm. Windows, macOS and Linux. Free trial, 5 pastes, no credit card. It shapes edit history, not similarity scores.
Download copypaster