(First of all, I'm sorry for being a total noob to scripting, but I had a large hiccup in time and now I forgot almost everything.)
Okay, so I have this...
local Players = game:GetService("Players") Players.PlayerAdded:connect(function(player) end)
And, As stated, I have no idea how to find a player's entity (body parts, hats, Humanoid, etc.)
Is there a way to find a player just from this? thanks.
P.S. Is this suppost to be in a localscript?
Your code is correct. i do not recommend using it in a localscript
Inside game.ServerScriptService or workspace you can do:
local Players = game.Players -- get Players Players.PlayerAdded:connect(function(player) -- connect the PlayerAdded event Player.CharacterAdded:connect(function(character) -- Get character when Added print(player.Name, "character has been added") end) print(player.Name, "has entered the server!") -- print to output end)
Player.Character This line gets the workspace character eg.Legs, arms, torso ext