hey everyone just wanted to show you all my script to wager big and have nice profits... i only use this script once sometimes 2 times a day, feel free to check out my youtube for videos on how these scripts work and please use my luckyfish link to show some support please!

i will attach the script and also put my link that i wish you all to use in there please

--- this is $that$tyler$guys$ lucky 5 script --- reccomended balance 10.00000000 --- only run once to a maximum 2x a day --- please use my luckyfish link to show some support --- //luckyfish. io/?c=clvoky (take the spaces out as it wont allow full links to be posted) --- the only thing you have to adjust with this script is the profittarget to 5.0 more then your balance!!!!! --- gamble responsibly and remember a lot of dice is luck... --- enter full script after the seperation line --- also this script is written in js format... --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- basebet = 0.00001000; nextbet = 0.00001000; bb = 0.00090000; bb6 = 0.00900000; pbet = 0.00090000; pbet3 = 0.00900000; pb3 = 1; pb = 1; pbb3 = 0; pbb = 0; nb = 0; chance = 62; profittarget = 10.008; function dobet() { if (balance >= profittarget) stop(); if (pbb3 == 1) pbb3 = 0; if (pbb == 1) pbb = 0; if (win && chance == 38) { pb3 = 1; pbb3 = 1; } else if (chance == 38 && pbb3 == 0) { pb3 = 0; } if (win && chance == 62) { pb = 1; pbb = 1; } else if (chance == 62 && pbb == 0){ pb = 0; } if (chance == 62 && pb == 0 ) { pbet = pbet*3; } else if (chance == 62 && pb == 1) { pbet = bb6; } if (chance == 38 && pb3 == 0) { pbet3 = pbet3*1.7; } else if (chance == 38 && pb3 == 1) { pbet3 = bb; } if (chance >= 62) { chance = 38; nb = 1; bethigh = true; } else { chance = 62; nb = 2; bethigh = false; } if (nb == 1) { nextbet = pbet3; nb = 2; } else if (nb == 2) { nextbet = pbet; nb = 1; } }