Riky47-Haxer

R47Sploit-CustomFunctions

May 13th, 2020
1,020
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.10 KB | None | 0 0
  1. _R47Spl = true --IsUsingR47Sploit
  2.  
  3. function _R47LoadObj(Obj) --Loadstring(Object)
  4.     local Object = "rbxassetid://" .. Obj
  5.     loadstring(game:GetObjects(Object)[1].Source)()
  6. end
  7.  
  8. function _R47LoadHttp(Url) --Loadstring(Url)
  9.     loadstring(game:HttpGet((Url), true))()
  10. end
  11.  
  12. function _R47RanString(stronger) --ReturnRandomString
  13.     local str = ""
  14.     local counting123 = 0  
  15.     local gotstring = 0
  16.     gotstring = gotstring+666
  17.     local randomstring = {"a", "b", "c", "d", "e", "f", "g", "h", "i", "g", "k", "l", "m", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "$", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",}
  18.     local strongerrandomstring = {"a", "b", "c", "d","e", "f", "g", "h", "i", "g", "k", "l", "m", "o", "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "$", "а", "б", "в", "г", "д", "е", "ё", "ж", "з", "и", "й", "к", "л", "м", "о", "п", "р", "с", "т", "у", "ф", "х", "ч", "щ", "ъ", "ы", "ъ", "э", "ю", "я", "`", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",}
  19.     if stronger then
  20.         for i, v in ipairs(strongerrandomstring) do
  21.             counting123 = i
  22.         end
  23.         do
  24.             math.randomseed(tick()+gotstring)
  25.             for i = 3, math.random(1,100) do
  26.                 math.randomseed(i+tick()+gotstring)
  27.                
  28.                 local oneortwo = math.random(1,2)
  29.                 if oneortwo == 2 then
  30.                     math.randomseed(i+tick()+gotstring)
  31.                     str = str..""..strongerrandomstring[math.random(1, counting123)]
  32.                 else
  33.                     math.randomseed(i+tick()+gotstring)
  34.                     str = str..""..string.upper(strongerrandomstring[math.random(1, counting123)])
  35.                 end        
  36.             end
  37.         end
  38.     else
  39.         for i, v in ipairs(randomstring) do
  40.             counting123 = i
  41.         end
  42.         do
  43.             math.randomseed(tick()+gotstring)
  44.             for i = 3, math.random(1,100) do
  45.                     math.randomseed(i+tick()+gotstring)
  46.                    
  47.                 local oneortwo = math.random(1,2)
  48.                 if oneortwo == 2 then
  49.                     math.randomseed(i+tick()+gotstring)
  50.                     str = str..""..randomstring[math.random(1, counting123)]
  51.                     else
  52.                     math.randomseed(i+tick()+gotstring)
  53.                     str = str..""..string.upper(randomstring[math.random(1, counting123)])
  54.                 end        
  55.             end
  56.         end
  57.     end
  58.     return str
  59. end
Add Comment
Please, Sign In to add comment