local lerp_val = function(start, vend, time)
return start + (vend - start) * time
end
local menusw = Menu.Switch("neverlose", "is paste", false)
local alpha = 0
Cheat.RegisterCallback("draw", function()
alpha = lerp_val(alpha, menusw:Get() and 1 or 0, GlobalVars.frametime * 8)
Render.Text("pelmeska says you are wrong", Vector2.new(100, 100), Color.new(1, 1, 1, alpha), 12)
end)