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 7 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 — 7y

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago
1local id = [Gamepass ID here]
2 
3game.Players.PlayerAdded:connect(function(player)
4    if game:GetService("GamePassService"):PlayerHasPass(player, id) then
5        gui = instance.new("BillboardGui", player.Character.Head)
6        text = instance.new("TextLabel", gui)
7    end
8end)

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

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

Answer this question