The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Sword Fight and Flex Your Time script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 15



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local plr = game:GetService("Players").LocalPlayer
  2. local mt = getrawmetatable(game)
  3. setreadonly(mt,false)
  4.  
  5. local backup = mt.__namecall
  6.  
  7. mt.__namecall = newcclosure(function(self,...)
  8.   if self == plr and (getnamecallmethod() == "Kick" or getnamecallmethod() == "kick") then
  9.       return wait(9e9)
  10.   end
  11.   return backup(self,...)
  12. end)
  13.  
  14. setreadonly(mt,true)