Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Value Finder
- function Find(Values)
- for i,v in pairs(Values:children())do
- if string.match(v.ClassName, "Value") then
- print("Name: "..v.Name.." ; Type: "..v.ClassName.." ; Value: "..v.Value.." ; Location: ".."game."..v:GetFullName())
- end
- Find(v)
- end
- end
- pcall(Find,game)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement