" 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) |