I am trying to make a script that will unanchore every players humanoid rootpart on a NumberValue changed. The problem is I dont know how to refer to a players character.
To get a players character
Client
Player, starter pack and player gui
1 | game.Players.LocalPlayer:WaitForChild( "Character" ) |
Server
ServerScriptService and workspace
01 | --When a player is added, works on client too but might not in workspace |
02 |
03 | game.Players.PlayerAdded:Connect( function (player) |
04 | --Action |
05 | end ) |
06 |
07 | --or, this uses touched event since there is no other way |
08 | local players = game:GetService( "Players" ) |
09 | part.Touched:Connect( function (hit) |
10 | local player = players:GetPlayerFromCharacter(hit.Parent) |
11 | end ) |