How can I locate or search for Experiences/Games/Places that have the “Allow users to download a copy of this Place” option enabled?
This is an option on every place. How can I find games that have this option enabled, and download them?
Is there a search, or an easy way to locate these games?
1 Like
Go to configure place on your roblox game then go to permissions and you will find it
You misunderstand. I’m asking how do I find OTHER games that have this enabled, so that I can download them?
I don’t want to enable it on my game.
Not sure this is possible on Roblox. Might be an unofficial plugin for this but there’s no official way from my knowledge.
1 Like
You can use the Roblox API but you will have to use RoProxy as Roblox doesn’t allow HTTP requests to its own domain.
local HttpService = game:GetService("HttpService")
local Endpoint = "https://games.roproxy.com/v1/games?universeIds="
local GameId = 0 -- Game Id here.
function GetGameUncopylockedStatus()
local result
local Success, Error = pcall(function()
result = HttpService:JSONDecode(HttpService:GetAsync(Endpoint..GameId))
end)
if Success then
local UncopylockedPlaces = {}
for i,v in pairs(result.data) do
table.insert(UncopylockedPlaces, v.copyingAllowed)
end
return UncopylockedPlaces
else
warn(Error)
end
end
for i,v in pairs(GetGameUncopylockedStatus()) do
print(v)
end
Check out this post, I modified the script that was there to fit your needs better but that’s the original post where I got the answer.
Let me know if this works for you!
There’s no specific filter in the discover tab to find games that are uncopylocked that’s why I suggest to use the Roblox API, you can also combine this with another endpoint such as https://games.roblox.com/v1/games/list to list some games. I don’t believe that there’s a way to list all games and sort by uncopylocked games.