Image ScaleType (Tile) Doesn't Work

Basically I’m trying to make an image tile But it Doesn’t work.
If you don’t know what does Tile mean, Then It’s basically like Textures in Building
When you make the Part Bigger it will increase the texture.

For Images it doesn’t work My ScaleType property is tile.
image
Image
image

2 Likes

You have to use the TileSize property to adjust it, yours is likely the default, which won’t appear to tile at all (UDim2(1, 0, 1, 0)).

For example, UDim2(0.5, 0, 0.5, 0) will make four copies of the image in the label.

image

image

2 Likes

Oh, Wow I’ve never knew that Before Thanks!

2 Likes