I want to get the name of the creator of the place, using game.<childnamehere>, but I can't find anything other than the CreatorId. I want to know if there is a way of getting the name of the creator, without using HTTP (HTTP is accessing websites, and deriving/adding information to/from them).
Can any help me with this?
You can use InsertService
to get the name of a person from their userid by using this neat trick instead of HttpService
.
function UsernameFromID(ID) local sets = (type(ID) == "number" and game:service("InsertService"):GetUserSets(ID)) or nil if sets then for i, v in next, sets do if v.Name == "My Models" then return v.CreatorName end end else error("ID must be a number") end end print(UsernameFromID(261)) --- Shedletsky