Hasli4

RBLX. GenerateWall

May 12th, 2025
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. local detal = nil
  2. for x = -256, 256, 4 do
  3.     detal = game.ServerStorage.Wall:Clone()
  4.     detal.Parent = game.Workspace.Map
  5.     detal.Position = Vector3.new(x, 2, -248)
  6.     detal = game.ServerStorage.Wall:Clone()
  7.     detal.Parent = game.Workspace.Map
  8.     detal.Position = Vector3.new(x, 2, 248)
  9.     detal = game.ServerStorage.Wall:Clone()
  10.     detal.Parent = game.Workspace.Map
  11.     detal.Position = Vector3.new(248, 2, x)
  12.     detal = game.ServerStorage.Wall:Clone()
  13.     detal.Parent = game.Workspace.Map
  14.     detal.Position = Vector3.new(-248, 2, x)
  15. end
  16.  
Add Comment
Please, Sign In to add comment