Advertisement
AlphaTwo_gg

Untitled

Feb 21st, 2025
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.64 KB | None | 0 0
  1. local Player = game.Players.LocalPlayer
  2. local MarketplaceService = game:GetService("MarketplaceService")
  3.  
  4. local Fluent = loadstring(game:HttpGet("https://github.com/dawid-scripts/Fluent/releases/latest/download/main.lua"))()
  5. local Window = Fluent:CreateWindow({
  6. Title = "Shoot the murderer",
  7. SubTitle = "by Bjarnos",
  8. TabWidth = 160,
  9. Size = UDim2.fromOffset(580, 460),
  10. Acrylic = true,
  11. Theme = "Dark",
  12. MinimizeKey = Enum.KeyCode.LeftControl
  13. })
  14.  
  15. local Tabs = {
  16. Main = Window:AddTab({Title = "Main", Icon = ""}),
  17. Devproducts = Window:AddTab({Title = "Devproducts", Icon = ""}),
  18. }
  19.  
  20. Window:SelectTab("Main")
  21. Tabs.Main:AddButton({
  22. Title = "Become murderer",
  23. Description = "(next round)",
  24. Callback = function()
  25. for i = 1, 50 do
  26. MarketplaceService:SignalPromptProductPurchaseFinished(Player.UserId, 2651043006, true)
  27. end
  28. end
  29. })
  30.  
  31. Tabs.Main:AddButton({
  32. Title = "Get gems",
  33. Description = "200k good enough?",
  34. Callback = function()
  35. for i = 1, 10 do
  36. MarketplaceService:SignalPromptProductPurchaseFinished(Player.UserId, 2656221386, true)
  37. end
  38. end
  39. })
  40.  
  41. Tabs.Main:AddButton({
  42. Title = "Get heart coins [event]",
  43. Description = "1 million should be good enough...",
  44. Callback = function()
  45. for i = 1, 5 do
  46. MarketplaceService:SignalPromptProductPurchaseFinished(Player.UserId, 2688756812, true)
  47. end
  48. end
  49. })
  50.  
  51. Tabs.Main:AddButton({
  52. Title = "Get wheel spins",
  53. Description = "100 O-o",
  54. Callback = function()
  55. for i = 1, 20 do
  56. MarketplaceService:SignalPromptProductPurchaseFinished(Player.UserId, 7352530914, true)
  57. end
  58. end
  59. })
  60.  
  61. local blacklist = {2651043006, "Gems", "Level", "Heart", "Wheel"}
  62. local products = {}
  63.  
  64. local developerProducts = MarketplaceService:GetDeveloperProductsAsync()
  65. for _, developerProduct in ipairs(developerProducts:GetCurrentPage()) do
  66. local allow = true
  67. for _, i in pairs(blacklist) do
  68. if typeof(i) == "number" then
  69. if developerProduct.ProductId == i then allow = false end
  70. else
  71. if string.find(developerProduct.Name, i) then allow = false end
  72. end
  73. end
  74.  
  75. if allow then
  76. table.insert(products, developerProduct)
  77. end
  78. end
  79.  
  80. Tabs.Devproducts:AddButton({
  81. Title = "GET ALL",
  82. Description = "for lazy people",
  83. Callback = function()
  84. for _, product in pairs(products) do
  85. MarketplaceService:SignalPromptProductPurchaseFinished(Player.UserId, product.ProductId, true)
  86. end
  87. end
  88. })
  89.  
  90. for _, product in pairs(products) do
  91. Tabs.Devproducts:AddButton({
  92. Title = product.Name,
  93. Description = product.PriceInRobux .. "R",
  94. Callback = function()
  95. MarketplaceService:SignalPromptProductPurchaseFinished(Player.UserId, product.ProductId, true)
  96. end
  97. })
  98. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement