of     1   

reckless01
#36234545Saturday, October 30, 2010 5:32 PM GMT

this works there is no output but instead of teleporting me it kills me. i thaught if i teleport his Torso it would teleport everything connected to me because its all welded together. bin = script.Parent function onTouch(hit) wait(0.1) if hit.Parent:FindFirstChild("Humanoid") ~=nil then hit.Parent.Torso.Position = CFrame*Vector3.new(bin.Parent.tele2) end end bin.Touched:connect(onTouch)
swimguy777
#36234807Saturday, October 30, 2010 5:35 PM GMT

bin = script.Parent function onTouch(hit) wait(0.1) if hit.Parent:FindFirstChild("Humanoid") ~=nil then hit.Parent:MoveTo(Vector3.new(bin.Parent.tele2.Position)) end end bin.Touched:connect(onTouch)
reckless01
#36235004Saturday, October 30, 2010 5:38 PM GMT

oh cool I will try that thanks.
reckless01
#36235354Saturday, October 30, 2010 5:44 PM GMT

it teleported me but not to that brick to a random spot.
reckless01
#36235635Saturday, October 30, 2010 5:48 PM GMT

i fixed it, it didn't need Vector3.new

    of     1