Advertisement
tyridge77

Untitled

Aug 28th, 2015
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. local playergui = game.Players.tyridge77.PlayerGui;
  2. function s(p)
  3. for _,v in pairs(p:GetChildren()) do
  4. if v:isA("TextBox") then
  5. textbox = v;
  6. else
  7. s(v);
  8. end
  9. end
  10. end
  11. s(playergui);
  12. print(textbox);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement