Is it possible to make a Nitro Booster tag?

The question is, it is possible to create a nitro booster tag.

my answer, yes

but, how.

well, I just need to know how this will play out. You see, a discord server with people’s nicknames as their Roblox account could work, and check if that user who has the exact Roblox name and discord nickname to implement the tag onto the player(s) head.

Also, what services would i use?

You’d want to use HttpService and its function, :RequestAsync, as we require the headers for the authentication of our Discord application bot by token.

First off, create an application, give the bot permission to access message history, and viewing it, and then add it to your server. Then, copy the token.

Now, .Lua takes place for requests. Define the API and your guild ID:

local http = game:GetService("HttpService")
local api = "https://discord.com/api/guilds/{guild id}/members/search?query="

Call the :RequestAsync() function:

local data = http:RequestAsync({Url = api.."Doqee", --Doqee is an example username
Headers = {["Authorization"] = "Bot {token}"}})

Now, JSONDecode the table:

local boostSince = http:JSONDecode(data.Body)[1]["premium_since"]
--premium_since returns an ISO time to when they boosted, or nil if not boosted
6 Likes