9 lines
217 B
Bash
9 lines
217 B
Bash
#!/bin/bash
|
|
|
|
# Where to install Roblox Studio
|
|
install_path=`pwd`
|
|
|
|
# Prefix to be used by wine when running Roblox Studio
|
|
prefix="$install_path/.wine"
|
|
|
|
download_url="https://setup.rbxcdn.com/RobloxStudioInstaller.exe"
|