#Please can anyone teach me C0 or C1
11 messages · Page 1 of 1 (latest)
C0 os position of the part your moving, C1 is for the main part (i think? i never use C1)
How do I put it in a script
Ok
Local part = script.Parent
Local weld = script.Parent.weld
Part.weld.C0 = vector3.new(1, 1, 1)
Is it like this
here is an example:
local Part1 = workspace.part1
local Weld = Part1.weld
local Part2 = workspace.part2
Weld.C0 = vector3.new(0, 5, 0) -- This will make Part2 5 studs above Part1.
C0 & C1 are CFrames which determine the offset of the weld. The docs Pyro posted explain more.
Just wanted to clarify for others.