I want to report a game with a script in the game. I know game.Players:ReportAbuse()
exists, but I want to report the game, not a player. How can I do this?
What exactly do you want to achieve?
From my understandings, if someone steals your game, a script will report it(correct me if iām not right)
If this is the case then iām afraid this isnāt possible
My goal is to make a script that reports a game, in the game.
Well then uhh, you canāt.
You can not report a game with a script itās simply impossible.
EDIT: and why would that be a feature?
People could abuse this in a way that games get falsely banned.
Itās just illogical for roblox to have that feature.
i tried searching if reporting games with scripts was possible but no resultsā¦
so final answer: No you canāt
Itās not impossible, you very well can do so. I donāt believe many people have done so and may therefore take quite some time to achieve.
If it was as easy as creating a script within the game to report another game, the danger would be that players would be able to loop report games until they get shut down.
Additionally, you would need to somehow work out the account who would report the game, but again this would be virtually impossible.
I agree but roblox wonāt be stupid enough to let scripts report games more than one time.
Ngl this is sus as. Why do you even need to be able to report a game inside another game?
I donāt think there is a way directly in Roblox but you could send a request to a server which will send a report via the API endpoint.
ReportAbuse(Player, Message)
Where āPlayerā is the gameās creator and āMessageā contains a reference to the game.
The āPlayerā argument is a player object and not their UserId, therefore the gameās creator would have to be in the same server, which Iām guessing isnāt ideal.
I read that reportAbuse
can only be used in the command bar.
The āPlayerā argument is a player object and not their UserId, therefore the gameās creator would have to be in the same server, which Iām guessing isnāt ideal.
Iām aware of this nuance, hence the naming of the parameter āPlayerā, automating the on-site report feature would prove difficult due to its use of a captcha.
I read that reportAbuse can only be used in the command bar.
This is true, as per the documentation.
This member cannot be used in scripts, but is usable in the command bar.
I know that, I am using it for something else though.