So i got my script, im a new dev and i dont know how to fix this:
code: clicksPopUp:TweenSize( UDim2.new(0.237,0,0.102,0) Enum.EasingDirection.Out, Enum.EasingStyle.Back, 0.5, false, nil )
error: Players.ThijnGamerYT.PlayerScripts.clicksPopUp:31: Expected ')' (to close '(' at line 29), got 'Enum'
You forgot a comma between the UDim2 and the EasingDirection. Also next time please use the Luau codeblocks as they are easier to read (Lua button above the text field).
clicksPopUp:TweenSize(UDim2.new(0.237,0,0.102,0),Enum.EasingDirection.Out, Enum.EasingStyle.Back, 0.5, false, nil)