''Override'' Streaming enabled

Hello
I admit the title is strange but I don’t know how to explain it.

I asked myself a question, let’s say Streaming enabled is enabled, is it possible to make sure that a model is always loaded regardless of the player’s position?

thanks for answering

3 Likes

Maybe use game.Workspace.Model:WaitForChild("Model")? If not then Idk.

1 Like

No, there isn’t. Those parts won’t be streamed to the client so they also won’t be able to be acted upon. Use WaitForChild if you need to wait for the existence of a part in a StreamingEnabled environment. Alternatively, you could pass the work to the server which will always see the part.

Don’t know your use case, so it’s hard to say anything more.

5 Likes

Thanks Colbert2677 and DragRacer31, problem fixed !

1 Like

I was just guessing the :WaitForChild(“Model”). But we did it! :smiley: