Advertisement
Vzurxy

auto convert reanimate

Jun 19th, 2020
2,417
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.89 KB | None | 0 0
  1. -- #ceg memes
  2.  
  3. local function LoadLibrary(...)
  4.     return loadstring(game:HttpGet("https://pastebin.com/raw/UfzKgS6T"))()
  5. end
  6.  
  7. loadstring(game:HttpGet("https://pastebin.com/raw/ZzzkQs1j"))()
  8.  
  9. local FakeCharacter = workspace:WaitForChild("CloneCharacter", 1)
  10. local Player = game:GetService("Players").LocalPlayer
  11.  
  12. local MT = getrawmetatable(game)
  13. local Index = MT.__index
  14. setreadonly(MT, false)
  15.  
  16. MT.__index = newcclosure(function(self, k)
  17.     if checkcaller() and rawget(getfenv(0), "script") == script then
  18.         if self == Player and k:lower() == "character" then -- Player.Character
  19.             return FakeCharacter
  20.         end
  21.     end
  22.    
  23.     return Index(self, k)
  24. end)
  25.  
  26. -- Script Below
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement