Advertisement
9_cVv

Untitled

Jul 17th, 2021
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. return function fullname(input)
  2. if input then
  3. if input.Parent == game then
  4. return 'game:GetService"'..input.ClassName..'"'
  5. end
  6. local result = input.Name
  7. input = input.Parent
  8. repeat wait()
  9. if input then
  10. if input.Parent == game then
  11. result = "game:GetService'"..input.Name.."'." .. result
  12. else
  13. result = input.Name .. '.' .. result
  14. end
  15. input = input.Parent
  16. end
  17. until input == game
  18. return result
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement