RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a really cool randomly generated landscape"
-- server script (ServerScriptService) local terrain = game:GetService("Workspace").Terrain function generateLandscape() for x = -100, 100, 4 do for z = -100, 100, 4 do local y = math.random(-20, 20) terrain:FillBlock(CFrame.new(x, y, z), Vector3.new(4, 4, 4), Enum.Material.Grass) end end end generateLandscape()