Facebook
From Cream Hornbill, 2 Years ago, written in Plain Text.
This paste is a reply to Pet Sim x Ez Pets Script from Alper TTgNR - view diff
Embed
Download Paste or View Raw
Hits: 533
  1. loadstring(game:HttpGet("https://raw.githubusercontent.com/TurfuGoldy/GoldenScripts/main/EzPets.lua"))()
  2.  getgenv().Count = 100000 --how much codes to generate and check local codes = 'abcdefghijklmnopqrstuvwxyz0123456789' if not isfile('working codes.txt') then writefile('working codes.txt', '') end function generateCode() local code = '' for i = 1, 10 do code = code .. string.split(codes,'')[math.random(1, #string.split(codes, ''))] end return 'pet-' .. code end local howMuch = 0 local Working = 0 rconsolename('Huge Cat Generator | Checked: ' .. howMuch .. '/' .. Count .. ' | Working: ' .. Working) for i = 1,Count do local code = generateCode() local request = workspace.__THINGS.__REMOTES['redeem merch code']:InvokeServer({code}) if request[1] == false then howMuch = howMuch + 1 rconsoleprint('@@RED@@') rconsoleprint('[NOT WORKING] ') rconsoleprint('@@WHITE@@') rconsoleprint(code .. '\n') rconsolename('Huge Cat Generator | Checked: ' .. howMuch .. '/' .. Count .. ' | Working: ' .. Working) elseif request[1] == true then Working = Working + 1 Count = Count + 1 rconsoleprint('@@LIGHT_GREEN@@') rconsoleprint('[WORKING] ') rconsoleprint('@@WHITE@@') rconsoleprint(code .. '\n') appendfile('working codes.txt', code .. '\n') rconsolename('Huge Cat Generator | Checked: ' .. howMuch .. '/' .. Count .. ' | Working: ' .. Working) end end
  3. getgenv().Count = 100000 --how much codes to generate and check
  4.  
  5. local codes = 'abcdefghijklmnopqrstuvwxyz0123456789'
  6. if not isfile('working codes.txt') then
  7.    writefile('working codes.txt', '')
  8. end
  9.  
  10. function generateCode()
  11.    local code = ''
  12.    for i = 1, 10 do
  13.        code = code .. string.split(codes,'')[math.random(1, #string.split(codes, ''))]
  14.    end
  15.    return 'pet-' .. code
  16. end
  17.  
  18. local howMuch = 0
  19. local Working = 0
  20.  
  21. rconsolename('Huge Cat Generator | Checked: ' .. howMuch .. '/' .. Count .. ' | Working: ' .. Working)
  22.  
  23. for i = 1,Count do
  24.    local code = generateCode()
  25.    local request = workspace.__THINGS.__REMOTES['redeem merch code']:InvokeServer({code})
  26.    if request[1] == false then
  27.        howMuch = howMuch + 1
  28.        rconsoleprint('@@RED@@')
  29.        rconsoleprint('[NOT WORKING] ')
  30.        rconsoleprint('@@WHITE@@')
  31.        rconsoleprint(code .. '\n')
  32.        rconsolename('Huge Cat Generator | Checked: ' .. howMuch .. '/' .. Count .. ' | Working: ' .. Working)
  33.    elseif request[1] == true then
  34.        Working = Working + 1
  35.        Count = Count + 1
  36.        rconsoleprint('@@LIGHT_GREEN@@')
  37.        rconsoleprint('[WORKING] ')
  38.        rconsoleprint('@@WHITE@@')
  39.        rconsoleprint(code .. '\n')
  40.        appendfile('working codes.txt', code .. '\n')
  41.        rconsolename('Huge Cat Generator | Checked: ' .. howMuch .. '/' .. Count .. ' | Working: ' .. Working)
  42.    end
  43. end
  44.  

Replies to Re: Pet Sim x Ez Pets Script rss

Title Name Language When
Re: Re: Pet Sim x Ez Pets Script Rude Eider text 2 Years ago.