How to make a scrolling Image thing

So realy what im after is a scrolling patran like logos. Baseicly I want an image offset so I were to combine it with tiles and somehow make the gui behave like a texture for a screen gui I should get a scrolling thing.

there is a offset for texures but not Image lables :sob:
Screenshot 2025-04-02 184301
I wonder if theres something that behaves like this for image lables.
Screenshot 2025-04-02 184306

so im after going for this look:
Screenshot 2025-04-02 183112
it scrolls in the +1 x and +1 y. it will not go off the screen or frame and it will be an endless loop.
So how do I do stuff like this?

You can use TweenService to create a tween that adjusts the offset variables and causes the image to offset by the number of pixels that make up a tile. Once you have that tween you can make it loop endlessly (set the repeat value in the TweenInfo to be -1) and this creates an endless scrolling effect

the only issue with that is there is no OffsetStudsU or OffsetStudsV for image lables for a screen.

If you’re using an ImageLabel then you’re looking for the ImageRectOffset property

but I thought that was only for gifs
Screenshot 2025-04-02 190017

They use the same mechanic to move. A gif appears animated because the ‘image’ jumps from cell to cell to create an animation. If you tween a tiled image which is static between cells, it appears to scroll.

Increase the OffsetStuds … when it gets to the spot that will match where it started from set it back.

When I change it by even a small amount it goes blank. I idk how to do this stuff.

1 Like

The size has to be in pixels and you need to set both the X and Y

Try setting them both to 250, and you should see some of your image

1 Like

Holy moly it actaly works, Thank you so much :smiley:

1 Like