You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? A loading screen
What is the issue? I set player.Autoload to false and now the gui wont load so I added a script that parents the gui to the player gui, The problem is that due to character being nil, Everything will be on lowest LOD and be blurry and some stuff won’t be loaded
What solutions have you tried so far? Setting the camera focus
You can exclude items from streaming enabled, this is the best I can think of without the character existing.
To exclude things from streaming enabled, create a folder of excluded items in replicated storage, then put the following code in a local script in StarterPlayerScripts.
local ReplicatedStorage = game:GetService(“ReplicatedStorage”)
local Exclusions = ReplicatedStorage:WaitForChild(“Exclusions”)
for i, obj in pairs (Exclusions:GetChildren()) do
local clone = obj:Clone()
clone.Parent = workspace
end
If you found this useful, please mark it as a solution so others can find the answer right away. If you have any more questions, feel free to reply and I will answer them for you.