So, I'm trying to move a player somewhere when the touch a part named "Hitbox" and I made this but it doesn't work... And idk why..
function inHitbox (Player) Player.Parent.Torso:MoveTo (script.Parent.Parent.MainPart.Position) end script.Parent.Touched:connect(inHitbox)
I believe MoveTo is a function for models that moves the PrimaryPart of that model to the designated Vector3 position, so you'd just do Player.Parent
instead of Player.Parent.Torso
.