Anyway way to detect if a player spawns?
#1
I've been looking all over the wiki and I can't find anything about it.
Reply
#2
[lua]
link(game.Players.ChildAdded, function( c )

end)
[/lua]

or

[lua]
link(game.World.ChildAdded, function( c )
if c:isA("Character") then

end
end)
[/lua]

if you need to use their character.
Reply
#3
(06-15-2011, 08:00 PM)Jacob_ Wrote: [lua]
link(game.Players.ChildAdded, function( c )

end)
[/lua]

or

[lua]
link(game.World.ChildAdded, function( c )
if c:isA("Character") then

end
end)
[/lua]

if you need to use their character.

Thanks jacob!
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)