Answers for "Roblox Lerp Example in lua 2020"

Lua
5

Roblox Lerp Example in lua 2020

local part = game.Workspace.Part
local part2 = game.Workspace.Part2

for i = 0,1,.01 do
	part.CFrame = part.CFrame:Lerp(part2.CFrame, .5)
end
Posted by: Guest on October-29-2020

Browse Popular Code Answers by Language