of     1   

RainbowDash101
#95439804Saturday, April 20, 2013 9:29 PM GMT

Like. for a "_____ has joined the game" script. What would you do?
RainbowDash101
#95440348Saturday, April 20, 2013 9:35 PM GMT

bump
1WOOF1
#95440397Saturday, April 20, 2013 9:35 PM GMT

RainbowDash101
#95440597Saturday, April 20, 2013 9:38 PM GMT

@1WOOF I mean like not that specifically how do you make it so it goes to the humanoid, like maybe to make you spawn with 10000 health.
1WOOF1
#95440819Saturday, April 20, 2013 9:40 PM GMT

@Rain, You learn basic Rbx.Lua?
RainbowDash101
#95440894Saturday, April 20, 2013 9:41 PM GMT

@1Woof1 yeah, and I have a fair amount of knowledge on scripting. I just dont know how to make it not for a specific player.
1WOOF1
#95440964Saturday, April 20, 2013 9:42 PM GMT

@Rain, NOT for a specific player or FOR a specific player?
RainbowDash101
#95441245Saturday, April 20, 2013 9:45 PM GMT

@1WOOF1 NOT for a specific player.
1WOOF1
#95441423Saturday, April 20, 2013 9:46 PM GMT

local NotForThisGuyCauseHesANubOrSomething = 'Telamon' game.Players.PlayerAdded:connect(function(p) if p.Name ~= NotForThisGuyCauseHesANubOrSomething then repeat wait() until p.Character and p.Character:findFirstChild('Humanoid') p.Character.Humanoid.MaxHealth = 999999 wait() p.Character.Humanoid.Health = 999999 end end)
tuxedoman23
#95441565Saturday, April 20, 2013 9:48 PM GMT

Concatenation is a method used for things like this. Here is an example: function Enter(plr) local p = plr.Name x = Instance.new("Message", Workspace) x.Text = p.."has entered the server." wait(5) x:Destroy() end game.Players.ChildAdded:connect(Enter)

    of     1