I’m trying to make a screaming sound when you get ragdolled
Cloning works, but for some reason the sound doesn’t play
local s = script:GetChildren()
local random = math.random(1, #s)
local sound = s[random]
local clone = sound:Clone()
clone.Parent = script.Parent.Head
clone:Play()
It only works when i play the sound inside the script, but it will be heard by everyone in any distance, which i don’t want
Help will be appreciated