Answers for "roblox check if owns gamepass"

Lua
11

roblox check if player has gamepass

local id = --gamepass id here

game.Players.PlayerAdded:Connect(function(player)
	if game:GetService("MarketplaceService"):UserOwnsGamePassAsync(player.UserId,id) then
    	--do what you want to do in here
    end
end)
Posted by: Guest on July-29-2020

Browse Popular Code Answers by Language