Rafie_ArsyadYT

Roblox - Destructive Unanchor All Script

Apr 28th, 2018
1,193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.23 KB | None | 0 0
  1. function FUNCTION(a)
  2. if (a.className == "Part") or (a.className == "Seat") or (a.className == "SpawnLocation") then
  3. a.Anchored = false
  4. end
  5. local b = a:GetChildren()
  6. for i=1,#b do
  7. FUNCTION(b[i])
  8. end
  9. end
  10.  
  11. FUNCTION(game.workspace)
Add Comment
Please, Sign In to add comment