ByGoalZ
(ByGoalZ)
November 1, 2021, 7:31am
#1
Hello,
I want to have a normal part but the part should be water. With water I mean, normal water in which you can swim. Is there any way to get that? Terrain wont work for me, because its a Tycoon and I can’t move/duplicate Terrain or make it buyable via buttons.
I know the plugin “Part to Terrain” but I don’t want it to be Terrain, so this won’t work for me.
Any ideas?
Thank you.
1 Like
ByGoalZ
(ByGoalZ)
November 1, 2021, 9:15am
#3
How do I do that? Inserting a script or a LocalScript? And what do I need to type? Im not good with scripting
ByGoalZ
(ByGoalZ)
November 15, 2021, 1:45pm
#4
I still need help with that.
Qin2007
(Qin2007)
November 15, 2021, 2:43pm
#5
so far i know there is not a partType of water
this is posible
maybe learn more scripting
ByGoalZ:
I know the plugin
you dont need a plugin
talking about scripts is off topic here so message me if you want to talk about scripts
Gruetfal
(Gruetfal)
November 15, 2021, 5:10pm
#6
Hello
You can actually copy the terrain and paste it in anyway if you would like. So idk what you mean by you not being able to duplicate it.
Duplicating Regions
You can also copy and paste full selected regions — just click Copy and then Paste to create a new region.
Via Developer Site.
As for the part, you can make a part with a script to make it move. Although which one are you trying to accomplish:
Have the water texture move.
Have the parts together move (This is not recommended).
ByGoalZ
(ByGoalZ)
November 15, 2021, 5:12pm
#7
No, I need a block of water which has all the water physics (waves not mandatory but you need to swim in the block) and it must be moveable like a normal part it cant be normal terrain because that would break my tycoon system
Qin2007
(Qin2007)
November 15, 2021, 5:54pm
#8
ByGoalZ
(ByGoalZ)
November 15, 2021, 6:01pm
#9
So it wont work? But how can other games make buyable seas where you can swim
Qin2007
(Qin2007)
November 15, 2021, 6:38pm
#10
it works
use
swimming pool (7.9 KB)
ByGoalZ
(ByGoalZ)
November 15, 2021, 6:45pm
#11
Uhm thats just a blue part? I cant swim or anything.
ByGoalZ
(ByGoalZ)
November 15, 2021, 6:46pm
#12
Oh got it, thats awesome. Can i make the script automatically, so if someone touches a part it will be turned into water?
Oetzi_CS
(Oetzi_CS)
December 17, 2021, 5:36pm
#13
Try this:
script.Parent.Touched:connect(function(hit)
game.Workspace.Terrain:FillBlock(script.Parent.CFrame, script.Parent.Size, Enum.Material.Water)
wait(0.05)
script.Parent:remove()
end)
ByGoalZ
(ByGoalZ)
December 17, 2021, 5:39pm
#14
Hey,
thanks for the help but I already figured it out.
i am sorry for me bringing u back
Can u help me in Swimable Water In Voxel Sandbox Help needed in how u done it