So im trying to make a button which opens a door, then you click it again and it closes it. Im not great at scripting but this is my attempt. (NOTE: the door works shutting and closing with a ontouch script.) The problem is that it keeps saying that error at the bottom. Ive tried lots of ends and it still says it.
Explorer of bricks and scripts: Here
01 | b = true |
02 | a = script.Parent.Parent.Part |
03 | function onClicked(playerWhoClicked) |
04 | if b = = true then |
05 | script.Sound:Stop() |
06 | a.CFrame = a.CFrame + Vector 3. new( 0 , 0.5 , 0 ) |
07 | script.Sound:Play() |
08 | wait( 0.1 ) |
09 | for i = 1 , 17 do |
10 | a.CFrame = a.CFrame + Vector 3. new( 0 , 0.5 , 0 ) |
11 | wait( 0.1 ) |
12 | b = false |
13 | end |
14 | else |
15 | wait( 0.1 ) |
--Expected <eof>, got 'end'
Simply means it expected nothing there, <eof>, but got end. All you have to do is remove the end.
01 | b = true |
02 | a = script.Parent.Parent.Part |
03 | function onClicked(playerWhoClicked) |
04 | if b = = true then |
05 | script.Sound:Stop() |
06 | a.CFrame = a.CFrame + Vector 3. new( 0 , 0.5 , 0 ) |
07 | script.Sound:Play() |
08 | wait( 0.1 ) |
09 | for i = 1 , 17 do |
10 | a.CFrame = a.CFrame + Vector 3. new( 0 , 0.5 , 0 ) |
11 | wait( 0.1 ) |
12 | b = false |
13 | end |
14 | else |
15 | wait( 0.1 ) |