#is it possible to use a tweenservice inside of a while true loop?
1 messages · Page 1 of 1 (latest)
Yeah it is
You could do something like
For example:
Local TurnRedTween = Tweenservice:Create(loopingPart, tweeninfo, {Color = Color3.FromRGB(255, 0, 0)})
Local TurnWhiteTween = Tweenservice:Create(loopingPart, tweeninfo, {Color = Color3.FromRGB(255, 255, 255)})
While true do
TurnRedTween:Play()
Task.wait(1)
TurnWhiteTween:Play()
Task.wait(1)
end
thats a very simple way to do it
thanks man
thought gonna be more complex cus of chatgpt trying to come up with a solution
yeah, the moment someone said in a yt video use it as a tool, i did
before i wouldve used it way too much cus i didnt wanna learn a proper way of scripting
i just wanted to know if its possible to use tweens efficently in a while true loop like you just did
Ooh
Alright
ty for the help again