Didn't seem to work.
Again, I tried drastically changing config to see if anything change, and nothing
TRTD.AddEffect({name="faster speed", duration=20, enable=function(ply)
ply:SetWalkSpeed(ply:GetWalkSpeed() * 6)
ply:SetRunSpeed(ply:GetRunSpeed() * 6)
end, disable=function(ply)
ply:SetWalkSpeed(ply:GetWalkSpeed() / 6)
ply:SetRunSpeed(ply:GetRunSpeed() / 6)
end})
TRTD.AddEffect({name="reduced speed", duration=15, enable=function(ply)
ply:SetWalkSpeed(ply:GetWalkSpeed() * 0.10)
ply:SetRunSpeed(ply:GetRunSpeed() * 0.10)
end, disable=function(ply)
ply:SetWalkSpeed(ply:GetWalkSpeed() * 10)
ply:SetRunSpeed(ply:GetRunSpeed() * 10)
end})