How to create an effect like this

Saw this on a youtube video and did some more research but couldn’t find how to make anything like this.
It is a time erase effect like seen in this video

if anyone could point me in the right direction it would help heaps, thanks!

2 Likes

It’s all done client-side, so you would use a local script. Then it plays a sound effect with a GUI animation, and then collects all of the parts in the game and plays (what looks like) tween animations on said parts, along with changing the skybox.

Hmm ok, i’ll give it a try once I get time.

0:14
GUI is created, which contains an ImageLabel with a blurry image. The image is moved across the screen.
A sound effect is played. Music starts.
Camera is shaken (there are a bunch of screenshake effect scripts in the toolbox)

0:16
Camera Field of View is increased (with a tween, as to increase smoothly).
A ColorCorrectionEffect increases contrast and saturation.

0:16
Skybox is changed. Field of View is set to normal.
All parts other than e.g. players are cloned and made non-collideable, and the originals are made invisible.
The clones are moved/rotated randomly, then, after a brief wait, begin tweening their Size toward (0, 0, 0), then disappear entirely.

0:18
Color correction has faded (tweened) back out by now.

0:28
GUI moves across the screen again. All parts are restored by making them visible again. Skybox is restored. Music stops.

This is all entirely local, so no other players see the effect or fall off the buildings.

7 Likes