This commit is contained in:
lx
2026-07-06 14:01:11 -04:00
commit c4f97d729d
16468 changed files with 935321 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
local PlaceId, baseUrl, authToken = ...
local ContentProvider = game:GetService("ContentProvider")
game:GetService('StarterGui'):SetCoreGuiEnabled(Enum.CoreGuiType.All, false);
pcall(function() game:GetService("ContentProvider"):SetBaseUrl(baseUrl) end)
game:GetService("ScriptContext").ScriptsDisabled = true
local LoadSuccess, ErrorMessage = pcall(function()
game:Load(baseUrl .. "/asset/?id=" .. tostring(PlaceId) .. "&access=" .. authToken)
end)
if not LoadSuccess then
return ErrorMessage
end
return true