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

How do i make a welcome script that says one noise when someone joins?

Asked by 10 years ago

What I mean is, is that I made a sound that says welcome to my game. And I was wondering on how i can make it say it whenever a player joins. Anyone can help?

1 answer

Log in to vote
1
Answered by
Sublimus 992 Moderation Voter
10 years ago

Make a sound, place it in the Workspace, and name it 'WelcomeSound'

game.Players.PlayerAdded:connect(function()
    game.Workspace.WelcomeSound:Play()
end)
Ad

Answer this question