Untitled
unknown
lua
21 days ago
673 B
4
Indexable
Never
local Part = script.Parent local StartPosition = Vector3.new(-618, 4.5, 3) local EndPosition = Vector3.new(-695, 4.5, 3) repeat -- La plataforma se mueve de StartPosition hacia EndPosition de forma más lenta for i = 0, 1, 0.005 do -- Reducimos el incremento para hacer el movimiento más lento Part.Position = StartPosition:Lerp(EndPosition, i) wait(0.02) end wait(0.02) -- La plataforma se mueve de EndPosition hacia StartPosition de forma más lenta for i = 0, 1, 0.005 do -- Reducimos el incremento para hacer el movimiento más lento Part.Position = EndPosition:Lerp(StartPosition, i) wait(0.02) end wait(0.02) until false
Leave a Comment