Advertisement
George_V3rm

ROBLOX Delete everything in workspace

Dec 2nd, 2017
5,915
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.14 KB | None | 0 0
  1. asgw = game.Workspace:GetChildren()
  2.  
  3. for i,v in pairs(asgw) do
  4.     if v.Name ~= "Terrain" and v.Name ~= "Camera" then
  5.         v:Destroy()
  6.     end
  7. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement