of     1   

Revelted
#183645838Monday, February 15, 2016 4:28 AM GMT

I want it so that when I enter, It plays a song, but this script doesnt play anything :F ( i have my volume up , and i change the players name ) Owner = "Player" function Join(plyr) if plyr.Name == Owner then script.Parent: Play() end end print "The song shall now play!" Should I do "game.Workspace.Sound:Play()" ?
Clirex
#183646014Monday, February 15, 2016 4:30 AM GMT

game:GetService("Players").PlayerAdded:connect(function(Player) if Player.UserId == game.CreatorId then script.Parent:Play() end end)
Luo_Basics
#183646029Monday, February 15, 2016 4:31 AM GMT

function Join wtf
UnsourcedAnon
#183646099Monday, February 15, 2016 4:32 AM GMT

An evident issue is that your script, identified as "Join", is not bound to any sort of event signalling line. As a result, your script will never execute. Consider using the PlayerAdded event, as shown below: "game.Players.PlayerAdded:connect(Join)" That will execute whenever a Player joins the game.
Revelted
#183646145Monday, February 15, 2016 4:32 AM GMT

function Join(plyr) Worked for my other thing,
Luo_Basics
#183646174Monday, February 15, 2016 4:33 AM GMT

no it didnt
cofunction
#183646218Monday, February 15, 2016 4:33 AM GMT

game.Players.PlayerAdded:connect(Join)

    of     1