I am trying to make that copied parts with tah dot would move but i get this error TweenService is not a valid member of Frame.
1 | local ColletctionService = game:GetService( "CollectionService" ) |
2 | local Dot = ColletctionService:GetTagged( "Dot" ) |
3 | for _, Dot in pairs (Dot) do |
4 | Dot:TweenService(UDim 2. new( 0.495 , 0 , 0.239 , 0 ), "Out" , "Sine" , 1 ) |
5 |
6 | end |
Thank you for reading
I think you ment to do TweenPosition instead of TweenService
TweenService is a function that doesnt exists for a GuiObject thus you get that error