Skip to content
This repository has been archived by the owner on Feb 26, 2021. It is now read-only.

Reselim/rbx-engine.io

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Installation

Grab the latest version from the releases page and drag it into studio.

Example

local Engine = require(script.Engine)
local Socket = Engine.new() -- Connects to localhost

Socket:On("open", function()
	print("Connected")
	Socket:Send("test")
end)

Socket:On("message", function(data)
	print("Message recieved: " .. data)
end)

Socket:On("close", function(data)
	print("Disconnected")
end)

About

Engine.IO client for Roblox

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages