I don’t know what this error is.
error:
script:
local v = script.Parent.TextLabel
local http = game:GetService("MarketplaceService")
local player = game.Players.LocalPlayer
local itemid = 6376336
if http:UserOwnsGamePassAsync(player, itemid) then
print("owns item")
--game.ReplicatedStorage.TeamChanger:FireServer(v.Text)
else
print("don't own item")
http:PromptGamePassPurchase(player, itemid)
end
end)


