How can I recreate something like this?

Hello Developers.

I’m going to start working on the title screen for my game and wanted to replicate something like this:

There are two key things inside of the title screen inside of the videos which I wanna try recreating, those are:

  1. The moving red and blue squares which slowly fade when they go to the middle.
  2. The cinematic bars flash whenever the music hits a beat.

How can I replicate this?

1 Like
  1. a lot of tweening for the effects. and to spawn the squares either “cloning” or “instance.new”
  2. it seems to just be an estimate. the song itself is quite linear in its note patterns. it may be possible to sync it precisely with audio, but I don’t think it is a normal scripting task. playbackloudness property seems to be a popular choice for trying to estimate it by scripting (you can try looking it up - there are some devforum posts about it)
1 Like

Alright then, I’ll do that later, thanks!

2 Likes