Tool will have no trail when equipped

I have been trying to create a tool for starter pack that would show no trail when equipped using a script:

local Combat = script.Parent

Combat.Equipped:Connect(function()
Combat.Handle.Trail.Transparency = 1
end)

I need help finding where the error is (im a beginner pls explain it simple)

5 Likes

Transparency set to 1 means its invisible. 0 means visible.
Replace the Combat.Handle.Trail.Transparency = 1 to
Combat.Handle.Trail.Transparency = 0

I tried this and the trail still showed up, did I do something wrong

I forgot trails use number sequences for transparency.
Try using NumberSequences instead of numbers: NumberSequence.new(1)

1 Like

Ok now the trail stops showing, thanks!

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.