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?