so i want to make a 10 by 10 grid that makes waves using math.noise
the creating parts script
function create_parts()
for x = 0,10,1 do
for y = 0,10,1 do
local part = Instance.new("Part")
part.Anchored = true
part.Position = Vector3.new(x,y,0)
part.Size = Vector3.new(1,1,1)
part.Name = "moveable"
part.Parent = workspace
end
end
end