ShadowDragons_YT

JAILBREAK BYPASS SCRIPT!!!

Nov 14th, 2018
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. local mt = getrawmetatable(game);
  2. setreadonly(mt, false);
  3.  
  4. local index = mt.__index;
  5.  
  6. mt.__index = function(self, i)
  7.     if not checkcaller() then
  8.         if i == "WalkSpeed" then
  9.             return 16;
  10.         elseif i == "JumpPower" then
  11.             return 50;
  12.         elseif i == "StateChanged" then
  13.             return "Nope ;)"
  14.         end
  15.     end
  16.     return index(self, i);
  17. end
Add Comment
Please, Sign In to add comment