sådan laver du så når du røre en part en gamepass pops op

  1. lav en part
  2. put en script i part
  3. slå third party sales til
  4. paste den her kode i scripten
local Id = 0 --Put your game pass id here
local MPS = game:GetService("MarketplaceService")
script.Parent.Touched:Connect(function(hit)
    local Humanoid = hit.Parent:FindFirstChild("Humanoid")
    local HumanoidRootPart = hit.Parent:FindFirstChild("HumanoidRootPart")
    local Player = game.Players:FindFirstChild(hit.Parent.Name)
    if Humanoid and HumanoidRootPart and Player then
        MarketplaceService:PrompGamepassPurchase(Id, Player)
    end
end)