|
| 06 Mar 2015 11:44 AM |
local textlabel = script.Parent
game.Players.PlayerAdded:connect(function(player) if player and player.Character then textlabel.Text = player.Name .. " has joined!" end end)
---------
It doesn't do anything at all :/ |
|
|
| Report Abuse |
|
|
|
| 06 Mar 2015 11:50 AM |
"if player and player.Character"
1. character doesn't exist 2. it is completely unnecessary to check for the player
local textlabel = script.Parent
game.Players.PlayerAdded:connect(function(player) textlabel.Text = player.Name .. " has joined!" end) |
|
|
| Report Abuse |
|
|
| |
|
|
| 06 Mar 2015 11:52 AM |
textlabel.Text = player.Name.." has joined!" -- NO SPACES.
you're welcome.
~totally not a hidden bump~ |
|
|
| Report Abuse |
|
|
chimmihc
|
  |
| Joined: 01 Sep 2014 |
| Total Posts: 17143 |
|
|
| 06 Mar 2015 11:55 AM |
http://www.roblox.com/item.aspx?id=223654079
1. Follow What The ReadMe Says
2. ???????
3. Profit |
|
|
| Report Abuse |
|
|