Configuring Your Net2+ Bells

In 

Chimes obnoxiously in your ears.


Each button inside DWProx Net2+ -> Bell will have a Settings ModuleScript, which will look as follows:

local ChimeboxSettings = {
	-- / CONFIG / --
	["WhitelistEnabled"] = false, -- When True This Door Release Will Only Work For Users / Groups In The Whitelist Thats In The Main Door Settings! (Authorised People / Groups List)
	-- / SOUND / --
	["SoundID"] = "rbxassetid://1840084282", -- Chimebox SoundId (You Must Keep The *rbxassetid://* At The Start Of The ID)
	["Volume"] = 1, -- Chimebox Volume
	["PlaybackSpeed"] = 1, -- Chimebox Pitch
	
	-- / SYSTEM / --
	["Identifier"] = "\67\104\105\109\101\66\111\120\84\121\112\101\65", -- DO NOT TOUCH THIS!
}
return ChimeboxSettings
local ButtonSettings = {
	-- / CONFIG / --
	["WhitelistEnabled"] = false, -- When True This Button Will Only Work For Users In The Whitelist Thats In The Main Door settings!

	-- / SYSTEM / --
	["ButtonSpec"] = "\66\101\108\108\84\121\112\101\65", -- DO NOT TOUCH THIS!
}
return ButtonSettings

Chimebox

WhitelistEnabled

Whether to enable or disable the bell whitelist.


Example:

["WhitelistEnabled"] = false

SoundID

Sound ID to play when the chimebox is triggered.


Example:

["SoundID"] = "rbxassetid://1840084282"

Volume

Volume at which the chimebox will play it's sound, 1 being the standard volume.


Example:

["Volume"] = 1

PlaybackSpeed

Speed at which the chimebox will play it's sound, 1 being the standard speed.


Example:

["PlaybackSpeed"] = 1

Identifier


Doorbell

WhitelistEnabled

Whether to enable or disable the bell whitelist.


Example:

["WhitelistEnabled"] = false

ButtonSpec