Myster FLYT Box

Myster FLYT Box

Myster FLYT Box

Product Info

Product Info

Product Info

FLYTBOX- a vaping device with built-in smoke and odor-filtering! With the Flytbox, the integrated 'Fog Filter' technology takes care of all the smoke and smell. Replaceable Filters - each device comes with two Fog Filters, additional replacements are available. Works with 0.5ML size up to 2.0ML size carts Long-lasting 420 mAh battery 5 voltage settings ranging from 1.8V to 3.8V USB-C charging cable included PRO TIP - start with light puffs and get a feel for exhaling through the filter.

FLYTBOX- a vaping device with built-in smoke and odor-filtering! With the Flytbox, the integrated 'Fog Filter' technology takes care of all the smoke and smell. Replaceable Filters - each device comes with two Fog Filters, additional replacements are available. Works with 0.5ML size up to 2.0ML size carts Long-lasting 420 mAh battery 5 voltage settings ranging from 1.8V to 3.8V USB-C charging cable included PRO TIP - start with light puffs and get a feel for exhaling through the filter.

FLYTBOX- a vaping device with built-in smoke and odor-filtering! With the Flytbox, the integrated 'Fog Filter' technology takes care of all the smoke and smell. Replaceable Filters - each device comes with two Fog Filters, additional replacements are available. Works with 0.5ML size up to 2.0ML size carts Long-lasting 420 mAh battery 5 voltage settings ranging from 1.8V to 3.8V USB-C charging cable included PRO TIP - start with light puffs and get a feel for exhaling through the filter.

More Products

More Products

3.5g 20th Century Series 3500mg Blended Disposables WS

Kream Tablets

Bedtime D8 : CBN 50 count

Live Rosin + Terps 500mg

Rip n Sip CBD Box

10g Disposable Live Rosin WS

Elephant Tranquilizer 20 Count Tapioca

Ass Kicker 20 Count Tapioca Cubes

1:5 THC / CBD Live Rosin Tapioca Cube

Load More

Load More

Load More

import { useEffect, useState } from "react"; export function AgeVerificationOverlay() { const [isVisible, setIsVisible] = useState(false); useEffect(() => { const lastVisit = localStorage.getItem("lastVisit"); const today = new Date().toDateString(); if (lastVisit !== today) { setIsVisible(true); localStorage.setItem("lastVisit", today); } }, []); const handleYes = () => { setIsVisible(false); }; const handleNo = () => { window.location.href = "/404"; }; return isVisible ? (

You must be 21+ to access this site.

) : null; }