Attempt to call a table value

TS:Create(thing.BombTop, TweenInfo(1), {Color = Color3.fromRGB(80, 50, 0)})
To put things simply, this line apparently has the error ‘attempt to call a table value’. I looked around for posts covering this and they said it had to do with the Color3.fromRGB but I don’t know how to fix it.

2 Likes

Pretty sure you have to add a EasingStyle and EasingDirection

I’ve never had to add that before

Maybe try setting easingstyle to Linear and direction to InOut

1 Like

You forgot to add .new() at the end of TweenInfo, TweenInfo itself is a table that contains functions, .new() is the function that creates a TweenInfo.

2 Likes

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