--209599904
local mps = game.GetService("MarketplaceService")
game.Workspace.Part.Touched:Connect(function(hit)
local plr = game.Players:FindFirstChild(hit.Parent.Name)
if plr then
mps:PromptGamePassPurchase(plr,209599904)
end
end)
mps.PromptGamePassPurchaseFinished:Connect(function(plr,gamepassid,aldi)
print(plr,gamepassid,aldi)
if aldi == true then
if gamepassid == 209599904 then
plr.Character.Humanoid.WalkSpeed = 50
plr.Character.Humanoid.JumpPower = 100
end
else
print ("almadı")
end
end)
game.Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(chr)
if mps:UserOwnsGamePassAsync(plr.UserId,209599904) then
chr.Humanoid.WalkSpeed = 50
chr.Humanoid.JumpPower = 100
else print("vip gamepassi yok")
end
end)
end)