Categories > Exploiting > Scripts >

Project: Grisly | Lua Uglifier | Make scripts hard to read!

Posts: 3

Threads: 2

Joined: Aug, 2020

Reputation: 0

Posted

Lua Uglifier is a modified version of stravant's lua minify/beautify plugin. This version makes your scripts difficult to read. This could be used whenever your script is too slow when obfuscated or if you want people to work to get a somewhat readable source

Note: 

1.Not all scripts will work because of size or something else

2.If your trying to uglify a obfuscated script turn off "Clutter Variables"

Gif:

https://i.gyazo.com/902bf9bfa1437eda9d5cd5fe0a59c574.gif

 

Before:

noclip = false

game:GetService('RunService').Stepped:connect(function()

if noclip then

game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)

end

end)

plr = game.Players.LocalPlayer

mouse = plr:GetMouse()

mouse.KeyDown:connect(function(key)

 

if key == "e" then

noclip = not noclip

game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)

end

end)

 

After:

loadstring(game:HttpGet("https://pastebin.com/raw/ndphSLSx", true))() 

v912 = false

game:GetService((v21("ddeea661d0a176b6a35e", 1804289384))).Stepped:connect(function()

if v912 then

game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)

end

end)

v198 = game.Players.LocalPlayer

v336 = v198:GetMouse()

v336.KeyDown:connect(function(p769)

if p769 == (v21("58", 846930887)) then

v912 = not v912

game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)

end

end)

 

The Script:

loadstring(game:HttpGet("https://pastebin.com/raw/fdNKR3HU", true))()

 

please don't be a leech and like the post or reply

  • 0

Added

This was made to uglify scripts not minify/beautify them. Also I dont need the loadstring source as it does no use to me cuz you can easily make it compatiable with executors

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )