returnfunction()local user =getUser('clonzeh');if user ==nilthenlog('user does not exist!');return;end--gets all available avatars to the userlocal availAvatars = user.getWearableAvatars();local str ='';for key, value inpairs(availAvatars) do str = str .. value ..', ';endlog('available avatars are: ');log(str);end