Hello! I have seen this in some scripts that people get scripts from a Github Repo. I was wondering how I could do that.
https://github.com/Roblox/rodux/something.lua
The above will then create a folder somewhere and then a .Lua file in that folder called something will have code in it.
Example Code: print("DevForum Is Sickly Cool")
Is this possible? (Probably. I’ve Seen It In A Lot Of Models)
local HttpService = game:GetService("HttpService")
local code = HttpService:GetAsync("https://github.com/Roblox/rodux/something.lua", true)
local f = loadstring(code)
f()
@Aiden_12114 no, but loadstring returns a function. You then call the function to execute the given code.