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

How do you get the player from the character model?

Asked by
sydre2 25
6 years ago

If you have the character model of a player then what is the best way to get the player? I know that you can say:

game.Players:FindFirstChild(character_model.Name)

but is there another better way to do this in?

2 answers

Log in to vote
0
Answered by 6 years ago

There's an actual function for this, :GetPlayerFromCharacter(character). The parameter is the character instance you want to use to get to the character.

For example, a touched part:

01local plrs = game.Players
02 
03script.Parent.Touched:Connect(function(hit)
04    local plr = plrs:GetPlayerFromCharacter(hit.Parent)
05    if plr then
06        print("Player"..plr.Name)
07    elseif not plr then
08        print("Player not found. Hit is something else.")
09    end
10 
11end)
Ad
Log in to vote
0
Answered by 6 years ago
Edited 6 years ago

If it is a tool you can get the character like this:

1tool = script.Parent -- if the script is inside the tool
2local character = tool.Parent -- if the tool is equipped, it will be in the character
3 
4local player = game.Players:GetPlayerFromCharacter(character) -- A pre-build function made by Roblox to get the player from the character (local character).

If you want to get the player from a part:

1local part = script.Parent --Script's parent is a part if the script is inside that part
2local plr = game.Players -- Players service
3 
4part.Touched:Connect(function(touch) -- function to check is something touched the part
5    local character = touch.Parent --The object that touched the part
6    local player = plr:GetPlayerFromCharacter(character)
7    --your code if you need it
8end)

I hope that this answer has been useful and that i helped you solving your problem. For further informations, use this link:

Here

Answer this question