How would you go about loading something such as a UI library into the local client?

Hey Developers,

I’m trying to load a nice looking UI library into my game on the client. But, I’ve run into some trouble.

Supposedly the library loads in like this;

local library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GreenDeno/Venyx-UI-Library/main/source.lua"))()

Now obviously exploiters mainly use libraries like this, but is it possible to load it into my game on the player’s client? I’m simply trying to make a little admin panel and this UI library would work great. :grinning_face_with_smiling_eyes:

Otherwise YOu can only use the code, and every time you enter the game insert it into the Developer Console.

1 Like

You can use something along the lines of what you mentioned or you can look into HttpService:JSONDecode If you are having difficulties getting the library.

1 Like

Yeah that’s what I was thinking.

1 Like