saurus10Join Date: 2010-08-30 Post Count: 87 |
So I want players to get teleported to a place (which I've already done) but when they all die and are in the respawn room, the game resets. So I need help doing that
while true do
for _,v in pairs(game.Players:GetChildren()) do
alive = v:FindFirstChild("Humanoid")
if alive ~=nil then
end
end
Does this make sense? If it does not, please help me |
|
pa00Join Date: 2010-06-06 Post Count: 451 |
The humanoid would still exist if they respawn.
You could set them on a certain team if they are alive, then change the team when they die. |
|
saurus10Join Date: 2010-08-30 Post Count: 87 |
So...
while true do
for _,v in pairs(game.Players:GetChildren()) do
alive = v:FindFirstChild("Humanoid")
if game.Players.TeamColor = BrickColor.new("Alive") ~=nil then
end
end
??? |
|
saurus10Join Date: 2010-08-30 Post Count: 87 |
Or an updated version:
while true do
for _,v in pairs(game.Players:GetChildren()) do
alive = v:FindFirstChild("Humanoid")
game.Players.TeamColor = BrickColor.new("Alive") ~=nil
local h = Instance.new("Message")
h.Parent = Workspace
h.Text = "Everyone died!"
wait(10)
h:Remove()
end
end
Does this work? |
|
saurus10Join Date: 2010-08-30 Post Count: 87 |
Bumpy doo |
|
|
Just make teams alive and dead when someone dead change his team to dead and hide teams.
then check teams if there is no alive i mean there is no one in team alive then tp them. |
|
|
Alive = 0
while true do
for i,v in pairs(game.Players:GetChildren()) do
if v.TeamColor == game.Teams.Alive.TeamColor then
Alive = Alive + i
if Alive == 0 then
local h = Instance.new("Message")
h.Parent = Workspace
h.Text = "Everyone died!"
wait(10)
h:Remove()
end
end
end
Try using this. |
|
|
#AnonyAnonymous
also you need to change their team to dead :p |
|
|
#AnonyAnonymous
not sure but it might break. |
|
|
Your script made NO sense whatsoever.
You need to use a table. |
|
|
# BlackTheHacker
What table ? :c
tme = 30
game.Players.PlayerAdded:connect(function(player)
player.CharacterAdded:connect(function(character)
num = 0
num = num + 1
character.Humanoid.Died:connect(function()
num = num - 1
if num == 0 then
text = Instance.new("Message", game.Workspace)
text.Text = "yolo"
wait(tme)
text:remove()
end
return character
end)
end)
end) |
|
|
Stop stalking me you idiot. Get a life. |
|
saurus10Join Date: 2010-08-30 Post Count: 87 |
*CoughSaysTheHackerCough* |
|
|
@noob above
What does my name have anything to do? |
|
WaffloidJoin Date: 2011-07-14 Post Count: 1606 |
How's he stalking you..? He just replied to your post.
~Swagilitious and not Nutricious~ |
|
|
No he can't following me on every thread. |
|
|
saurus10Join Date: 2010-08-30 Post Count: 87 |
@BlackTheHacker
Because you said he doesn't have a life, when we all know hackers don't have lives, they have nothing better to do :D |
|
|
That is where you are wrong. "Hackers" develop complex programs. They sell it. They make money. |
|