Hi, I am wondering whether to Preload the game on the Client or the Server
Example:
local CProvider = game:GetService("ContentProvider")
for _,i in pairs(game:GetDescendants()) do
CProvider:PreloadAsync({i})
end)
This is just a Question as I’m not sure when to use it in this case.