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

Why is there a red line at the bottom of this script?

Asked by 5 years ago
Edited by DeceptiveCaster 5 years ago
01part = game.Workspace.Part
02 
03while true do
04 
05    local Newpos = pos
06 
07    wait(5)
08 
09    part.BrickColor = BrickColor.new("Maroon")
10 
11    pos = math.random(1,4) -- picks a number for pos
12 
13    if pos == 1 then --this makes decisions to where it teleports
14 
15        part.Position = game.Workspace.Start.Position
16 
17        part.BrickColor = BrickColor.new("Persimmon")
18 
19    elseif pos == 2 then
20 
21        part.Position = game.Workspace.Start2.Position
22 
23        part.BrickColor = BrickColor.new("Persimmon")
24 
25    elseif pos == 3 then
26 
27        part.Position = game.Workspace.Start3.Position
28 
29        part.BrickColor = BrickColor.new("Persimmon")
30 
31    elseif pos ==4 then
32 
33        part.Position = game.Workspace.Start4.Position
34 
35        part.BrickColor = BrickColor.new("Persimmon")
36 
37    end
38--end is underlined with red I cant figure out why and it is breaking my script
0
Just hover over the word that the line is under The_Pr0fessor 595 — 5y
0
it should tell you The_Pr0fessor 595 — 5y
0
I cant understand it it says "Expected 'end' ('to close 'then' at line 18), got <eof> 50ShadesofLamps 5 — 5y
0
There should be 2 ends Clasterboy 72 — 5y
View all comments (3 more)
0
You forgot to close off the "then" at line 18. When it shows "Expected 'end'" (Happens a lot) then just add another end. Good luck! Doglord120 0 — 5y
0
You should add another "end" to the script. At line 2 you start a "while true do" that you end at line 19 (last line), but at line 7 you start a "if" that you never end. Spjureeedd 385 — 5y
0
I put the code into a code block. DeceptiveCaster 3761 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

You forgot to put another end at the end xD
Here’s the fixed code ;)

01part = game.Workspace.Part
02 
03   
04 
05while true do
06 
07   
08 
09local Newpos = pos
10 
11   
12 
13wait(5)
14 
15   
16 
17part.BrickColor = BrickColor.new("Maroon")
18 
19   
20 
21pos = math.random(1,4)
22 
23   
24 
25if pos == 1 then
26 
27   
28 
29part.Position = game.Workspace.Start.Position
30 
31   
32 
33part.BrickColor = BrickColor.new("Persimmon")
34 
35   
36 
37elseif pos == 2 then
38 
39   
40 
41part.Position = game.Workspace.Start2.Position
42 
43   
44 
45part.BrickColor = BrickColor.new("Persimmon")
46 
47   
48 
49elseif pos == 3 then
50 
51   
52 
53part.Position = game.Workspace.Start3.Position
54 
55   
56 
57part.BrickColor = BrickColor.new("Persimmon")
58 
59   
60 
61elseif pos == 4 then
62 
63   
64 
65part.Position = game.Workspace.Start4.Position
66 
67   
68 
69part.BrickColor = BrickColor.new("Persimmon")
70 
71   
72 
73end
74 
75end
Ad

Answer this question