imade this door that like moves to another part, but it does it so fast that its not real and it doesnt look fluid enough to me to like.
1 | local p = workspace.Part |
2 | local dr = workspace.Door |
3 | dr.Position = p.Position |
how wuold i fix this...?
1 | local p = workspace.Part |
2 | local dr = workspace.Door |
3 | for i = 1 , 20 do |
4 | dr.CFrame = dr.CFrame + Vector 3. new( 0 , 1 , 0 ) |
5 | wait(. 3 ) |
6 | end |
7 | --should be fluid enough, just change the second value in the for loop to the Y plane of the part. |