I'm trying to print a Cframe in 3d vector view, with the position on top.
So far I have tried to condense it into a string and print numbers in patterns of 3, but it doesn't seem to work.
local Cframe = tostring(game.Workspace.Part.CFrame) print(Cframe) for match in string.gmatch(Cframe, "[%d.]+,[%d.]+,[%d.]+,?") do print (match) end print(Cframe)