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