Prehistoricman

for Leates

Oct 18th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. function recursive(place) -- what the fuck am I reading her
  2.     for _,v in pairs(place:GetChildren()) do
  3.         if v:IsA("Part") then
  4.             v.Transparency = 0
  5.         else
  6.             recursive(v)
  7.         end
  8.     end
  9. end
  10.  
  11. recursive(game.Workspace.Cell["Nerve_Cell"])
Advertisement
Add Comment
Please, Sign In to add comment