Leaderous
(SirDevious)
#1
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
Leaderous
(SirDevious)
#3
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
Leaderous
(SirDevious)
#5
Ok now the trail stops showing, thanks!
system
(system)
Closed
#6
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.