So i have a winning icon script as well as a cinematics event in my mod, but the cinematics don't hide winning icons, anyone knows the solution? Images shown below

Cinematic event:
start = 0
finish = 0
function onCreate()
--THE TOP BAR
makeLuaSprite('UpperBar', 'empty', 0, -120)
makeGraphic('UpperBar', 1280, 120, '000000')
setObjectCamera('UpperBar', 'hud')
addLuaSprite('UpperBar', false)
--THE BOTTOM BAR
makeLuaSprite('LowerBar', 'empty', 0, 720)
makeGraphic('LowerBar', 1280, 120, '000000')
setObjectCamera('LowerBar', 'hud')
addLuaSprite('LowerBar', false)
end
function onUpdate()
if start == 1 then
doTweenY('Cinematics1', 'UpperBar', 0, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 600, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 120, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 120, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 0, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 0, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 0, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 0, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 0, 0.25)
doTweenAlpha('AlphaTween7', 'ratingIcon', 0, 0.25)
doTweenAlpha('AlphaTween8', 'missesIcon', 0, 0.25)
doTweenAlpha('AlphaTween9', 'scoreIcon', 0, 0.25)
doTweenAlpha('AlphaTween10', 'timeBar', 0, 0.25)
doTweenAlpha('AlphaTween11', 'timeBarBG', 0, 0.25)
doTweenAlpha('AlphaTween12', 'timeTxt', 0, 0.25)
doTweenAlpha('AlphaTween13', 'rating', 0, 0.25)
doTweenAlpha('AlphaTween14', 'misses', 0, 0.25)
doTweenAlpha('AlphaTween15', 'score', 0, 0.25)
doTweenAlpha('AlphaTween16', 'songIcon', 0, 0.25)
doTweenAlpha('AlphaTween17', 'song', 0, 0.25)
end
if downscroll and start == 1 then
doTweenY('Cinematics1', 'UpperBar', 0, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 600, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 480, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 480, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 0, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 0, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 0, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 0, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 0, 0.25)
doTweenAlpha('AlphaTween7', 'ratingIcon', 0, 0.25)
doTweenAlpha('AlphaTween8', 'missesIcon', 0, 0.25)
doTweenAlpha('AlphaTween9', 'scoreIcon', 0, 0.25)
doTweenAlpha('AlphaTween10', 'timeBar', 0, 0.25)
doTweenAlpha('AlphaTween11', 'timeBarBG', 0, 0.25)
doTweenAlpha('AlphaTween12', 'timeTxt', 0, 0.25)
doTweenAlpha('AlphaTween13', 'rating', 0, 0.25)
doTweenAlpha('AlphaTween14', 'misses', 0, 0.25)
doTweenAlpha('AlphaTween15', 'score', 0, 0.25)
doTweenAlpha('AlphaTween16', 'songIcon', 0, 0.25)
doTweenAlpha('AlphaTween17', 'song', 0, 0.25)
end
if finish == 2 then
doTweenY('Cinematics1', 'UpperBar', -120, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 720, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 50, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 50, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 1, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 1, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 1, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 1, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 1, 0.25)
doTweenAlpha('AlphaTween8', 'ratingIcon', 1, 0.25)
doTweenAlpha('AlphaTween9', 'missesIcon', 1, 0.25)
doTweenAlpha('AlphaTween10', 'scoreIcon', 1, 0.25)
doTweenAlpha('AlphaTween11', 'timeBar', 1, 0.25)
doTweenAlpha('AlphaTween12', 'timeBarBG', 1, 0.25)
doTweenAlpha('AlphaTween13', 'timeTxt', 1, 0.25)
doTweenAlpha('AlphaTween14', 'rating', 1, 0.25)
doTweenAlpha('AlphaTween15', 'misses', 1, 0.25)
doTweenAlpha('AlphaTween16', 'score', 1, 0.25)
doTweenAlpha('AlphaTween17', 'songIcon', 1, 0.25)
doTweenAlpha('AlphaTween18', 'song', 1, 0.25)
end
if downscroll and finish == 2 then
doTweenY('Cinematics1', 'UpperBar', -120, 0.5, 'Linear')
doTweenY('Cinematics2', 'LowerBar', 720, 0.5, 'Linear')
noteTweenY('NOTEMOVE1', 0, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE2', 1, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE3', 2, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE4', 3, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE5', 4, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE6', 5, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE7', 6, 570, 0.5, 'Linear')
noteTweenY('NOTEMOVE8', 7, 570, 0.5, 'Linear')
doTweenAlpha('AlphaTween1', 'healthBarBG', 1, 0.25)
doTweenAlpha('AlphaTween2', 'healthBar', 1, 0.25)
doTweenAlpha('AlphaTween3', 'scoreTxt', 1, 0.25)
doTweenAlpha('AlphaTween4', 'iconP1', 1, 0.25)
doTweenAlpha('AlphaTween5', 'iconP2', 1, 0.25)
doTweenAlpha('AlphaTween8', 'ratingIcon', 1, 0.25)
doTweenAlpha('AlphaTween9', 'missesIcon', 1, 0.25)
doTweenAlpha('AlphaTween10', 'scoreIcon', 1, 0.25)
doTweenAlpha('AlphaTween11', 'timeBar', 1, 0.25)
doTweenAlpha('AlphaTween12', 'timeBarBG', 1, 0.25)
doTweenAlpha('AlphaTween13', 'timeTxt', 1, 0.25)
doTweenAlpha('AlphaTween14', 'rating', 1, 0.25)
doTweenAlpha('AlphaTween15', 'misses', 1, 0.25)
doTweenAlpha('AlphaTween16', 'score', 1, 0.25)
doTweenAlpha('AlphaTween17', 'songIcon', 1, 0.25)
doTweenAlpha('AlphaTween18', 'song', 1, 0.25)
end
end
function onEvent(name,value1,value2)
if name == 'Cinematics' then
start = tonumber(value1)
finish = tonumber(value2)
end
end
Winning icon:
function onCreate()
makeLuaSprite('winningIcon', 'icons/win-'..getProperty('boyfriend.healthicon'), getProperty('iconP1.x'), getProperty('iconP1.y'))
setObjectCamera('winningIcon', 'hud')
addLuaSprite('winningIcon', true)
setObjectOrder('winningIcon', getObjectOrder('iconP1') + 1)
setProperty('winningIcon.flipX', true)
setProperty('winningIcon.visible', false)
bf = getProperty('boyfriend.healthicon')
makeLuaSprite('winningIconDad', 'icons/win-'..getProperty('boyfriend.healthicon'), getProperty('iconP2.x'), getProperty('iconP2.y'))
setObjectCamera('winningIconDad', 'hud')
addLuaSprite('winningIconDad', true)
setObjectOrder('winningIconDad', getObjectOrder('iconP2') + 1)
setProperty('winningIconDad.flipX', false)
setProperty('winningIconDad.visible', false)
dad = getProperty('boyfriend.healthicon')
end
function onUpdate(elapsed)
bf = getProperty('iconP1.animation.curAnim.name')
--debugPrint(getProperty('iconP1.animation.curAnim.name')) --debug
--WHITELIST add more characters if you wish
--if bf == 'bf' or bf =='bf' or bf =='bf' or bf =='bf' --WHITELIST - comment '--' to disable, uncomment to enable
--BLACKLIST add more characters if you wish
--if not bf =='bf' or bf =='bf' or bf =='bf' or bf =='bf' --BLACKLIST - comment '--' to disable, uncomment to enable
--then --uncomment if using WHITELIST or BLACKLIST
makeLuaSprite('winningIcon', 'icons/win-'..getProperty('iconP1.animation.curAnim.name'), getProperty('iconP1.x'), getProperty('iconP1.y'))
setObjectCamera('winningIcon', 'hud')
addLuaSprite('winningIcon', true)
setObjectOrder('winningIcon', getObjectOrder('iconP1') + 1)
setProperty('winningIcon.flipX', true)
setProperty('winningIcon.visible', false)
setProperty('winningIcon.x', getProperty('iconP1.x'))
setProperty('winningIcon.angle', getProperty('iconP1.angle'))
setProperty('winningIcon.y', getProperty('iconP1.y'))
setProperty('winningIcon.scale.x', getProperty('iconP1.scale.x'))
setProperty('winningIcon.scale.y', getProperty('iconP1.scale.y'))
if getProperty('health') >= 1.625 then
setProperty('iconP1.visible', false)
setProperty('winningIcon.visible', true)
else
setProperty('iconP1.visible', true)
setProperty('winningIcon.visible', false)
end
--end --uncomment if using WHITELIST or BLACKLIST
dad = getProperty('dad.healthicon')
--WHITELIST add more characters if you wish
--if dad == 'dad' or dad =='dad' or dad =='dad' or dad =='dad' --WHITELIST - comment '--' to disable, uncomment to enable
--BLACKLIST add more characters if you wish
--if not dad =='dad' or dad =='dad' or dad =='dad' or dad =='dad' --BLACKLIST - comment '--' to disable, uncomment to enable
--then --uncomment if using WHITELIST or BLACKLIST
makeLuaSprite('winningIconDad', 'icons/win-'..getProperty('iconP2.animation.curAnim.name'), getProperty('iconP2.x'), getProperty('iconP2.y'))
setObjectCamera('winningIconDad', 'hud')
addLuaSprite('winningIconDad', true)
setObjectOrder('winningIconDad', getObjectOrder('iconP2') + 1)
setProperty('winningIconDad.flipX', false)
setProperty('winningIconDad.visible', false)
setProperty('winningIconDad.x', getProperty('iconP2.x'))
setProperty('winningIconDad.angle', getProperty('iconP2.angle'))
setProperty('winningIconDad.y', getProperty('iconP2.y'))
setProperty('winningIconDad.scale.x', getProperty('iconP2.scale.x'))
setProperty('winningIconDad.scale.y', getProperty('iconP2.scale.y'))
if getProperty('health') <= .375 then
setProperty('iconP2.visible', false)
setProperty('winningIconDad.visible', true)
else
setProperty('iconP2.visible', true)
setProperty('winningIconDad.visible', false)
end
--end --uncomment if using WHITELIST or BLACKLIST
end
<a href="https://sprinklezstrain.com/product/chokocovered-banana-marshmallow/" rel="dofollow">ChokoCovered Banana Marshmallow</a>
<a href="https://sprinklezstrain.com/product/funfetti-marshmallow/" rel="dofollow">Funfetti Marshmallow</a>
<a href="https://sprinklezstrain.com/product/raspberry-ripple-marshmallow/" rel="dofollow">Raspberry Ripple Marshmallow</a>
<a href="https://sprinklezstrain.com/product/strawberry-cheesecake-marshmallow/" rel="dofollow">Strawberry Cheesecake Marshmallow</a>
<a href="https://sprinklezstrain.com/product/rainbow-bubblegum-marshmallow/" rel="dofollow">Rainbow BubbleGum Marshmallow</a>
<a href="https://sprinklezstrain.com/product/key-lime-marshmallow/" rel="dofollow">Key Lime Marshmallow</a>
<a href="https://sprinklezstrain.com/product/blueberry-pie-marshmallow/" rel="dofollow">Blueberry Pie Marshmallow</a>
<a href="https://sprinklezstrain.com/product/marshmallow-fruit-pebble/" rel="dofollow">Fruity Pebblez Marshmallow</a>
<a href="https://sprinklezstrain.com/product/marshmallow-watermelon/" rel="dofollow">Watermelon Marshmallow</a>
<a href="https://sprinklezstrain.com/product/marshmallow-birthdaycake/" rel="dofollow">Birthdaycake Marshmallow</a>
<a href="https://sprinklezstrain.com/product/blue-mm-sprinklez/" rel="dofollow">Blue M&M Sprinklez</a>
<a href="https://sprinklezstrain.com/product/marshmallow-super-duper/" rel="dofollow">Marshmallow Super Duper</a>
<a href="https://sprinklezstrain.com/product/marshmallow-froot-loopz/" rel="dofollow">Marshmallow Froot Loopz</a>
<a href="https://sprinklezstrain.com/product/gumdropz-concord-grape/" rel="dofollow">Gumdropz Concord Grape</a>
<a href="https://sprinklezstrain.com/product/sprinklez-gumdropz/" rel="dofollow">Sprinklez Gumdropz</a>
<a href="https://sprinklezstrain.com/product/gumdropz-poppin-papaya/" rel="dofollow">Gumdropz poppin papaya</a>
<a href="https://sprinklezstrain.com/product/gumdropz-mango-mayhem/" rel="dofollow">Gumdropz Mango Mayhem</a>
<a href="https://sprinklezstrain.com/product/gumdropz-wacky-watermelon/" rel="dofollow">Gumdropz Wacky Watermelon</a>
<a href="https://sprinklezstrain.com/product/gumdropz-island-punch/" rel="dofollow">Gumdropz Island Punch</a>
<a href="https://sprinklezstrain.com/product/gumdropz-strawberry-splash/" rel="dofollow">Gumdropz Strawberry Splash</a>
<a href="https://sprinklezstrain.com/product/gumdropz-berry-bonanza/" rel="dofollow">Gumdropz Berry Bonanza</a>
<a href="https://sprinklezstrain.com/product/gumdropz-wild-berry/" rel="dofollow">Gumdropz Wild Berry</a>
<a href="https://sprinklezstrain.com/product/torchiez-blazin-banana/" rel="dofollow">Torchiez Blazin Banana</a>
<a href="https://sprinklezstrain.com/product/torchiez-red-hotz/" rel="dofollow">Torchiez Red Hotz</a>
<a href="https://sprinklezstrain.com/product/torchiez/" rel="dofollow">Original Torchiez</a>
<a href="https://sprinklezstrain.com/product/grapefruit-cooler/" rel="dofollow">Grapefruit Cooler</a>
<a href="https://sprinklezstrain.com/product/sprinklez-marshmallow-madness/" rel="dofollow">Sprinklez Marshmallow Madness</a>
<a href="https://sprinklezstrain.com/product/sprinklez-creamy-peanut-butter/" rel="dofollow">Sprinklez Creamy Peanut Butter</a>
<a href="https://sprinklezstrain.com/product/sprinklez-peach-perfection/" rel="dofollow">Sprinklez Peach Perfection</a>
<a href="https://sprinklezstrain.com/product/sprinklez-cherry-lemonade/" rel="dofollow">Sprinklez Cherry Lemonade</a>
<a href="https://sprinklezstrain.com/product/sprinklez-sweet-tartz/" rel="dofollow">Sprinklez Sweet Tartz</a>
<a href="https://sprinklezstrain.com/product/cotton-candy-sprinkles/" rel="dofollow">Sprinklez Cotton Candy</a>
<a href="https://sprinklezstrain.com/product/candy-sprinkles-strain/" rel="dofollow">Sprinklez Candy Apple Cannabis Strain</a>
<a href="https://sprinklezstrain.com/product/sprinklez-strain/" rel="dofollow">Original Sprinklez Brand</a>
<a href="https://sprinklezstrain.com/product/sprinklez-mint-chip/" rel="dofollow">Sprinklez Mint Chip</a>
<a href="https://sprinklezstrain.com/product/gumdropz-kiwi-cooler/" rel="dofollow">Gumdropz kiwi cooler</a>
<a href="https://sprinklezstrain.com/product/sprinklez-pumpkin-strain/" rel="dofollow">Sprinklez Pumpkin strain</a>
<a href="https://sprinklezstrain.com/product/raspberry-swirl-marshmallow/" rel="dofollow">RASPBERRY SWIRL MARSHMALLOW</a>
<a href="https://sprinklezstrain.com/product/sprinklez-apple-pie/" rel="dofollow">Sprinklez Apple Pie</a>
<a href="https://sprinklezstrain.com/product/torchiez-chili-mango/" rel="dofollow">Torchiez Chili Mango</a>
<a href="https://sprinklezstrain.com/product/marshmallow-tripple-stack-smorez/" rel="dofollow">Marshmallow tripple stack smorez</a>
<a href="https://sprinklezstrain.com/product/marshmallow-twisted/" rel="dofollow">Marshmallow Twisted</a>
<a href="https://sprinklezstrain.com/product/gumdrops-mint-mojito/" rel="dofollow">Gumdrops Mint Mojito</a>
<a href="https://sprinklezstrain.com/product/sprinklez-new-york-cheesecake/" rel="dofollow">Sprinklez New York Cheesecake</a>
<a href="https://sprinklezstrain.com/product/sprinklez-candied-yams/" rel="dofollow">Sprinklez Candied Yams</a>
<a href="https://sprinklezstrain.com/product/new-york-marshmallow/" rel="dofollow">New York Marshmallow</a>
<a href="https://sprinklezstrain.com/product/torchiez-fuego-berry/" rel="dofollow">Torchiez Fuego berry</a>
<a href="https://sprinklezstrain.com/product/sprinklez-takeover/" rel="dofollow">Sprinklez Takeover</a>
<a href="https://sprinklezstrain.com/product/gumdropz-cranberry-blast/" rel="dofollow">Gumdropz Cranberry blast</a>
<a href="https://sprinklezstrain.com/product/torchiez-jalapeno-plum/" rel="dofollow">Torchiez Jalapeno plum</a>
<a href="https://sprinklezstrain.com/product/lemon-bomb-marshmallow/" rel="dofollow">Lemon bomb Marshmallow</a>
<a href="https://sprinklezstrain.com/product/sprinklez-blueberry-pancakes/" rel="dofollow">Sprinklez Blueberry Pancakes</a>
<a href="https://sprinklezstrain.com/product/marshmallow-jet-puff/" rel="dofollow">Marshmallow Jet Puff</a>
<a href="https://sprinklezstrain.com/product/marshmallow-coconut-royale/" rel="dofollow">Marshmallow Coconut Royale</a>
<a href="https://sprinklezstrain.com/product/gumdropz-tropical-snow/" rel="dofollow">Gumdropz Tropical Snow</a>
<a href="https://sprinklezstrain.com/product/marshmallow-cloudberry/" rel="dofollow">Marshmallow Cloudberry</a>
<a href="https://sprinklezstrain.com/product/spiced-gingerbread-choco-chunk/" rel="dofollow">Spiced Gingerbread Choco Chunk</a>
<a href="https://sprinklezstrain.com/product/gumdropz-cantaloupe-dream/" rel="dofollow">Gumdropz Cantaloupe Dream</a>
<a href="https://sprinklezstrain.com/product/choko-whip-swirl-marshmallow/" rel="dofollow">Choko Whip Swirl Marshmallow</a>
<a href="https://sprinklezstrain.com/product/gumdropz-persian-peach/" rel="dofollow">Gumdropz Persian Peach</a>
<a href="https://sprinklezstrain.com/product/sprinklez-oreo-cheesecake/" rel="dofollow">Sprinklez Oreo Cheesecake</a>
<a href="https://sprinklezstrain.com/product/frosty-snowman-marshmallow/" rel="dofollow">Frosty Snowman Marshmallow</a>
<a href="https://sprinklezstrain.com/product/sprinklez-bubblegum-cottoncandy/" rel="dofollow">Sprinklez Bubblegum CottonCandy</a>
<a href="https://sprinklezstrain.com/product/torchiez-fire-plum-crumble/" rel="dofollow">Torchiez Fire Plum Crumble</a>
<a href="https://sprinklezstrain.com/product/sprinklez-millionaire-shortbread/" rel="dofollow">Sprinklez MIllionaire Shortbread</a>
<a href="https://sprinklezstrain.com/product/marshmallow-sparkling-champagne/" rel="dofollow">Marshmallow Sparkling Champagne</a>
<a href="https://sprinklezstrain.com/product/sprinklez-fruitty-pebles/" rel="dofollow">Sprinklez Fruitty Pebles</a>
<a href="https://sprinklezstrain.com/product/gumdropz-honeydrew-delight/" rel="dofollow">Gumdropz Honeydrew Delight</a>
<a href="https://sprinklezstrain.com/product/hot-honey-butter-blondies/" rel="dofollow">Hot Honey Butter Blondies</a>
<a href="https://sprinklezstrain.com/product/twisted-caribbean/" rel="dofollow">Twisted Caribbean</a>
<a href="https://sprinklezstrain.com/product/confetti-cookies-dough-cream/" rel="dofollow">Confetti Cookies Dough Cream</a>
<a href="https://sprinklezstrain.com/product/cherry-ripe-marshmallow/" rel="dofollow">Cherry Ripe Marshmallow</a>
<a href="https://sprinklezstrain.com/product/southern-buttermilk-pie/" rel="dofollow">Southern Buttermilk Pie</a>
<a href="https://sprinklezstrain.com/product/peach-cobbler/" rel="dofollow">Peach Cobbler</a>
<a href="https://sprinklezstrain.com/product/pink-vanilla-butter-cake/" rel="dofollow">Pink Vanilla Butter Cake</a>
<a href="https://sprinklezstrain.com/product/brooklyn-blackout-cake/" rel="dofollow">Brooklyn Blackout Cake</a>
<a href="https://sprinklezstrain.com/product/hot-fudge-sundae/" rel="dofollow">Hot Fudge Sundae</a>
<a href="https://sprinklezstrain.com/product/caramel-apple-cheesecake/" rel="dofollow">Caramel Apple Cheesecake</a>
<a href="https://sprinklezstrain.com/product/mississipi-mud-pie/" rel="dofollow">Mississipi Mud Pie</a>
<a href="https://sprinklezstrain.com/product/fresh-baked-apple-crisp/" rel="dofollow">Fresh Baked Apple Crisp</a>
<a href="https://sprinklezstrain.com/product/blueberry-shortcake/" rel="dofollow">Blueberry Shortcake</a>
<a href="https://sprinklezstrain.com/product/juicy-yellow-watermelon/" rel="dofollow">Juicy Yellow Watermelon</a>
<a href="https://sprinklezstrain.com/product/strawberry-frosted-flakes-milkshake/" rel="dofollow">Strawberry Frosted Flakes Milkshake</a>
<a href="https://sprinklezstrain.com/product/cookies-cream-milkshake/" rel="dofollow">Cookies & Cream Milkshake</a>
<a href="https://sprinklezstrain.com/product/orange-creamsicle/" rel="dofollow">Orange Creamsicle</a>
<a href="https://sprinklezstrain.com/product/white-chocolate-strawberry/" rel="dofollow">White Chocolate Strawberry</a>
<a href="https://sprinklezstrain.com/product/bubblegum/" rel="dofollow">Bubblegum</a>
<a href="https://sprinklezstrain.com/product/dulce-de-leche/" rel="dofollow">Dulce de Leche</a>
<a href="https://sprinklezstrain.com/product/kiwi-strawberry-splash/" rel="dofollow">Kiwi Strawberry Splash</a>
<a href="https://sprinklezstrain.com/product/blazed-buttermilk-doughnuts/" rel="dofollow">Blazed Buttermilk Doughnuts</a>
<a href="https://sprinklezstrain.com/product/rainbow-sherbet-cotton-candy/" rel="dofollow">Rainbow Sherbet Cotton Candy</a>
<a href="https://sprinklezstrain.com/product/mandarin-lime/" rel="dofollow">Mandarin Lime</a>
<a href="https://sprinklezstrain.com/product/strawberry-banana-pudding/" rel="dofollow">Strawberry Banana Pudding</a>
<a href="https://sprinklezstrain.com/product/cookies-monster/" rel="dofollow">Cookies Monster</a>
<a href="https://sprinklezstrain.com/product/mm-cookie-dough-cream/" rel="dofollow">M&M Cookie Dough Cream</a>
<a href="https://sprinklezstrain.com/product/rainbow-confetti-birthday-cake/" rel="dofollow">Rainbow Confetti Birthday cake</a>
<a href="https://sprinklezstrain.com/product/smores-stuffed-french-toast/" rel="dofollow">S'mores Stuffed French Toast</a>
<a href="https://sprinklezstrain.com/product/red-velvet-cheesecake/" rel="dofollow">Red Velvet Cheesecake</a>
<a href="https://sprinklezstrain.com/product/fresas-con-crema/" rel="dofollow">Fresas Con Crema</a>
<a href="https://sprinklezstrain.com/product/fantastic-funfetti/" rel="dofollow">Fantastic Funfetti</a>
<a href="https://sprinklezstrain.com/product/froot-loops-ice-cream/" rel="dofollow">Froot Loops Ice Cream</a>
<a href="https://sprinklezstrain.com/product/neapolitan/" rel="dofollow">Neapolitan</a>
<a href="https://sprinklezstrain.com/product/rainbow-bubblegum/" rel="dofollow">Rainbow Bubblegum</a>
<a href="https://sprinklezstrain.com/product/hawaiian-guava-cake/" rel="dofollow">Hawaiian Guava Cake</a>
<a href="https://sprinklezstrain.com/product/banana-upsidedown-cake/" rel="dofollow">Banana Upsidedown Cake</a>
<a href="https://sprinklezstrain.com/product/lemon-blueberry-cheesecake-bar/" rel="dofollow">Lemon Blueberry Cheesecake Bar</a>
<a href="https://sprinklezstrain.com/product/sour-patch/" rel="dofollow">Sour Patch</a>
<a href="https://sprinklezstrain.com/product/boston-cream-pie/" rel="dofollow">Boston Cream Pie</a>
<a href="https://sprinklezstrain.com/product/basque-burnt-cheesecake/" rel="dofollow">Basque Burnt Cheesecake</a>
<a href="https://sprinklezstrain.com/product/fruit-gushers/" rel="dofollow">Fruit Gushers</a>
<a href="https://sprinklezstrain.com/product/gummy-bears/" rel="dofollow">Gummy Bears</a>
<a href="https://sprinklezstrain.com/product/marble-pound-cake/" rel="dofollow">Marble Pound Cake</a>
<a href="https://sprinklezstrain.com/product/strawberry-brownie/" rel="dofollow">Strawberry Brownie</a>
<a href="https://sprinklezstrain.com/product/7up-pound-cake/" rel="dofollow">7up Pound Cake</a>
<a href="https://sprinklezstrain.com/product/raspberry-cheesecake-truffles/" rel="dofollow">Raspberry Cheesecake Truffles</a>
<a href="https://sprinklezstrain.com/product/gummi-peachie-os/" rel="dofollow">Gummi Peachie O's</a>
<a href="https://sprinklezstrain.com/product/honey-vanilla/" rel="dofollow">Honey Vanilla</a>
<a href="https://sprinklezstrain.com/product/gummy-wormz/" rel="dofollow">Gummy Wormz</a>
<a href="https://sprinklezstrain.com/product/brite-crawlers/" rel="dofollow">Brite Crawlers</a>
<a href="https://sprinklezstrain.com/product/sprinklez-munyun/" rel="dofollow">Sprinklez Munyun</a><a href="" rel="dofollow"></a>
<a href="https://sprinklezstrain.com/2024/04/20/official-sprinklez-website/" rel="dofollow">Official Sprinklez Website</a>
<a href="https://sprinklezstrain.com/product/funfetti-pound-cake/" rel="dofollow">Funfetti Pound Cake</a>
<a href="https://sprinklezstrain.com/product/jasmine-panna-cotta/" rel="dofollow">Jasmine Panna Cotta</a>
<a href="https://sprinklezstrain.com/product/banana-split/" rel="dofollow">Banana Split</a>
<a href="https://sprinklezstrain.com/product/mango-peach/" rel="dofollow">Mango Peach</a>
<a href="https://sprinklezstrain.com/product/twix-milkshake/" rel="dofollow">Twix Milkshake</a>
<a href="https://sprinklezstrain.com/product/sour-belts-green-apple/" rel="dofollow">Sour Belts Green Apple</a>
<a href="https://sprinklezstrain.com/product/lucky-charms-cereal-bars/" rel="dofollow">Lucky Charms Cereal Bars</a>
<a href="https://sprinklezstrain.com/product/lemon-meringue/" rel="dofollow">Lemon Meringue</a>
<a href="https://sprinklezstrain.com/product/cookie-butter/" rel="dofollow">Cookie Butter</a>
<a href="https://sprinklezstrain.com/product/midnight-fantasy/" rel="dofollow">Midnight Fantasy</a>
<a href="https://sprinklezstrain.com/product/strawberry-cheesecake-pie/" rel="dofollow">Strawberry Cheesecake Pie</a>
<a href="https://sprinklezstrain.com/product/white-mystery/" rel="dofollow">White Mystery</a>
<a href="https://sprinklezstrain.com/product/tropical-skittles-swirl/" rel="dofollow">Tropical Skittles Swirl</a>
<a href="https://sprinklezstrain.com/product/blackberry-cobbler/" rel="dofollow">Blackberry Cobbler</a>
<a href="https://sprinklezstrain.com/product/strawberry-vanilla/" rel="dofollow">Strawberry Vanilla</a>
<a href="https://sprinklezstrain.com/product/sprinklez-miami/" rel="dofollow">Sprinklez Miami</a>
<a href="https://sprinklezstrain.com/product/cinnamon-roll-bread-pudding/" rel="dofollow">Cinnamon Roll Bread Pudding</a>
<a href="https://sprinklezstrain.com/product/nerds-candy-cake/" rel="dofollow">Nerds Candy Cake</a>
<a href="https://sprinklezstrain.com/product/creamy-coconut-tres-leches/" rel="dofollow">Creamy Coconut Tres Leches</a>
<a href="https://sprinklezstrain.com/product/summer-berry-cake-pops/" rel="dofollow">Summer Berry Cake Pops</a>
<a href="https://sprinklezstrain.com/product/pop-cheesecake-bites/" rel="dofollow">Pop Cheesecake Bites</a>
<a href="https://sprinklezstrain.com/product/snickerdoodle-cream-milkshake/" rel="dofollow">Snickerdoodle Cream Milkshake</a>
<a href="https://sprinklezstrain.com/product/strawberry-lemonade-icebox-cake/" rel="dofollow">Strawberry Lemonade Icebox Cake</a>
<a href="https://sprinklezstrain.com/product/jolly-rancher/" rel="dofollow">Jolly Rancher</a>
<a href="https://sprinklezstrain.com/product/double-frosted-banana-bread/" rel="dofollow">Double Frosted Banana Bread</a>
<a href="https://sprinklezstrain.com/product/skittles-wild-berry/" rel="dofollow">Skittles Wild Berry</a>
<a href="https://sprinklezstrain.com/product/blueberry-pie-milkshake/" rel="dofollow">Blueberry Pie Milkshake</a>
<a href="https://sprinklezstrain.com/product/cherry-coca-cola/" rel="dofollow">Cherry Coca Cola</a>
<a href="https://sprinklezstrain.com/product/cookies-crumble-sundae/" rel="dofollow">Cookies Crumble Sundae</a>
<a href="https://sprinklezstrain.com/product/tiramisu-brownie-pie/" rel="dofollow">Tiramisu Brownie Pie</a>
<a href="https://sprinklezstrain.com/product/triple-caramel-layer-cake/" rel="dofollow">Triple Caramel Layer Cake</a>
<a href="https://sprinklezstrain.com/product/pineapple-upside-down/" rel="dofollow">Pineapple Upside Down</a>
<a href="https://sprinklezstrain.com/product/tahitian-treat/" rel="dofollow">Tahitian Treat</a>
<a href="https://sprinklezstrain.com/product/silky-smooth-truffle-bites/" rel="dofollow">Silky Smooth Truffle Bites</a>
<a href="https://sprinklezstrain.com/product/sprinklez-vape/" rel="dofollow">Sprinklez vape</a>
<a href="https://sprinklezstrain.com/product/triple-strawberry-cheesecake/" rel="dofollow">Triple Strawberry cheesecake</a>
<a href="https://sprinklezstrain.com/product/sugar-cane/" rel="dofollow">Sugar Cane</a>
<a href="https://sprinklezstrain.com/product/passion-orange-guava-ice/" rel="dofollow">Passion Orange Guava ice</a>
<a href="https://sprinklezstrain.com/product/raspberry-cream-tart/" rel="dofollow">Raspberry Cream Tart</a>
<a href="https://sprinklezstrain.com/product/sprinklez-glimmer-bites/" rel="dofollow">Sprinklez Glimmer Bites</a>
<a href="https://sprinklezstrain.com/product/deep-fried-honey-bomb/" rel="dofollow">Deep Fried Honey Bomb</a>
<a href="https://sprinklezstrain.com/product/super-sour-berry/" rel="dofollow">Super Sour Berry</a>
<a href="https://sprinklezstrain.com/product/coconut-cloud-milkshake/" rel="dofollow">Coconut Cloud Milkshake</a>
<a href="https://sprinklezstrain.com/product/sprinklez-loud/" rel="dofollow">Sprinklez Loud</a>
<a href="https://sprinklezstrain.com/product/sprinklez-sugar-babies/" rel="dofollow">Sprinklez Sugar Babies</a>
<a href="https://sprinklezstrain.com/product/confetti-blast-layer-cake/" rel="dofollow">Confetti Blast Layer Cake</a>
<a href="https://sprinklezstrain.com/product/root-beer-float/" rel="dofollow">Root Beer Float</a>
<a href="https://sprinklezstrain.com/product/honey-mango/" rel="dofollow">Honey Mango</a>
<a href="https://sprinklezstrain.com/product/hubba-bubba/" rel="dofollow">Hubba Bubba</a>
<a href="https://sprinklezstrain.com/product/sprinklez-powdered-suger-donut/" rel="dofollow">Sprinklez Powdered Suger Donut</a>
<a href="https://sprinklezstrain.com/product/frosted-bubblegum-marshmallow/" rel="dofollow">Frosted Bubblegum Marshmallow</a>
<a href="https://sprinklezstrain.com/product/sprinklez-psychedelic-gummies/" rel="dofollow">Sprinklez Smilez</a>
<a href="https://sprinklezstrain.com/product/sprinklez-pink-magic/" rel="dofollow">Sprinklez Pink Magic</a>
<a href="https://sprinklezstrain.com/product/peeps-marshmallow/" rel="dofollow">Peeps Marshmallow</a>
<a href="https://sprinklezstrain.com/product/cotton-candy-vanilla-swirl/" rel="dofollow">Cotton Candy Vanilla Swirl</a>
<a href="https://sprinklezstrain.com/product/gleamy-dream-cake/" rel="dofollow">Gleamy Dream Cake</a>
<a href="https://sprinklezstrain.com/product/twisted-raspberry-swirl/" rel="dofollow">Twisted Raspberry Swirl</a>
<a href="https://sprinklezstrain.com/product/sprinklez-velvet-bliss/" rel="dofollow">Sprinklez Velvet Bliss</a>
<a href="https://sprinklezstrain.com/product/tropical-slushie-splash-milkshake/" rel="dofollow">Tropical Slushie Splash Milkshake</a>
<a href="https://sprinklezstrain.com/product/confetti-cookie-cone/" rel="dofollow">Confetti Cookie Cone</a>
<a href="https://sprinklezstrain.com/product/peanut-butter-jelly-milkshake/" rel="dofollow">Peanut Butter Jelly Milkshake</a>