Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

TweenSize error attempt to call a table value???

Asked by 2 years ago

Ok so i am making a GUI that will change its size and I get the error Players.westleyaaj.PlayerGui.ScreenGui.Play.TextButton.Script:7: attempt to call a table value - Server - Script:7

Frame = game.StarterGui.ScreenGui.Play.Frame
Button = script.Parent
-------------------------------------------------------------------------------------------------
Button.MouseEnter:Connect(function()

    Frame:TweenSize(
        UDim2(0.022, 0,0.593, 0),
        "out",
        "Sine",
        .3,
        true
    )
end)

Button.MouseLeave:Connect(function()
    Frame:TweenSize(
        UDim2(0, 3, 0, 46),
        "out",
        "Sine",
        .3,
        true
    )
end)

1 answer

Log in to vote
1
Answered by 2 years ago

I am sure it is UDim2.new() and not UDim2

Ad

Answer this question