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
1 | local id = [ Gamepass ID here ] |
2 |
3 | game.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 |
8 | end ) |
Something like that; just add the size, position and ect. in and it should be fine