Advertisement
SlyHades66

Value Finder

May 10th, 2016
296
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. --Value Finder
  2. function Find(Values)
  3.     for i,v in pairs(Values:children())do
  4.         if string.match(v.ClassName, "Value") then
  5.             print("Name: "..v.Name.." ;  Type: "..v.ClassName.." ;  Value: "..v.Value.." ;  Location: ".."game."..v:GetFullName())
  6.         end
  7.         Find(v)
  8.     end
  9. end
  10. pcall(Find,game)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement