The reason the trail’s transparency is a numbersequence and not a float is because its designed to allow you to add a gradient. If you don’t understand how this works I suggest you to review the API
while task.wait() do
trail.Transparency = trail.Transparency + .5
end
If you want the trail to be less and less visible at its end, then you can just double click transparency and you should see three dots, click on it, and you can edit the trails transparency levels throughout its lifetime.
OR, if you want to do it in a script, use NumberSequenceKeypoint.new(timestamp, value) and put it in a table, here’s an example.