Hello! I trying to make a discord webhook logger for my game, but i have issues: logger working only in roblox studio. Like: I join in roblox studio - webhook writes about it, I join in roblox - webhook doesn’t do anything.
local Data = {
["content"] = Player.Name.. " Is joining the game! Coins: ".. Player.leaderstats.Coins.Value
}
Data = http:JSONEncode(Data)
http:PostAsync("link", Data)