Joined
·
1 Posts
As Roblox makes your shortcuts unoperable every time it updates, here is a little tip to help you to get over it.
To do so you're gonna need to create a batch script (an empty *.bat file) in your %APPDATA%\Local\Roblox\Versions directory.
Then open it as a text file and insert the following code:
Create a shortcut for the script and place it on your desktop or anywhere you want.
Now you can launch Roblox with it!
To do so you're gonna need to create a batch script (an empty *.bat file) in your %APPDATA%\Local\Roblox\Versions directory.
Then open it as a text file and insert the following code:
Code:
@ECHO OFF
@TITLE Roblox Executable Seeker
SETLOCAL EnableDelayedExpansion
SET GAME_DIR=%USERPROFILE%\AppData\Local\Roblox\Versions
SET EXE_FILE_NAME=RobloxPlayerBeta.exe
CD %GAME_DIR%
ECHO Looking for an exe...
FOR /d %%i IN (*) DO (
ECHO In %%i
SET NEXT_FILE=%GAME_DIR%\%%i\%EXE_FILE_NAME%
IF EXIST "!NEXT_FILE!" (
ECHO Found ya^^!
START !NEXT_FILE! %*
)
)
EXIT
Now you can launch Roblox with it!