Idk im just curious if i can actually print it or not ? If it can be printed, how do you even do it?
You can pretty much print everything here's an example of what you probably want:
local part = game.Workspace.Part local start_cframe = CFrame.new(-5, 10, 0) local end_cframe = CFrame.new(5, 10, 0) for alpha = 0, 1, 0.1 do local lerped_cframe = start_cframe:Lerp(end_cframe, alpha) print() print("Alpha:", alpha) print("CFrame:", lerped_cframe) print("Position:", lerped_cframe.Position) print() part.CFrame = lerped_cframe task.wait() end
Here's the output: (Alpha is the lerp percentage, 0 = 0%, 1 = 100%)
Alpha: 0
CFrame: -5, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: -5, 10, 0
Alpha: 0.1
CFrame: -4, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: -4, 10, 0
Alpha: 0.2
CFrame: -3, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: -3, 10, 0
Alpha: 0.30000000000000004
CFrame: -2, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: -2, 10, 0
Alpha: 0.4
CFrame: -1, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: -1, 10, 0
Alpha: 0.5
CFrame: 0, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: 0, 10, 0
Alpha: 0.6
CFrame: 1.00000012, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: 1.0000001192092896, 10, 0
Alpha: 0.7
CFrame: 2, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: 2, 10, 0
Alpha: 0.7999999999999999
CFrame: 3, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: 3, 10, 0
Alpha: 0.8999999999999999
CFrame: 4, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: 4, 10, 0
Alpha: 0.9999999999999999
CFrame: 5, 10, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1
Position: 5, 10, 0