When running :GetChildren() on a user’s character, it doesn’t return any accessories or items such as “Pants” and “Shirt”, so is there any other way to do so?
2 Likes
Use something like this to get accessories
local model = model:GetChildren() — change model to ur thing you want to get children from
for index, child inpairs(model) do
if child:IsA(“Accessory”) then
print(child)
end
Sorry if there are issues typing on phone rn