
How Big Studios Develop on Roblox
Want to develop Roblox games like the pros? In this tutorial, I’ll walk you through setting up a full advanced development environment using VSCode, Rojo, Wally, Git, and more.
Tools:
VSCode: code.visualstudio.com/
Rokit: github.com/rojo-rbx/rokit
Wally: wally.run/
Git: git-scm.com/
GitHub: github.com/
Selene: kampfkarren.github.io/selene/
Commands:
rokit init
rokit add rojo
rojo init
rokit add wally
rokit add wally-package-types
wally init
wally install
wally-package-types -s sourcemap.json Packages/
git config –global user.name “First Last”
git config –global user.email “tutorial@example.com”
Add this to settings.json:
"[lua]": {
"editor.defaultFormatter": "JohnnyMorganz.stylua",
"editor.formatOnSave": true
},
"[luau]": {
"editor.defaultFormatter": "JohnnyMorganz.stylua",
"editor.formatOnSave": true
},
"workbench.editor.customLabels.patterns": {
"**/init.lua": "${dirname} (${filename}.${extname})",
"**/init.luau": "${dirname} (${filename}.${extname})"
}
コメント