-
What do you want to achieve? I want to add infinite water to my game.
-
What is the issue? I can’t figure out how to do it. I even resorted to ChatGPT.
-
What solutions have you tried so far? I’ve tried the developer hub, but I can’t seem to find any help for terrain water. I’ve tried YouTube as well, but those tutorials were for making it look like it stretches out.
I don’t think you can make truly infinite water, what is the use case for the water? if i know that i may be able to help better
I searched infinite terrain water and got this promising plugin post within the first page of results: Infinite Terrain Plugin - #13 by Disobeyedcrab04
It’s from 2021 so I’m not sure it’ll still work as promised.
I need the infinite water since I don’t want the player to swim or bring a boat off the map, since there’s gonna be swimmable water.
I have that plugin, but I’m not sure if it can give infinite water. From what I’ve seen, it just spawns an infinitely going map.
You can fill a part with water or air or whatever.
local Part = script.Parent
game.Workspace.Terrain:FillBlock(Part.CFrame, Part.Size, Enum.Material.Water)
You can fill it with water, then fill it with air to remove the water later.
Make the part transparent and no collisions.
You can do this but u need to make water by using block. And exactly using 9 blocks. You will have to move blocks depends on where player is. For example if:
1 2 3
4 5 6
7 8 9
5 is middle block and player starts there.
If player moving from block 5 to 6 then u replace blocks 1,4,7 to the right side. If player move from 6 to 9 then you replace 3 top block to the bottom. I hope you understand.
I never thought of that! Thanks a lot!
This is at it’s core what Infinite Terrain is doing. That plugin is a bit broken. Fixable but broken as is.