Sound

Represents a sound that can be played
Obtained by indexing the SoundAPI
Exists as an object-oriented alternative to sounds:playSound()

Sound.play

Plays this sound, or resume a paused sound
overload 1:
Sound:play(pos)
Method Property Fluent Description Representation
pos accepts a Vector3
Return Value nil
overload 2:
Sound:play(posX, posY, posZ)
Method Property Fluent Description Representation
posX accepts a Number
posY accepts a Number
posZ accepts a Number
Return Value nil
overload 3:
Sound:play(pos, volume, pitch, loop)
Method Property Fluent Description Representation
pos accepts a Vector3
volume accepts a Number
pitch accepts a Number
loop accepts a Boolean
Return Value nil
overload 4:
Sound:play(posX, posY, posZ, volume, pitch, loop)
Method Property Fluent Description Representation
posX accepts a Number
posY accepts a Number
posZ accepts a Number
volume accepts a Number
pitch accepts a Number
loop accepts a Boolean
Return Value nil
a a