Im trying to make a !boob size command but it isnt working properly

Asked Aug 25, 2025·4 replies·Last activity 12 months ago·Open in Discord ↗
Archived from the original community forum
Things may have changed since it was written. Still stuck? Ask the community on Discord.

Im trying to fix it but im lost as hell, could anyone please tell me what i did wrong in this command?
$(user)'s boob size is $(random.pick 'A' 'B' 'C' 'D' 'E' 'F')

4 replies

Hi, you can use JS with $(eval) and Math.random() for that, something like this:

$(user) $(eval sizes=['A', 'B', 'C', 'D', 'E', 'F']; '\'s boob size is ' + sizes[Math.floor(Math.random() * sizes.length)]; )

I tried that command but it told me "Invalid or unexpected token [<context>:1:8]

Sunlit Snake said:
$(user) $(eval sizes=[‘A’, ‘B’, ‘C’, ‘D’, ‘E’, ‘F’]; ''s boob size is ’ + sizes[Math.floor(Math.random() * sizes.length)]; )

Ah, sorry, didn't realize that one of the quotes that needed to be escaped ('s) was corrected on the reply:

$(user) $(eval sizes=['A', 'B', 'C', 'D', 'E', 'F']; '\'s boob size is ' + sizes[Math.floor(Math.random() * sizes.length)]; )

Oh. My. Days. it really works, man thank you so much, wish u the best man