Expected '}' (to close '{'

I’m having trouble figuring out what is missing.

21:42:28.890 - Players.Play_MazeOfHeck.PlayerGui.LocalScript:48: Expected '}' (to close '{' at column 55), got ')'

local tween = TweenService:Create(camera, tweenInfo, { CFrame = CFrame.new(petClone.PrimaryPart.Position + (petClone.PrimaryPart.CFrame.lookVector * 5) + Vector3.new(0,0.75,0)) ,petClone.PrimaryPart.Position) } )

I might be wrong, but I see an extra ) after the vector

1 Like

You have three opening parentheses within the table, but four closing parentheses.

3 Likes