So I am working on a obfuscator where you place a script in a file called script.lua
An I wan't to get every single local variable and change it and also change it everywhere where the variable was refrenced so for example
local Hello = "Hello World"
print(Hello)
Becomes
HDHASUoasdhfbdjs = "Hello World"
print(HDHASUoasdhfbdjs)
is this possible?