I would like my viewport model to not have the grey rendering when made visible to surfacegui.
When I make my viewport model visible you can see the model loading in.
I have tried setting the viewport children visible before hand by changing the transparency of the children visual objects as so
function loadReporter()
for i, v in pairs(reporter:GetChildren()) do
if v:IsA("BasePart") and v.Name ~= "HumanoidRootPart" then
v.Transparency = 0
end
end
reporter.Head.Decal.Transparency = 0
newsGui1.Main.ImageLabel.ImageTransparency = 0
end