Advertisement
anphu04

wut?

Oct 27th, 2017
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. --restore transfer
  2. local rs=game:GetService("RunService")
  3. local xcurse=0
  4. function Recurse(v)
  5. --pcall(function()
  6. if v:IsA("BasePart") then
  7. if v:findFirstChild("portColorValue")~=nil then
  8. v.BrickColor=v.portColorValue.Value
  9. end
  10. end
  11. --end)
  12. --pcall(function()
  13. for i,vv in ipairs(v:getChildren())do
  14. Recurse(vv)
  15. end
  16. --end)
  17. xcurse=xcurse+1
  18. if xcurse>4500 then
  19. print("ping!")
  20. xcurse=0
  21. wait()
  22. end
  23. end
  24. Recurse(game)
  25. print("Done")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement