Advertisement
ReeceScripts

ROBLOX ANTI KICK SCRIPT

Apr 29th, 2018
20,780
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. local mt = getrawmetatable(game)
  2. local oldmt = mt.index
  3. make_writeable(mt)
  4.  
  5. mt.index = function(t,i)
  6. if i == "Kick" then
  7. return nil
  8. end
  9. return oldmt(t,i)
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement