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.
local p = workspace.Part local dr = workspace.Door dr.Position = p.Position
how wuold i fix this...?
local p = workspace.Part local dr = workspace.Door for i = 1,20 do dr.CFrame = dr.CFrame + Vector3.new(0,1,0) wait(.3) end --should be fluid enough, just change the second value in the for loop to the Y plane of the part.