Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --restore transfer
- local rs=game:GetService("RunService")
- local xcurse=0
- function Recurse(v)
- --pcall(function()
- if v:IsA("BasePart") then
- if v:findFirstChild("portColorValue")~=nil then
- v.BrickColor=v.portColorValue.Value
- end
- end
- --end)
- --pcall(function()
- for i,vv in ipairs(v:getChildren())do
- Recurse(vv)
- end
- --end)
- xcurse=xcurse+1
- if xcurse>4500 then
- print("ping!")
- xcurse=0
- wait()
- end
- end
- Recurse(game)
- print("Done")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement