The script you're looking for is:
PlaySoundAtEntity(string& asSoundName, string& asSoundFile, string& asEntity, float afFadeTime, bool abSaveSound);
asSoundName you can leave blank, it is used for later callbacks which I doubt you'll need
asSoundFile will be the name of the sound+.snt (for example, "mysound.snt")
asEntity will be the entity you play the sound at, which would be the statue.
afFadeTime is the time until the sound fades, but since the brick sound it so short, you can set it to 0.0f
abSaveSound tbh idk what it does, just mark it false xD
so altogether:
PlaySoundAtEntity("", "mysound.snt", "Statue_1", 0.0f, false);
May I also offer a simpler alternative, "PlayGuiSound".
PlayGuiSound plays the sound only at the player, but you can modify the volume; the Function is:
PlayGuiSound("mysound.snt", 1.0f);
mysound.snt = the sound to play
1.0f = the volume.
PlayGuiSound can make it seem like the statue is right behind/on the player, making it a bit more stressful for them
I rate it 3 memes.