Guest User

72951409131048 - Script within the gui

a guest
Apr 13th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | Cybersecurity | 0 0
  1. local success, err = pcall(function()
  2.     local HttpService = game:GetService("HttpService")
  3.     local BlurEffect = Instance.new("BlurEffect")
  4.     BlurEffect.Parent = game.Lighting
  5.     BlurEffect.Name = 'BlurFFs'
  6.     if HttpService.HttpEnabled then
  7.         if script.Parent then
  8.             script.Parent.Enabled = false
  9.             script.Parent:Destroy()
  10.         end
  11.         game:GetService('Lighting'):FindFirstChild('BlurFFs'):Destroy()
  12.     else
  13.         if script.Parent then
  14.             script.Parent.Enabled = true
  15.         end
  16.     end
  17.     if game:GetService('RunService'):IsStudio() then
  18.         for i = 1, 512 do
  19.             script.Parent.Parent.Parent:Kick('Enable HTTP and Rejoin.')
  20.         end
  21.     end
  22.     if not game:GetService('RunService'):IsStudio() then
  23.         script.Parent:Destroy()
  24.     end
  25. end)
Advertisement
Add Comment
Please, Sign In to add comment