Roblox's Windsock Decompiled

I absolutely love Roblox’s Windsock; it was very clear there was a ton of love put into that Widget even though its usage is rarely seen.

I was interested in seeing how it worked - in the past, you would simply just open up the plugin file - but now because of optimizations and in the effort of shorter load times in Studio, those files have been signed and the code pre-compiled into its byte-code.

For the majority of the work I utilized @Maximum_ADHD’s Roblox Client Tracker, they’ve implemented Unluau by atrexus into the pipeline which allows for these byte-code files to be roughly decompiled - and in the case they couldn’t be - just the bytecode instead.

However, after having decompiled the bytecode files myself there was a bug where the Windsock would become distorted randomly. Then @boatbomber shared this GitHub which - in contrast to Maximum_ADHD’s repository - actually had the fully decompiled files.

I compared my decompiled code to that of the newly automated one, and found this single character difference that fixed my problem.

We now have a fully working Windsock:


(Speeds/Directions shown are <1, 1, 0> at 50sps, <0, 1, 1> at 25sps, and <0, -1, 0.5> at 100sps)

The file is below and I hope to see more Windsocks in games everywhere, front-page or not!
Windsock.rbxl (55.4 KB)

Note: Barely any of this is commented and it is merely formatted to be readable. I myself don’t have much grasp of what is actually being done so attempting to explain it via comments would be futile; however, I have attempted to appropriately name all the variables to make proper documentation or repurposing easier.

19 Likes

I haven’t tried it myself, but there’s been another decompilation attempt here. Does this one work?

1 Like

Thank you so much for sending this, in the original bytecode from Max’s GitHub I linked there was a weird 255 value for the Vector3 call which I simply just replaced with 0:

I then looked at the newly decompiled version you just sent and immediately went to see what the value was - and it was not 0 - it was -1!

The only value that needed to be changed to fix the entire behavior was this one value lmfao, I’ll update the post to reflect this now, really appreciate you sending that!

(EDIT: There’s actually some slight behavior issues (new ones) that needs to be adjusted so I’ll be doing more comparisons between mine and the new one and determine what needs to be adjusted before updating)

2 Likes

Just another post bump, I’ve completely updated the post with the new file. Should be completely done now!

1 Like