Hello, I am making a system and it requires messages to be send, for some reason, when arguments has been filled, the “,” gets an error.
script.Parent.Send.OnServerEvent:Connect(function(plr)
local reason = script.Parent.Parent.Reason
local send = script.Parent
local url = "nil"
local webhookService = require(game.ServerStorage.WebhookService)
local userID = plr.UserId
local username = plr.Name
webhookService:createEmbed(url, "Staff Backup call by " .. username .. " - " .. userID .., "Reason: " .. reason.Text)
end)
any ideas?