However, there is a subsidiary place of the experience that isn’t the start place. And the loading screen background is the default ROBLOX thumbnail, which doesn’t look good, and makes my game look unprofessional, as seen here:
Is there a way I can get the thumbnail from the start place to show up in the loading screen of the subsidiary place(s)? Or would I have to make a custom loading screen for the others?
The only options I get are “Basic Settings”, “Access”, “Version History” and “Permissions.” However, if I click the start place, another option called “Icon” and “Thumbnails” pops up.
Edit: You can try putting /thumbnails instead of /configure at the end of the url, but it returns a 404 for me, so it sounds like this isn’t possible.
I tried making a custom loading screen. It only displays when the game has actually loaded in, before that, while it is waiting to connect, it still shows this:
Not really sure what else I can do for this besides give up
local ContentProvider = game:GetService("ContentProvider")
local assets = {
script.LoadingScreen.backgroundThumbnail,
script.LoadingScreen.backgroundThumbnail.backgroundInfo,
}
ContentProvider:PreloadAsync(assets)
if game.PlaceId == 11245571313 then --- only fire this in the single player version
game.ReplicatedFirst:RemoveDefaultLoadingScreen()
local PlayerGUI = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")
local GUI = script.LoadingScreen:Clone()
GUI.Parent = PlayerGUI
repeat task.wait(1) until game:IsLoaded()
GUI:Destroy()
end
As others here have said, you can only do that for the Start Place. You cannot do that for any other place that isn’t the start place, as the “Thumbnail” option doesn’t appear in the other places.