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

how do you find localplayer's torso?

Asked by 8 years ago

what I'm currently using only works in studio, is there any way you can get it to work in roblox player?

1local player = game.Players.LocalPlayer
2 
3local handle = player.Character.Torso
1
What type of script are you using? LocalScript or Script? A code like this should be handled in a Local Script. GeezuzFusion 200 — 8y

2 answers

Log in to vote
1
Answered by 8 years ago

It doesn't work on game because you are trying to call the players torso before it loads into the game. In the studio it loads before the scripts. But in a real game the character takes longer to load. I suggest using this:

1repeat wait() until player.Character

to make the script wait until the character has loaded in

this would pan out to

1local player = game.Players.LocalPlayer
2 
3repeat wait() until player.Character
4 
5local handle = player.Character.Torso

if that doesnt work do

1local handle = player.Character:WaitForChild("Torso")
Ad
Log in to vote
-1
Answered by 8 years ago
1game.Players.LocalPlayer.Character.Torso
0
that's mostly it Credit_worthy -2 — 8y

Answer this question