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:
Got: