[SOLVED] Need alternatives to building water

Hi! We are attempting to build a water-based map for our game that includes large expanses of ocean. We believe it will be better for performance and look the way we want the game to look if we do not use terrain water.

For a previous game we made that had this map concept, we used water with several transparent stacked layers. The layers were as wide and long as you can make a brick and placed side-to-side. This caused a lot of graphical glitches, mostly with bubble chat, and we have tried a lot of things to fix it for our next game but we are not sure if it is possible to create good-looking expanses of water using parts.


image

We have tried unioning large baseplates together, but the stud limit prevents us from doing it this way. We cannot think of another approach to this.

Are there any alternatives or solutions to this problem?

Why don’t you just use water from the terrain editor roblox has.

Hi.
Have you tried using meshes? You could use a SpecialMesh object, set its MeshType to Brick and its scale to a larger width and length, e.g. (10000, 1, 10000). If your game relies on Touched events then this wouldn’t be a good idea, since they will not connect further away from the part extents.
In this case, the bubble chat problem would still persist though.

1 Like

It’s pretty buggy for us and we don’t have very powerful computers nor people who can manage terrain. We’re also not sure if it would fit the style and buildings surrounding it.

We will take a look tomorrow when our whole team is on and let you know the result, thanks for the suggestion.

EDIT: Thanks alot! It solved our problem.