I am trying to make terrain out of blocks in roblox studio
seed = 49 -- or any other number for x = 0,30 do for z = 0,30 do y = math.noise(x/9,z/9,seed) -- the reason I divided by 9 is because when it has all integers it returns 0, so we have to make at least one of these a float value. part.CFrame =CFrame.new(x,y,z) end wait() end