Answered by
6 years ago Edited 6 years ago
Looks like you're missing an end
You have two if statements within your function, but only one end!
03 | script.Parent.Touched:connect( function (hit) |
09 | script.Parent.closeddoors.Transparency = 0 |
10 | script.Parent.closeddoors.CanCollide = true |
11 | script.Parent.opendoor 1. Transparency = 1 |
12 | script.Parent.opendoor 2. Transparency = 1 |
15 | if hit.Parent:FindFirstChild( 'Humanoid' ) then |
16 | hit.Parent.Torso.CFrame = CFrame.new(- 13.084 , 122.459 , 989.779 ) |
17 | script.Parent.closeddoors.CanCollide = false |
18 | script.Parent.closeddoors.Transparency = 1 |
19 | script.Parent.opendoor 1. Transparency = 0 |
20 | script.Parent.opendoor 2. Transparency = 0 |
Indenting helps identify issues like these :)