Is there any way to get old character lighting back?

I don’t know if I’m insane but recently I’ve noticed the character lighting is a bit different - your character looks a lot more “real” for lack of a better word, in part because its parts actually casts shadows on itself. Is there any way to disable this?

1 Like

Loop through the character and set the parts .CastShadows property to false
Ex

for i,v in pairs(Character:GetChildren()) do
    if v:IsA("BasePart") then
        v.CastShadows = false
    end
end

Other than shadows I haven’t noticed the character change

1 Like