local gpid = 163264268 game.Players.PlayerAdded:connect(function(player) if game:GetService("GamePassService"):PlayerHasPass(player, gpid) then player.Teams.KorbloxTeam=true wait(1) game.Lighting.W:Clone() game.Lighting.W:Clone().Parent=player end end)
It's suppose to be, when you buy the gamepass, you become a character. It doesn't work. Why?
Try using "MarketplaceService" instead, and make a function to run a receipt and tell ROBLOX they purchased the item.
it would be something like this:
local gpid = 163264268 local mps = game.MarketplaceService --you don't have to use :GetService(). I find this easier. game.Players.PlayerAdded:connect(function(plr) if mps:PlayerOwnsAsset(plr,gpid) then player.Teams.KorbloxTeam=true wait(1) game.Lighting.W:Clone().Parent = plr end end)