CFrame Is Confusing Me

Trying To Figure Out What Is Causing My CFrame Issue

3 Likes

Have you tried double checking the origin??? It’s on the side, not the center.

Also check the bridge raising up tween, maybe there are some values that are weird.

i am showing the up tween in the video

Post code where it closes please

oh close

Try this:

local sidelTween = ts:Create(Side1.PrimaryPart, ti, {CFrame = CFrame.new(Side1.PrimaryPart.CFrame.Position) * CFrame.Angles(math.rad(60), math.rad(70),math.rad(0))})

image

local bridgeUp = Side1.PrimaryPart.CFrame
local bridgeDown = Side1.PrimaryPart.CFrame * CFrame.new(math.rad(-60), math.rad(70), 0)

local side1TweenUp = TweenService:Create(Side1.PrimaryPart, TweenInfo.new(1), {CFrame = bridgeUp})
local side1TweenDown = TweenService:Create(Side1.PrimaryPart, TweenInfo.new(1), {CFrame = bridgeDown})
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.