Skip to content

girisato/PromisedSignal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 

Repository files navigation

PromisedSignal

An implementation of RBXScriptSignal with Promise.

Why PromisedSignal?

  • Asynchronous Connections
  • Performs almost all the functions that RBXScriptSignal does
  • Simple and comfortable

How to use it?

local PromisedSignal = require(game.Path.To.PromisedSignal)
local HelloPlayer = PromisedSignal.new()

HelloPlayer:Connect(function(Player)
    print("Hello, " .. Player.Name .. "!")
end)

game.Players.PlayerAdded:Connect(function(Player)
    HelloPlayer:FireAsync(Player)
end)

Download
GitHub
Roblox

Inspired by stravant's GoodSignal.

About

A RBXScriptSignal Implementation with Promise.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages