Advertisement
w3vu2m81e912ce7m

Supermarket Sim Scripts

Dec 28th, 2024 (edited)
481
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.02 KB | Gaming | 0 0
  1. -- Supermarket Sim Script Updated:
  2. --
  3. local L = loadstring(game:HttpGet("https://raw.githubusercontent.com/Turtle-Brand/Turtle-Lib/main/source.lua"))()
  4. local W = L:Window("Supermarket Simulator")
  5.  
  6. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  7.  
  8. local rs = game:GetService("ReplicatedStorage")
  9. local eve = rs:WaitForChild("Events")
  10.  
  11. local function ir(rempath, ...)
  12. local remote = rempath:InvokeServer(...)
  13. return remote
  14. end
  15.  
  16. local function fr(rempath, ...)
  17. rempath:FireServer(...)
  18. end
  19.  
  20. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  21.  
  22. W:Button("Infinite Money", function()
  23. local goldrem = eve:WaitForChild("Gold"):WaitForChild("ChangeGoldRF")
  24. ir(goldrem, "ChangeGold", math.huge, false)
  25. end)
  26.  
  27. W:Button("Get All Gamepasses", function()
  28. local gprem = eve:WaitForChild("Goods"):WaitForChild("GamePassRE")
  29.  
  30. local gamepasses = {
  31. { "Cashier", 28 },
  32. { "Quick Check-out", 1 },
  33. { "Porter", 5 },
  34. { "Quick Pricing" }
  35. }
  36.  
  37. for _, args in ipairs(gamepasses) do
  38. fr(gprem, unpack(args))
  39. end
  40. end)
  41.  
  42. W:Toggle("Infinite XP", true, function(val)
  43. local xprem = eve:WaitForChild("Exp"):WaitForChild("ChangeExpRE")
  44. local XP = 10000000
  45.  
  46. local function start()
  47. while val do
  48. pcall(function()
  49. fr(xprem, XP)
  50. end)
  51. task.wait(0.1)
  52. end
  53. end
  54.  
  55. if val then
  56. task.spawn(start)
  57. end
  58. end)
  59.  
  60. -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  61.  
  62. W:Label("Credits to ExploitFin", Color3.fromRGB(127, 143, 166))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement