Right when I touch the part to get tp'ed it waits like 2 secs to tp me.. I want it right away.
01 | Admins = { |
02 | "Player1" , |
03 | } |
04 |
05 | script.Parent.Touched:connect( function (hit) |
06 | for i,v in pairs (Admins) do |
07 | if hit.Parent.Name = = v then |
08 | hit.Parent:WaitForChild( "Torso" ).CFrame = script.Parent.Parent.TpedTo.CFrame * CFrame.new( 0 , 5 , 0 ) |
09 | end |
10 | end |
11 | end ) |