Survivor System

and how would I go about doing that?

pretty much

I told how to do it, I explained it well.

I’m sorry I just don’t see how firing to all clients will benefit at the server, and how would I check the active players through the table?

You want to show it on a text label and GUI should be handled on client , so fire a remote event to every client and change the Text.

1 Like

if you want:
FireAllClients
in pairs loop
baesic
last

what would be the script to fire to all remaining clients through the table and check to see if they have survived?

pretty much, so the whole server can see the changes to the text i can VERY much see your a begginer

yes, I can read what you wrote, I can VERY much see that your a begginer, and yes I agree.

id reccomend for begginers to make simple stuff like obbies simulators ect.

RemoteEvent:FireAllClients(Table)

Server ^

RemoteEvent.OnClientEvent:Connect(function(Table)
   local Names = ''
   for i , v in ipairs(Table) do
    Names = Names..v.Name..' '
   end
   TextLabel.Text = Names

end)

Also don’t except people to give you scripts always ,learn basics and do it yourself.

well that might work considering it fires to all clients in the table. I’m not very good when it come to being more than one but not all through studio.

another side note is that: you really need to focus thinking on what your error is… the dev forum wont be always active for you… you need to learn how you can handle stuff… and the dev forum only goes here when your in a really tight spot which needs advanced scripter’s attention

No thats not how it works , it fires to every client in the game and passes the Table as the argument.

totally agree with that… the dev forum isnt made to give you scripts, but its to help you figure out whats the problem, but you fix it yourself…

Well thank you both for your time! I’ll work on the basics.

1 Like

anyways @SloppyBanana225 i reccomend reading all of these links. it takes time but it might fix it…
doing nothing wont really cut it

If this fixed your problem , please consider marking any of our answers as the solution.

2 Likes

no probs! the community helped me so i think i should try my best to help too!!

1 Like