CharacterAutoLoads causes place to not load to client

I have a simplest setup: A Baseplate with a Part named “TestPart” in it.

I then have a LocalScript in LocalPlayerScripts saying:

game:GetService("RunService").RenderStepped:Connect(function()
	print(workspace:FindFirstChild("TestPart"))
end)

This will print every frame if the Part is found in the Workspace.

When Players.CharacterAutoLoads is true, the script shows the Part is there. When Players.CharacterAutoLoads is false, the script thinks the Part is not there. This shouldn’t happen. What is the solution?

PS:
When playing with CharacterAutoLoads false, the workspace is in the Explorer completely empty.

Sorry, duplicate from Character Auto Loads [Solved] - Help and Feedback / Scripting Support - Developer Forum | Roblox.

Solution: Disable StreamingEnabled in Workspace.

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