GUI tweening not working

Hi there


btn.MouseButton1Click:Connect(function()
	
	framething:TweenPosition(
		UDim2.new(0.182, 0,0.976, 0),
		"Out",
		"Quad",
		1,
		nil)
	if error then
		warn(error)
	end
end) --{0.5, 0},{-0.437, 0}

local submitbtn = script.Parent.AnnounceArea.Provoker

submitbtn.MouseButton1Click:Connect(function()
	
	framething:TweenPosition(
		UDim2.new(0.5, 0,-0.437, 0),
		"Out",
		"Quad",
		1,
		nil)
	if error then
		warn(error)
	end
end)

My code ^
It isnt tweening the gui tho
It dosent have any errors
can someone please help?

The engine indexes them as Enum.EasingStyle[stringInputExample] obviously this it’s slower than just indexing the EnumItem directly.

Are you sure it’s executing the code snippet? or the framething tween it’s not being overridden by other things?

it is not being overidden byy something else