When ever I played a music,let say using this script
1 | local music = script.music |
2 | music:Play() |
or
01 | script.Parent.Touched:connect( function (hit) |
02 | if hit.Parent and hit.Parent:FindFirstChild( "Humanoid" ) then |
03 | if Playing = = false then |
04 | Playing = true |
05 | local Music = script [ "Intense Music" ] |
06 | Music:Play() |
07 | wait( 93 ) |
08 | Playing = false |
09 | end |
10 | end |
11 | end ) |
everyone in the server also hear the music, I want only I can hear it.