Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 728 Bytes

README.md

File metadata and controls

27 lines (22 loc) · 728 Bytes

MastersMZ scripts

This repository contains scripts made for MastersMZ.

[📽] If you showcase these scripts, please do not re-upload but provide the url for the script.

📜 Loadstring creation:

If you want to create a loadstring, use this improved template:

local function ExecuteURL(Url) 
  local Payload = request({
    Url = Url,
    Method = 'GET',
    Headers = {
      ['Content-Type'] = 'text/plain',
    }
  }).Body

  -- Error check
  if Payload:sub(1,3) == "404" then
    return warn("[!] The script you have requested has moved or been deleted.")
  end
  return loadstring(Payload)()
end

ExecuteURL('https://raw.githubusercontent.com/MastersMZ-Scripts/Scripts/main/plague%20rizz%20script.lua')