This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This is a list of all known endpoints for the Roblox API. | |
This list is meant to be used as a educational & informative | |
resource to help you match thirdparty development with the functionality | |
that you need. It's highly advised and against the point of this list to abuse, | |
cheat or phish other users. Please be mindful. | |
[Basic] | |
websiteUrl - https://www.roblox.com | |
apiProxyUrl - https://api.roblox.com (deprecated / no longer reachable) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
ECHO [Info] Checking admin rights | |
NET SESSION | |
CALL :CHECK_ERROR_ECHO [Error] You need admin rights to run this batch file | |
IF %ERRORLEVEL% NEQ 0 ( | |
TIMEOUT 5 | |
EXIT | |
) | |
ECHO [Info] Checking if chocolatey is installed... |