Hello Evening from ma7adi805, anyways I am trying to animate numbersequence since i cant use tween
and this is what i came up with
spawn(function()
local BeamTrans = 0
if BeamTrans>0.5 then
repeat
print(BeamTrans, Beam.Transparency.Keypoints[1].Value)
Beam.Transparency = NumberSequence.new(BeamTrans+0.05,1)
BeamTrans+=0.05
wait(0.15)
until BeamTrans<=0.5
else
repeat
Beam.Transparency = NumberSequence.new(BeamTrans-0.05,1)
BeamTrans-=0.1
wait(0.15)
until BeamTrans>=0.5
end
end)
when i use this script it instantly makes the transparency in the value it is needed without animation showing and i want it show because i need the fade in/out effect