winer002
(Glitchy)
September 27, 2023, 3:40pm
#1
I was making a nametag with basic icons for Premium, Verified, and Game Creator/Dev and while testing the teleporter on the Game Client, it shows I am verified, and I already checked all code which nothing is wrong or breaking. And the print says it is true.
I haven’t gotten a message either.
The true is the
print(player:IsVerified())
Weird?
2 Likes
Mister33j
(qharntne)
September 27, 2023, 3:46pm
#2
Are you ID or phone verified? IsVerified()
returns whenever you’re non-VOIP phone or government-issued ID verified , not when you’ve received the blue checkmark. Plus, wrong topic, this goes to #help-and-feedback:scripting-support .
1 Like
Doomcolp
(dxxmed)
September 27, 2023, 3:50pm
#3
No, you are not verified.
winer002
(Glitchy)
September 27, 2023, 3:56pm
#6
What would be the way to check for the Blue Checkmark?
ValiantWind
(ValiantWind)
September 27, 2023, 4:02pm
#8
Hey, thanks for linking my solution. However, there is now a built in property to check if a user has the verified badge:
player.HasVerifiedBadge
@winer002 If you want to check if someone as the Blue Checkmark, use the player.HasVerifiedBadge
Player | Documentation - Roblox Creator Hub property.
Example script:
local Players = game:GetService("Players")
Players.PlayerAdded:Connect(function(player)
if player.HasVerifiedBadge then
print(`{player.Name} has the verification badge`)
else
print(`{player.Name} does not have the verification badge`)
end
end)
1 Like
winer002
(Glitchy)
September 27, 2023, 4:10pm
#9
alright, thanks you for the help, it is working now. But also one more thing is that when I tried the httpservice ot get the Group API, it returned with forbid to use Roblox Services.
2 Likes
ValiantWind
(ValiantWind)
September 27, 2023, 4:15pm
#10
No problem! I’m happy to help.
It’s because you must use a proxy to access the Roblox Web API through Studio since you cannot access it directly.
Most use roproxy though its typically recommended to host your own proxy instead , which is what I do.
If you want to use roproxy, replace the “roblox” part of the base endpoints you’re using with roproxy.
Example: groups.roblox.com
would become groups.roproxy.com
winer002
(Glitchy)
September 27, 2023, 4:16pm
#11
thank you for the solution. Much Apreciated!
2 Likes
winer002
(Glitchy)
September 27, 2023, 11:32pm
#12
so if i wanted to say, make a rank API for a group, could i use this?
1 Like
ValiantWind
(ValiantWind)
September 27, 2023, 11:39pm
#13
I don’t entirely understand what you mean. Can you explain to me in PMs? (Since the original topic is already solved)
2 Likes
system
(system)
Closed
October 11, 2023, 11:39pm
#14
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.