# Intelli-Sense EAS API

Get shoplifter data, or post your own.


JSM EAS exposes a simple API for you to interact with, or get the data it's sending. The EAS has a single Node BindableEvent.

# Syntax

# Receiving

workspace["JSM | Intelli-Sense EAS"].Node.Event:Connect(function(eventType: string, source: string, zone: number, player: Player): ()
	print(player.Name, "triggered a", source, "in zone", tostring(zone));
end);

EAS supports scripts that listen to events, and will fire them everytime it's triggered.


# Sending

workspace["JSM | Intelli-Sense EAS"].Node.Event:Fire(eventType, source, zone, player);

Alternatively, EAS also supports listening to events, allowing you to use external scripts to trigger it manually.