Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How to CFrame pairs without it scrambling?

Asked by
Qorm 100
9 years ago
    for o=1,500 do
    for i,v in pairs(chairs) do
    v.Vector3=v.Vector3.new(0,0.01,0)
    end
    wait()
    end

Basically, since I have different angle bricks, it scrambled EVERYWHERE. throughout Z and X. I don't know how to fix this and I searched everywhere so help would be appreciated!!

0
Can you give us a little more context? As far as I know, `Vector3` is not a property of any ROBLOX object. adark 5487 — 9y

1 answer

Log in to vote
0
Answered by
Qorm 100
9 years ago

@adark

for o=1,500 do
for i,v in pairs(chairs) do
v.CFrame=v.CFrame*CFrame.new(0,0.01,0)
end
wait()
end

Same difference

Ad

Answer this question