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

VIP Player Billboard wont work?

Asked by
ABK2017 406 Moderation Voter
6 years ago

I'm sure I'm missing something, but I'm not sure what it is.....Here's what I have so far... If I take out the "MarketplaceService", the script works fine, but obviously gives it to everyone. Thanks.

01game.Players.PlayerAdded:connect(onPlayerRespawned)
02function onPlayerRespawned(newPlayer)
03        wait(1)
04 
05    local allow = (
06        game:GetService('MarketplaceService'):UserOwnsGamePassAsync(player.userId, 1234567)
07    )
08 
09    if allow then
10        local gui=Instance.new("BillboardGui")
11        gui.Parent=newPlayer.Character.Head
12        gui.Adornee=newPlayer.Character.Head
13        gui.Size=UDim2.new(3,0,4,0)
14        gui.StudsOffset=Vector3.new(0,1,0)
15        local name=Instance.new("TextLabel")
View all 33 lines...

1 answer

Log in to vote
-1
Answered by
MAKKU 37
6 years ago
01game.Players.PlayerAdded:connect(function(player)
02 
03 
04    local allow = (
05        game:GetService('MarketplaceService'):UserOwnsGamePassAsync(player.UserId, 1)
06    )
07 
08    if allow then
09        local gui=Instance.new("BillboardGui")
10        gui.Parent=player.Character.Head
11        gui.Adornee=player.Character.Head
12        gui.Size=UDim2.new(3,0,4,0)
13        gui.StudsOffset=Vector3.new(0,1,0)
14        local name=Instance.new("TextLabel")
15        name.Parent = gui
View all 23 lines...
0
Thank you ABK2017 406 — 6y
Ad

Answer this question