Skip to content

Instantly share code, notes, and snippets.

@axtrct
axtrct / effect.lua
Created March 3, 2023 13:44
effect
effect = {}
function effect:hover(ui : GuiBase, event: () -> nil, revert : () -> nil) : nil
ui.MouseEnter:Connect(function()
event()
end)
ui.MouseLeave:Connect(function()
revert()
end)
end

Keybase proof

I hereby claim:

  • I am axtrct on github.
  • I am axtr (https://keybase.io/axtr) on keybase.
  • I have a public key whose fingerprint is 76B6 36B0 4024 0BFE 52C5 933A 88FA 84F7 2B65 20A4

To claim this, I am signing this object:

@axtrct
axtrct / readme.md
Last active December 29, 2022 13:30
getfenv 101

intro

oh em gee this is such getfenv() gaming

crazy things

Ok first of all you can list all the available functions and children (don't take this out of context please) with it...

print(getfenv())

And uhhh you access the childrens and functions

getfenv()['hi']['sex']['doodlecock']
@axtrct
axtrct / blurryui.md
Last active January 18, 2022 10:17
Blurry UI in Roblox tutorial

How to make Blurry UI in Roblox

Introduction:

  • So you might know those blurry UI often used to make design more beautiful and minimalistic, and you want to somehow achieve this effect in Roblox.
    • Ex:
      image
      image
Well, it is infact possible to do it, and it is very simple.
So let's begin with the tutorial!
@axtrct
axtrct / Prose.md
Created December 13, 2021 10:44 — forked from shakna-israel/Prose.md
Obfuscating Lua

Obfuscating Lua

I've had some fun ruining Python recently, but Python is what I use at work. I prefer to use other languages when I'm doing stuff for fun.

And obfuscation only really makes sense in fun and competition - given a suffeciently determined actor, your code will be reverse engineered. Unless you write it in Malboge.

For this particular experiment, I'll be using Lua 5.3. As I'll probably need to dive into some of the less portable functions to commit our atrocities, I can't guarantee it will run on other popular versions like Luajit or 5.1.