Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I store every single player's Humanoid that joins my game?

Asked by
iLordy 27
4 years ago

I'd like to know more or less how would I be able to store a player's humanoid when they join in my game into a variable or array.

0
Connect a table to a playeradded function. Thesquid13 301 — 4y
0
use characteradded and characterremoving inside playeradded function. Since this is not a request site, you will need to come up with your own script, and post it here if it does not work. sleazel 1287 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

`` game.Players.PlayerAdded:Connect(function(plr) local hum = plr.Character:WaitForChild("Humanoid") hum:Clone(game.ReplicatedStorage) hum.Name = hum.Parent.Name end)

Ad

Answer this question