My world generation script will only generate grass can anybody help?
It only generates grass spires i dont see why it is not working
my script:
02 | local prefabs = game.ServerStorage.Prefabs |
15 | math.randomseed(tick()) |
18 | function DrawBlock(block, xp, yp, zp, location, num) |
20 | local newBlock = prefabs [ block ] :Clone() |
21 | newBlock.Parent = location |
22 | newBlock.Size = Vector 3. new( 2 , 2 , 2 ) |
23 | newBlock.CFrame = CFrame.new(xp,yp,zp) |
25 | local newBlock = prefabs [ block ] :Clone() |
26 | newBlock.Parent = location |
27 | newBlock.CFrame = CFrame.new(xp,yp,zp) |
28 | newBlock.Size = Vector 3. new( 2 ,math.random( 3 , 10 ), 2 ) |
42 | elseif l = = length and h ~ = height then |
59 | elseif l = = length then |
67 | elseif h = = height then |
70 | chance = math.random( 0 , 3 ) |
71 | if chance < 1 and chance > 0.6 then |
72 | DrawBlock( "Copper" ,x,y,z, workspace.World, "" ) |
73 | elseif chance < 1 and chance > 0.5 then |
74 | DrawBlock( "Stone" ,x,y,z, workspace.World, "" ) |
82 | repeat wait() until h = = height |
85 | chance = math.random( 0 , 3 ) |
87 | DrawBlock( "Grass" ,x,y,z, workspace.World, chance) |
88 | elseif chance < 1 and chance > 0.5 then |
89 | DrawBlock( "Stone" ,x,y,z, workspace.World, chance) |