Reflectance not being rendered with Shirts/Pants

I’m hoping there is like a property that I don’t know about that enables reflectance when shirts/pants are present but as far as I know there isn’t one

code in question:

local char: Model = game:FindService("Players").LocalPlayer.Character
local JobId: string = game.JobId

for i,v: BasePart in char:GetChildren() do
    if v:IsA("BasePart") then
        v.Reflectance = 1
    end
end

do --not necessary for this but just to make it easier to see the effects
    local Shirt: Shirt = char:FindFirstChildWhichIsA("Shirt")
    local Pants: Pants = char:FindFirstChildWhichIsA("Pants")
    if Shirt then
        Shirt.ShirtTemplate = JobId
    end
    if Pants then
        Pants.PantsTemplate = JobId
    end
end

Expected:
image

Got:
image

1 Like

There is not a property that can enable Reflectance in the shirt ID. However, you can delete shirts and add them back.

1 Like

Deleting and re-adding the shirts isnt exactly what I’m looking for due to me wanting the limbs to be Reflective while wearing the shirt/pants. Even if you create a new Shirt after removing the original one it still removes the effects of Reflectance