Installation
Resync can be installed in two ways:
Rojo with Wally
- Install Rojo and Wally.
- Add Resync as a dependency in your
wally.tomlfile.[dependencies] resync = "tenx29/resync@1.0.1" - Run
wally install.
Manually in Roblox Studio
- Get the latest version of Resync from the Releases page or the Roblox Creator Store.
- Insert the model to your project and place it to the location of your choice.
ReplicatedStorageis recommended as it allows both client and server code to access it. - Require the Resync ThreadPool class in your code.
local ReplicatedStorage = game:GetService("ReplicatedStorage") local ThreadPool = require(game.ReplicatedStorage.Resync.ThreadPool) - You're ready to start parallelizing your tasks! Refer to the API reference or follow the tutorial to get started.