RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a sound play on part touch"
-- put this script under the part you want to make the sound play local part = script.Parent local sound = script.Parent.MySound function onTouch(otherPart) sound:Play() end part.Touched:Connect(onTouch)