--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Nova ServerSide local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local UserInputService = game:GetService("UserInputService") local ContextActionService = game:GetService("ContextActionService") local player = Players.LocalPlayer local camera = workspace.CurrentCamera -- Aguarda personagem local char = player.Character or player.CharacterAdded:Wait() local humanoid = char:WaitForChild("Humanoid") -- Congelar personagem humanoid.WalkSpeed = 0 humanoid.JumpPower = 0 humanoid.AutoRotate = false for _, v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.Anchored = true end end -- Travar câmera camera.CameraType = Enum.CameraType.Scriptable -- Bloquear TODOS os inputs local function blockInput() return Enum.ContextActionResult.Sink end ContextActionService:BindAction( "BlockAllInput", blockInput, false, unpack(Enum.PlayerActions:GetEnumItems()) ) UserInputService.MouseIconEnabled = true -- Remove outros blurs for _, v in pairs(Lighting:GetChildren()) do if v:IsA("BlurEffect") then v:Destroy() end end -- Blur (igual Roblox) local blur = Instance.new("BlurEffect") blur.Size = 18 blur.Parent = Lighting -- GUI local gui = Instance.new("ScreenGui") gui.IgnoreGuiInset = true gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") -- Caixa principal (TAMANHO REALISTA EM PIXELS) local box = Instance.new("Frame") box.Size = UDim2.fromOffset(520, 230) -- tamanho próximo ao popup real box.Position = UDim2.fromScale(0.5, 0.5) box.AnchorPoint = Vector2.new(0.5, 0.5) box.BackgroundColor3 = Color3.fromRGB(55,55,55) box.BorderSizePixel = 0 box.Parent = gui Instance.new("UICorner", box).CornerRadius = UDim.new(0,12) -- Título local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,45) title.BackgroundTransparency = 1 title.Text = "Possible Raid Warning" title.Font = Enum.Font.GothamBold title.TextSize = 22 title.TextColor3 = Color3.fromRGB(255,255,255) title.Parent = box -- Linha local line = Instance.new("Frame") line.Size = UDim2.new(0.92,0,0,1) line.Position = UDim2.new(0.04,0,0,48) line.BackgroundColor3 = Color3.fromRGB(130,130,130) line.BorderSizePixel = 0 line.Parent = box -- Texto local msg = Instance.new("TextLabel") msg.Size = UDim2.new(0.9,0,0,95) msg.Position = UDim2.new(0.05,0,0,60) msg.BackgroundTransparency = 1 msg.TextWrapped = true msg.TextYAlignment = Enum.TextYAlignment.Top msg.Text = "We have detected another device in your house. In case you are alone, seek for help as soon as possible.\n\n(Error Code: 1001)" msg.Font = Enum.Font.Gotham msg.TextSize = 16 msg.TextColor3 = Color3.fromRGB(215,215,215) msg.Parent = box -- Botão Leave local leave = Instance.new("TextButton") leave.Size = UDim2.fromOffset(260, 42) leave.Position = UDim2.new(0.5,0,1,-55) leave.AnchorPoint = Vector2.new(0.5,0) leave.Text = "Leave" leave.Font = Enum.Font.GothamBold leave.TextSize = 18 leave.BackgroundColor3 = Color3.fromRGB(245,245,245) leave.TextColor3 = Color3.fromRGB(0,0,0) leave.Parent = box Instance.new("UICorner", leave).CornerRadius = UDim.new(0,10) -- ÚNICA AÇÃO POSSÍVEL leave.MouseButton1Click:Connect(function() player:Kick("Connection lost. (Error Code: 1001)") end)