4.2.4 • Published 6 years ago

rbxrefresh v4.2.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

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.

4.2.4

6 years ago

4.2.3

6 years ago

4.2.2

6 years ago

4.2.1

6 years ago

4.2.0

6 years ago

4.1.1

6 years ago

4.1.0

6 years ago

4.0.2

6 years ago

4.0.1

6 years ago

4.0.0

6 years ago

3.0.4

6 years ago

3.0.0

6 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.1.0

7 years ago

2.0.9

7 years ago

2.0.8

7 years ago

2.0.7

7 years ago

2.0.6

7 years ago

2.0.5

7 years ago

2.0.4

7 years ago

2.0.3

7 years ago

2.0.2

7 years ago

2.0.1

7 years ago

2.0.0

7 years ago

1.0.34

7 years ago

1.0.33

7 years ago

1.0.32

7 years ago

1.0.31

7 years ago

1.0.30

7 years ago

1.0.29

7 years ago

1.0.28

7 years ago

1.0.27

7 years ago

1.0.26

7 years ago

1.0.25

7 years ago

1.0.24

7 years ago

1.0.23

7 years ago

1.0.21

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago