So if i put my intro music into the starter gui it always plays when you die/reset i've made this clone script only plays the music when you enter the game and never again.
1 | local Sound = script.Sound:Clone() |
2 | game.Players.PlayerAdded:connect( function (player) |
3 | player.CharacterAdded:wait() |
4 | Sound:Clone().Parent = player.PlayerGui |
5 | wait(. 1 ) |
6 | Sound:Play().Parent = player.PlayerGui |
7 | end ) |
The thing i want is: Let it clone to playergui which works, but doesn't play the sound. So the prob is i want to make it play when it clones the sound. Help pls...
Well, I believe sound only plays in two places: The Player & The Workspace. Sounds don't work in other places like the PlayerGui.
Workspace: Plays Sound For Everyone
player.Sound:Play()
The Player: Plays sound for ONE person only.
workspace.Sound:Play()
Maybe you want to do this, instead of putting the sound in the GUI, put it in the player.
1 | local Sound = script.Sound:Clone() |
2 | game.Players.PlayerAdded:connect( function (player) |
3 | player.CharacterAdded:wait() |
4 | Sound:Clone().Parent = player |
5 | wait(. 1 ) |
6 | Sound:Play().Parent = playeri |
7 | end ) |
Your problem is that you have incorrect syntax.
Sound:Play().Parent
is not correct syntax.
I'm assuming what you want to happen is that the sound is cloned into the playergui and then the sound plays after 0.1 seconds. I would suggest setting the clone of the sound to a local variable, and then setting that variable's parent to the playergui, and then after 0.1 seconds make the variable play, like so:
1 | local soundClone = Sound:Clone() |
2 | soundClone.Parent = player.PlayerGui |
3 | wait( 0.1 ) |
4 | soundClone:Play() |
Hope this helped!