Advertisement
YourMain12

Unbannable Script

May 4th, 2023 (edited)
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.52 KB | None | 0 0
  1. while true do
  2.     local newUsername = "User" .. tostring(math.random(1000000))
  3.     local newID = tostring(math.random(1000000))
  4.    
  5.     game:GetService("Players").LocalPlayer.Name = newUsername
  6.     game:GetService("Players").LocalPlayer.UserId = newID
  7.    
  8.     wait(5)
  9. end
  10.  
  11. local oldKick = game:GetService("Players").LocalPlayer.Kick
  12. local oldBan = game:GetService("Players").LocalPlayer.Ban
  13.  
  14. game:GetService("Players").LocalPlayer.Kick = function() end
  15. game:GetService("Players").LocalPlayer.Ban = function() end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement