SkidScripts

abyss world | no fall damage

Apr 1st, 2023
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local mt = getrawmetatable(game)
  2. local namecall = mt.__namecall
  3. setreadonly(mt,false)
  4. mt.__namecall = newcclosure(function(self,...)
  5.    if getnamecallmethod() == 'FireServer' and tostring(self) == 'FallReport' then
  6.            return
  7.        end
  8.    return namecall(self,...)
  9. end)
  10. setreadonly(mt,true)
Add Comment
Please, Sign In to add comment