Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

can i get help with a vip overhead gui?

Asked by 6 years ago

hello guys i have been trying to do it all day how would i make a overhead gui for people who own the game pass like if they own the game pass they will have vip above there head

0
https://wiki.roblox.com/index.php?title=API:Class/GamePassService/PlayerHasPass -- To see if the player owns a certain gamepass. If they do, then just simply add a BillboardGui to the character's head, and give it whatever design you want. obcdino 113 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago
Edited 6 years ago
local id = [Gamepass ID here]

game.Players.PlayerAdded:connect(function(player)
    if game:GetService("GamePassService"):PlayerHasPass(player, id) then 
        gui = instance.new("BillboardGui", player.Character.Head)
        text = instance.new("TextLabel", gui)
    end
end)

Something like that; just add the size, position and ect. in and it should be fine

0
thank you WaifulSbae 0 — 6y
0
where dose the script go WaifulSbae 0 — 6y
0
is dosent work WaifulSbae 0 — 6y
0
a Opinality -2 — 4y
Ad

Answer this question