[EDIT] I managed to used 'for i' loop and CFrame to do what I needed to do.
Sorry if the title was misleading cause I have no idea what title to give it
I need help trying to do an if then break loop. Like if a part reaches a specific coordinate, it will break the loop which makes it stop moving.
Here is my script and at line 10, it underlines the '=' sign. It says 'Expected then, got ='
01 | local base = game.Workspace.WaitForChild( "Elevatorbase" ) |
02 | local b 2 = script.Parent |
03 |
04 | function two() |
05 | while true do |
06 | wait( 0.01 ) |
07 | base.Position = base.Position+Vector 3. new( 0 , 0.07 , 0 ) |
08 | end |
09 | if |
10 | base.Position = - 2.525 , 16.18 , - 12.125 |
11 | then |
12 | break |
13 |
14 | end |
15 |
16 | script.Parent.ClickDetector.MouseClick:Connect(two) |
You need to detect position with item.Position == Vector3.new(x,y,z)
not item.Position = x,y,z
You simply used the wrong operator for this. And you forgot to put the break inside loop
Here is fixed script:
01 | local base = workspace:WaitForChild( "Elevatorbase" ) -- You dont need to use, and use :WaitForChild not .WaitForChild, game.Workspace..., you can use workspace... |
02 | local b 2 = script.Parent |
03 |
04 | function two() |
05 | while true do |
06 | base.Position = base.Position + Vector 3. new( 0 , 0.07 , 0 ) |
07 |
08 | if base.Position = = Vector 3. new(- 2.525 , 16.18 , - 12.125 ) then -- You needed to put this inside the place where the loop is, not out of loop |
09 | --[[ |
10 | do not use: |
11 | if |
12 | ... = ... |
13 | then |
14 | ... |
15 | end |
Examples of conditional statsments:
01 | -- 1 > Detect if is equal |
02 | if 2 + 3 = = 5 then |
03 | print ( "two plus three is five" ) |
04 | end |
05 |
06 | --> Detect another equal example: (by: me) |
07 | local number = 0 |
08 |
09 | if number = = 0 then |
10 | print ( "Number is 0 " ) |
11 | else |
12 | print ( "Number is not 0, the number is: " .. tostring (number)) |
13 | end |
14 |
15 |
All examples is in roblox wiki.
Roblox wiki pages:
Hope it helped :D
this should work
1 | local base = workspace:WaitForChild( "Elevator" ) |
2 | local b 2 = script.Parent |
3 | script.Parent.ClickDetector.MouseClick:Connect( function () |
4 | repeat |
5 | wait( 0.01 ) |
6 | base.Position = base.Position+Vector 3. new( 0 , 0.7 , 0 ) |
7 | until base.Position = - 2.525 , 16.18 , - 12.125 |
1) You used the wrong operator (you initialize variables with an equal sign =). If you want to check if two things are equal to each other, you use the == operator. For example:
1 | print ( 'hello' = = 'hello' ) |
2 | -- true |
2) You most likely accidentally pressed enter. You use conditional statements like this:
1 | if x then |
2 | ... code |
3 | end |
4 | -- or |
5 | if x then code end |
and not like this:
1 | if |
2 | x |
3 | then |
4 | ... code |
5 | end |
I suggest that you take a look at these pages: Operators, If statements