Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. if not _G.rc then
  2. for i,v in next, getgc() do
  3. if type(v) == "function" then
  4. local ups = debug.getupvalues(v)
  5. if ups.RemoteCall and type(ups.RemoteCall) == "function" then
  6. _G.rc = ups.RemoteCall
  7. break
  8. end
  9. end
  10. end
  11. end
  12. local rc = _G.rc
  13.  
  14. local possibleCharacters = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890-=@#$%^&*()_+[]',.{}|:<>?"
  15. local characters = {}
  16. for i = 1, possibleCharacters:len() do
  17. characters[i] = possibleCharacters:sub(i, i)
  18. end
  19. local function RandomString(length)
  20. local s = ""
  21. for i = 1, length do
  22. s = s .. characters[math.random(1, #characters)]
  23. end
  24. return s
  25. end
  26.  
  27. local rs = game:GetService("RunService").RenderStepped
  28.  
  29. for i=1, 100 do
  30. spawn(function()
  31. while rs:Wait() do
  32. rc("Chatted", RandomString(math.random(50, 100)))
  33. end
  34. end)
  35. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement