Setting up service callers
Location of Settings
Go to the 'easyLink v2.0.0 [ easyPOS ]' script, then double click on 'Settings'.

Setting up the Sounds
Download the Sounds
Download the sounds from our beta site.
Upload the Sounds to Roblox
Visit this link to visit the upload audio page.
Upload only the 2 audios from before.
Get your Experience ID
Visit this link and find your game. You may have to select a group in the top left.
Click on the game, then click the 3 dots and Copy Universe ID.

Editing Service Calls
Below is an example service call, there should be 8 in your configuration by default.
Settings.ServiceCalls = {
{
Text = "General Call",
Sound = "rbxassetid://17536374448",
Channel = "All",
Color = Color3.fromRGB(109, 109, 109),
AlertColor = ColorSequence.new({
ColorSequenceKeypoint.new(0, Color3.new(0, 0.0862745, 0.27451)),
ColorSequenceKeypoint.new(1, Color3.new(0.0705882, 0.0392157, 0.498039)),
}),
},
}
Text
Text = "General Call",
This setting determines the text shown on the Service Caller & in the easyLink headset GUI.
Sound
Sound = "rbxassetid://17536374448",
This setting determines what sound is played over the easyLink headset.
Channel
Channel = "All",
This setting determines which 'Channel' (see previous page) the alert is sent to.
Format:
- All
- Sends to all channels
- Example
- Just sends to the 'Example' channel
- Example,Security
- Sends to both those channels
Color
Color = Color3.fromRGB(109, 109, 109),
This setting determines the color of the button on the Service Caller.
AlertColor
AlertColor = ColorSequence.new({
ColorSequenceKeypoint.new(0, Color3.new(0, 0.0862745, 0.27451)),
ColorSequenceKeypoint.new(1, Color3.new(0.0705882, 0.0392157, 0.498039)),
}),
This setting determines the background gradient of the alert in the easyLink headset GUI.
This must be a ColorSequence!
Editing Service Caller Locations
Each Service Caller has a "Location" StringValue inside of it, as seen below.

Here you can edit the Location of the device, which is shown on the easyLink GUI.

Last updated