Skip to content

Installation

Resync can be installed in two ways:

Rojo with Wally

  1. Install Rojo and Wally.
  2. Add Resync as a dependency in your wally.toml file.
    [dependencies]
    resync = "tenx29/resync@1.0.1"
    
  3. Run wally install.

Manually in Roblox Studio

  1. Get the latest version of Resync from the Releases page or the Roblox Creator Store.
  2. Insert the model to your project and place it to the location of your choice. ReplicatedStorage is recommended as it allows both client and server code to access it.
  3. Require the Resync ThreadPool class in your code.
    local ReplicatedStorage = game:GetService("ReplicatedStorage")
    local ThreadPool = require(game.ReplicatedStorage.Resync.ThreadPool)
    
  4. You're ready to start parallelizing your tasks! Refer to the API reference or follow the tutorial to get started.