How do I make a moving loading screen?

Ive seen these games where it has a moving background. Heres a example How do I make something like this? - YouTube How could I go about making something like this?

1 Like

You can, the simplest option, have a bunch of pizza images on separate ImageLabels and just Tween them

1 Like

would this effect performance? Like tweening tons would it create lag?

if you dont want it to make lag

  1. don’t add too many image labels
  2. make the loading screen short
  3. make sure it deletes the image labels when it finishes loading
1 Like

you could create the same UI 3 times outside the screen with the positions:

(-1,0,0,0)
(-1,0,-1,0)
(0,0,-1,0)

then you could try tweening them just like in the image below (i suck at drawing)

once the tween finishes you could reposition them, and have a loop make it work.
theres other ways of doing it too but this is one of em

1 Like