Tween UI Position not updating

Hey!

I have a problem with TweenService. If I select the UI and start the Tween you can only see the UI hitbox / blue border moving. The UI itself stays at the same place.

Here’s my script:

local object = (the path of my frame)
local tweeninfo = TweenInfo.new(0.6)
local tween = TweenService:Create(object, tweeninfo, {Position = UDim2.new(0.776, 0, 0.155, 0)})
tween:Play()

How can I make my UI move instead of just the blue line around it?

1 Like

I found the solution: I moved the UI in the StarterGui while being ingame. You’d need to move it in your PlayerGui!

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