Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
macro functions that the nexveil roblox client deliver on successful authentication
NXV_SEND_WEBHOOK( "https://discord.com/api/webhooks/123456789012345678/abcdefghijklmnopqrstuvwxyz", { username = "NXV Logger", content = "Player executed the script" }, function(success, msg) if success then print("Webhook sent") else warn("Webhook failed:", msg) end end )
local clean = NXV_SANITIZE("Hello!!! @Player#1", "[^%w]") print(clean) -- HelloPlayer1