All Projects → osyrisrblx → RbxRefresh

osyrisrblx / RbxRefresh

Licence: MIT license
Syncs a local file structure to ROBLOX Studio.

Programming Languages

typescript
32286 projects
lua
6591 projects

Projects that are alternatives of or similar to RbxRefresh

Rostar
Dead simple fully managed Rojo helper for Roblox projects
Stars: ✭ 26 (+44.44%)
Mutual labels:  roblox, roblox-studio
lua-lessons-ru
Исходные тексты видео курса "Уроки Love2D, Roblox и Lua для всех"
Stars: ✭ 13 (-27.78%)
Mutual labels:  roblox, roblox-studio
studio-bridge
Automatic syncing of files to Roblox Studio
Stars: ✭ 12 (-33.33%)
Mutual labels:  roblox, roblox-studio
roblox-js
!!!THIS PROJECT IS NO LONGER MAINTAINED!!! Execute ROBLOX website actions in node.js
Stars: ✭ 46 (+155.56%)
Mutual labels:  roblox
EvLightning
EvLightning is a Roblox Lua library. Its purpose is to generate realistic-looking lightning bolts. This could be used to easily add lightning strike effects to any game
Stars: ✭ 34 (+88.89%)
Mutual labels:  roblox
luacheck-roblox
Luacheck specifications for Roblox Lua
Stars: ✭ 36 (+100%)
Mutual labels:  roblox
Axon
Unrestricted Lua Execution
Stars: ✭ 59 (+227.78%)
Mutual labels:  roblox
Roblox-Miscellaneous
A set of ROBLOX based utilities
Stars: ✭ 21 (+16.67%)
Mutual labels:  roblox
prefabs
Roblox plugin for making reuseable assets and keeping them in sync across your game
Stars: ✭ 16 (-11.11%)
Mutual labels:  roblox
plasma
A declarative, immediate mode UI widget library for Roblox.
Stars: ✭ 35 (+94.44%)
Mutual labels:  roblox
qbot
Qbot is an advanced, easy to setup, free, and unbranded Discord-Roblox ranking bot. If at any time during setting it up you need assistance, you can join the support server.
Stars: ✭ 56 (+211.11%)
Mutual labels:  roblox
RobloxLsp
Roblox Luau Language Server based on Lua by sumneko.
Stars: ✭ 150 (+733.33%)
Mutual labels:  roblox
Roblox
Some of mine and other people's old codes that we used to run them in Script Builder.
Stars: ✭ 32 (+77.78%)
Mutual labels:  roblox
rbx-dom
Roblox DOM and (de)serialization implementation in Rust
Stars: ✭ 76 (+322.22%)
Mutual labels:  roblox
Stitch
A Roblox ECS - with an emphasis on simplicity and extendability
Stars: ✭ 16 (-11.11%)
Mutual labels:  roblox
roact-material
Material design in Roblox w/ Roact!
Stars: ✭ 18 (+0%)
Mutual labels:  roblox
Bloxlink
Roblox Verification bot written in Python. Open-source as of 12/19/2020.
Stars: ✭ 62 (+244.44%)
Mutual labels:  roblox
Quicksave
DataStore abstraction library. Looking for a new maintainer.
Stars: ✭ 26 (+44.44%)
Mutual labels:  roblox
rbxlx-to-rojo
Tool to one time convert Roblox places to Rojo projects
Stars: ✭ 98 (+444.44%)
Mutual labels:  roblox
spr
Spring-driven motion library
Stars: ✭ 43 (+138.89%)
Mutual labels:  roblox

RbxRefresh

With RbxRefresh, you can use external editors (Like Visual Studio Code, Sublime Text 3 or Atom) for ROBLOX development. RbxRefresh syncs your changes back into studio every time you save your files locally.

Prerequisites

  1. NodeJS

Usage

  1. npm install rbxrefresh -g
  2. rbxrefresh SOURCE_DIRECTORY
  3. Enable game.HttpService.HttpEnabled
  4. Install and enable RbxRefresh Studio Plugin
  5. Make changes and save.

Your source folder should mirror the roblox explorer structure where 'src' represents game. i.e.

ProjectFolder
	src
		ReplicatedStorage
			Classes
				Module.ModuleScript.lua
		ServerScriptService
			Server.Script.lua
		StarterPlayer
			StarterPlayerScripts
				Client.LocalScript.lua

Visual Studio Code

You can integrate RbxRefresh into your project by creating a .vscode folder inside your project directory. Inside of your .vscode folder create a file called tasks.json Here's the source I use for using RbxRefresh as task

{
    "version": "2.0.0",
    "tasks": [
        {
            "taskName": "RbxRefresh",
            "command": "rbxrefresh",
            "args": ["${workspaceRoot}"],
            "type": "shell",
            "problemMatcher": [],
            "group": {
                "kind": "build",
                "isDefault": true
            }
        }
    ]
}

After adding that, just hit ctrl+shift+B on Windows or cmd+shift+B on OSX to run RbxRefresh. Click inside the terminal pane and do Ctrl+C to cancel.

Sublime Text 3

An easy way to use Sublime Text 3 with RbxRefresh is by creating a build system.

You can do this using the following steps:

  1. Tools > Build System > New Build System...
  2. Paste the following into the new file
{
	"cmd": ["rbxrefresh", "$folder"],
	"shell": true
}
  1. Save it as RbxRefresh.sublime-build
  2. Tools > Build System > RbxRefresh

After creating the build system you can use Ctrl+B on Windows or Cmd+B on MacOS to start RbxRefresh instantly. RbxRefresh will be run on your top most project folder in the side bar. To add a project folder to Sublime, just drag it onto the window.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].