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

Why does this C-frame script keep going up, not down?[SOLVED ON MY OWN]

Asked by 10 years ago

No errors, but i need to know how to fix this so after these two parts go up, after 5 seconds, it goes down to its original position.

01part = script.Parent.Part
02part2 = script.Parent.Part2
03function move()
04    for i= 0.1 ,50 do
05        wait(0.1)
06        b = 0.1+0.1
07    part.Position = part.Position+Vector3.new(0,b,0)
08    part2.Position = part2.Position+ Vector3.new(0,b,0)
09    script.Parent.ClickDetector.MaxActivationDistance = 0
10    end
11    wait(5)
12    for i= 0.1 ,50 do
13        wait(0.1)
14        b = 0.1+0.1
15        part.Position = part.Position+Vector3.new(0,b,0)
View all 21 lines...

1 answer

Log in to vote
2
Answered by
Sublimus 992 Moderation Voter
10 years ago

You are still adding in the second part, you need to subtract:

01part = script.Parent.Part
02part2 = script.Parent.Part2
03function move()
04    for i= 0.1 ,50 do
05        wait(0.1)
06        b = 0.1+0.1
07    part.Position = part.Position+Vector3.new(0,b,0)
08    part2.Position = part2.Position+ Vector3.new(0,b,0)
09    script.Parent.ClickDetector.MaxActivationDistance = 0
10    end
11    wait(5)
12    for i= 0.1 ,50 do
13        wait(0.1)
14        b = 0.1+0.1
15        part.Position = part.Position-Vector3.new(0,b,0)
View all 21 lines...
0
Thanks, but I changed it on my own by putting the vector3 as (0,-b,0) My_Comment 95 — 10y
Ad

Answer this question