diff --git a/README.md b/README.md index f4bc22a..ba0ba75 100644 --- a/README.md +++ b/README.md @@ -41,6 +41,23 @@ if not LPH_OBFUSCATED then end) end ``` +#### Luvit (**with built in libraries**) +```lua +local https = require("https") +local timer = require("timer") +local MacroString = nil +https.get("https://raw.githubusercontent.com/Luraph/macrosdk/main/luraphsdk.lua", function(Response) + local Body = {} + Response:on("data", function(Chunk) + Body[#Body+1] = Chunk + end) + Response:on("end", function() + MacroString = table.concat(Body) + end) +end) +repeat timer.sleep(1) until MacroString +loadstring(MacroString)() +``` ## Help! I don't see any examples for my platform here! @@ -54,4 +71,4 @@ Please open a ticket on our [Discord server](https://discord.lura.ph), and we'll - [Visit the Luraph Website](https://lura.ph/ "Luraph - Online Lua Obfuscation") - [Join the Luraph Discord](https://discord.lura.ph/ "Luraph Discord Server") - [Read the Luraph Documentation](https://lura.ph/dashboard/documents "Luraph Documentation") -- [Read the Luraph FAQs](https://lura.ph/dashboard/faq "Luraph Frequently Asked Questions") \ No newline at end of file +- [Read the Luraph FAQs](https://lura.ph/dashboard/faq "Luraph Frequently Asked Questions")