Just a starting note, I've just began scripting on roblox but I have some experience in other languages so I'm kinda new but I kinda know what's going on.
I've created an evade tool, similar to the one in halo. I found a sound that I liked and I have it being played when the user clicks their mouse. However, this only works for the user and I want everyone around this person to be able to hear the noise too.
Any suggestions? Thanks.
EDIT: this is was my local script looks like:
local sound = script.Parent.Sound local clone = sound:Clone() ... --when they player clicks their mouse: function onButton1Down(mouse) ... clone.Parent = pl.HumanoidRootPart clone:Play() end