Feedback on my scrolling water texture!

Using layered Textures and inserting a script into the textures, I made a simple body of water. What are your thoughts?

I’m working on making a better scrolling script usingTweenService, and this is what I have now:

while true do
script.Parent.OffsetStudsU += 0.02
script.Parent.OffsetStudsV -= 0.02
wait(0.05)
if script.Parent.OffsetStudsU == 3.2 then
	script.Parent.OffsetStudsU = 0
end
if script.Parent.OffsetStudsV == -3.2 then
	script.Parent.OffsetStudsV = 0
end

end

I’ll also take any suggestions on creating texture designs as well. Thx for reading!

3 Likes

It looks good here’s some feedback:
maybe makes the animation smoother by using a client-sided tween service.
maybe make it more 3d.

Hope this helps. :+1:

2 Likes