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

Gamepass Overhead Not Working (Need Help)?

Asked by 6 years ago
Edited 6 years ago
 if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(player.userId,4744766) then

            if character.Head:FindFirstChild("BillBoard") then

                character.Head.BillBoard.TextLabel.Text = "Lord Bill Nye VIP"
            else
                local clonegui = billboardgui:Clone()
                clonegui.TextLabel.Text = "Lord Bill Nye VIP"
                clonegui.TextLabel.TextColor3 = Color3.fromRGB(79,255,94)
                clonegui.Parent = game.Workspace:WaitForChild(player.Name).Head

Okay so i need help with that don't mind i have the rest of the script but this is what i need help with the other Overhead works

0
Click view source to see the whole script cause the Gamepass ID won't show up on here idk why BosOfroblox 40 — 6y
0
Do you already have a billboard on the characters head? funface101 45 — 6y
0
yes BosOfroblox 40 — 6y
0
what is the output saying? greenhamster1 180 — 6y

1 answer

Log in to vote
0
Answered by 6 years ago

I believe you don't have a billboard in the character head so Instance it using

local BillBoard = Instance.new('BillboardGui')
BillBoard.Parent = character.Head
Ad

Answer this question