Random example video I found: https://www.youtube.com/watch?v=2lnBuukEPs8
While I’ve seen a lot of posts on this, the main problem with them is that they’re gigantic background images, so size isn’t an issue and is therefore used to create the illusion of a repeating background
My problem is that I want a repeating background for a smaller gui (the stars in the background of my chat box)
“While I’ve seen a lot of posts on this, the main problem with them is that they’re gigantic background images, so size isn’t an issue and is therefore used to create the illusion of a repeating background
My problem is that I want a repeating background for a smaller gui (the stars in the background of my chat box)”
You might be able to use a Giant Image, but Clip it in a way that it’s only visible inside the small UI you are talking about.
You could convert the Frame into a CanvasGroup, or turn on ClipsDescendants in the Frame’s properties (I imagine CanvasGroup would be more reliable for this purpose).
And then with some code, you can constantly set the size of the image to the Screen’s pixel size. This way the image will be the same size of the screen, but only the portion inside the button will be visible.