So basically, let's say when I hit a part, and its my right leg, is there a way i can make it print the location, eg:
OUTPUT: game.Players.PlayerName.Humanoid.RightLeg
supa dupa simple
1 | script.Parent.Touched:Connect( function (hit) |
2 | print (hit:GetFullName()) |
3 | end ) |
Try this: Parent the script under the detection part
01 | local detectPart = script.Parent |
02 |
03 | detectPart.Touched:Connect( function (part) |
04 | if part then |
05 | if part.Parent:FindFirstChild( "Humanoid" ) or part.Parent.Parent:FindFirstChild( "Humanoid" ) then |
06 |
07 | print (part.Position) |
08 | end |
09 | end |
10 | end ) |
Really easy to do! This script that I made down below checks if whatever touches the part is a humanoid (player) and prints what has touched the part.
1 | script.Parent.Touched:Connect( function (hit) |
2 | if hit.Parent:FindFirstChild( "Humanoid" ) then |
3 | print (hit.Name .. " has touched the part" ) |
4 | end ) |