I couldn't reproduce your problem efficiently, but I'll try my best.
I assume you have already put the script inside the part and it's a normal script
.
There's a small mistake you made in the second line.
1 | local h = workspace.Obj.Parent:FindFirstChild( "Humanoid" ) |
The Obj
is a variable passed by the native function of the part Touched
.
According to the API reference, the passed variable is BasePart
.
It means that you don't need to type workspace.
before typing Obj
because Obj
is already a variable.
1 | local h = Obj.Parent:FindFirstChildWhichIsA( "Humanoid" ) |
Also, sometimes(Just sometimes) using class finder is better for unexpected
names if you set the name of the player's Humanoid
to a different name...
Using print
is always a good practice to debug!
2 | local h = Obj.Parent:FindFirstChildWhichIsA( "Humanoid" ) |
4 | workspace.Bob.HumanoidRootPart.Anchored = true |
8 | script.Parent.Touched:Connect(onTouched) |