How to make sound play when gui appears?

Oops, back with more ‘scripting support’. I’m a real noob at this but I would like assistance on how to make a sound play when a gui appears? I believe I have to connect it to ReplicatedStorage with an activated event listener so that it can be played a certain time. (I have no idea. I do know that I have it so that when a player touches a part, a gui appears and I want to add a paper crinkle noise when it opens and when a player closes it. How would I go about ?

1 Like

You could go the way you talked about with using a bindable event, or you could just include the sound in the same script that makes it appear. And for the closing, if you have a button that closes it, just put in the script to play the sound. Or if it closes after a certain amount of time, just include that crinkle noise with whatever script causes it to close.

You don’t need to use remoteEvents for this. Something like this should work just fine:

Client

local Plr = game:GetService("Players").LocalPlayer;
local TriggerGUIPart = path.TriggerGUIPart;
local UIisOpened = false;
local Debounce = false;

--
local ContentProviderService = game:GetService("ContentProvider");
local Sound = Instance.new("Sound");
Sound.SoundId = "rbxassetid://sound-id";
ContentProviderService:PreloadAsync({Sound}); --<Preloads sound

local function onTouchRequest(Obj)
    if Obj.Parent:FindFirstChild("Humanoid") then
        local ToPlayer = game:GetService("Players"):GetPlayerFromCharacter(Obj.Parent);
            if ToPlayer and ToPlayer == Plr then
                if not Debounce and not UIisOpened then
Debounce, UIisOpened = true,true;
Sound:Play();
                    --<Add Gui PopUp here;
delay(3, function()
    Debounce = false; UIisOpened = false; --<Releases debounce after 3 seconds
end);
                end;
            end;
    end;
end;

TriggerGUIPart.Touched:Connect(onTouchRequest)

If your intention was for the entire server to hear the sound, then you’d need to use RemoteEvents.

1 Like
local Plr = game:GetService("Players").LocalPlayer;
local TriggerGUIPart = path.TriggerGUIPart;
local UIisOpened = false;
local Debounce = false;

--
local ContentProviderService = game:GetService("ContentProvider");
local Sound = Instance.new("Sound");
Sound.SoundId = "rbxassetid://411946349";
ContentProviderService:PreloadAsync({Sound}); --<Preloads sound

local function onTouchRequest(Obj)
    if Obj.Parent:FindFirstChild("Humanoid") then
        local ToPlayer = game:GetService("Players"):GetPlayerFromCharacter(Obj.Parent);
            if ToPlayer and ToPlayer == Plr then
                if not Debounce and not UIisOpened then
Debounce, UIisOpened = true,true;
Sound:Play();
 function touch(hit)
    if game.Players:findFirstChild(hit.Parent.Name) ~= nil then
        player = game.Players[hit.Parent.Name]
        if player.PlayerGui:findFirstChild("Info") == nil then
            gui = script.Info:clone()
			            gui.Parent = player.PlayerGui 
            repeat
                wait()
            until (player.Character.Torso.Position - script.Parent.Position).magnitude > 5
            gui:remove()
        end
    end
end
 
script.Parent.Touched:connect(touch)                   --<Add Gui PopUp here;
delay(3, function()
    Debounce = false; UIisOpened = false; --<Releases debounce after 3 seconds
end);
                end;
            end;
    end;
end;

TriggerGUIPart.Touched:Connect(onTouchRequest)

how would I fix this?