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
10 years ago
1for o=1,500 do
2for i,v in pairs(chairs) do
3v.Vector3=v.Vector3.new(0,0.01,0)
4end
5wait()
6end

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 — 10y

1 answer

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

@adark

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

Same difference

Ad

Answer this question