How would I animate textures?
I'm animating a conveyor texture and couldn't find out how so used the code which Roblox provided. It works normally but starts to expand somewhat after a little while. How would I stop this? Here is the code I used:
01 | local TweenService = game:GetService( "TweenService" ) |
03 | local texture 1 = script.Parent.Texture 1 |
04 | local texture 2 = script.Parent.Texture 2 |
06 | local tweenInfo 1 = TweenInfo.new( 8 , Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, - 1 ) |
07 | local tween 1 = TweenService:Create(texture 1 , tweenInfo 1 , { OffsetStudsV = 50 } ) |
08 | local tweenInfo 2 = TweenInfo.new( 7 , Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, - 1 , true ) |
09 | local tween 2 = TweenService:Create(texture 2 , tweenInfo 2 , { OffsetStudsU = 50 , StudsPerTileU = 55 , StudsPerTileV = 45 } ) |