i dont realy understand it
The function :GetPlayerFromCharacter()
will take the character model and give you the player corresponding to that. For example, let's say a player touched my part, and I want to display a message on their screen, I could use the function :GetPlayerFromCharacter()
to get the player model, like so:
1 | script.Parent.Touched:Connect( function (hit) |
2 | local character = hit.Parent |
3 | local player = workspace:GetPlayerFromCharacter(character) |
4 | if player then |
5 | --code |
6 | end |
7 | end ) |