Im making a wrestling ring and i need help to add the sound of that when you walk on the ring it makes the sound but help idk what to do.
local wrestlingBrick = workspace.Brick --- Change location here local Id = 0000000 -- Sound ID
wrestlingBrick.Touched:connect(function(hit) if hit.Parent.Humanoid ~= nil then Instance.new('Sound',workspace).SoundId = Id end end)