The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Skate Park 200K XP & 1.5 MILLION CREDITS [OPEN SOURCE] script pastebin roblox
By Skate Park on 2024-09-21 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. local RedeemCode = game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.CodeService.Redeem
  2. local RenderStepped = game:GetService("RunService").RenderStepped
  3. local Codes = {'8k', '7k','milo','retromada','race','razor','starsub','flamingo', '100k','sorry','update','newpark','vacation','skateboarding','tistheseason'}
  4.  
  5.  
  6. local settings = {repeatamount = 900, inclusions = {"Redeem"}}
  7.  
  8. local mt = getrawmetatable(game)
  9. local old = mt.__namecall
  10. setreadonly(mt, false)
  11.  
  12. local function isincluded(uh)
  13.    for i,o in next, settings.inclusions do
  14.        if uh.Name == o then
  15.            return true
  16.        end
  17.    end
  18.    return false
  19. end
  20.  
  21. mt.__namecall = function(uh, ...)
  22.    local args = {...}
  23.    local method = getnamecallmethod()
  24.    if method == "FireServer" or method == "InvokeServer" and isincluded(uh) then
  25.        for i = 1,settings.repeatamount do
  26.            old(uh, ...)
  27.        end
  28.    end
  29.    return old(uh, ...)
  30. end
  31.  
  32. setreadonly(mt, true)
  33.  
  34.  
  35. function Redeem()
  36.     for i=1,#Codes do
  37.     RenderStepped:Connect(function()
  38.         wait()
  39.         RedeemCode:InvokeServer(Codes[i])
  40.     end)
  41. end
  42. end
  43.  
  44. RenderStepped:Connect(function()
  45.     Redeem()
  46. end)