Viewport Model delay in loading

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

Fixed it by changing the image transparency of the viewport, as opposed to modifying other properties.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.