Advertisement
CatGray

Killswitch

Jan 14th, 2024 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. for _, descendant in pairs(game.CoreGui:GetDescendants()) do
  2. descendant:Destroy()
  3. end --Destroy Even some Script Gui that use coregui Like Dex
  4.  
  5. for _, descendant in pairs(game.workspace:GetDescendants()) do
  6. descendant:Destroy() --Destroy whole game
  7. end
  8.  
  9. for _, descendant in pairs(game.ReplicatedStorage:GetDescendants()) do
  10. descendant:Destroy() --Destroy all remote to Prevent using Instant UGC when ur blacklisted from script
  11. end
  12.  
  13. wait(60)
  14. --Killswitch End
  15. for _, descendant in pairs(game.ReplicatedStorage:GetDescendants()) do
  16. descendant:Destroy()
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement