Load Xynapse scripts directly. Copy and execute.
Execute script directly from repository with a single function call.
function fetch(owner, repository, tags)
local Url = string.format(
"%s/%s/%s/%s/latest/download/main.lua",
"https://github.com",
owner, repository, tags
)
return loadstring(game:HttpGet(Url))
end
fetch("vita6it", "Xynapse", "releases")()