So you know roblox scripts cannot go more than 60 HZ, (without a fps unlocker), BUT
So if lets the the tween goes like, its gonna create 480 sounds and play that sound 480 times a second,
So it will something like: TweenInfo.New(1/480), IS IT possible to do that?
you dont need to use tweens to do something multiple times
just use a simple loop
for i = 1,480 do
sound:Play()
if i%8 == 0 then -- only true 1/8 of the time, so will wait 1/60 seconds 60 times = 1 second
task.wait()
end
end
Tweens are for object properties. Not anything like true or false though.