Attempt to call a table value error

I am firing to fire a Remote Event, I keep getting the error, line 102: attempt to call a table value

My code:

        FXEvent.ExpandFade:FireClient(
            Player, 
            HumanoidRootPart, 
            Character, 
            Vector3.new(12.939, 8.74, 9.988), 
            Color3.fromRGB(149,136,189), 
            1, 
            1, 
            HumanoidRootPart.CFrame * CFrame(0,2.5,0) * CFrame.Angles(0,0,0),
            .15,
            Vector3.new(.2,.2,.2),
            "Color3"
        )

I should mention that line 102 is HumanoidRootPart.CFrame * CFrame(0,2.5,0) * CFrame.Angles(0,0,0),

1 Like

You need to do CFrame.new(0,2.5,0), not CFrame(0,2.5,0).

3 Likes