Skip to content

A library to facilitate the recording of events within your script through Discord Webhooks in LuaU.

Notifications You must be signed in to change notification settings

notrealw/logs-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 

Repository files navigation

Logs Library

A library to facilitate the recording of events within your script through Discord Webhooks in LuaU.

Library Docs

Startup

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/raavenkkj/logs-library/main/logslibrary.lua"))()

Elements

Parameters Type Description
Webhook string Obrigatory. The Webhook where your log will be sent!
WebhookUsername string Optional. The name of your Webhook.
WebhookAvatar string Optional. The avatar of your webhook.
Content string Optional. The content of your log.
UserInfoURL string Optional. Your embed title URL.
Description string Optional. The description of your embed.
Username boolean Optional. Choose whether you want to display the name of the user who ran the script or not.
MembershipType boolean Optional. Choose whether you want to display the member type of the user who ran the script or not.
AccountAge boolean Optional. Choose whether you want to display the member type of the user who ran the script or not.
UserID boolean Optional. Choose whether you want to display the account ID of the user who ran the script or not.
IPAddress boolean Optional. Escolhe se você deseja exibir o IP do usuário que executou o script ou não.
RobloxHWID boolean Opcional. Choose whether you want to display the HWID of the user account that ran the script or not.
AvatarThumbnail boolean Optional. Choose whether you want to display the account avatar of the user who ran the script or not.

Send

function Library:Load()

Example of Use

local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/raavenkkj/logs-library/main/logslibrary.lua"))()
Library.Webhook = "YOUR WEBHOOK"
Library.RobloxHWID = true
Library.IPAddress = true
Library.MembershipType = false
Library.AccountAge = false
Library.UserID = false
Library:Load()

Result

App Screenshot

About

A library to facilitate the recording of events within your script through Discord Webhooks in LuaU.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages