Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- ROBLOX Terrain Generator
- By tcl1
- This terrain generator includes:
- -Randomly placed parts
- -Randomized sizes
- ]]
- ter = Instance.new("Model", game.Workspace)
- ter.Name = "terrainhold"
- det1 = math.random(1000)
- det2 = math.random(2)
- det3 = math.random(1000)
- i = 0
- for i = 0, 1000 do
- wait()
- det1 = math.random(1000)
- det2 = math.random(2)
- det3 = math.random(1000)
- local myblock = Instance.new("Part", game.Workspace.terrainhold)
- myblock.TopSurface = "Smooth"
- myblock.BottomSurface = "Smooth"
- myblock.BrickColor = BrickColor.new("Camo")
- myblock.Anchored = true
- myblock.Size = Vector3.new(90, 10, 100)
- myblock.Position = Vector3.new(det1, det2, det3)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement