I need help about creating report bug gui, cause sometimes I saw games with that feature. So if someone can just help me.
Where do you plan on reading your reports?
Idk how it is even works. so even can u try explain me about that where actually can be readen reports? Cause I don’t used that cause I checked toolbox and some of these free models not worked
so idk how even it is works and what is actual script.
I personally use discord for bug reports
Most games use discord like @D0RYU said above. If you are going to use discord you need to create a server with a webhook. You have to create an http request to that hook and send their report there.
also if you don’t want to surpass the rate limit you can add multiple bug report channels
obv you only need this for a bigger game
Discord is the best choice but you can use pastebin
no you read them on discord, all the player does is enter a bug in the game
you could also make it possible for players to enter bug reports on a website, that would obv need more work tho and only beneficial if the game had a website or a group has a website
I recommend checking this out HttpService | Roblox Creator Documentation
Here is code too send data to a discord webhook:
local webhook = "webhook link here"
local report = "this game dont work"
local HttpService = game:GetService("HttpService")
local data = {
content = bug;
username = "Bug Report";
}
HttpService:PostAsync(webhook, HttpService:JSONEncode(data))
If you used Discord, this is the API link and this page will tell you what your bot would look like.
In embed you must place double brackets.
If you don’t have discord, you could try to datastore the reports and make them visible when the game owner joins.