Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How would I animate textures?

Asked by 4 years ago

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:

01local TweenService = game:GetService("TweenService")
02 
03local texture1 = script.Parent.Texture1
04local texture2 = script.Parent.Texture2
05 
06local tweenInfo1 = TweenInfo.new(8, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1)
07local tween1 = TweenService:Create(texture1, tweenInfo1, {OffsetStudsV=50})
08local tweenInfo2 = TweenInfo.new(7, Enum.EasingStyle.Sine, Enum.EasingDirection.InOut, -1, true)
09local tween2 = TweenService:Create(texture2, tweenInfo2, {OffsetStudsU=50, StudsPerTileU=55, StudsPerTileV=45})
10 
11tween1:Play()
12tween2:Play()
0
How are your Texture1 & 2 defined in Explorer ? Lord_BradyRocks -5 — 4y
0
Texture1 and Texture2 NightWarrior1717 14 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

maybe just use a Beam, and an attachment or switch from texture to texture with each one different in a while loop.

Ad

Answer this question