- lav en part
- put en script i part
- slå third party sales til
- 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)