Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

IF and ELSE problems, why?

Asked by 9 years ago

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

01b = true
02a = script.Parent.Parent.Part
03function onClicked(playerWhoClicked)
04    if b == true then
05        script.Sound:Stop()
06        a.CFrame = a.CFrame + Vector3.new(0, 0.5, 0)
07        script.Sound:Play()
08        wait(0.1)
09        for i=1, 17 do
10            a.CFrame = a.CFrame + Vector3.new(0, 0.5, 0)
11            wait(0.1)
12        b = false
13        end
14    else
15        wait(0.1)
View all 27 lines...

1 answer

Log in to vote
3
Answered by 9 years ago

--Expected <eof>, got 'end' Simply means it expected nothing there, <eof>, but got end. All you have to do is remove the end.

01b = true
02a = script.Parent.Parent.Part
03function onClicked(playerWhoClicked)
04    if b == true then
05        script.Sound:Stop()
06        a.CFrame = a.CFrame + Vector3.new(0, 0.5, 0)
07        script.Sound:Play()
08        wait(0.1)
09        for i=1, 17 do
10            a.CFrame = a.CFrame + Vector3.new(0, 0.5, 0)
11            wait(0.1)
12        b = false
13        end
14    else
15        wait(0.1)
View all 25 lines...
0
Thank you, im relieved that was the only thing wrong. Because i wanted to make it all on my own xD Thank you :) LittleBigDeveloper 245 — 9y
0
No problem. SimplyRekt 413 — 9y
Ad

Answer this question