wait(1)
Directs = {Vector3.new(0,-4,0),Vector3.new(4,0,0), Vector3.new(-4,0,0), Vector3.new(0,0,4), Vector3.new(0,0,-4)}
for i = 1,#Directs do
A = script.Parent:Clone()
A.Parent = workspace
A.Position = script.Parent.Position + Directs[i]
if A.Position.Y > script.Parent.Position.Y then
A:Remove()
end
wait(1)
end
Is my script I am using for making a Semi-spreading Realistic water...
Unfortunately this is not working.
I want all the cloned Water to go to my model, but I can't seem to get it there.
The name of the model is called Water |