of     1   

Pirate115
#186270892Monday, March 28, 2016 9:52 PM GMT

" attempt to concatenate field 'Name' (a nil value)" Ghoul = game.Lighting.Ghoul local plr = game.Players:GetPlayers() ------------------------------- game.Players.PlayerAdded:connect(function() local msg = Instance.new("Message") msg.Parent = game.Workspace msg.Text = "Welcome, " ..plr.Name wait(.5) msg.Text = "I've been waiting for this moment.." end)
TimeTicks
#186270978Monday, March 28, 2016 9:53 PM GMT

game.Players.PlayerAdded:connect(function(player) local msg = Instance.new("Message",workspace) msg.Text = "Welcome, " ..player.Name wait(0.5) msg.Text = "I've been waiting for this moment.." end)
Kryddan
#186271016Monday, March 28, 2016 9:53 PM GMT

game.Players.PlayerAdded:connect(function(player) local msg = Instance.new("Message") msg.Parent = game.Workspace msg.Text = "Welcome, ", player.Name wait(.5) msg.Text = "I've been waiting for this moment.." end)
Pirate115
#186271344Monday, March 28, 2016 9:58 PM GMT

Worked. Thank you, gentlemen.

    of     1