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

How do i reference every players character?

Asked by 4 years ago
Edited 4 years ago

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.

0
Even though this is answered, please include the code you are working with next time. matiss112233 258 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

To get a players character

Client

Player, starter pack and player gui

1game.Players.LocalPlayer:WaitForChild("Character")

Server

ServerScriptService and workspace

01--When a player is added, works on client too but might not in workspace
02 
03game.Players.PlayerAdded:Connect(function(player)
04    --Action
05end)
06 
07--or, this uses touched event since there is no other way
08local players = game:GetService("Players")
09part.Touched:Connect(function(hit)
10    local player =players:GetPlayerFromCharacter(hit.Parent)
11end)
0
Yeah don't do game.Players.LocalPlayer:WaitForChild("Character"). That's going to infinite yield Character isn't a child of the Player it's a property. Anyway, just use StarterCharacterScripts and game.Players.LocalPlayer.Character. farrizbb 465 — 4y
Ad

Answer this question