Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I make only I can hear a music?

Asked by 7 years ago

When ever I played a music,let say using this script

local music = script.music
music:Play()

or

script.Parent.Touched:connect(function(hit)
    if hit.Parent and hit.Parent:FindFirstChild("Humanoid") then
        if Playing == false then
        Playing = true
        local Music = script["Intense Music"]
        Music:Play()
        wait(93)
        Playing = false
        end
    end
end)

everyone in the server also hear the music, I want only I can hear it.

Answer this question