Error on TweenService attempt to call a table value

so I have made a script which has this line of code

local t1 = TS:Create(frame,TweenInfo(1),{Position = UDim2.new(0,0,0.85,0)})

but in output it writes the error
Players.Dankinations.PlayerGui.Talking.Talker.Message.Typewriter:7: attempt to call a table value
any way to fix this?

This should be replaced with

-- Use TweenInfo.new()
local t1 = TS:Create(frame, TweenInfo.new(1), {Position = UDim2.new(0, 0, 0.85, 0)})

ohhh thank you, i didn’t see that, even the most little mistakes can break the whole script!

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